blob: 747fdb35145bde80e673d1f621eeeb4fa5d58840 [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)\
74 printk(KERN_DEBUG "%s/0: " fmt, dev->name, ## arg);\
75 } 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
Hans Verkuild45b9b82008-09-04 03:33:43 -0300263static void cx23885_video_wakeup(struct cx23885_dev *dev,
Steven Tothe47f30b2008-01-10 04:25:59 -0300264 struct cx23885_dmaqueue *q, u32 count)
265{
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
762 dprintk(1, "post videobuf_queue_init()\n");
763
Steven Tothe47f30b2008-01-10 04:25:59 -0300764 return 0;
765}
766
767static ssize_t video_read(struct file *file, char __user *data,
768 size_t count, loff_t *ppos)
769{
770 struct cx23885_fh *fh = file->private_data;
771
772 switch (fh->type) {
773 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
774 if (res_locked(fh->dev, RESOURCE_VIDEO))
775 return -EBUSY;
776 return videobuf_read_one(&fh->vidq, data, count, ppos,
777 file->f_flags & O_NONBLOCK);
778 case V4L2_BUF_TYPE_VBI_CAPTURE:
779 if (!res_get(fh->dev, fh, RESOURCE_VBI))
780 return -EBUSY;
781 return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1,
782 file->f_flags & O_NONBLOCK);
783 default:
784 BUG();
785 return 0;
786 }
787}
788
789static unsigned int video_poll(struct file *file,
790 struct poll_table_struct *wait)
791{
792 struct cx23885_fh *fh = file->private_data;
793 struct cx23885_buffer *buf;
Figo.zhang9fd64182009-06-16 13:31:29 -0300794 unsigned int rc = POLLERR;
Steven Tothe47f30b2008-01-10 04:25:59 -0300795
796 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
797 if (!res_get(fh->dev, fh, RESOURCE_VBI))
798 return POLLERR;
799 return videobuf_poll_stream(file, &fh->vbiq, wait);
800 }
801
Figo.zhang9fd64182009-06-16 13:31:29 -0300802 mutex_lock(&fh->vidq.vb_lock);
Steven Tothe47f30b2008-01-10 04:25:59 -0300803 if (res_check(fh, RESOURCE_VIDEO)) {
804 /* streaming capture */
805 if (list_empty(&fh->vidq.stream))
Figo.zhang9fd64182009-06-16 13:31:29 -0300806 goto done;
Steven Tothe47f30b2008-01-10 04:25:59 -0300807 buf = list_entry(fh->vidq.stream.next,
808 struct cx23885_buffer, vb.stream);
809 } else {
810 /* read() capture */
811 buf = (struct cx23885_buffer *)fh->vidq.read_buf;
812 if (NULL == buf)
Figo.zhang9fd64182009-06-16 13:31:29 -0300813 goto done;
Steven Tothe47f30b2008-01-10 04:25:59 -0300814 }
815 poll_wait(file, &buf->vb.done, wait);
816 if (buf->vb.state == VIDEOBUF_DONE ||
817 buf->vb.state == VIDEOBUF_ERROR)
Figo.zhang9fd64182009-06-16 13:31:29 -0300818 rc = POLLIN|POLLRDNORM;
819 else
820 rc = 0;
821done:
822 mutex_unlock(&fh->vidq.vb_lock);
823 return rc;
Steven Tothe47f30b2008-01-10 04:25:59 -0300824}
825
Hans Verkuilbec43662008-12-30 06:58:20 -0300826static int video_release(struct file *file)
Steven Tothe47f30b2008-01-10 04:25:59 -0300827{
828 struct cx23885_fh *fh = file->private_data;
829 struct cx23885_dev *dev = fh->dev;
830
831 /* turn off overlay */
832 if (res_check(fh, RESOURCE_OVERLAY)) {
833 /* FIXME */
834 res_free(dev, fh, RESOURCE_OVERLAY);
835 }
836
837 /* stop video capture */
838 if (res_check(fh, RESOURCE_VIDEO)) {
839 videobuf_queue_cancel(&fh->vidq);
840 res_free(dev, fh, RESOURCE_VIDEO);
841 }
842 if (fh->vidq.read_buf) {
843 buffer_release(&fh->vidq, fh->vidq.read_buf);
844 kfree(fh->vidq.read_buf);
845 }
846
847 /* stop vbi capture */
848 if (res_check(fh, RESOURCE_VBI)) {
849 if (fh->vbiq.streaming)
850 videobuf_streamoff(&fh->vbiq);
851 if (fh->vbiq.reading)
852 videobuf_read_stop(&fh->vbiq);
853 res_free(dev, fh, RESOURCE_VBI);
854 }
855
856 videobuf_mmap_free(&fh->vidq);
857 file->private_data = NULL;
858 kfree(fh);
859
Steven Totha19602f22008-01-10 11:43:18 -0300860 /* We are not putting the tuner to sleep here on exit, because
861 * we want to use the mpeg encoder in another session to capture
862 * tuner video. Closing this will result in no video to the encoder.
863 */
Steven Tothe47f30b2008-01-10 04:25:59 -0300864
865 return 0;
866}
867
868static int video_mmap(struct file *file, struct vm_area_struct *vma)
869{
870 struct cx23885_fh *fh = file->private_data;
871
872 return videobuf_mmap_mapper(get_queue(fh), vma);
873}
874
875/* ------------------------------------------------------------------ */
876/* VIDEO CTRL IOCTLS */
877
Steven Toth9c8ced52008-10-16 20:18:44 -0300878static int cx23885_get_control(struct cx23885_dev *dev,
879 struct v4l2_control *ctl)
Steven Tothe47f30b2008-01-10 04:25:59 -0300880{
Harvey Harrison22b4e642008-04-08 23:20:00 -0300881 dprintk(1, "%s() calling cx25840(VIDIOC_G_CTRL)\n", __func__);
Hans Verkuil0d5a19f2009-03-29 06:53:29 -0300882 call_all(dev, core, g_ctrl, ctl);
Steven Tothe47f30b2008-01-10 04:25:59 -0300883 return 0;
884}
Steven Tothe47f30b2008-01-10 04:25:59 -0300885
Steven Toth9c8ced52008-10-16 20:18:44 -0300886static int cx23885_set_control(struct cx23885_dev *dev,
887 struct v4l2_control *ctl)
Steven Tothe47f30b2008-01-10 04:25:59 -0300888{
Mijhail Moreyra97ce5672011-10-10 11:09:53 -0300889 dprintk(1, "%s() calling cx25840(VIDIOC_S_CTRL)\n", __func__);
890 call_all(dev, core, s_ctrl, ctl);
891
Steven Tothe47f30b2008-01-10 04:25:59 -0300892 return 0;
893}
Steven Tothe47f30b2008-01-10 04:25:59 -0300894
895static void init_controls(struct cx23885_dev *dev)
896{
897 struct v4l2_control ctrl;
898 int i;
899
900 for (i = 0; i < CX23885_CTLS; i++) {
901 ctrl.id = cx23885_ctls[i].v.id;
902 ctrl.value = cx23885_ctls[i].v.default_value;
903
904 cx23885_set_control(dev, &ctrl);
905 }
906}
907
908/* ------------------------------------------------------------------ */
909/* VIDEO IOCTLS */
910
Hans Verkuil78b526a2008-05-28 12:16:41 -0300911static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -0300912 struct v4l2_format *f)
913{
914 struct cx23885_fh *fh = priv;
915
916 f->fmt.pix.width = fh->width;
917 f->fmt.pix.height = fh->height;
918 f->fmt.pix.field = fh->vidq.field;
919 f->fmt.pix.pixelformat = fh->fmt->fourcc;
920 f->fmt.pix.bytesperline =
921 (f->fmt.pix.width * fh->fmt->depth) >> 3;
922 f->fmt.pix.sizeimage =
923 f->fmt.pix.height * f->fmt.pix.bytesperline;
924
925 return 0;
926}
927
Hans Verkuil78b526a2008-05-28 12:16:41 -0300928static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -0300929 struct v4l2_format *f)
930{
931 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
932 struct cx23885_fmt *fmt;
933 enum v4l2_field field;
934 unsigned int maxw, maxh;
935
936 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
937 if (NULL == fmt)
938 return -EINVAL;
939
940 field = f->fmt.pix.field;
941 maxw = norm_maxw(dev->tvnorm);
942 maxh = norm_maxh(dev->tvnorm);
943
944 if (V4L2_FIELD_ANY == field) {
945 field = (f->fmt.pix.height > maxh/2)
946 ? V4L2_FIELD_INTERLACED
947 : V4L2_FIELD_BOTTOM;
948 }
949
950 switch (field) {
951 case V4L2_FIELD_TOP:
952 case V4L2_FIELD_BOTTOM:
953 maxh = maxh / 2;
954 break;
955 case V4L2_FIELD_INTERLACED:
956 break;
957 default:
958 return -EINVAL;
959 }
960
961 f->fmt.pix.field = field;
Trent Piepho2449afc2009-05-30 21:45:46 -0300962 v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2,
963 &f->fmt.pix.height, 32, maxh, 0, 0);
Steven Tothe47f30b2008-01-10 04:25:59 -0300964 f->fmt.pix.bytesperline =
965 (f->fmt.pix.width * fmt->depth) >> 3;
966 f->fmt.pix.sizeimage =
967 f->fmt.pix.height * f->fmt.pix.bytesperline;
968
969 return 0;
970}
971
Hans Verkuil78b526a2008-05-28 12:16:41 -0300972static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -0300973 struct v4l2_format *f)
974{
975 struct cx23885_fh *fh = priv;
976 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
Hans Verkuilcc991132010-05-09 10:09:28 -0300977 struct v4l2_mbus_framefmt mbus_fmt;
Steven Tothe47f30b2008-01-10 04:25:59 -0300978 int err;
979
Harvey Harrison22b4e642008-04-08 23:20:00 -0300980 dprintk(2, "%s()\n", __func__);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300981 err = vidioc_try_fmt_vid_cap(file, priv, f);
Steven Tothe47f30b2008-01-10 04:25:59 -0300982
983 if (0 != err)
984 return err;
985 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
986 fh->width = f->fmt.pix.width;
987 fh->height = f->fmt.pix.height;
988 fh->vidq.field = f->fmt.pix.field;
Harvey Harrison22b4e642008-04-08 23:20:00 -0300989 dprintk(2, "%s() width=%d height=%d field=%d\n", __func__,
Steven Tothe47f30b2008-01-10 04:25:59 -0300990 fh->width, fh->height, fh->vidq.field);
Hans Verkuilcc991132010-05-09 10:09:28 -0300991 v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED);
992 call_all(dev, video, s_mbus_fmt, &mbus_fmt);
993 v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
Steven Tothe47f30b2008-01-10 04:25:59 -0300994 return 0;
995}
996
997static int vidioc_querycap(struct file *file, void *priv,
998 struct v4l2_capability *cap)
999{
1000 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1001
1002 strcpy(cap->driver, "cx23885");
1003 strlcpy(cap->card, cx23885_boards[dev->board].name,
1004 sizeof(cap->card));
1005 sprintf(cap->bus_info, "PCIe:%s", pci_name(dev->pci));
Steven Tothe47f30b2008-01-10 04:25:59 -03001006 cap->capabilities =
1007 V4L2_CAP_VIDEO_CAPTURE |
1008 V4L2_CAP_READWRITE |
1009 V4L2_CAP_STREAMING |
1010 V4L2_CAP_VBI_CAPTURE;
1011 if (UNSET != dev->tuner_type)
1012 cap->capabilities |= V4L2_CAP_TUNER;
1013 return 0;
1014}
1015
Hans Verkuil78b526a2008-05-28 12:16:41 -03001016static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Steven Tothe47f30b2008-01-10 04:25:59 -03001017 struct v4l2_fmtdesc *f)
1018{
1019 if (unlikely(f->index >= ARRAY_SIZE(formats)))
1020 return -EINVAL;
1021
1022 strlcpy(f->description, formats[f->index].name,
1023 sizeof(f->description));
1024 f->pixelformat = formats[f->index].fourcc;
1025
1026 return 0;
1027}
1028
Steven Tothe47f30b2008-01-10 04:25:59 -03001029static int vidioc_reqbufs(struct file *file, void *priv,
1030 struct v4l2_requestbuffers *p)
1031{
1032 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001033 return videobuf_reqbufs(get_queue(fh), p);
Steven Tothe47f30b2008-01-10 04:25:59 -03001034}
1035
1036static int vidioc_querybuf(struct file *file, void *priv,
1037 struct v4l2_buffer *p)
1038{
1039 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001040 return videobuf_querybuf(get_queue(fh), p);
Steven Tothe47f30b2008-01-10 04:25:59 -03001041}
1042
1043static int vidioc_qbuf(struct file *file, void *priv,
1044 struct v4l2_buffer *p)
1045{
1046 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001047 return videobuf_qbuf(get_queue(fh), p);
Steven Tothe47f30b2008-01-10 04:25:59 -03001048}
1049
1050static int vidioc_dqbuf(struct file *file, void *priv,
1051 struct v4l2_buffer *p)
1052{
1053 struct cx23885_fh *fh = priv;
Steven Toth9c8ced52008-10-16 20:18:44 -03001054 return videobuf_dqbuf(get_queue(fh), p,
1055 file->f_flags & O_NONBLOCK);
Steven Tothe47f30b2008-01-10 04:25:59 -03001056}
1057
1058static int vidioc_streamon(struct file *file, void *priv,
1059 enum v4l2_buf_type i)
1060{
1061 struct cx23885_fh *fh = priv;
1062 struct cx23885_dev *dev = fh->dev;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001063 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001064
1065 if (unlikely(fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE))
1066 return -EINVAL;
1067 if (unlikely(i != fh->type))
1068 return -EINVAL;
1069
1070 if (unlikely(!res_get(dev, fh, get_resource(fh))))
1071 return -EBUSY;
1072 return videobuf_streamon(get_queue(fh));
1073}
1074
1075static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1076{
1077 struct cx23885_fh *fh = priv;
1078 struct cx23885_dev *dev = fh->dev;
1079 int err, res;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001080 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001081
1082 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1083 return -EINVAL;
1084 if (i != fh->type)
1085 return -EINVAL;
1086
1087 res = get_resource(fh);
1088 err = videobuf_streamoff(get_queue(fh));
1089 if (err < 0)
1090 return err;
1091 res_free(dev, fh, res);
1092 return 0;
1093}
1094
1095static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *tvnorms)
1096{
1097 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001098 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001099
1100 mutex_lock(&dev->lock);
1101 cx23885_set_tvnorm(dev, *tvnorms);
1102 mutex_unlock(&dev->lock);
1103
1104 return 0;
1105}
1106
Hans Verkuild45b9b82008-09-04 03:33:43 -03001107static int cx23885_enum_input(struct cx23885_dev *dev, struct v4l2_input *i)
Steven Tothe47f30b2008-01-10 04:25:59 -03001108{
1109 static const char *iname[] = {
1110 [CX23885_VMUX_COMPOSITE1] = "Composite1",
1111 [CX23885_VMUX_COMPOSITE2] = "Composite2",
1112 [CX23885_VMUX_COMPOSITE3] = "Composite3",
1113 [CX23885_VMUX_COMPOSITE4] = "Composite4",
1114 [CX23885_VMUX_SVIDEO] = "S-Video",
David T.L. Wongdac65fa2009-10-21 11:07:24 -03001115 [CX23885_VMUX_COMPONENT] = "Component",
Steven Tothe47f30b2008-01-10 04:25:59 -03001116 [CX23885_VMUX_TELEVISION] = "Television",
1117 [CX23885_VMUX_CABLE] = "Cable TV",
1118 [CX23885_VMUX_DVB] = "DVB",
1119 [CX23885_VMUX_DEBUG] = "for debug only",
1120 };
1121 unsigned int n;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001122 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001123
1124 n = i->index;
1125 if (n >= 4)
1126 return -EINVAL;
1127
1128 if (0 == INPUT(n)->type)
1129 return -EINVAL;
1130
Steven Tothe47f30b2008-01-10 04:25:59 -03001131 i->index = n;
1132 i->type = V4L2_INPUT_TYPE_CAMERA;
1133 strcpy(i->name, iname[INPUT(n)->type]);
1134 if ((CX23885_VMUX_TELEVISION == INPUT(n)->type) ||
Julia Lawall473d8022010-08-05 17:22:44 -03001135 (CX23885_VMUX_CABLE == INPUT(n)->type)) {
Steven Tothe47f30b2008-01-10 04:25:59 -03001136 i->type = V4L2_INPUT_TYPE_TUNER;
1137 i->std = CX23885_NORMS;
Julia Lawall473d8022010-08-05 17:22:44 -03001138 }
Steven Tothe47f30b2008-01-10 04:25:59 -03001139 return 0;
1140}
Steven Tothe47f30b2008-01-10 04:25:59 -03001141
1142static int vidioc_enum_input(struct file *file, void *priv,
1143 struct v4l2_input *i)
1144{
1145 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001146 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001147 return cx23885_enum_input(dev, i);
1148}
1149
1150static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1151{
1152 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1153
1154 *i = dev->input;
Harvey Harrison22b4e642008-04-08 23:20:00 -03001155 dprintk(1, "%s() returns %d\n", __func__, *i);
Steven Tothe47f30b2008-01-10 04:25:59 -03001156 return 0;
1157}
1158
1159static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1160{
1161 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1162
Harvey Harrison22b4e642008-04-08 23:20:00 -03001163 dprintk(1, "%s(%d)\n", __func__, i);
Steven Tothe47f30b2008-01-10 04:25:59 -03001164
1165 if (i >= 4) {
Harvey Harrison22b4e642008-04-08 23:20:00 -03001166 dprintk(1, "%s() -EINVAL\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001167 return -EINVAL;
1168 }
1169
1170 mutex_lock(&dev->lock);
1171 cx23885_video_mux(dev, i);
1172 mutex_unlock(&dev->lock);
1173 return 0;
1174}
1175
Andy Wallse9e5cf42010-07-18 18:18:06 -03001176static int vidioc_log_status(struct file *file, void *priv)
1177{
1178 struct cx23885_fh *fh = priv;
1179 struct cx23885_dev *dev = fh->dev;
1180
1181 printk(KERN_INFO
1182 "%s/0: ============ START LOG STATUS ============\n",
1183 dev->name);
1184 call_all(dev, core, log_status);
1185 printk(KERN_INFO
1186 "%s/0: ============= END LOG STATUS =============\n",
1187 dev->name);
1188 return 0;
1189}
1190
Steven Tothe47f30b2008-01-10 04:25:59 -03001191static int vidioc_queryctrl(struct file *file, void *priv,
1192 struct v4l2_queryctrl *qctrl)
1193{
1194 qctrl->id = v4l2_ctrl_next(ctrl_classes, qctrl->id);
1195 if (unlikely(qctrl->id == 0))
1196 return -EINVAL;
1197 return cx23885_ctrl_query(qctrl);
1198}
1199
1200static int vidioc_g_ctrl(struct file *file, void *priv,
1201 struct v4l2_control *ctl)
1202{
1203 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1204
1205 return cx23885_get_control(dev, ctl);
1206}
1207
1208static int vidioc_s_ctrl(struct file *file, void *priv,
1209 struct v4l2_control *ctl)
1210{
1211 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1212
1213 return cx23885_set_control(dev, ctl);
1214}
1215
1216static int vidioc_g_tuner(struct file *file, void *priv,
1217 struct v4l2_tuner *t)
1218{
1219 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1220
1221 if (unlikely(UNSET == dev->tuner_type))
1222 return -EINVAL;
1223 if (0 != t->index)
1224 return -EINVAL;
1225
1226 strcpy(t->name, "Television");
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001227
Steven Toth80f1e082011-10-10 11:09:53 -03001228 call_all(dev, tuner, g_tuner, t);
Steven Tothe47f30b2008-01-10 04:25:59 -03001229 return 0;
1230}
1231
1232static int vidioc_s_tuner(struct file *file, void *priv,
1233 struct v4l2_tuner *t)
1234{
1235 struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
1236
1237 if (UNSET == dev->tuner_type)
1238 return -EINVAL;
1239 if (0 != t->index)
1240 return -EINVAL;
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001241 /* Update the A/V core */
Steven Toth80f1e082011-10-10 11:09:53 -03001242 call_all(dev, tuner, s_tuner, t);
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001243
Steven Tothe47f30b2008-01-10 04:25:59 -03001244 return 0;
1245}
1246
1247static int vidioc_g_frequency(struct file *file, void *priv,
1248 struct v4l2_frequency *f)
1249{
1250 struct cx23885_fh *fh = priv;
1251 struct cx23885_dev *dev = fh->dev;
1252
1253 if (unlikely(UNSET == dev->tuner_type))
1254 return -EINVAL;
1255
1256 /* f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV; */
1257 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1258 f->frequency = dev->freq;
1259
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001260 call_all(dev, tuner, g_frequency, f);
Steven Tothe47f30b2008-01-10 04:25:59 -03001261
1262 return 0;
1263}
1264
Hans Verkuild45b9b82008-09-04 03:33:43 -03001265static int cx23885_set_freq(struct cx23885_dev *dev, struct v4l2_frequency *f)
Steven Tothe47f30b2008-01-10 04:25:59 -03001266{
1267 if (unlikely(UNSET == dev->tuner_type))
1268 return -EINVAL;
1269 if (unlikely(f->tuner != 0))
1270 return -EINVAL;
1271
1272 mutex_lock(&dev->lock);
1273 dev->freq = f->frequency;
1274
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001275 call_all(dev, tuner, s_frequency, f);
Steven Tothe47f30b2008-01-10 04:25:59 -03001276
1277 /* When changing channels it is required to reset TVAUDIO */
1278 msleep(10);
1279
1280 mutex_unlock(&dev->lock);
1281
1282 return 0;
1283}
Steven Tothe47f30b2008-01-10 04:25:59 -03001284
1285static int vidioc_s_frequency(struct file *file, void *priv,
1286 struct v4l2_frequency *f)
1287{
1288 struct cx23885_fh *fh = priv;
1289 struct cx23885_dev *dev = fh->dev;
1290
1291 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1292 return -EINVAL;
1293 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
1294 return -EINVAL;
1295
1296 return
1297 cx23885_set_freq(dev, f);
1298}
1299
Steven Tothe47f30b2008-01-10 04:25:59 -03001300/* ----------------------------------------------------------- */
Steven Tothe47f30b2008-01-10 04:25:59 -03001301
1302static void cx23885_vid_timeout(unsigned long data)
1303{
1304 struct cx23885_dev *dev = (struct cx23885_dev *)data;
1305 struct cx23885_dmaqueue *q = &dev->vidq;
1306 struct cx23885_buffer *buf;
1307 unsigned long flags;
1308
1309 cx23885_sram_channel_dump(dev, &dev->sram_channels[SRAM_CH01]);
1310
1311 cx_clear(VID_A_DMA_CTL, 0x11);
1312
1313 spin_lock_irqsave(&dev->slock, flags);
1314 while (!list_empty(&q->active)) {
1315 buf = list_entry(q->active.next,
1316 struct cx23885_buffer, vb.queue);
1317 list_del(&buf->vb.queue);
1318 buf->vb.state = VIDEOBUF_ERROR;
1319 wake_up(&buf->vb.done);
1320 printk(KERN_ERR "%s/0: [%p/%d] timeout - dma=0x%08lx\n",
1321 dev->name, buf, buf->vb.i,
1322 (unsigned long)buf->risc.dma);
1323 }
1324 cx23885_restart_video_queue(dev, q);
1325 spin_unlock_irqrestore(&dev->slock, flags);
1326}
1327
1328int cx23885_video_irq(struct cx23885_dev *dev, u32 status)
1329{
1330 u32 mask, count;
1331 int handled = 0;
1332
1333 mask = cx_read(VID_A_INT_MSK);
1334 if (0 == (status & mask))
1335 return handled;
1336 cx_write(VID_A_INT_STAT, status);
1337
Harvey Harrison22b4e642008-04-08 23:20:00 -03001338 dprintk(2, "%s() status = 0x%08x\n", __func__, status);
Steven Tothe47f30b2008-01-10 04:25:59 -03001339 /* risc op code error */
1340 if (status & (1 << 16)) {
1341 printk(KERN_WARNING "%s/0: video risc op code error\n",
1342 dev->name);
1343 cx_clear(VID_A_DMA_CTL, 0x11);
1344 cx23885_sram_channel_dump(dev, &dev->sram_channels[SRAM_CH01]);
1345 }
1346
1347 /* risc1 y */
1348 if (status & 0x01) {
1349 spin_lock(&dev->slock);
1350 count = cx_read(VID_A_GPCNT);
1351 cx23885_video_wakeup(dev, &dev->vidq, count);
1352 spin_unlock(&dev->slock);
1353 handled++;
1354 }
1355 /* risc2 y */
1356 if (status & 0x10) {
1357 dprintk(2, "stopper video\n");
1358 spin_lock(&dev->slock);
1359 cx23885_restart_video_queue(dev, &dev->vidq);
1360 spin_unlock(&dev->slock);
1361 handled++;
1362 }
1363
1364 return handled;
1365}
1366
Steven Tothe47f30b2008-01-10 04:25:59 -03001367/* ----------------------------------------------------------- */
1368/* exported stuff */
1369
Hans Verkuilbec43662008-12-30 06:58:20 -03001370static const struct v4l2_file_operations video_fops = {
Steven Tothe47f30b2008-01-10 04:25:59 -03001371 .owner = THIS_MODULE,
1372 .open = video_open,
1373 .release = video_release,
1374 .read = video_read,
1375 .poll = video_poll,
1376 .mmap = video_mmap,
1377 .ioctl = video_ioctl2,
Steven Tothe47f30b2008-01-10 04:25:59 -03001378};
1379
Hans Verkuila3998102008-07-21 02:57:38 -03001380static const struct v4l2_ioctl_ops video_ioctl_ops = {
Steven Tothe47f30b2008-01-10 04:25:59 -03001381 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001382 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1383 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1384 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1385 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1386 .vidioc_g_fmt_vbi_cap = cx23885_vbi_fmt,
1387 .vidioc_try_fmt_vbi_cap = cx23885_vbi_fmt,
1388 .vidioc_s_fmt_vbi_cap = cx23885_vbi_fmt,
Steven Tothe47f30b2008-01-10 04:25:59 -03001389 .vidioc_reqbufs = vidioc_reqbufs,
1390 .vidioc_querybuf = vidioc_querybuf,
1391 .vidioc_qbuf = vidioc_qbuf,
1392 .vidioc_dqbuf = vidioc_dqbuf,
1393 .vidioc_s_std = vidioc_s_std,
1394 .vidioc_enum_input = vidioc_enum_input,
1395 .vidioc_g_input = vidioc_g_input,
1396 .vidioc_s_input = vidioc_s_input,
Andy Wallse9e5cf42010-07-18 18:18:06 -03001397 .vidioc_log_status = vidioc_log_status,
Steven Tothe47f30b2008-01-10 04:25:59 -03001398 .vidioc_queryctrl = vidioc_queryctrl,
1399 .vidioc_g_ctrl = vidioc_g_ctrl,
1400 .vidioc_s_ctrl = vidioc_s_ctrl,
1401 .vidioc_streamon = vidioc_streamon,
1402 .vidioc_streamoff = vidioc_streamoff,
Steven Tothe47f30b2008-01-10 04:25:59 -03001403 .vidioc_g_tuner = vidioc_g_tuner,
1404 .vidioc_s_tuner = vidioc_s_tuner,
1405 .vidioc_g_frequency = vidioc_g_frequency,
1406 .vidioc_s_frequency = vidioc_s_frequency,
Andy Walls74618242009-09-26 22:50:44 -03001407 .vidioc_g_chip_ident = cx23885_g_chip_ident,
Steven Tothe47f30b2008-01-10 04:25:59 -03001408#ifdef CONFIG_VIDEO_ADV_DEBUG
Andy Walls74618242009-09-26 22:50:44 -03001409 .vidioc_g_register = cx23885_g_register,
1410 .vidioc_s_register = cx23885_s_register,
Steven Tothe47f30b2008-01-10 04:25:59 -03001411#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001412};
1413
1414static struct video_device cx23885_vbi_template;
1415static struct video_device cx23885_video_template = {
1416 .name = "cx23885-video",
Hans Verkuila3998102008-07-21 02:57:38 -03001417 .fops = &video_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001418 .ioctl_ops = &video_ioctl_ops,
Steven Tothe47f30b2008-01-10 04:25:59 -03001419 .tvnorms = CX23885_NORMS,
1420 .current_norm = V4L2_STD_NTSC_M,
1421};
1422
Hans Verkuilbec43662008-12-30 06:58:20 -03001423static const struct v4l2_file_operations radio_fops = {
Steven Tothe47f30b2008-01-10 04:25:59 -03001424 .owner = THIS_MODULE,
1425 .open = video_open,
1426 .release = video_release,
1427 .ioctl = video_ioctl2,
Steven Tothe47f30b2008-01-10 04:25:59 -03001428};
1429
1430
1431void cx23885_video_unregister(struct cx23885_dev *dev)
1432{
Harvey Harrison22b4e642008-04-08 23:20:00 -03001433 dprintk(1, "%s()\n", __func__);
Andy Wallsdbe83a32010-07-19 01:19:43 -03001434 cx23885_irq_remove(dev, 0x01);
Steven Tothe47f30b2008-01-10 04:25:59 -03001435
1436 if (dev->video_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001437 if (video_is_registered(dev->video_dev))
Steven Tothe47f30b2008-01-10 04:25:59 -03001438 video_unregister_device(dev->video_dev);
1439 else
1440 video_device_release(dev->video_dev);
1441 dev->video_dev = NULL;
1442
1443 btcx_riscmem_free(dev->pci, &dev->vidq.stopper);
1444 }
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001445
1446 if (dev->audio_dev)
1447 cx23885_audio_finidev(dev);
Steven Tothe47f30b2008-01-10 04:25:59 -03001448}
1449
1450int cx23885_video_register(struct cx23885_dev *dev)
1451{
1452 int err;
1453
Harvey Harrison22b4e642008-04-08 23:20:00 -03001454 dprintk(1, "%s()\n", __func__);
Steven Tothe47f30b2008-01-10 04:25:59 -03001455 spin_lock_init(&dev->slock);
1456
1457 /* Initialize VBI template */
1458 memcpy(&cx23885_vbi_template, &cx23885_video_template,
1459 sizeof(cx23885_vbi_template));
1460 strcpy(cx23885_vbi_template.name, "cx23885-vbi");
Steven Tothe47f30b2008-01-10 04:25:59 -03001461
1462 dev->tvnorm = cx23885_video_template.current_norm;
1463
1464 /* init video dma queues */
1465 INIT_LIST_HEAD(&dev->vidq.active);
1466 INIT_LIST_HEAD(&dev->vidq.queued);
1467 dev->vidq.timeout.function = cx23885_vid_timeout;
1468 dev->vidq.timeout.data = (unsigned long)dev;
1469 init_timer(&dev->vidq.timeout);
1470 cx23885_risc_stopper(dev->pci, &dev->vidq.stopper,
1471 VID_A_DMA_CTL, 0x11, 0x00);
1472
Steven Totha19602f22008-01-10 11:43:18 -03001473 /* Don't enable VBI yet */
Andy Wallsdbe83a32010-07-19 01:19:43 -03001474
1475 cx23885_irq_add_enable(dev, 0x01);
Steven Tothe47f30b2008-01-10 04:25:59 -03001476
Igor M. Liplianin557f48d2011-01-25 17:05:00 -03001477 if ((TUNER_ABSENT != dev->tuner_type) &&
1478 ((dev->tuner_bus == 0) || (dev->tuner_bus == 1))) {
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001479 struct v4l2_subdev *sd = NULL;
1480
1481 if (dev->tuner_addr)
Hans Verkuile6574f22009-04-01 03:57:53 -03001482 sd = v4l2_i2c_new_subdev(&dev->v4l2_dev,
Igor M. Liplianin557f48d2011-01-25 17:05:00 -03001483 &dev->i2c_bus[dev->tuner_bus].i2c_adap,
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -03001484 "tuner", dev->tuner_addr, NULL);
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001485 else
Hans Verkuil53dacb12009-08-10 02:49:08 -03001486 sd = v4l2_i2c_new_subdev(&dev->v4l2_dev,
Igor M. Liplianin557f48d2011-01-25 17:05:00 -03001487 &dev->i2c_bus[dev->tuner_bus].i2c_adap,
Laurent Pinchart1532a072010-09-24 07:58:29 -03001488 "tuner", 0, v4l2_i2c_tuner_addrs(ADDRS_TV));
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001489 if (sd) {
1490 struct tuner_setup tun_setup;
1491
David T.L. Wongfd705e72009-10-21 11:08:30 -03001492 memset(&tun_setup, 0, sizeof(tun_setup));
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001493 tun_setup.mode_mask = T_ANALOG_TV;
1494 tun_setup.type = dev->tuner_type;
1495 tun_setup.addr = v4l2_i2c_subdev_addr(sd);
David T.L. Wong6f0d8c02009-10-21 13:15:30 -03001496 tun_setup.tuner_callback = cx23885_tuner_callback;
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001497
1498 v4l2_subdev_call(sd, tuner, s_type_addr, &tun_setup);
Kusanagi Kouichi0b32d652010-01-22 04:55:28 -03001499
1500 if (dev->board == CX23885_BOARD_LEADTEK_WINFAST_PXTV1200) {
1501 struct xc2028_ctrl ctrl = {
1502 .fname = XC2028_DEFAULT_FIRMWARE,
1503 .max_len = 64
1504 };
1505 struct v4l2_priv_tun_config cfg = {
1506 .tuner = dev->tuner_type,
1507 .priv = &ctrl
1508 };
1509 v4l2_subdev_call(sd, tuner, s_config, &cfg);
1510 }
Hans Verkuil0d5a19f2009-03-29 06:53:29 -03001511 }
1512 }
1513
Steven Tothe47f30b2008-01-10 04:25:59 -03001514 /* register v4l devices */
1515 dev->video_dev = cx23885_vdev_init(dev, dev->pci,
1516 &cx23885_video_template, "video");
1517 err = video_register_device(dev->video_dev, VFL_TYPE_GRABBER,
1518 video_nr[dev->nr]);
1519 if (err < 0) {
1520 printk(KERN_INFO "%s: can't register video device\n",
1521 dev->name);
1522 goto fail_unreg;
1523 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001524 printk(KERN_INFO "%s/0: registered device %s [v4l2]\n",
1525 dev->name, video_device_node_name(dev->video_dev));
Mijhail Moreyra97ce5672011-10-10 11:09:53 -03001526
1527 /* Register ALSA audio device */
1528 dev->audio_dev = cx23885_audio_initdev(dev);
1529
Steven Tothe47f30b2008-01-10 04:25:59 -03001530 /* initial device configuration */
1531 mutex_lock(&dev->lock);
1532 cx23885_set_tvnorm(dev, dev->tvnorm);
1533 init_controls(dev);
1534 cx23885_video_mux(dev, 0);
1535 mutex_unlock(&dev->lock);
1536
Steven Tothe47f30b2008-01-10 04:25:59 -03001537 return 0;
1538
1539fail_unreg:
1540 cx23885_video_unregister(dev);
1541 return err;
1542}
1543