blob: cb9e05f92febc4dbd9616a74c36e6174cdbc93a6 [file] [log] [blame]
Steven Tothe47f30b2008-01-10 04:25:59 -03001/*
2 * Driver for the Conexant CX23885 PCIe bridge
3 *
Steven Toth6d897612008-09-03 17:12:12 -03004 * Copyright (c) 2007 Steven Toth <stoth@linuxtv.org>
Steven Tothe47f30b2008-01-10 04:25:59 -03005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/init.h>
23#include <linux/list.h>
24#include <linux/module.h>
25#include <linux/moduleparam.h>
26#include <linux/kmod.h>
27#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/interrupt.h>
30#include <linux/delay.h>
31#include <linux/kthread.h>
32#include <asm/div64.h>
33
34#include "cx23885.h"
35#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030036#include <media/v4l2-ioctl.h>
Andy Walls74618242009-09-26 22:50:44 -030037#include "cx23885-ioctl.h"
Kusanagi Kouichi0b32d652010-01-22 04:55:28 -030038#include "tuner-xc2028.h"
Steven Tothe47f30b2008-01-10 04:25:59 -030039
Mijhail Moreyra97ce5672011-10-10 11:09:53 -030040#include <media/cx25840.h>
41
Steven Tothe47f30b2008-01-10 04:25:59 -030042MODULE_DESCRIPTION("v4l2 driver module for cx23885 based TV cards");
Steven Toth6d897612008-09-03 17:12:12 -030043MODULE_AUTHOR("Steven Toth <stoth@linuxtv.org>");
Steven Tothe47f30b2008-01-10 04:25:59 -030044MODULE_LICENSE("GPL");
45
46/* ------------------------------------------------------------------ */
47
48static unsigned int video_nr[] = {[0 ... (CX23885_MAXBOARDS - 1)] = UNSET };
49static unsigned int vbi_nr[] = {[0 ... (CX23885_MAXBOARDS - 1)] = UNSET };
50static unsigned int radio_nr[] = {[0 ... (CX23885_MAXBOARDS - 1)] = UNSET };
51
52module_param_array(video_nr, int, NULL, 0444);
53module_param_array(vbi_nr, int, NULL, 0444);
54module_param_array(radio_nr, int, NULL, 0444);
55
56MODULE_PARM_DESC(video_nr, "video device numbers");
57MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
58MODULE_PARM_DESC(radio_nr, "radio device numbers");
59
Steven Toth4513fc692008-01-12 11:36:36 -030060static unsigned int video_debug;
Steven Tothe47f30b2008-01-10 04:25:59 -030061module_param(video_debug, int, 0644);
62MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
63
Steven Toth4513fc692008-01-12 11:36:36 -030064static unsigned int irq_debug;
Steven Tothe47f30b2008-01-10 04:25:59 -030065module_param(irq_debug, int, 0644);
66MODULE_PARM_DESC(irq_debug, "enable debug messages [IRQ handler]");
67
68static unsigned int vid_limit = 16;
69module_param(vid_limit, int, 0644);
70MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
71
72#define dprintk(level, fmt, arg...)\
Steven Toth4513fc692008-01-12 11:36:36 -030073 do { if (video_debug >= level)\
Steven Toth79776c82011-10-10 11:09:54 -030074 printk(KERN_DEBUG "%s: " fmt, dev->name, ## arg);\
Steven Toth4513fc692008-01-12 11:36:36 -030075 } while (0)
Steven Tothe47f30b2008-01-10 04:25:59 -030076
77/* ------------------------------------------------------------------- */
78/* static data */
79
80#define FORMAT_FLAGS_PACKED 0x01
81
82static struct cx23885_fmt formats[] = {
83 {
84 .name = "8 bpp, gray",
85 .fourcc = V4L2_PIX_FMT_GREY,
86 .depth = 8,
87 .flags = FORMAT_FLAGS_PACKED,
88 }, {
89 .name = "15 bpp RGB, le",
90 .fourcc = V4L2_PIX_FMT_RGB555,
91 .depth = 16,
92 .flags = FORMAT_FLAGS_PACKED,
93 }, {
94 .name = "15 bpp RGB, be",
95 .fourcc = V4L2_PIX_FMT_RGB555X,
96 .depth = 16,
97 .flags = FORMAT_FLAGS_PACKED,
98 }, {
99 .name = "16 bpp RGB, le",
100 .fourcc = V4L2_PIX_FMT_RGB565,
101 .depth = 16,
102 .flags = FORMAT_FLAGS_PACKED,
103 }, {
104 .name = "16 bpp RGB, be",
105 .fourcc = V4L2_PIX_FMT_RGB565X,
106 .depth = 16,
107 .flags = FORMAT_FLAGS_PACKED,
108 }, {
109 .name = "24 bpp RGB, le",
110 .fourcc = V4L2_PIX_FMT_BGR24,
111 .depth = 24,
112 .flags = FORMAT_FLAGS_PACKED,
113 }, {
114 .name = "32 bpp RGB, le",
115 .fourcc = V4L2_PIX_FMT_BGR32,
116 .depth = 32,
117 .flags = FORMAT_FLAGS_PACKED,
118 }, {
119 .name = "32 bpp RGB, be",
120 .fourcc = V4L2_PIX_FMT_RGB32,
121 .depth = 32,
122 .flags = FORMAT_FLAGS_PACKED,
123 }, {
124 .name = "4:2:2, packed, YUYV",
125 .fourcc = V4L2_PIX_FMT_YUYV,
126 .depth = 16,
127 .flags = FORMAT_FLAGS_PACKED,
128 }, {
129 .name = "4:2:2, packed, UYVY",
130 .fourcc = V4L2_PIX_FMT_UYVY,
131 .depth = 16,
132 .flags = FORMAT_FLAGS_PACKED,
133 },
134};
135
136static struct cx23885_fmt *format_by_fourcc(unsigned int fourcc)
137{
138 unsigned int i;
139
140 for (i = 0; i < ARRAY_SIZE(formats); i++)
141 if (formats[i].fourcc == fourcc)
142 return formats+i;
143
Harvey Harrison22b4e642008-04-08 23:20:00 -0300144 printk(KERN_ERR "%s(0x%08x) NOT FOUND\n", __func__, fourcc);
Steven Tothe47f30b2008-01-10 04:25:59 -0300145 return NULL;
146}
147
148/* ------------------------------------------------------------------- */
149
150static const struct v4l2_queryctrl no_ctl = {
151 .name = "42",
152 .flags = V4L2_CTRL_FLAG_DISABLED,
153};
154
155static struct cx23885_ctrl cx23885_ctls[] = {
156 /* --- video --- */
157 {
158 .v = {
159 .id = V4L2_CID_BRIGHTNESS,
160 .name = "Brightness",
161 .minimum = 0x00,
162 .maximum = 0xff,
163 .step = 1,
164 .default_value = 0x7f,
165 .type = V4L2_CTRL_TYPE_INTEGER,
166 },
167 .off = 128,
168 .reg = LUMA_CTRL,
169 .mask = 0x00ff,
170 .shift = 0,
171 }, {
172 .v = {
173 .id = V4L2_CID_CONTRAST,
174 .name = "Contrast",
175 .minimum = 0,
Mijhail Moreyrab12ab3f2011-10-10 11:09:53 -0300176 .maximum = 0x7f,
Steven Tothe47f30b2008-01-10 04:25:59 -0300177 .step = 1,
178 .default_value = 0x3f,
179 .type = V4L2_CTRL_TYPE_INTEGER,
180 },
181 .off = 0,
182 .reg = LUMA_CTRL,
183 .mask = 0xff00,
184 .shift = 8,
185 }, {
186 .v = {
187 .id = V4L2_CID_HUE,
188 .name = "Hue",
Mijhail Moreyrab12ab3f2011-10-10 11:09:53 -0300189 .minimum = -127,
190 .maximum = 128,
Steven Tothe47f30b2008-01-10 04:25:59 -0300191 .step = 1,
Mijhail Moreyrab12ab3f2011-10-10 11:09:53 -0300192 .default_value = 0x0,
Steven Tothe47f30b2008-01-10 04:25:59 -0300193 .type = V4L2_CTRL_TYPE_INTEGER,
194 },
195 .off = 128,
196 .reg = CHROMA_CTRL,
197 .mask = 0xff0000,
198 .shift = 16,
199 }, {
200 /* strictly, this only describes only U saturation.
201 * V saturation is handled specially through code.
202 */
203 .v = {
204 .id = V4L2_CID_SATURATION,
205 .name = "Saturation",
206 .minimum = 0,
Mijhail Moreyrab12ab3f2011-10-10 11:09:53 -0300207 .maximum = 0x7f,
Steven Tothe47f30b2008-01-10 04:25:59 -0300208 .step = 1,
Mijhail Moreyrab12ab3f2011-10-10 11:09:53 -0300209 .default_value = 0x3f,
Steven Tothe47f30b2008-01-10 04:25:59 -0300210 .type = V4L2_CTRL_TYPE_INTEGER,
211 },
212 .off = 0,
213 .reg = CHROMA_CTRL,
214 .mask = 0x00ff,
215 .shift = 0,
216 }, {
217 /* --- audio --- */
218 .v = {
219 .id = V4L2_CID_AUDIO_MUTE,
220 .name = "Mute",
221 .minimum = 0,
222 .maximum = 1,
223 .default_value = 1,
224 .type = V4L2_CTRL_TYPE_BOOLEAN,
225 },
226 .reg = PATH1_CTL1,
227 .mask = (0x1f << 24),
228 .shift = 24,
229 }, {
230 .v = {
231 .id = V4L2_CID_AUDIO_VOLUME,
232 .name = "Volume",
233 .minimum = 0,
234 .maximum = 0x3f,
235 .step = 1,
236 .default_value = 0x3f,
237 .type = V4L2_CTRL_TYPE_INTEGER,
238 },
239 .reg = PATH1_VOL_CTL,
240 .mask = 0xff,
241 .shift = 0,
242 }
243};
244static const int CX23885_CTLS = ARRAY_SIZE(cx23885_ctls);
245
Hans Verkuil2ba58892009-02-13 10:57:48 -0300246/* Must be sorted from low to high control ID! */
Hans Verkuild45b9b82008-09-04 03:33:43 -0300247static const u32 cx23885_user_ctrls[] = {
Steven Tothe47f30b2008-01-10 04:25:59 -0300248 V4L2_CID_USER_CLASS,
249 V4L2_CID_BRIGHTNESS,
250 V4L2_CID_CONTRAST,
251 V4L2_CID_SATURATION,
252 V4L2_CID_HUE,
253 V4L2_CID_AUDIO_VOLUME,
254 V4L2_CID_AUDIO_MUTE,
255 0
256};
Steven Tothe47f30b2008-01-10 04:25:59 -0300257
258static const u32 *ctrl_classes[] = {
259 cx23885_user_ctrls,
260 NULL
261};
262
Steven Toth79776c82011-10-10 11:09:54 -0300263void cx23885_video_wakeup(struct cx23885_dev *dev,
264 struct cx23885_dmaqueue *q, u32 count)
Steven Tothe47f30b2008-01-10 04:25:59 -0300265{
266 struct cx23885_buffer *buf;
267 int bc;
268
269 for (bc = 0;; bc++) {
270 if (list_empty(&q->active))
271 break;
272 buf = list_entry(q->active.next,
273 struct cx23885_buffer, vb.queue);
Steven Totha19602f22008-01-10 11:43:18 -0300274
Steven Tothe47f30b2008-01-10 04:25:59 -0300275 /* count comes from the hw and is is 16bit wide --
276 * this trick handles wrap-arounds correctly for
277 * up to 32767 buffers in flight... */
278 if ((s16) (count - buf->count) < 0)
279 break;
Steven Totha19602f22008-01-10 11:43:18 -0300280
Steven Tothe47f30b2008-01-10 04:25:59 -0300281 do_gettimeofday(&buf->vb.ts);
282 dprintk(2, "[%p/%d] wakeup reg=%d buf=%d\n", buf, buf->vb.i,
283 count, buf->count);
284 buf->vb.state = VIDEOBUF_DONE;
285 list_del(&buf->vb.queue);
286 wake_up(&buf->vb.done);
287 }
Steven Toth9c8ced52008-10-16 20:18:44 -0300288 if (list_empty(&q->active))
Steven Tothe47f30b2008-01-10 04:25:59 -0300289 del_timer(&q->timeout);
Steven Toth9c8ced52008-10-16 20:18:44 -0300290 else
Steven Tothe47f30b2008-01-10 04:25:59 -0300291 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
Steven Tothe47f30b2008-01-10 04:25:59 -0300292 if (bc != 1)
Steven Toth21a78092008-01-10 04:38:59 -0300293 printk(KERN_ERR "%s: %d buffers handled (should be 1)\n",
Harvey Harrison22b4e642008-04-08 23:20:00 -0300294 __func__, bc);
Steven Tothe47f30b2008-01-10 04:25:59 -0300295}
296
Hans Verkuild45b9b82008-09-04 03:33:43 -0300297static int cx23885_set_tvnorm(struct cx23885_dev *dev, v4l2_std_id norm)
Steven Tothe47f30b2008-01-10 04:25:59 -0300298{
299 dprintk(1, "%s(norm = 0x%08x) name: [%s]\n",
Harvey Harrison22b4e642008-04-08 23:20:00 -0300300 __func__,
Steven Tothe47f30b2008-01-10 04:25:59 -0300301 (unsigned int)norm,
302 v4l2_norm_to_name(norm));
303
304 dev->tvnorm = norm;
305
Hans Verkuilf41737e2009-04-01 03:52:39 -0300306 call_all(dev, core, s_std, norm);
Steven Tothe47f30b2008-01-10 04:25:59 -0300307
308 return 0;
309}
310
Hans Verkuild45b9b82008-09-04 03:33:43 -0300311static struct video_device *cx23885_vdev_init(struct cx23885_dev *dev,
Steven Tothe47f30b2008-01-10 04:25:59 -0300312 struct pci_dev *pci,
313 struct video_device *template,
314 char *type)
315{
316 struct video_device *vfd;
Harvey Harrison22b4e642008-04-08 23:20:00 -0300317 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300318
319 vfd = video_device_alloc();
320 if (NULL == vfd)
321 return NULL;
322 *vfd = *template;
Hans Verkuilc0714f62009-03-13 08:02:43 -0300323 vfd->v4l2_dev = &dev->v4l2_dev;
Steven Tothe47f30b2008-01-10 04:25:59 -0300324 vfd->release = video_device_release;
325 snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)",
326 dev->name, type, cx23885_boards[dev->board].name);
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200327 video_set_drvdata(vfd, dev);
Steven Tothe47f30b2008-01-10 04:25:59 -0300328 return vfd;
329}
330
Hans Verkuild45b9b82008-09-04 03:33:43 -0300331static int cx23885_ctrl_query(struct v4l2_queryctrl *qctrl)
Steven Tothe47f30b2008-01-10 04:25:59 -0300332{
333 int i;
334
335 if (qctrl->id < V4L2_CID_BASE ||
336 qctrl->id >= V4L2_CID_LASTP1)
337 return -EINVAL;
338 for (i = 0; i < CX23885_CTLS; i++)
339 if (cx23885_ctls[i].v.id == qctrl->id)
340 break;
341 if (i == CX23885_CTLS) {
342 *qctrl = no_ctl;
343 return 0;
344 }
345 *qctrl = cx23885_ctls[i].v;
346 return 0;
347}
Steven Tothe47f30b2008-01-10 04:25:59 -0300348
349/* ------------------------------------------------------------------- */
350/* resource management */
351
352static int res_get(struct cx23885_dev *dev, struct cx23885_fh *fh,
353 unsigned int bit)
354{
Harvey Harrison22b4e642008-04-08 23:20:00 -0300355 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300356 if (fh->resources & bit)
357 /* have it already allocated */
358 return 1;
359
360 /* is it free? */
361 mutex_lock(&dev->lock);
362 if (dev->resources & bit) {
363 /* no, someone else uses it */
364 mutex_unlock(&dev->lock);
365 return 0;
366 }
367 /* it's free, grab it */
368 fh->resources |= bit;
369 dev->resources |= bit;
370 dprintk(1, "res: get %d\n", bit);
371 mutex_unlock(&dev->lock);
372 return 1;
373}
374
375static int res_check(struct cx23885_fh *fh, unsigned int bit)
376{
Steven Toth9c8ced52008-10-16 20:18:44 -0300377 return fh->resources & bit;
Steven Tothe47f30b2008-01-10 04:25:59 -0300378}
379
380static int res_locked(struct cx23885_dev *dev, unsigned int bit)
381{
Steven Toth9c8ced52008-10-16 20:18:44 -0300382 return dev->resources & bit;
Steven Tothe47f30b2008-01-10 04:25:59 -0300383}
384
385static void res_free(struct cx23885_dev *dev, struct cx23885_fh *fh,
386 unsigned int bits)
387{
388 BUG_ON((fh->resources & bits) != bits);
Harvey Harrison22b4e642008-04-08 23:20:00 -0300389 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300390
391 mutex_lock(&dev->lock);
392 fh->resources &= ~bits;
393 dev->resources &= ~bits;
394 dprintk(1, "res: put %d\n", bits);
395 mutex_unlock(&dev->lock);
396}
397
Hans Verkuild45b9b82008-09-04 03:33:43 -0300398static int cx23885_video_mux(struct cx23885_dev *dev, unsigned int input)
Steven Tothe47f30b2008-01-10 04:25:59 -0300399{
Steven Tothe47f30b2008-01-10 04:25:59 -0300400 dprintk(1, "%s() video_mux: %d [vmux=%d, gpio=0x%x,0x%x,0x%x,0x%x]\n",
Harvey Harrison22b4e642008-04-08 23:20:00 -0300401 __func__,
Steven Tothe47f30b2008-01-10 04:25:59 -0300402 input, INPUT(input)->vmux,
403 INPUT(input)->gpio0, INPUT(input)->gpio1,
404 INPUT(input)->gpio2, INPUT(input)->gpio3);
405 dev->input = input;
406
David T.L. Wong6f0d8c02009-10-21 13:15:30 -0300407 if (dev->board == CX23885_BOARD_MYGICA_X8506 ||
408 dev->board == CX23885_BOARD_MAGICPRO_PROHDTVE2) {
409 /* Select Analog TV */
410 if (INPUT(input)->type == CX23885_VMUX_TELEVISION)
411 cx23885_gpio_clear(dev, GPIO_0);
412 }
413
Steven Tothe47f30b2008-01-10 04:25:59 -0300414 /* Tell the internal A/V decoder */
Hans Verkuil5325b422009-04-02 11:26:22 -0300415 v4l2_subdev_call(dev->sd_cx25840, video, s_routing,
416 INPUT(input)->vmux, 0, 0);
Steven Tothe47f30b2008-01-10 04:25:59 -0300417
418 return 0;
419}
Steven Tothe47f30b2008-01-10 04:25:59 -0300420
421/* ------------------------------------------------------------------ */
Hans Verkuild45b9b82008-09-04 03:33:43 -0300422static int cx23885_set_scale(struct cx23885_dev *dev, unsigned int width,
Steven Tothe47f30b2008-01-10 04:25:59 -0300423 unsigned int height, enum v4l2_field field)
424{
Harvey Harrison22b4e642008-04-08 23:20:00 -0300425 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300426 return 0;
427}
428
429static int cx23885_start_video_dma(struct cx23885_dev *dev,
430 struct cx23885_dmaqueue *q,
431 struct cx23885_buffer *buf)
432{
Harvey Harrison22b4e642008-04-08 23:20:00 -0300433 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300434
435 /* setup fifo + format */
436 cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH01],
437 buf->bpl, buf->risc.dma);
438 cx23885_set_scale(dev, buf->vb.width, buf->vb.height, buf->vb.field);
439
440 /* reset counter */
441 cx_write(VID_A_GPCNT_CTL, 3);
442 q->count = 1;
443
444 /* enable irq */
Andy Wallsdbe83a32010-07-19 01:19:43 -0300445 cx23885_irq_add_enable(dev, 0x01);
Steven Tothe47f30b2008-01-10 04:25:59 -0300446 cx_set(VID_A_INT_MSK, 0x000011);
447
448 /* start dma */
449 cx_set(DEV_CNTRL2, (1<<5));
450 cx_set(VID_A_DMA_CTL, 0x11); /* FIFO and RISC enable */
451
452 return 0;
453}
454
Steven Tothe47f30b2008-01-10 04:25:59 -0300455
456static int cx23885_restart_video_queue(struct cx23885_dev *dev,
457 struct cx23885_dmaqueue *q)
458{
459 struct cx23885_buffer *buf, *prev;
460 struct list_head *item;
Harvey Harrison22b4e642008-04-08 23:20:00 -0300461 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300462
463 if (!list_empty(&q->active)) {
464 buf = list_entry(q->active.next, struct cx23885_buffer,
465 vb.queue);
466 dprintk(2, "restart_queue [%p/%d]: restart dma\n",
467 buf, buf->vb.i);
468 cx23885_start_video_dma(dev, q, buf);
469 list_for_each(item, &q->active) {
470 buf = list_entry(item, struct cx23885_buffer,
471 vb.queue);
472 buf->count = q->count++;
473 }
474 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
475 return 0;
476 }
477
478 prev = NULL;
479 for (;;) {
480 if (list_empty(&q->queued))
481 return 0;
482 buf = list_entry(q->queued.next, struct cx23885_buffer,
483 vb.queue);
484 if (NULL == prev) {
485 list_move_tail(&buf->vb.queue, &q->active);
486 cx23885_start_video_dma(dev, q, buf);
487 buf->vb.state = VIDEOBUF_ACTIVE;
488 buf->count = q->count++;
489 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
490 dprintk(2, "[%p/%d] restart_queue - first active\n",
491 buf, buf->vb.i);
492
493 } else if (prev->vb.width == buf->vb.width &&
494 prev->vb.height == buf->vb.height &&
495 prev->fmt == buf->fmt) {
496 list_move_tail(&buf->vb.queue, &q->active);
497 buf->vb.state = VIDEOBUF_ACTIVE;
498 buf->count = q->count++;
499 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
500 prev->risc.jmp[2] = cpu_to_le32(0); /* Bits 63 - 32 */
501 dprintk(2, "[%p/%d] restart_queue - move to active\n",
502 buf, buf->vb.i);
503 } else {
504 return 0;
505 }
506 prev = buf;
507 }
508}
509
510static int buffer_setup(struct videobuf_queue *q, unsigned int *count,
511 unsigned int *size)
512{
513 struct cx23885_fh *fh = q->priv_data;
514
515 *size = fh->fmt->depth*fh->width*fh->height >> 3;
516 if (0 == *count)
517 *count = 32;
Andreas Bombedab7e312010-03-21 16:02:45 -0300518 if (*size * *count > vid_limit * 1024 * 1024)
519 *count = (vid_limit * 1024 * 1024) / *size;
Steven Tothe47f30b2008-01-10 04:25:59 -0300520 return 0;
521}
522
523static int buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
524 enum v4l2_field field)
525{
526 struct cx23885_fh *fh = q->priv_data;
527 struct cx23885_dev *dev = fh->dev;
528 struct cx23885_buffer *buf =
529 container_of(vb, struct cx23885_buffer, vb);
530 int rc, init_buffer = 0;
531 u32 line0_offset, line1_offset;
532 struct videobuf_dmabuf *dma = videobuf_to_dma(&buf->vb);
533
534 BUG_ON(NULL == fh->fmt);
535 if (fh->width < 48 || fh->width > norm_maxw(dev->tvnorm) ||
536 fh->height < 32 || fh->height > norm_maxh(dev->tvnorm))
537 return -EINVAL;
538 buf->vb.size = (fh->width * fh->height * fh->fmt->depth) >> 3;
539 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
540 return -EINVAL;
541
542 if (buf->fmt != fh->fmt ||
543 buf->vb.width != fh->width ||
544 buf->vb.height != fh->height ||
545 buf->vb.field != field) {
546 buf->fmt = fh->fmt;
547 buf->vb.width = fh->width;
548 buf->vb.height = fh->height;
549 buf->vb.field = field;
550 init_buffer = 1;
551 }
552
553 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
554 init_buffer = 1;
555 rc = videobuf_iolock(q, &buf->vb, NULL);
556 if (0 != rc)
557 goto fail;
558 }
559
560 if (init_buffer) {
561 buf->bpl = buf->vb.width * buf->fmt->depth >> 3;
562 switch (buf->vb.field) {
563 case V4L2_FIELD_TOP:
564 cx23885_risc_buffer(dev->pci, &buf->risc,
565 dma->sglist, 0, UNSET,
566 buf->bpl, 0, buf->vb.height);
567 break;
568 case V4L2_FIELD_BOTTOM:
569 cx23885_risc_buffer(dev->pci, &buf->risc,
570 dma->sglist, UNSET, 0,
571 buf->bpl, 0, buf->vb.height);
572 break;
573 case V4L2_FIELD_INTERLACED:
574 if (dev->tvnorm & V4L2_STD_NTSC) {
575 /* cx25840 transmits NTSC bottom field first */
576 dprintk(1, "%s() Creating NTSC risc\n",
Harvey Harrison22b4e642008-04-08 23:20:00 -0300577 __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300578 line0_offset = buf->bpl;
579 line1_offset = 0;
580 } else {
581 /* All other formats are top field first */
582 dprintk(1, "%s() Creating PAL/SECAM risc\n",
Harvey Harrison22b4e642008-04-08 23:20:00 -0300583 __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -0300584 line0_offset = 0;
585 line1_offset = buf->bpl;
586 }
587 cx23885_risc_buffer(dev->pci, &buf->risc,
588 dma->sglist, line0_offset,
589 line1_offset,
590 buf->bpl, buf->bpl,
591 buf->vb.height >> 1);
592 break;
593 case V4L2_FIELD_SEQ_TB:
594 cx23885_risc_buffer(dev->pci, &buf->risc,
595 dma->sglist,
596 0, buf->bpl * (buf->vb.height >> 1),
597 buf->bpl, 0,
598 buf->vb.height >> 1);
599 break;
600 case V4L2_FIELD_SEQ_BT:
601 cx23885_risc_buffer(dev->pci, &buf->risc,
602 dma->sglist,
603 buf->bpl * (buf->vb.height >> 1), 0,
604 buf->bpl, 0,
605 buf->vb.height >> 1);
606 break;
607 default:
608 BUG();
609 }
610 }
611 dprintk(2, "[%p/%d] buffer_prep - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
612 buf, buf->vb.i,
613 fh->width, fh->height, fh->fmt->depth, fh->fmt->name,
614 (unsigned long)buf->risc.dma);
615
616 buf->vb.state = VIDEOBUF_PREPARED;
617 return 0;
618
619 fail:
620 cx23885_free_buffer(q, buf);
621 return rc;
622}
623
624static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
625{
626 struct cx23885_buffer *buf = container_of(vb,
627 struct cx23885_buffer, vb);
628 struct cx23885_buffer *prev;
629 struct cx23885_fh *fh = vq->priv_data;
630 struct cx23885_dev *dev = fh->dev;
631 struct cx23885_dmaqueue *q = &dev->vidq;
632
633 /* add jump to stopper */
634 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
635 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
636 buf->risc.jmp[2] = cpu_to_le32(0); /* bits 63-32 */
637
638 if (!list_empty(&q->queued)) {
639 list_add_tail(&buf->vb.queue, &q->queued);
640 buf->vb.state = VIDEOBUF_QUEUED;
641 dprintk(2, "[%p/%d] buffer_queue - append to queued\n",
642 buf, buf->vb.i);
643
644 } else if (list_empty(&q->active)) {
645 list_add_tail(&buf->vb.queue, &q->active);
646 cx23885_start_video_dma(dev, q, buf);
647 buf->vb.state = VIDEOBUF_ACTIVE;
648 buf->count = q->count++;
649 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
650 dprintk(2, "[%p/%d] buffer_queue - first active\n",
651 buf, buf->vb.i);
652
653 } else {
654 prev = list_entry(q->active.prev, struct cx23885_buffer,
655 vb.queue);
656 if (prev->vb.width == buf->vb.width &&
657 prev->vb.height == buf->vb.height &&
658 prev->fmt == buf->fmt) {
659 list_add_tail(&buf->vb.queue, &q->active);
660 buf->vb.state = VIDEOBUF_ACTIVE;
661 buf->count = q->count++;
662 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
663 /* 64 bit bits 63-32 */
664 prev->risc.jmp[2] = cpu_to_le32(0);
665 dprintk(2, "[%p/%d] buffer_queue - append to active\n",
666 buf, buf->vb.i);
667
668 } else {
669 list_add_tail(&buf->vb.queue, &q->queued);
670 buf->vb.state = VIDEOBUF_QUEUED;
671 dprintk(2, "[%p/%d] buffer_queue - first queued\n",
672 buf, buf->vb.i);
673 }
674 }
675}
676
677static void buffer_release(struct videobuf_queue *q,
678 struct videobuf_buffer *vb)
679{
680 struct cx23885_buffer *buf = container_of(vb,
681 struct cx23885_buffer, vb);
682
683 cx23885_free_buffer(q, buf);
684}
685
686static struct videobuf_queue_ops cx23885_video_qops = {
687 .buf_setup = buffer_setup,
688 .buf_prepare = buffer_prepare,
689 .buf_queue = buffer_queue,
690 .buf_release = buffer_release,
691};
692
693static struct videobuf_queue *get_queue(struct cx23885_fh *fh)
694{
695 switch (fh->type) {
696 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
697 return &fh->vidq;
698 case V4L2_BUF_TYPE_VBI_CAPTURE:
699 return &fh->vbiq;
700 default:
701 BUG();
702 return NULL;
703 }
704}
705
706static int get_resource(struct cx23885_fh *fh)
707{
708 switch (fh->type) {
709 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
710 return RESOURCE_VIDEO;
711 case V4L2_BUF_TYPE_VBI_CAPTURE:
712 return RESOURCE_VBI;
713 default:
714 BUG();
715 return 0;
716 }
717}
718
Hans Verkuilbec43662008-12-30 06:58:20 -0300719static int video_open(struct file *file)
Steven Tothe47f30b2008-01-10 04:25:59 -0300720{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200721 struct video_device *vdev = video_devdata(file);
722 struct cx23885_dev *dev = video_drvdata(file);
Steven Tothe47f30b2008-01-10 04:25:59 -0300723 struct cx23885_fh *fh;
Steven Tothe47f30b2008-01-10 04:25:59 -0300724 enum v4l2_buf_type type = 0;
725 int radio = 0;
726
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200727 switch (vdev->vfl_type) {
728 case VFL_TYPE_GRABBER:
729 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
730 break;
731 case VFL_TYPE_VBI:
732 type = V4L2_BUF_TYPE_VBI_CAPTURE;
733 break;
734 case VFL_TYPE_RADIO:
735 radio = 1;
736 break;
Hans Verkuild56dc612008-07-30 08:43:36 -0300737 }
Steven Tothe47f30b2008-01-10 04:25:59 -0300738
Laurent Pinchart50462eb2009-12-10 11:47:13 -0200739 dprintk(1, "open dev=%s radio=%d type=%s\n",
740 video_device_node_name(vdev), radio, v4l2_type_names[type]);
Steven Tothe47f30b2008-01-10 04:25:59 -0300741
742 /* allocate + initialize per filehandle data */
743 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200744 if (NULL == fh)
Steven Tothe47f30b2008-01-10 04:25:59 -0300745 return -ENOMEM;
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200746
Steven Tothe47f30b2008-01-10 04:25:59 -0300747 file->private_data = fh;
748 fh->dev = dev;
749 fh->radio = radio;
750 fh->type = type;
751 fh->width = 320;
752 fh->height = 240;
753 fh->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
754
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300755 videobuf_queue_sg_init(&fh->vidq, &cx23885_video_qops,
756 &dev->pci->dev, &dev->slock,
Steven Tothe47f30b2008-01-10 04:25:59 -0300757 V4L2_BUF_TYPE_VIDEO_CAPTURE,
758 V4L2_FIELD_INTERLACED,
759 sizeof(struct cx23885_buffer),
Hans Verkuil08bff032010-09-20 17:39:46 -0300760 fh, NULL);
Steven Tothe47f30b2008-01-10 04:25:59 -0300761
Steven Toth79776c82011-10-10 11:09:54 -0300762 videobuf_queue_sg_init(&fh->vbiq, &cx23885_vbi_qops,
763 &dev->pci->dev, &dev->slock,
764 V4L2_BUF_TYPE_VBI_CAPTURE,
765 V4L2_FIELD_SEQ_TB,
766 sizeof(struct cx23885_buffer),
767 fh, NULL);
768
769
Steven Tothe47f30b2008-01-10 04:25:59 -0300770 dprintk(1, "post videobuf_queue_init()\n");
771
Steven Tothe47f30b2008-01-10 04:25:59 -0300772 return 0;
773}
774
775static ssize_t video_read(struct file *file, char __user *data,
776 size_t count, loff_t *ppos)
777{
778 struct cx23885_fh *fh = file->private_data;
779
780 switch (fh->type) {
781 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
782 if (res_locked(fh->dev, RESOURCE_VIDEO))
783 return -EBUSY;
784 return videobuf_read_one(&fh->vidq, data, count, ppos,
785 file->f_flags & O_NONBLOCK);
786 case V4L2_BUF_TYPE_VBI_CAPTURE:
787 if (!res_get(fh->dev, fh, RESOURCE_VBI))
788 return -EBUSY;
789 return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1,
790 file->f_flags & O_NONBLOCK);
791 default:
792 BUG();
793 return 0;
794 }
795}
796
797static unsigned int video_poll(struct file *file,
798 struct poll_table_struct *wait)
799{
800 struct cx23885_fh *fh = file->private_data;
801 struct cx23885_buffer *buf;
Figo.zhang9fd64182009-06-16 13:31:29 -0300802 unsigned int rc = POLLERR;
Steven Tothe47f30b2008-01-10 04:25:59 -0300803
804 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
805 if (!res_get(fh->dev, fh, RESOURCE_VBI))
806 return POLLERR;
807 return videobuf_poll_stream(file, &fh->vbiq, wait);
808 }
809
Figo.zhang9fd64182009-06-16 13:31:29 -0300810 mutex_lock(&fh->vidq.vb_lock);
Steven Tothe47f30b2008-01-10 04:25:59 -0300811 if (res_check(fh, RESOURCE_VIDEO)) {
812 /* streaming capture */
813 if (list_empty(&fh->vidq.stream))
Figo.zhang9fd64182009-06-16 13:31:29 -0300814 goto done;
Steven Tothe47f30b2008-01-10 04:25:59 -0300815 buf = list_entry(fh->vidq.stream.next,
816 struct cx23885_buffer, vb.stream);
817 } else {
818 /* read() capture */
819 buf = (struct cx23885_buffer *)fh->vidq.read_buf;
820 if (NULL == buf)
Figo.zhang9fd64182009-06-16 13:31:29 -0300821 goto done;
Steven Tothe47f30b2008-01-10 04:25:59 -0300822 }
823 poll_wait(file, &buf->vb.done, wait);
824 if (buf->vb.state == VIDEOBUF_DONE ||
825 buf->vb.state == VIDEOBUF_ERROR)
Figo.zhang9fd64182009-06-16 13:31:29 -0300826 rc = POLLIN|POLLRDNORM;
827 else
828 rc = 0;
829done:
830 mutex_unlock(&fh->vidq.vb_lock);
831 return rc;
Steven Tothe47f30b2008-01-10 04:25:59 -0300832}
833
Hans Verkuilbec43662008-12-30 06:58:20 -0300834static int video_release(struct file *file)
Steven Tothe47f30b2008-01-10 04:25:59 -0300835{
836 struct cx23885_fh *fh = file->private_data;
837 struct cx23885_dev *dev = fh->dev;
838
839 /* turn off overlay */
840 if (res_check(fh, RESOURCE_OVERLAY)) {
841 /* FIXME */
842 res_free(dev, fh, RESOURCE_OVERLAY);
843 }
844
845 /* stop video capture */
846 if (res_check(fh, RESOURCE_VIDEO)) {
847 videobuf_queue_cancel(&fh->vidq);
848 res_free(dev, fh, RESOURCE_VIDEO);
849 }
850 if (fh->vidq.read_buf) {
851 buffer_release(&fh->vidq, fh->vidq.read_buf);
852 kfree(fh->vidq.read_buf);
853 }
854
855 /* stop vbi capture */
856 if (res_check(fh, RESOURCE_VBI)) {
857 if (fh->vbiq.streaming)
858 videobuf_streamoff(&fh->vbiq);
859 if (fh->vbiq.reading)
860 videobuf_read_stop(&fh->vbiq);
861 res_free(dev, fh, RESOURCE_VBI);
862 }
863
864 videobuf_mmap_free(&fh->vidq);
865 file->private_data = NULL;
866 kfree(fh);
867
Steven Totha19602f22008-01-10 11:43:18 -0300868 /* We are not putting the tuner to sleep here on exit, because
869 * we want to use the mpeg encoder in another session to capture
870 * tuner video. Closing this will result in no video to the encoder.
871 */
Steven Tothe47f30b2008-01-10 04:25:59 -0300872
873 return 0;
874}
875
876static int video_mmap(struct file *file, struct vm_area_struct *vma)
877{
878 struct cx23885_fh *fh = file->private_data;
879
880 return videobuf_mmap_mapper(get_queue(fh), vma);
881}
882
883/* ------------------------------------------------------------------ */
884/* VIDEO CTRL IOCTLS */
885
Steven Toth9c8ced52008-10-16 20:18:44 -0300886static int cx23885_get_control(struct cx23885_dev *dev,
887 struct v4l2_control *ctl)
Steven Tothe47f30b2008-01-10 04:25:59 -0300888{
Harvey Harrison22b4e642008-04-08 23:20:00 -0300889 dprintk(1, "%s() calling cx25840(VIDIOC_G_CTRL)\n", __func__);
Hans Verkuil0d5a19f2009-03-29 06:53:29 -0300890 call_all(dev, core, g_ctrl, ctl);
Steven Tothe47f30b2008-01-10 04:25:59 -0300891 return 0;
892}
Steven Tothe47f30b2008-01-10 04:25:59 -0300893
Steven Toth9c8ced52008-10-16 20:18:44 -0300894static int cx23885_set_control(struct cx23885_dev *dev,
895 struct v4l2_control *ctl)
Steven Tothe47f30b2008-01-10 04:25:59 -0300896{
Mijhail Moreyra97ce5672011-10-10 11:09:53 -0300897 dprintk(1, "%s() calling cx25840(VIDIOC_S_CTRL)\n", __func__);
898 call_all(dev, core, s_ctrl, ctl);
899
Steven Tothe47f30b2008-01-10 04:25:59 -0300900 return 0;
901}
Steven Tothe47f30b2008-01-10 04:25:59 -0300902
903static void init_controls(struct cx23885_dev *dev)
904{
905 struct v4l2_control ctrl;
906 int i;
907
908 for (i = 0; i < CX23885_CTLS; i++) {
909 ctrl.id = cx23885_ctls[i].v.id;
910 ctrl.value = cx23885_ctls[i].v.default_value;
911
912 cx23885_set_control(dev, &ctrl);
913 }
914}
915
916/* ------------------------------------------------------------------ */
917/* VIDEO IOCTLS */
918
Hans Verkuil78b526a2008-05-28 12:16:41 -0300919static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -0300920 struct v4l2_format *f)
921{
922 struct cx23885_fh *fh = priv;
923
924 f->fmt.pix.width = fh->width;
925 f->fmt.pix.height = fh->height;
926 f->fmt.pix.field = fh->vidq.field;
927 f->fmt.pix.pixelformat = fh->fmt->fourcc;
928 f->fmt.pix.bytesperline =
929 (f->fmt.pix.width * fh->fmt->depth) >> 3;
930 f->fmt.pix.sizeimage =
931 f->fmt.pix.height * f->fmt.pix.bytesperline;
932
933 return 0;
934}
935
Hans Verkuil78b526a2008-05-28 12:16:41 -0300936static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -0300937 struct v4l2_format *f)
938{
939 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
940 struct cx23885_fmt *fmt;
941 enum v4l2_field field;
942 unsigned int maxw, maxh;
943
944 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
945 if (NULL == fmt)
946 return -EINVAL;
947
948 field = f->fmt.pix.field;
949 maxw = norm_maxw(dev->tvnorm);
950 maxh = norm_maxh(dev->tvnorm);
951
952 if (V4L2_FIELD_ANY == field) {
953 field = (f->fmt.pix.height > maxh/2)
954 ? V4L2_FIELD_INTERLACED
955 : V4L2_FIELD_BOTTOM;
956 }
957
958 switch (field) {
959 case V4L2_FIELD_TOP:
960 case V4L2_FIELD_BOTTOM:
961 maxh = maxh / 2;
962 break;
963 case V4L2_FIELD_INTERLACED:
964 break;
965 default:
966 return -EINVAL;
967 }
968
969 f->fmt.pix.field = field;
Trent Piepho2449afc2009-05-30 21:45:46 -0300970 v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2,
971 &f->fmt.pix.height, 32, maxh, 0, 0);
Steven Tothe47f30b2008-01-10 04:25:59 -0300972 f->fmt.pix.bytesperline =
973 (f->fmt.pix.width * fmt->depth) >> 3;
974 f->fmt.pix.sizeimage =
975 f->fmt.pix.height * f->fmt.pix.bytesperline;
976
977 return 0;
978}
979
Hans Verkuil78b526a2008-05-28 12:16:41 -0300980static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -0300981 struct v4l2_format *f)
982{
983 struct cx23885_fh *fh = priv;
984 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
Hans Verkuilcc991132010-05-09 10:09:28 -0300985 struct v4l2_mbus_framefmt mbus_fmt;
Steven Tothe47f30b2008-01-10 04:25:59 -0300986 int err;
987
Harvey Harrison22b4e642008-04-08 23:20:00 -0300988 dprintk(2, "%s()\n", __func__);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300989 err = vidioc_try_fmt_vid_cap(file, priv, f);
Steven Tothe47f30b2008-01-10 04:25:59 -0300990
991 if (0 != err)
992 return err;
993 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
994 fh->width = f->fmt.pix.width;
995 fh->height = f->fmt.pix.height;
996 fh->vidq.field = f->fmt.pix.field;
Harvey Harrison22b4e642008-04-08 23:20:00 -0300997 dprintk(2, "%s() width=%d height=%d field=%d\n", __func__,
Steven Tothe47f30b2008-01-10 04:25:59 -0300998 fh->width, fh->height, fh->vidq.field);
Hans Verkuilcc991132010-05-09 10:09:28 -0300999 v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED);
1000 call_all(dev, video, s_mbus_fmt, &mbus_fmt);
1001 v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
Steven Tothe47f30b2008-01-10 04:25:59 -03001002 return 0;
1003}
1004
1005static int vidioc_querycap(struct file *file, void *priv,
1006 struct v4l2_capability *cap)
1007{
1008 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1009
1010 strcpy(cap->driver, "cx23885");
1011 strlcpy(cap->card, cx23885_boards[dev->board].name,
1012 sizeof(cap->card));
1013 sprintf(cap->bus_info, "PCIe:%s", pci_name(dev->pci));
Steven Tothe47f30b2008-01-10 04:25:59 -03001014 cap->capabilities =
1015 V4L2_CAP_VIDEO_CAPTURE |
1016 V4L2_CAP_READWRITE |
1017 V4L2_CAP_STREAMING |
1018 V4L2_CAP_VBI_CAPTURE;
1019 if (UNSET != dev->tuner_type)
1020 cap->capabilities |= V4L2_CAP_TUNER;
1021 return 0;
1022}
1023
Hans Verkuil78b526a2008-05-28 12:16:41 -03001024static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -03001025 struct v4l2_fmtdesc *f)
1026{
1027 if (unlikely(f->index >= ARRAY_SIZE(formats)))
1028 return -EINVAL;
1029
1030 strlcpy(f->description, formats[f->index].name,
1031 sizeof(f->description));
1032 f->pixelformat = formats[f->index].fourcc;
1033
1034 return 0;
1035}
1036
Steven Tothe47f30b2008-01-10 04:25:59 -03001037static int vidioc_reqbufs(struct file *file, void *priv,
1038 struct v4l2_requestbuffers *p)
1039{
1040 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001041 return videobuf_reqbufs(get_queue(fh), p);
Steven Tothe47f30b2008-01-10 04:25:59 -03001042}
1043
1044static int vidioc_querybuf(struct file *file, void *priv,
1045 struct v4l2_buffer *p)
1046{
1047 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001048 return videobuf_querybuf(get_queue(fh), p);
Steven Tothe47f30b2008-01-10 04:25:59 -03001049}
1050
1051static int vidioc_qbuf(struct file *file, void *priv,
1052 struct v4l2_buffer *p)
1053{
1054 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001055 return videobuf_qbuf(get_queue(fh), p);
Steven Tothe47f30b2008-01-10 04:25:59 -03001056}
1057
1058static int vidioc_dqbuf(struct file *file, void *priv,
1059 struct v4l2_buffer *p)
1060{
1061 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001062 return videobuf_dqbuf(get_queue(fh), p,
1063 file->f_flags & O_NONBLOCK);
Steven Tothe47f30b2008-01-10 04:25:59 -03001064}
1065
1066static int vidioc_streamon(struct file *file, void *priv,
1067 enum v4l2_buf_type i)
1068{
1069 struct cx23885_fh *fh = priv;
1070 struct cx23885_dev *dev = fh->dev;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001071 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001072
Steven Toth5ab27e62011-10-10 11:09:54 -03001073 if ((fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) &&
1074 (fh->type != V4L2_BUF_TYPE_VBI_CAPTURE))
Steven Tothe47f30b2008-01-10 04:25:59 -03001075 return -EINVAL;
1076 if (unlikely(i != fh->type))
1077 return -EINVAL;
1078
1079 if (unlikely(!res_get(dev, fh, get_resource(fh))))
1080 return -EBUSY;
1081 return videobuf_streamon(get_queue(fh));
1082}
1083
1084static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1085{
1086 struct cx23885_fh *fh = priv;
1087 struct cx23885_dev *dev = fh->dev;
1088 int err, res;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001089 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001090
Steven Toth5ab27e62011-10-10 11:09:54 -03001091 if ((fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) &&
1092 (fh->type != V4L2_BUF_TYPE_VBI_CAPTURE))
Steven Tothe47f30b2008-01-10 04:25:59 -03001093 return -EINVAL;
1094 if (i != fh->type)
1095 return -EINVAL;
1096
1097 res = get_resource(fh);
1098 err = videobuf_streamoff(get_queue(fh));
1099 if (err < 0)
1100 return err;
1101 res_free(dev, fh, res);
1102 return 0;
1103}
1104
1105static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *tvnorms)
1106{
1107 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001108 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001109
1110 mutex_lock(&dev->lock);
1111 cx23885_set_tvnorm(dev, *tvnorms);
1112 mutex_unlock(&dev->lock);
1113
1114 return 0;
1115}
1116
Hans Verkuild45b9b82008-09-04 03:33:43 -03001117static int cx23885_enum_input(struct cx23885_dev *dev, struct v4l2_input *i)
Steven Tothe47f30b2008-01-10 04:25:59 -03001118{
1119 static const char *iname[] = {
1120 [CX23885_VMUX_COMPOSITE1] = "Composite1",
1121 [CX23885_VMUX_COMPOSITE2] = "Composite2",
1122 [CX23885_VMUX_COMPOSITE3] = "Composite3",
1123 [CX23885_VMUX_COMPOSITE4] = "Composite4",
1124 [CX23885_VMUX_SVIDEO] = "S-Video",
David T.L. Wongdac65fa2009-10-21 11:07:24 -03001125 [CX23885_VMUX_COMPONENT] = "Component",
Steven Tothe47f30b2008-01-10 04:25:59 -03001126 [CX23885_VMUX_TELEVISION] = "Television",
1127 [CX23885_VMUX_CABLE] = "Cable TV",
1128 [CX23885_VMUX_DVB] = "DVB",
1129 [CX23885_VMUX_DEBUG] = "for debug only",
1130 };
1131 unsigned int n;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001132 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001133
1134 n = i->index;
1135 if (n >= 4)
1136 return -EINVAL;
1137
1138 if (0 == INPUT(n)->type)
1139 return -EINVAL;
1140
Steven Tothe47f30b2008-01-10 04:25:59 -03001141 i->index = n;
1142 i->type = V4L2_INPUT_TYPE_CAMERA;
1143 strcpy(i->name, iname[INPUT(n)->type]);
1144 if ((CX23885_VMUX_TELEVISION == INPUT(n)->type) ||
Julia Lawall473d8022010-08-05 17:22:44 -03001145 (CX23885_VMUX_CABLE == INPUT(n)->type)) {
Steven Tothe47f30b2008-01-10 04:25:59 -03001146 i->type = V4L2_INPUT_TYPE_TUNER;
1147 i->std = CX23885_NORMS;
Julia Lawall473d8022010-08-05 17:22:44 -03001148 }
Steven Tothe47f30b2008-01-10 04:25:59 -03001149 return 0;
1150}
Steven Tothe47f30b2008-01-10 04:25:59 -03001151
1152static int vidioc_enum_input(struct file *file, void *priv,
1153 struct v4l2_input *i)
1154{
1155 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001156 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001157 return cx23885_enum_input(dev, i);
1158}
1159
1160static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1161{
1162 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1163
1164 *i = dev->input;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001165 dprintk(1, "%s() returns %d\n", __func__, *i);
Steven Tothe47f30b2008-01-10 04:25:59 -03001166 return 0;
1167}
1168
1169static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1170{
1171 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1172
Harvey Harrison22b4e642008-04-08 23:20:00 -03001173 dprintk(1, "%s(%d)\n", __func__, i);
Steven Tothe47f30b2008-01-10 04:25:59 -03001174
1175 if (i >= 4) {
Harvey Harrison22b4e642008-04-08 23:20:00 -03001176 dprintk(1, "%s() -EINVAL\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001177 return -EINVAL;
1178 }
1179
1180 mutex_lock(&dev->lock);
1181 cx23885_video_mux(dev, i);
1182 mutex_unlock(&dev->lock);
1183 return 0;
1184}
1185
Andy Wallse9e5cf42010-07-18 18:18:06 -03001186static int vidioc_log_status(struct file *file, void *priv)
1187{
1188 struct cx23885_fh *fh = priv;
1189 struct cx23885_dev *dev = fh->dev;
1190
1191 printk(KERN_INFO
1192 "%s/0: ============ START LOG STATUS ============\n",
1193 dev->name);
1194 call_all(dev, core, log_status);
1195 printk(KERN_INFO
1196 "%s/0: ============= END LOG STATUS =============\n",
1197 dev->name);
1198 return 0;
1199}
1200
Steven Tothe47f30b2008-01-10 04:25:59 -03001201static int vidioc_queryctrl(struct file *file, void *priv,
1202 struct v4l2_queryctrl *qctrl)
1203{
1204 qctrl->id = v4l2_ctrl_next(ctrl_classes, qctrl->id);
1205 if (unlikely(qctrl->id == 0))
1206 return -EINVAL;
1207 return cx23885_ctrl_query(qctrl);
1208}
1209
1210static int vidioc_g_ctrl(struct file *file, void *priv,
1211 struct v4l2_control *ctl)
1212{
1213 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1214
1215 return cx23885_get_control(dev, ctl);
1216}
1217
1218static int vidioc_s_ctrl(struct file *file, void *priv,
1219 struct v4l2_control *ctl)
1220{
1221 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1222
1223 return cx23885_set_control(dev, ctl);
1224}
1225
1226static int vidioc_g_tuner(struct file *file, void *priv,
1227 struct v4l2_tuner *t)
1228{
1229 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1230
1231 if (unlikely(UNSET == dev->tuner_type))
1232 return -EINVAL;
1233 if (0 != t->index)
1234 return -EINVAL;
1235
1236 strcpy(t->name, "Television");
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001237
Steven Toth80f1e082011-10-10 11:09:53 -03001238 call_all(dev, tuner, g_tuner, t);
Steven Tothe47f30b2008-01-10 04:25:59 -03001239 return 0;
1240}
1241
1242static int vidioc_s_tuner(struct file *file, void *priv,
1243 struct v4l2_tuner *t)
1244{
1245 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1246
1247 if (UNSET == dev->tuner_type)
1248 return -EINVAL;
1249 if (0 != t->index)
1250 return -EINVAL;
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001251 /* Update the A/V core */
Steven Toth80f1e082011-10-10 11:09:53 -03001252 call_all(dev, tuner, s_tuner, t);
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001253
Steven Tothe47f30b2008-01-10 04:25:59 -03001254 return 0;
1255}
1256
1257static int vidioc_g_frequency(struct file *file, void *priv,
1258 struct v4l2_frequency *f)
1259{
1260 struct cx23885_fh *fh = priv;
1261 struct cx23885_dev *dev = fh->dev;
1262
1263 if (unlikely(UNSET == dev->tuner_type))
1264 return -EINVAL;
1265
1266 /* f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV; */
1267 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1268 f->frequency = dev->freq;
1269
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001270 call_all(dev, tuner, g_frequency, f);
Steven Tothe47f30b2008-01-10 04:25:59 -03001271
1272 return 0;
1273}
1274
Hans Verkuild45b9b82008-09-04 03:33:43 -03001275static int cx23885_set_freq(struct cx23885_dev *dev, struct v4l2_frequency *f)
Steven Tothe47f30b2008-01-10 04:25:59 -03001276{
1277 if (unlikely(UNSET == dev->tuner_type))
1278 return -EINVAL;
1279 if (unlikely(f->tuner != 0))
1280 return -EINVAL;
1281
1282 mutex_lock(&dev->lock);
1283 dev->freq = f->frequency;
1284
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001285 call_all(dev, tuner, s_frequency, f);
Steven Tothe47f30b2008-01-10 04:25:59 -03001286
1287 /* When changing channels it is required to reset TVAUDIO */
1288 msleep(10);
1289
1290 mutex_unlock(&dev->lock);
1291
1292 return 0;
1293}
Steven Tothe47f30b2008-01-10 04:25:59 -03001294
1295static int vidioc_s_frequency(struct file *file, void *priv,
1296 struct v4l2_frequency *f)
1297{
1298 struct cx23885_fh *fh = priv;
1299 struct cx23885_dev *dev = fh->dev;
1300
1301 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1302 return -EINVAL;
1303 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
1304 return -EINVAL;
1305
1306 return
1307 cx23885_set_freq(dev, f);
1308}
1309
Steven Tothe47f30b2008-01-10 04:25:59 -03001310/* ----------------------------------------------------------- */
Steven Tothe47f30b2008-01-10 04:25:59 -03001311
1312static void cx23885_vid_timeout(unsigned long data)
1313{
1314 struct cx23885_dev *dev = (struct cx23885_dev *)data;
1315 struct cx23885_dmaqueue *q = &dev->vidq;
1316 struct cx23885_buffer *buf;
1317 unsigned long flags;
1318
1319 cx23885_sram_channel_dump(dev, &dev->sram_channels[SRAM_CH01]);
1320
1321 cx_clear(VID_A_DMA_CTL, 0x11);
1322
1323 spin_lock_irqsave(&dev->slock, flags);
1324 while (!list_empty(&q->active)) {
1325 buf = list_entry(q->active.next,
1326 struct cx23885_buffer, vb.queue);
1327 list_del(&buf->vb.queue);
1328 buf->vb.state = VIDEOBUF_ERROR;
1329 wake_up(&buf->vb.done);
Steven Toth79776c82011-10-10 11:09:54 -03001330 printk(KERN_ERR "%s: [%p/%d] timeout - dma=0x%08lx\n",
Steven Tothe47f30b2008-01-10 04:25:59 -03001331 dev->name, buf, buf->vb.i,
1332 (unsigned long)buf->risc.dma);
1333 }
1334 cx23885_restart_video_queue(dev, q);
1335 spin_unlock_irqrestore(&dev->slock, flags);
1336}
1337
1338int cx23885_video_irq(struct cx23885_dev *dev, u32 status)
1339{
1340 u32 mask, count;
1341 int handled = 0;
1342
1343 mask = cx_read(VID_A_INT_MSK);
1344 if (0 == (status & mask))
1345 return handled;
Steven Toth79776c82011-10-10 11:09:54 -03001346
Steven Tothe47f30b2008-01-10 04:25:59 -03001347 cx_write(VID_A_INT_STAT, status);
1348
Steven Tothe47f30b2008-01-10 04:25:59 -03001349 /* risc op code error */
Steven Toth79776c82011-10-10 11:09:54 -03001350 if ((status & VID_BC_MSK_OPC_ERR) ||
1351 (status & VID_BC_MSK_SYNC) ||
1352 (status & VID_BC_MSK_OF)) {
1353
1354 if (status & VID_BC_MSK_OPC_ERR)
1355 dprintk(7, " (VID_BC_MSK_OPC_ERR 0x%08x)\n",
1356 VID_BC_MSK_OPC_ERR);
1357
1358 if (status & VID_BC_MSK_SYNC)
1359 dprintk(7, " (VID_BC_MSK_SYNC 0x%08x)\n",
1360 VID_BC_MSK_SYNC);
1361
1362 if (status & VID_BC_MSK_OF)
1363 dprintk(7, " (VID_BC_MSK_OF 0x%08x)\n",
1364 VID_BC_MSK_OF);
1365
1366 printk(KERN_WARNING "%s: video risc op code error\n",
Steven Tothe47f30b2008-01-10 04:25:59 -03001367 dev->name);
Steven Toth79776c82011-10-10 11:09:54 -03001368
Steven Tothe47f30b2008-01-10 04:25:59 -03001369 cx_clear(VID_A_DMA_CTL, 0x11);
1370 cx23885_sram_channel_dump(dev, &dev->sram_channels[SRAM_CH01]);
Steven Toth79776c82011-10-10 11:09:54 -03001371
Steven Tothe47f30b2008-01-10 04:25:59 -03001372 }
1373
Steven Toth79776c82011-10-10 11:09:54 -03001374 /* Video */
1375 if (status & VID_BC_MSK_RISCI1) {
Steven Tothe47f30b2008-01-10 04:25:59 -03001376 spin_lock(&dev->slock);
1377 count = cx_read(VID_A_GPCNT);
1378 cx23885_video_wakeup(dev, &dev->vidq, count);
1379 spin_unlock(&dev->slock);
1380 handled++;
1381 }
Steven Toth79776c82011-10-10 11:09:54 -03001382 if (status & VID_BC_MSK_RISCI2) {
Steven Tothe47f30b2008-01-10 04:25:59 -03001383 dprintk(2, "stopper video\n");
1384 spin_lock(&dev->slock);
1385 cx23885_restart_video_queue(dev, &dev->vidq);
1386 spin_unlock(&dev->slock);
1387 handled++;
1388 }
1389
Steven Toth79776c82011-10-10 11:09:54 -03001390 /* Allow the VBI framework to process it's payload */
1391 handled += cx23885_vbi_irq(dev, status);
1392
Steven Tothe47f30b2008-01-10 04:25:59 -03001393 return handled;
1394}
1395
Steven Tothe47f30b2008-01-10 04:25:59 -03001396/* ----------------------------------------------------------- */
1397/* exported stuff */
1398
Hans Verkuilbec43662008-12-30 06:58:20 -03001399static const struct v4l2_file_operations video_fops = {
Steven Tothe47f30b2008-01-10 04:25:59 -03001400 .owner = THIS_MODULE,
1401 .open = video_open,
1402 .release = video_release,
1403 .read = video_read,
1404 .poll = video_poll,
1405 .mmap = video_mmap,
1406 .ioctl = video_ioctl2,
Steven Tothe47f30b2008-01-10 04:25:59 -03001407};
1408
Hans Verkuila3998102008-07-21 02:57:38 -03001409static const struct v4l2_ioctl_ops video_ioctl_ops = {
Steven Tothe47f30b2008-01-10 04:25:59 -03001410 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001411 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1412 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1413 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1414 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1415 .vidioc_g_fmt_vbi_cap = cx23885_vbi_fmt,
1416 .vidioc_try_fmt_vbi_cap = cx23885_vbi_fmt,
1417 .vidioc_s_fmt_vbi_cap = cx23885_vbi_fmt,
Steven Tothe47f30b2008-01-10 04:25:59 -03001418 .vidioc_reqbufs = vidioc_reqbufs,
1419 .vidioc_querybuf = vidioc_querybuf,
1420 .vidioc_qbuf = vidioc_qbuf,
1421 .vidioc_dqbuf = vidioc_dqbuf,
1422 .vidioc_s_std = vidioc_s_std,
1423 .vidioc_enum_input = vidioc_enum_input,
1424 .vidioc_g_input = vidioc_g_input,
1425 .vidioc_s_input = vidioc_s_input,
Andy Wallse9e5cf42010-07-18 18:18:06 -03001426 .vidioc_log_status = vidioc_log_status,
Steven Tothe47f30b2008-01-10 04:25:59 -03001427 .vidioc_queryctrl = vidioc_queryctrl,
1428 .vidioc_g_ctrl = vidioc_g_ctrl,
1429 .vidioc_s_ctrl = vidioc_s_ctrl,
1430 .vidioc_streamon = vidioc_streamon,
1431 .vidioc_streamoff = vidioc_streamoff,
Steven Tothe47f30b2008-01-10 04:25:59 -03001432 .vidioc_g_tuner = vidioc_g_tuner,
1433 .vidioc_s_tuner = vidioc_s_tuner,
1434 .vidioc_g_frequency = vidioc_g_frequency,
1435 .vidioc_s_frequency = vidioc_s_frequency,
Andy Walls74618242009-09-26 22:50:44 -03001436 .vidioc_g_chip_ident = cx23885_g_chip_ident,
Steven Tothe47f30b2008-01-10 04:25:59 -03001437#ifdef CONFIG_VIDEO_ADV_DEBUG
Andy Walls74618242009-09-26 22:50:44 -03001438 .vidioc_g_register = cx23885_g_register,
1439 .vidioc_s_register = cx23885_s_register,
Steven Tothe47f30b2008-01-10 04:25:59 -03001440#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001441};
1442
1443static struct video_device cx23885_vbi_template;
1444static struct video_device cx23885_video_template = {
1445 .name = "cx23885-video",
Hans Verkuila3998102008-07-21 02:57:38 -03001446 .fops = &video_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001447 .ioctl_ops = &video_ioctl_ops,
Steven Tothe47f30b2008-01-10 04:25:59 -03001448 .tvnorms = CX23885_NORMS,
1449 .current_norm = V4L2_STD_NTSC_M,
1450};
1451
Hans Verkuilbec43662008-12-30 06:58:20 -03001452static const struct v4l2_file_operations radio_fops = {
Steven Tothe47f30b2008-01-10 04:25:59 -03001453 .owner = THIS_MODULE,
1454 .open = video_open,
1455 .release = video_release,
1456 .ioctl = video_ioctl2,
Steven Tothe47f30b2008-01-10 04:25:59 -03001457};
1458
1459
1460void cx23885_video_unregister(struct cx23885_dev *dev)
1461{
Harvey Harrison22b4e642008-04-08 23:20:00 -03001462 dprintk(1, "%s()\n", __func__);
Andy Wallsdbe83a32010-07-19 01:19:43 -03001463 cx23885_irq_remove(dev, 0x01);
Steven Tothe47f30b2008-01-10 04:25:59 -03001464
Steven Toth79776c82011-10-10 11:09:54 -03001465 if (dev->vbi_dev) {
1466 if (video_is_registered(dev->vbi_dev))
1467 video_unregister_device(dev->vbi_dev);
1468 else
1469 video_device_release(dev->vbi_dev);
1470 dev->vbi_dev = NULL;
1471 btcx_riscmem_free(dev->pci, &dev->vbiq.stopper);
1472 }
Steven Tothe47f30b2008-01-10 04:25:59 -03001473 if (dev->video_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001474 if (video_is_registered(dev->video_dev))
Steven Tothe47f30b2008-01-10 04:25:59 -03001475 video_unregister_device(dev->video_dev);
1476 else
1477 video_device_release(dev->video_dev);
1478 dev->video_dev = NULL;
1479
1480 btcx_riscmem_free(dev->pci, &dev->vidq.stopper);
1481 }
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001482
1483 if (dev->audio_dev)
Steven Tothefa762f2011-10-10 11:09:53 -03001484 cx23885_audio_unregister(dev);
Steven Tothe47f30b2008-01-10 04:25:59 -03001485}
1486
1487int cx23885_video_register(struct cx23885_dev *dev)
1488{
1489 int err;
1490
Harvey Harrison22b4e642008-04-08 23:20:00 -03001491 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001492 spin_lock_init(&dev->slock);
1493
1494 /* Initialize VBI template */
1495 memcpy(&cx23885_vbi_template, &cx23885_video_template,
1496 sizeof(cx23885_vbi_template));
1497 strcpy(cx23885_vbi_template.name, "cx23885-vbi");
Steven Tothe47f30b2008-01-10 04:25:59 -03001498
1499 dev->tvnorm = cx23885_video_template.current_norm;
1500
1501 /* init video dma queues */
1502 INIT_LIST_HEAD(&dev->vidq.active);
1503 INIT_LIST_HEAD(&dev->vidq.queued);
1504 dev->vidq.timeout.function = cx23885_vid_timeout;
1505 dev->vidq.timeout.data = (unsigned long)dev;
1506 init_timer(&dev->vidq.timeout);
1507 cx23885_risc_stopper(dev->pci, &dev->vidq.stopper,
1508 VID_A_DMA_CTL, 0x11, 0x00);
1509
Steven Toth79776c82011-10-10 11:09:54 -03001510 /* init vbi dma queues */
1511 INIT_LIST_HEAD(&dev->vbiq.active);
1512 INIT_LIST_HEAD(&dev->vbiq.queued);
1513 dev->vbiq.timeout.function = cx23885_vbi_timeout;
1514 dev->vbiq.timeout.data = (unsigned long)dev;
1515 init_timer(&dev->vbiq.timeout);
1516 cx23885_risc_stopper(dev->pci, &dev->vbiq.stopper,
1517 VID_A_DMA_CTL, 0x22, 0x00);
Andy Wallsdbe83a32010-07-19 01:19:43 -03001518
1519 cx23885_irq_add_enable(dev, 0x01);
Steven Tothe47f30b2008-01-10 04:25:59 -03001520
Igor M. Liplianin557f48d2011-01-25 17:05:00 -03001521 if ((TUNER_ABSENT != dev->tuner_type) &&
1522 ((dev->tuner_bus == 0) || (dev->tuner_bus == 1))) {
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001523 struct v4l2_subdev *sd = NULL;
1524
1525 if (dev->tuner_addr)
Hans Verkuile6574f22009-04-01 03:57:53 -03001526 sd = v4l2_i2c_new_subdev(&dev->v4l2_dev,
Igor M. Liplianin557f48d2011-01-25 17:05:00 -03001527 &dev->i2c_bus[dev->tuner_bus].i2c_adap,
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -03001528 "tuner", dev->tuner_addr, NULL);
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001529 else
Hans Verkuil53dacb12009-08-10 02:49:08 -03001530 sd = v4l2_i2c_new_subdev(&dev->v4l2_dev,
Igor M. Liplianin557f48d2011-01-25 17:05:00 -03001531 &dev->i2c_bus[dev->tuner_bus].i2c_adap,
Laurent Pinchart1532a072010-09-24 07:58:29 -03001532 "tuner", 0, v4l2_i2c_tuner_addrs(ADDRS_TV));
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001533 if (sd) {
1534 struct tuner_setup tun_setup;
1535
David T.L. Wongfd705e72009-10-21 11:08:30 -03001536 memset(&tun_setup, 0, sizeof(tun_setup));
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001537 tun_setup.mode_mask = T_ANALOG_TV;
1538 tun_setup.type = dev->tuner_type;
1539 tun_setup.addr = v4l2_i2c_subdev_addr(sd);
David T.L. Wong6f0d8c02009-10-21 13:15:30 -03001540 tun_setup.tuner_callback = cx23885_tuner_callback;
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001541
1542 v4l2_subdev_call(sd, tuner, s_type_addr, &tun_setup);
Kusanagi Kouichi0b32d652010-01-22 04:55:28 -03001543
1544 if (dev->board == CX23885_BOARD_LEADTEK_WINFAST_PXTV1200) {
1545 struct xc2028_ctrl ctrl = {
1546 .fname = XC2028_DEFAULT_FIRMWARE,
1547 .max_len = 64
1548 };
1549 struct v4l2_priv_tun_config cfg = {
1550 .tuner = dev->tuner_type,
1551 .priv = &ctrl
1552 };
1553 v4l2_subdev_call(sd, tuner, s_config, &cfg);
1554 }
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001555 }
1556 }
1557
Steven Toth79776c82011-10-10 11:09:54 -03001558 /* register Video device */
Steven Tothe47f30b2008-01-10 04:25:59 -03001559 dev->video_dev = cx23885_vdev_init(dev, dev->pci,
1560 &cx23885_video_template, "video");
1561 err = video_register_device(dev->video_dev, VFL_TYPE_GRABBER,
1562 video_nr[dev->nr]);
1563 if (err < 0) {
1564 printk(KERN_INFO "%s: can't register video device\n",
1565 dev->name);
1566 goto fail_unreg;
1567 }
Steven Tothf88fb8e2011-10-10 11:09:54 -03001568 printk(KERN_INFO "%s: registered device %s [v4l2]\n",
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001569 dev->name, video_device_node_name(dev->video_dev));
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001570
Steven Tothf88fb8e2011-10-10 11:09:54 -03001571 /* register VBI device */
1572 dev->vbi_dev = cx23885_vdev_init(dev, dev->pci,
1573 &cx23885_vbi_template, "vbi");
1574 err = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
1575 vbi_nr[dev->nr]);
1576 if (err < 0) {
1577 printk(KERN_INFO "%s: can't register vbi device\n",
1578 dev->name);
1579 goto fail_unreg;
1580 }
1581 printk(KERN_INFO "%s: registered device %s\n",
1582 dev->name, video_device_node_name(dev->vbi_dev));
1583
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001584 /* Register ALSA audio device */
Steven Tothefa762f2011-10-10 11:09:53 -03001585 dev->audio_dev = cx23885_audio_register(dev);
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001586
Steven Tothe47f30b2008-01-10 04:25:59 -03001587 /* initial device configuration */
1588 mutex_lock(&dev->lock);
1589 cx23885_set_tvnorm(dev, dev->tvnorm);
1590 init_controls(dev);
1591 cx23885_video_mux(dev, 0);
1592 mutex_unlock(&dev->lock);
1593
Steven Tothe47f30b2008-01-10 04:25:59 -03001594 return 0;
1595
1596fail_unreg:
1597 cx23885_video_unregister(dev);
1598 return err;
1599}
1600