blob: f9bcb9dc8582d789ea13a65e7c4c7902c27ac5af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * device driver for Conexant 2388x based TV cards
4 * video4linux video interface
5 *
6 * (c) 2003-04 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
7 *
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03008 * (c) 2005-2006 Mauro Carvalho Chehab <mchehab@infradead.org>
9 * - Multituner support
10 * - video_ioctl2 conversion
11 * - PAL/M fixes
12 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/init.h>
29#include <linux/list.h>
30#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kmod.h>
32#include <linux/kernel.h>
33#include <linux/slab.h>
34#include <linux/interrupt.h>
Andrew Mortonc24228d2007-05-06 14:51:55 -070035#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
37#include <linux/kthread.h>
38#include <asm/div64.h>
39
40#include "cx88.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020041#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030043#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab79436632005-11-08 21:37:49 -080044/* Include V4L1 specific functions. Should be removed soon */
45#include <linux/videodev.h>
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030046#endif
Mauro Carvalho Chehab79436632005-11-08 21:37:49 -080047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards");
49MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
50MODULE_LICENSE("GPL");
51
52/* ------------------------------------------------------------------ */
53
54static unsigned int video_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
55static unsigned int vbi_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
56static unsigned int radio_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
57
58module_param_array(video_nr, int, NULL, 0444);
59module_param_array(vbi_nr, int, NULL, 0444);
60module_param_array(radio_nr, int, NULL, 0444);
61
62MODULE_PARM_DESC(video_nr,"video device numbers");
63MODULE_PARM_DESC(vbi_nr,"vbi device numbers");
64MODULE_PARM_DESC(radio_nr,"radio device numbers");
65
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030066static unsigned int video_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067module_param(video_debug,int,0644);
68MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
69
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030070static unsigned int irq_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071module_param(irq_debug,int,0644);
72MODULE_PARM_DESC(irq_debug,"enable debug messages [IRQ handler]");
73
74static unsigned int vid_limit = 16;
75module_param(vid_limit,int,0644);
76MODULE_PARM_DESC(vid_limit,"capture memory limit in megabytes");
77
78#define dprintk(level,fmt, arg...) if (video_debug >= level) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070079 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* ------------------------------------------------------------------ */
82
83static LIST_HEAD(cx8800_devlist);
84
85/* ------------------------------------------------------------------- */
86/* static data */
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static struct cx8800_fmt formats[] = {
89 {
90 .name = "8 bpp, gray",
91 .fourcc = V4L2_PIX_FMT_GREY,
92 .cxformat = ColorFormatY8,
93 .depth = 8,
94 .flags = FORMAT_FLAGS_PACKED,
95 },{
96 .name = "15 bpp RGB, le",
97 .fourcc = V4L2_PIX_FMT_RGB555,
98 .cxformat = ColorFormatRGB15,
99 .depth = 16,
100 .flags = FORMAT_FLAGS_PACKED,
101 },{
102 .name = "15 bpp RGB, be",
103 .fourcc = V4L2_PIX_FMT_RGB555X,
104 .cxformat = ColorFormatRGB15 | ColorFormatBSWAP,
105 .depth = 16,
106 .flags = FORMAT_FLAGS_PACKED,
107 },{
108 .name = "16 bpp RGB, le",
109 .fourcc = V4L2_PIX_FMT_RGB565,
110 .cxformat = ColorFormatRGB16,
111 .depth = 16,
112 .flags = FORMAT_FLAGS_PACKED,
113 },{
114 .name = "16 bpp RGB, be",
115 .fourcc = V4L2_PIX_FMT_RGB565X,
116 .cxformat = ColorFormatRGB16 | ColorFormatBSWAP,
117 .depth = 16,
118 .flags = FORMAT_FLAGS_PACKED,
119 },{
120 .name = "24 bpp RGB, le",
121 .fourcc = V4L2_PIX_FMT_BGR24,
122 .cxformat = ColorFormatRGB24,
123 .depth = 24,
124 .flags = FORMAT_FLAGS_PACKED,
125 },{
126 .name = "32 bpp RGB, le",
127 .fourcc = V4L2_PIX_FMT_BGR32,
128 .cxformat = ColorFormatRGB32,
129 .depth = 32,
130 .flags = FORMAT_FLAGS_PACKED,
131 },{
132 .name = "32 bpp RGB, be",
133 .fourcc = V4L2_PIX_FMT_RGB32,
134 .cxformat = ColorFormatRGB32 | ColorFormatBSWAP | ColorFormatWSWAP,
135 .depth = 32,
136 .flags = FORMAT_FLAGS_PACKED,
137 },{
138 .name = "4:2:2, packed, YUYV",
139 .fourcc = V4L2_PIX_FMT_YUYV,
140 .cxformat = ColorFormatYUY2,
141 .depth = 16,
142 .flags = FORMAT_FLAGS_PACKED,
143 },{
144 .name = "4:2:2, packed, UYVY",
145 .fourcc = V4L2_PIX_FMT_UYVY,
146 .cxformat = ColorFormatYUY2 | ColorFormatBSWAP,
147 .depth = 16,
148 .flags = FORMAT_FLAGS_PACKED,
149 },
150};
151
152static struct cx8800_fmt* format_by_fourcc(unsigned int fourcc)
153{
154 unsigned int i;
155
156 for (i = 0; i < ARRAY_SIZE(formats); i++)
157 if (formats[i].fourcc == fourcc)
158 return formats+i;
159 return NULL;
160}
161
162/* ------------------------------------------------------------------- */
163
164static const struct v4l2_queryctrl no_ctl = {
165 .name = "42",
166 .flags = V4L2_CTRL_FLAG_DISABLED,
167};
168
169static struct cx88_ctrl cx8800_ctls[] = {
170 /* --- video --- */
171 {
172 .v = {
173 .id = V4L2_CID_BRIGHTNESS,
174 .name = "Brightness",
175 .minimum = 0x00,
176 .maximum = 0xff,
177 .step = 1,
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300178 .default_value = 0x7f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .type = V4L2_CTRL_TYPE_INTEGER,
180 },
181 .off = 128,
182 .reg = MO_CONTR_BRIGHT,
183 .mask = 0x00ff,
184 .shift = 0,
185 },{
186 .v = {
187 .id = V4L2_CID_CONTRAST,
188 .name = "Contrast",
189 .minimum = 0,
190 .maximum = 0xff,
191 .step = 1,
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200192 .default_value = 0x3f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 .type = V4L2_CTRL_TYPE_INTEGER,
194 },
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700195 .off = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 .reg = MO_CONTR_BRIGHT,
197 .mask = 0xff00,
198 .shift = 8,
199 },{
200 .v = {
201 .id = V4L2_CID_HUE,
202 .name = "Hue",
203 .minimum = 0,
204 .maximum = 0xff,
205 .step = 1,
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300206 .default_value = 0x7f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 .type = V4L2_CTRL_TYPE_INTEGER,
208 },
Michael Krufky9ac4c1582005-07-07 17:58:38 -0700209 .off = 128,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .reg = MO_HUE,
211 .mask = 0x00ff,
212 .shift = 0,
213 },{
214 /* strictly, this only describes only U saturation.
215 * V saturation is handled specially through code.
216 */
217 .v = {
218 .id = V4L2_CID_SATURATION,
219 .name = "Saturation",
220 .minimum = 0,
221 .maximum = 0xff,
222 .step = 1,
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200223 .default_value = 0x7f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 .type = V4L2_CTRL_TYPE_INTEGER,
225 },
226 .off = 0,
227 .reg = MO_UV_SATURATION,
228 .mask = 0x00ff,
229 .shift = 0,
230 },{
Frej Drejhammar6d042032008-03-23 22:43:21 -0300231 .v = {
232 .id = V4L2_CID_CHROMA_AGC,
233 .name = "Chroma AGC",
234 .minimum = 0,
235 .maximum = 1,
Frej Drejhammar87a17382008-03-23 22:43:22 -0300236 .default_value = 0x1,
Frej Drejhammar6d042032008-03-23 22:43:21 -0300237 .type = V4L2_CTRL_TYPE_BOOLEAN,
238 },
239 .reg = MO_INPUT_FORMAT,
240 .mask = 1 << 10,
241 .shift = 10,
242 }, {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* --- audio --- */
244 .v = {
245 .id = V4L2_CID_AUDIO_MUTE,
246 .name = "Mute",
247 .minimum = 0,
248 .maximum = 1,
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200249 .default_value = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 .type = V4L2_CTRL_TYPE_BOOLEAN,
251 },
252 .reg = AUD_VOL_CTL,
253 .sreg = SHADOW_AUD_VOL_CTL,
254 .mask = (1 << 6),
255 .shift = 6,
256 },{
257 .v = {
258 .id = V4L2_CID_AUDIO_VOLUME,
259 .name = "Volume",
260 .minimum = 0,
261 .maximum = 0x3f,
262 .step = 1,
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300263 .default_value = 0x3f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 .type = V4L2_CTRL_TYPE_INTEGER,
265 },
266 .reg = AUD_VOL_CTL,
267 .sreg = SHADOW_AUD_VOL_CTL,
268 .mask = 0x3f,
269 .shift = 0,
270 },{
271 .v = {
272 .id = V4L2_CID_AUDIO_BALANCE,
273 .name = "Balance",
274 .minimum = 0,
275 .maximum = 0x7f,
276 .step = 1,
277 .default_value = 0x40,
278 .type = V4L2_CTRL_TYPE_INTEGER,
279 },
280 .reg = AUD_BAL_CTL,
281 .sreg = SHADOW_AUD_BAL_CTL,
282 .mask = 0x7f,
283 .shift = 0,
284 }
285};
Adrian Bunk408b6642005-05-01 08:59:29 -0700286static const int CX8800_CTLS = ARRAY_SIZE(cx8800_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Michael Krufky38a27132006-06-26 23:42:39 -0300288const u32 cx88_user_ctrls[] = {
289 V4L2_CID_USER_CLASS,
290 V4L2_CID_BRIGHTNESS,
291 V4L2_CID_CONTRAST,
292 V4L2_CID_SATURATION,
293 V4L2_CID_HUE,
294 V4L2_CID_AUDIO_VOLUME,
295 V4L2_CID_AUDIO_BALANCE,
296 V4L2_CID_AUDIO_MUTE,
Frej Drejhammar6d042032008-03-23 22:43:21 -0300297 V4L2_CID_CHROMA_AGC,
Michael Krufky38a27132006-06-26 23:42:39 -0300298 0
299};
300EXPORT_SYMBOL(cx88_user_ctrls);
301
302static const u32 *ctrl_classes[] = {
303 cx88_user_ctrls,
304 NULL
305};
306
Frej Drejhammar6d042032008-03-23 22:43:21 -0300307int cx8800_ctrl_query(struct cx88_core *core, struct v4l2_queryctrl *qctrl)
Michael Krufky38a27132006-06-26 23:42:39 -0300308{
309 int i;
310
311 if (qctrl->id < V4L2_CID_BASE ||
312 qctrl->id >= V4L2_CID_LASTP1)
313 return -EINVAL;
314 for (i = 0; i < CX8800_CTLS; i++)
315 if (cx8800_ctls[i].v.id == qctrl->id)
316 break;
317 if (i == CX8800_CTLS) {
318 *qctrl = no_ctl;
319 return 0;
320 }
321 *qctrl = cx8800_ctls[i].v;
Frej Drejhammar6d042032008-03-23 22:43:21 -0300322 /* Report chroma AGC as inactive when SECAM is selected */
323 if (cx8800_ctls[i].v.id == V4L2_CID_CHROMA_AGC &&
324 core->tvnorm & V4L2_STD_SECAM)
325 qctrl->flags |= V4L2_CTRL_FLAG_INACTIVE;
326
Michael Krufky38a27132006-06-26 23:42:39 -0300327 return 0;
328}
329EXPORT_SYMBOL(cx8800_ctrl_query);
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/* ------------------------------------------------------------------- */
332/* resource management */
333
334static int res_get(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bit)
335{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700336 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (fh->resources & bit)
338 /* have it already allocated */
339 return 1;
340
341 /* is it free? */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200342 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (dev->resources & bit) {
344 /* no, someone else uses it */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200345 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return 0;
347 }
348 /* it's free, grab it */
349 fh->resources |= bit;
350 dev->resources |= bit;
351 dprintk(1,"res: get %d\n",bit);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200352 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 1;
354}
355
356static
357int res_check(struct cx8800_fh *fh, unsigned int bit)
358{
359 return (fh->resources & bit);
360}
361
362static
363int res_locked(struct cx8800_dev *dev, unsigned int bit)
364{
365 return (dev->resources & bit);
366}
367
368static
369void res_free(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bits)
370{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700371 struct cx88_core *core = dev->core;
Eric Sesterhennae246012006-03-13 13:17:11 -0300372 BUG_ON((fh->resources & bits) != bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Ingo Molnar3593cab2006-02-07 06:49:14 -0200374 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 fh->resources &= ~bits;
376 dev->resources &= ~bits;
377 dprintk(1,"res: put %d\n",bits);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200378 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381/* ------------------------------------------------------------------ */
382
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -0300383int cx88_video_mux(struct cx88_core *core, unsigned int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700385 /* struct cx88_core *core = dev->core; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 dprintk(1,"video_mux: %d [vmux=%d,gpio=0x%x,0x%x,0x%x,0x%x]\n",
Trent Piepho6a59d642007-08-15 14:41:57 -0300388 input, INPUT(input).vmux,
389 INPUT(input).gpio0,INPUT(input).gpio1,
390 INPUT(input).gpio2,INPUT(input).gpio3);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700391 core->input = input;
Trent Piepho6a59d642007-08-15 14:41:57 -0300392 cx_andor(MO_INPUT_FORMAT, 0x03 << 14, INPUT(input).vmux << 14);
393 cx_write(MO_GP3_IO, INPUT(input).gpio3);
394 cx_write(MO_GP0_IO, INPUT(input).gpio0);
395 cx_write(MO_GP1_IO, INPUT(input).gpio1);
396 cx_write(MO_GP2_IO, INPUT(input).gpio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Trent Piepho6a59d642007-08-15 14:41:57 -0300398 switch (INPUT(input).type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 case CX88_VMUX_SVIDEO:
400 cx_set(MO_AFECFG_IO, 0x00000001);
401 cx_set(MO_INPUT_FORMAT, 0x00010010);
402 cx_set(MO_FILTER_EVEN, 0x00002020);
403 cx_set(MO_FILTER_ODD, 0x00002020);
404 break;
405 default:
406 cx_clear(MO_AFECFG_IO, 0x00000001);
407 cx_clear(MO_INPUT_FORMAT, 0x00010010);
408 cx_clear(MO_FILTER_EVEN, 0x00002020);
409 cx_clear(MO_FILTER_ODD, 0x00002020);
410 break;
411 }
Michael Krufkyf24546a2006-10-16 16:51:11 -0300412
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300413 /* if there are audioroutes defined, we have an external
414 ADC to deal with audio */
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300415
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300416 if (INPUT(input).audioroute) {
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300417
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300418 /* cx2388's C-ADC is connected to the tuner only.
419 When used with S-Video, that ADC is busy dealing with
420 chroma, so an external must be used for baseband audio */
421
422 if (INPUT(input).type != CX88_VMUX_TELEVISION &&
423 INPUT(input).type != CX88_RADIO) {
424 /* "ADC mode" */
425 cx_write(AUD_I2SCNTL, 0x1);
Michael Krufkyf24546a2006-10-16 16:51:11 -0300426 cx_set(AUD_CTL, EN_I2SIN_ENABLE);
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300427 } else {
428 /* Normal mode */
429 cx_write(AUD_I2SCNTL, 0x0);
Michael Krufkyf24546a2006-10-16 16:51:11 -0300430 cx_clear(AUD_CTL, EN_I2SIN_ENABLE);
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300431 }
432
433 /* The wm8775 module has the "2" route hardwired into
434 the initialization. Some boards may use different
435 routes for different inputs. HVR-1300 surely does */
436 if (core->board.audio_chip &&
437 core->board.audio_chip == AUDIO_CHIP_WM8775) {
438 struct v4l2_routing route;
439
440 route.input = INPUT(input).audioroute;
441 cx88_call_i2c_clients(core,
Mauro Carvalho Chehabd8f69972007-12-17 10:35:59 -0300442 VIDIOC_INT_S_AUDIO_ROUTING, &route);
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300443
444 }
445
Michael Krufkyf24546a2006-10-16 16:51:11 -0300446 }
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return 0;
449}
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -0300450EXPORT_SYMBOL(cx88_video_mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452/* ------------------------------------------------------------------ */
453
454static int start_video_dma(struct cx8800_dev *dev,
455 struct cx88_dmaqueue *q,
456 struct cx88_buffer *buf)
457{
458 struct cx88_core *core = dev->core;
459
460 /* setup fifo + format */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700461 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 buf->bpl, buf->risc.dma);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700463 cx88_set_scale(core, buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 cx_write(MO_COLOR_CTRL, buf->fmt->cxformat | ColorFormatGamma);
465
466 /* reset counter */
467 cx_write(MO_VIDY_GPCNTRL,GP_COUNT_CONTROL_RESET);
468 q->count = 1;
469
470 /* enable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300471 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_VIDINT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700472
473 /* Enables corresponding bits at PCI_INT_STAT:
474 bits 0 to 4: video, audio, transport stream, VIP, Host
475 bit 7: timer
476 bits 8 and 9: DMA complete for: SRC, DST
477 bits 10 and 11: BERR signal asserted for RISC: RD, WR
478 bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB
479 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 cx_set(MO_VID_INTMSK, 0x0f0011);
481
482 /* enable capture */
483 cx_set(VID_CAPTURE_CONTROL,0x06);
484
485 /* start dma */
486 cx_set(MO_DEV_CNTRL2, (1<<5));
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700487 cx_set(MO_VID_DMACNTRL, 0x11); /* Planar Y and packed FIFO and RISC enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 return 0;
490}
491
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300492#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493static int stop_video_dma(struct cx8800_dev *dev)
494{
495 struct cx88_core *core = dev->core;
496
497 /* stop dma */
498 cx_clear(MO_VID_DMACNTRL, 0x11);
499
500 /* disable capture */
501 cx_clear(VID_CAPTURE_CONTROL,0x06);
502
503 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300504 cx_clear(MO_PCI_INTMSK, PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 cx_clear(MO_VID_INTMSK, 0x0f0011);
506 return 0;
507}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300508#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510static int restart_video_queue(struct cx8800_dev *dev,
511 struct cx88_dmaqueue *q)
512{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700513 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct cx88_buffer *buf, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if (!list_empty(&q->active)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800517 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
519 buf, buf->vb.i);
520 start_video_dma(dev, q, buf);
Trent Piepho8bb629e22007-10-10 05:37:40 -0300521 list_for_each_entry(buf, &q->active, vb.queue)
522 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
524 return 0;
525 }
526
527 prev = NULL;
528 for (;;) {
529 if (list_empty(&q->queued))
530 return 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800531 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (NULL == prev) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700533 list_move_tail(&buf->vb.queue, &q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300535 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 buf->count = q->count++;
537 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
538 dprintk(2,"[%p/%d] restart_queue - first active\n",
539 buf,buf->vb.i);
540
541 } else if (prev->vb.width == buf->vb.width &&
542 prev->vb.height == buf->vb.height &&
543 prev->fmt == buf->fmt) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700544 list_move_tail(&buf->vb.queue, &q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300545 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 buf->count = q->count++;
547 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
548 dprintk(2,"[%p/%d] restart_queue - move to active\n",
549 buf,buf->vb.i);
550 } else {
551 return 0;
552 }
553 prev = buf;
554 }
555}
556
557/* ------------------------------------------------------------------ */
558
559static int
560buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
561{
562 struct cx8800_fh *fh = q->priv_data;
563
564 *size = fh->fmt->depth*fh->width*fh->height >> 3;
565 if (0 == *count)
566 *count = 32;
567 while (*size * *count > vid_limit * 1024 * 1024)
568 (*count)--;
569 return 0;
570}
571
572static int
573buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
574 enum v4l2_field field)
575{
576 struct cx8800_fh *fh = q->priv_data;
577 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700578 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300580 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int rc, init_buffer = 0;
582
583 BUG_ON(NULL == fh->fmt);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700584 if (fh->width < 48 || fh->width > norm_maxw(core->tvnorm) ||
585 fh->height < 32 || fh->height > norm_maxh(core->tvnorm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return -EINVAL;
587 buf->vb.size = (fh->width * fh->height * fh->fmt->depth) >> 3;
588 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
589 return -EINVAL;
590
591 if (buf->fmt != fh->fmt ||
592 buf->vb.width != fh->width ||
593 buf->vb.height != fh->height ||
594 buf->vb.field != field) {
595 buf->fmt = fh->fmt;
596 buf->vb.width = fh->width;
597 buf->vb.height = fh->height;
598 buf->vb.field = field;
599 init_buffer = 1;
600 }
601
Brandon Philips0fc06862007-11-06 20:02:36 -0300602 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 init_buffer = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300604 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto fail;
606 }
607
608 if (init_buffer) {
609 buf->bpl = buf->vb.width * buf->fmt->depth >> 3;
610 switch (buf->vb.field) {
611 case V4L2_FIELD_TOP:
612 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300613 dma->sglist, 0, UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 buf->bpl, 0, buf->vb.height);
615 break;
616 case V4L2_FIELD_BOTTOM:
617 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300618 dma->sglist, UNSET, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 buf->bpl, 0, buf->vb.height);
620 break;
621 case V4L2_FIELD_INTERLACED:
622 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300623 dma->sglist, 0, buf->bpl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 buf->bpl, buf->bpl,
625 buf->vb.height >> 1);
626 break;
627 case V4L2_FIELD_SEQ_TB:
628 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300629 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 0, buf->bpl * (buf->vb.height >> 1),
631 buf->bpl, 0,
632 buf->vb.height >> 1);
633 break;
634 case V4L2_FIELD_SEQ_BT:
635 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300636 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 buf->bpl * (buf->vb.height >> 1), 0,
638 buf->bpl, 0,
639 buf->vb.height >> 1);
640 break;
641 default:
642 BUG();
643 }
644 }
645 dprintk(2,"[%p/%d] buffer_prepare - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
646 buf, buf->vb.i,
647 fh->width, fh->height, fh->fmt->depth, fh->fmt->name,
648 (unsigned long)buf->risc.dma);
649
Brandon Philips0fc06862007-11-06 20:02:36 -0300650 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return 0;
652
653 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300654 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return rc;
656}
657
658static void
659buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
660{
661 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
662 struct cx88_buffer *prev;
663 struct cx8800_fh *fh = vq->priv_data;
664 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700665 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct cx88_dmaqueue *q = &dev->vidq;
667
668 /* add jump to stopper */
669 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
670 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
671
672 if (!list_empty(&q->queued)) {
673 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300674 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 dprintk(2,"[%p/%d] buffer_queue - append to queued\n",
676 buf, buf->vb.i);
677
678 } else if (list_empty(&q->active)) {
679 list_add_tail(&buf->vb.queue,&q->active);
680 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300681 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 buf->count = q->count++;
683 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
684 dprintk(2,"[%p/%d] buffer_queue - first active\n",
685 buf, buf->vb.i);
686
687 } else {
688 prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
689 if (prev->vb.width == buf->vb.width &&
690 prev->vb.height == buf->vb.height &&
691 prev->fmt == buf->fmt) {
692 list_add_tail(&buf->vb.queue,&q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300693 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 buf->count = q->count++;
695 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
696 dprintk(2,"[%p/%d] buffer_queue - append to active\n",
697 buf, buf->vb.i);
698
699 } else {
700 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300701 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 dprintk(2,"[%p/%d] buffer_queue - first queued\n",
703 buf, buf->vb.i);
704 }
705 }
706}
707
708static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
709{
710 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300712 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Adrian Bunk408b6642005-05-01 08:59:29 -0700715static struct videobuf_queue_ops cx8800_video_qops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 .buf_setup = buffer_setup,
717 .buf_prepare = buffer_prepare,
718 .buf_queue = buffer_queue,
719 .buf_release = buffer_release,
720};
721
722/* ------------------------------------------------------------------ */
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725/* ------------------------------------------------------------------ */
726
727static struct videobuf_queue* get_queue(struct cx8800_fh *fh)
728{
729 switch (fh->type) {
730 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
731 return &fh->vidq;
732 case V4L2_BUF_TYPE_VBI_CAPTURE:
733 return &fh->vbiq;
734 default:
735 BUG();
736 return NULL;
737 }
738}
739
740static int get_ressource(struct cx8800_fh *fh)
741{
742 switch (fh->type) {
743 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
744 return RESOURCE_VIDEO;
745 case V4L2_BUF_TYPE_VBI_CAPTURE:
746 return RESOURCE_VBI;
747 default:
748 BUG();
749 return 0;
750 }
751}
752
753static int video_open(struct inode *inode, struct file *file)
754{
755 int minor = iminor(inode);
756 struct cx8800_dev *h,*dev = NULL;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700757 struct cx88_core *core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 struct cx8800_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 enum v4l2_buf_type type = 0;
760 int radio = 0;
761
Trent Piepho8bb629e22007-10-10 05:37:40 -0300762 list_for_each_entry(h, &cx8800_devlist, devlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (h->video_dev->minor == minor) {
764 dev = h;
765 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
766 }
767 if (h->vbi_dev->minor == minor) {
768 dev = h;
769 type = V4L2_BUF_TYPE_VBI_CAPTURE;
770 }
771 if (h->radio_dev &&
772 h->radio_dev->minor == minor) {
773 radio = 1;
774 dev = h;
775 }
776 }
777 if (NULL == dev)
778 return -ENODEV;
779
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700780 core = dev->core;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 dprintk(1,"open minor=%d radio=%d type=%s\n",
783 minor,radio,v4l2_type_names[type]);
784
785 /* allocate + initialize per filehandle data */
Panagiotis Issaris74081872006-01-11 19:40:56 -0200786 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (NULL == fh)
788 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 file->private_data = fh;
790 fh->dev = dev;
791 fh->radio = radio;
792 fh->type = type;
793 fh->width = 320;
794 fh->height = 240;
795 fh->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
796
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300797 videobuf_queue_sg_init(&fh->vidq, &cx8800_video_qops,
798 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 V4L2_BUF_TYPE_VIDEO_CAPTURE,
800 V4L2_FIELD_INTERLACED,
801 sizeof(struct cx88_buffer),
802 fh);
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300803 videobuf_queue_sg_init(&fh->vbiq, &cx8800_vbi_qops,
804 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 V4L2_BUF_TYPE_VBI_CAPTURE,
806 V4L2_FIELD_SEQ_TB,
807 sizeof(struct cx88_buffer),
808 fh);
809
810 if (fh->radio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 dprintk(1,"video_open: setting radio device\n");
Trent Piepho6a59d642007-08-15 14:41:57 -0300812 cx_write(MO_GP3_IO, core->board.radio.gpio3);
813 cx_write(MO_GP0_IO, core->board.radio.gpio0);
814 cx_write(MO_GP1_IO, core->board.radio.gpio1);
815 cx_write(MO_GP2_IO, core->board.radio.gpio2);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700816 core->tvaudio = WW_FM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 cx88_set_tvaudio(core);
818 cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700819 cx88_call_i2c_clients(core,AUDC_SET_RADIO,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825static ssize_t
Peter Hagervallf9e7a022005-11-08 21:36:29 -0800826video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 struct cx8800_fh *fh = file->private_data;
829
830 switch (fh->type) {
831 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
832 if (res_locked(fh->dev,RESOURCE_VIDEO))
833 return -EBUSY;
834 return videobuf_read_one(&fh->vidq, data, count, ppos,
835 file->f_flags & O_NONBLOCK);
836 case V4L2_BUF_TYPE_VBI_CAPTURE:
837 if (!res_get(fh->dev,fh,RESOURCE_VBI))
838 return -EBUSY;
839 return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1,
840 file->f_flags & O_NONBLOCK);
841 default:
842 BUG();
843 return 0;
844 }
845}
846
847static unsigned int
848video_poll(struct file *file, struct poll_table_struct *wait)
849{
850 struct cx8800_fh *fh = file->private_data;
851 struct cx88_buffer *buf;
852
853 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
854 if (!res_get(fh->dev,fh,RESOURCE_VBI))
855 return POLLERR;
856 return videobuf_poll_stream(file, &fh->vbiq, wait);
857 }
858
859 if (res_check(fh,RESOURCE_VIDEO)) {
860 /* streaming capture */
861 if (list_empty(&fh->vidq.stream))
862 return POLLERR;
863 buf = list_entry(fh->vidq.stream.next,struct cx88_buffer,vb.stream);
864 } else {
865 /* read() capture */
866 buf = (struct cx88_buffer*)fh->vidq.read_buf;
867 if (NULL == buf)
868 return POLLERR;
869 }
870 poll_wait(file, &buf->vb.done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -0300871 if (buf->vb.state == VIDEOBUF_DONE ||
872 buf->vb.state == VIDEOBUF_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return POLLIN|POLLRDNORM;
874 return 0;
875}
876
877static int video_release(struct inode *inode, struct file *file)
878{
879 struct cx8800_fh *fh = file->private_data;
880 struct cx8800_dev *dev = fh->dev;
881
882 /* turn off overlay */
883 if (res_check(fh, RESOURCE_OVERLAY)) {
884 /* FIXME */
885 res_free(dev,fh,RESOURCE_OVERLAY);
886 }
887
888 /* stop video capture */
889 if (res_check(fh, RESOURCE_VIDEO)) {
890 videobuf_queue_cancel(&fh->vidq);
891 res_free(dev,fh,RESOURCE_VIDEO);
892 }
893 if (fh->vidq.read_buf) {
894 buffer_release(&fh->vidq,fh->vidq.read_buf);
895 kfree(fh->vidq.read_buf);
896 }
897
898 /* stop vbi capture */
899 if (res_check(fh, RESOURCE_VBI)) {
Brandon Philips053fcb62007-11-13 20:11:26 -0300900 videobuf_stop(&fh->vbiq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 res_free(dev,fh,RESOURCE_VBI);
902 }
903
904 videobuf_mmap_free(&fh->vidq);
905 videobuf_mmap_free(&fh->vbiq);
906 file->private_data = NULL;
907 kfree(fh);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700908
909 cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL);
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return 0;
912}
913
914static int
915video_mmap(struct file *file, struct vm_area_struct * vma)
916{
917 struct cx8800_fh *fh = file->private_data;
918
919 return videobuf_mmap_mapper(get_queue(fh), vma);
920}
921
922/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300923/* VIDEO CTRL IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -0300925int cx88_get_control (struct cx88_core *core, struct v4l2_control *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300927 struct cx88_ctrl *c = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 u32 value;
929 int i;
930
931 for (i = 0; i < CX8800_CTLS; i++)
932 if (cx8800_ctls[i].v.id == ctl->id)
933 c = &cx8800_ctls[i];
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300934 if (unlikely(NULL == c))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return -EINVAL;
936
937 value = c->sreg ? cx_sread(c->sreg) : cx_read(c->reg);
938 switch (ctl->id) {
939 case V4L2_CID_AUDIO_BALANCE:
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300940 ctl->value = ((value & 0x7f) < 0x40) ? ((value & 0x7f) + 0x40)
941 : (0x7f - (value & 0x7f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 break;
943 case V4L2_CID_AUDIO_VOLUME:
944 ctl->value = 0x3f - (value & 0x3f);
945 break;
946 default:
947 ctl->value = ((value + (c->off << c->shift)) & c->mask) >> c->shift;
948 break;
949 }
Ian Pickworth6457af52006-02-27 00:09:45 -0300950 dprintk(1,"get_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
951 ctl->id, c->v.name, ctl->value, c->reg,
952 value,c->mask, c->sreg ? " [shadowed]" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return 0;
954}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -0300955EXPORT_SYMBOL(cx88_get_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -0300957int cx88_set_control(struct cx88_core *core, struct v4l2_control *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 struct cx88_ctrl *c = NULL;
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200960 u32 value,mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 int i;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300962
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200963 for (i = 0; i < CX8800_CTLS; i++) {
964 if (cx8800_ctls[i].v.id == ctl->id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 c = &cx8800_ctls[i];
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200966 }
967 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300968 if (unlikely(NULL == c))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return -EINVAL;
970
971 if (ctl->value < c->v.minimum)
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700972 ctl->value = c->v.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (ctl->value > c->v.maximum)
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700974 ctl->value = c->v.maximum;
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200975 mask=c->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 switch (ctl->id) {
977 case V4L2_CID_AUDIO_BALANCE:
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300978 value = (ctl->value < 0x40) ? (0x7f - ctl->value) : (ctl->value - 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 case V4L2_CID_AUDIO_VOLUME:
981 value = 0x3f - (ctl->value & 0x3f);
982 break;
983 case V4L2_CID_SATURATION:
984 /* special v_sat handling */
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200985
986 value = ((ctl->value - c->off) << c->shift) & c->mask;
987
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -0300988 if (core->tvnorm & V4L2_STD_SECAM) {
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200989 /* For SECAM, both U and V sat should be equal */
990 value=value<<8|value;
991 } else {
992 /* Keeps U Saturation proportional to V Sat */
993 value=(value*0x5a)/0x7f<<8|value;
994 }
995 mask=0xffff;
996 break;
Frej Drejhammar6d042032008-03-23 22:43:21 -0300997 case V4L2_CID_CHROMA_AGC:
998 /* Do not allow chroma AGC to be enabled for SECAM */
999 value = ((ctl->value - c->off) << c->shift) & c->mask;
1000 if (core->tvnorm & V4L2_STD_SECAM && value)
1001 return -EINVAL;
1002 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 default:
1004 value = ((ctl->value - c->off) << c->shift) & c->mask;
1005 break;
1006 }
Ian Pickworth6457af52006-02-27 00:09:45 -03001007 dprintk(1,"set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
1008 ctl->id, c->v.name, ctl->value, c->reg, value,
1009 mask, c->sreg ? " [shadowed]" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (c->sreg) {
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001011 cx_sandor(c->sreg, c->reg, mask, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 } else {
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001013 cx_andor(c->reg, mask, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 return 0;
1016}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001017EXPORT_SYMBOL(cx88_set_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001019static void init_controls(struct cx88_core *core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001021 struct v4l2_control ctrl;
1022 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001024 for (i = 0; i < CX8800_CTLS; i++) {
1025 ctrl.id=cx8800_ctls[i].v.id;
Marcin Rudowski9f9c9072006-03-12 00:03:47 -03001026 ctrl.value=cx8800_ctls[i].v.default_value;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001027
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001028 cx88_set_control(core, &ctrl);
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
1032/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001033/* VIDEO IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001035static int vidioc_g_fmt_cap (struct file *file, void *priv,
1036 struct v4l2_format *f)
1037{
1038 struct cx8800_fh *fh = priv;
1039
1040 f->fmt.pix.width = fh->width;
1041 f->fmt.pix.height = fh->height;
1042 f->fmt.pix.field = fh->vidq.field;
1043 f->fmt.pix.pixelformat = fh->fmt->fourcc;
1044 f->fmt.pix.bytesperline =
1045 (f->fmt.pix.width * fh->fmt->depth) >> 3;
1046 f->fmt.pix.sizeimage =
1047 f->fmt.pix.height * f->fmt.pix.bytesperline;
1048 return 0;
1049}
1050
1051static int vidioc_try_fmt_cap (struct file *file, void *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 struct v4l2_format *f)
1053{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001054 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1055 struct cx8800_fmt *fmt;
1056 enum v4l2_field field;
1057 unsigned int maxw, maxh;
1058
1059 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1060 if (NULL == fmt)
1061 return -EINVAL;
1062
1063 field = f->fmt.pix.field;
1064 maxw = norm_maxw(core->tvnorm);
1065 maxh = norm_maxh(core->tvnorm);
1066
1067 if (V4L2_FIELD_ANY == field) {
1068 field = (f->fmt.pix.height > maxh/2)
1069 ? V4L2_FIELD_INTERLACED
1070 : V4L2_FIELD_BOTTOM;
1071 }
1072
1073 switch (field) {
1074 case V4L2_FIELD_TOP:
1075 case V4L2_FIELD_BOTTOM:
1076 maxh = maxh / 2;
1077 break;
1078 case V4L2_FIELD_INTERLACED:
1079 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 default:
1081 return -EINVAL;
1082 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001083
1084 f->fmt.pix.field = field;
1085 if (f->fmt.pix.height < 32)
1086 f->fmt.pix.height = 32;
1087 if (f->fmt.pix.height > maxh)
1088 f->fmt.pix.height = maxh;
1089 if (f->fmt.pix.width < 48)
1090 f->fmt.pix.width = 48;
1091 if (f->fmt.pix.width > maxw)
1092 f->fmt.pix.width = maxw;
1093 f->fmt.pix.width &= ~0x03;
1094 f->fmt.pix.bytesperline =
1095 (f->fmt.pix.width * fmt->depth) >> 3;
1096 f->fmt.pix.sizeimage =
1097 f->fmt.pix.height * f->fmt.pix.bytesperline;
1098
1099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001102static int vidioc_s_fmt_cap (struct file *file, void *priv,
1103 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001105 struct cx8800_fh *fh = priv;
1106 int err = vidioc_try_fmt_cap (file,priv,f);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001107
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001108 if (0 != err)
1109 return err;
1110 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1111 fh->width = f->fmt.pix.width;
1112 fh->height = f->fmt.pix.height;
1113 fh->vidq.field = f->fmt.pix.field;
1114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001117static int vidioc_querycap (struct file *file, void *priv,
1118 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001120 struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001123 strcpy(cap->driver, "cx8800");
Trent Piepho6a59d642007-08-15 14:41:57 -03001124 strlcpy(cap->card, core->board.name, sizeof(cap->card));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001125 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
1126 cap->version = CX88_VERSION_CODE;
1127 cap->capabilities =
1128 V4L2_CAP_VIDEO_CAPTURE |
1129 V4L2_CAP_READWRITE |
1130 V4L2_CAP_STREAMING |
1131 V4L2_CAP_VBI_CAPTURE;
Trent Piepho6a59d642007-08-15 14:41:57 -03001132 if (UNSET != core->board.tuner_type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001133 cap->capabilities |= V4L2_CAP_TUNER;
1134 return 0;
1135}
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001136
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001137static int vidioc_enum_fmt_cap (struct file *file, void *priv,
1138 struct v4l2_fmtdesc *f)
1139{
1140 if (unlikely(f->index >= ARRAY_SIZE(formats)))
1141 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001143 strlcpy(f->description,formats[f->index].name,sizeof(f->description));
1144 f->pixelformat = formats[f->index].fourcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001146 return 0;
1147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001149#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001150static int vidiocgmbuf (struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001151{
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -03001152 struct cx8800_fh *fh = priv;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001153
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -03001154 return videobuf_cgmbuf (get_queue(fh), mbuf, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001156#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001158static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001160 struct cx8800_fh *fh = priv;
1161 return (videobuf_reqbufs(get_queue(fh), p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001164static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p)
1165{
1166 struct cx8800_fh *fh = priv;
1167 return (videobuf_querybuf(get_queue(fh), p));
1168}
1169
1170static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1171{
1172 struct cx8800_fh *fh = priv;
1173 return (videobuf_qbuf(get_queue(fh), p));
1174}
1175
1176static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1177{
1178 struct cx8800_fh *fh = priv;
1179 return (videobuf_dqbuf(get_queue(fh), p,
1180 file->f_flags & O_NONBLOCK));
1181}
1182
1183static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1184{
1185 struct cx8800_fh *fh = priv;
1186 struct cx8800_dev *dev = fh->dev;
1187
1188 if (unlikely(fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE))
1189 return -EINVAL;
1190 if (unlikely(i != fh->type))
1191 return -EINVAL;
1192
1193 if (unlikely(!res_get(dev,fh,get_ressource(fh))))
1194 return -EBUSY;
1195 return videobuf_streamon(get_queue(fh));
1196}
1197
1198static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1199{
1200 struct cx8800_fh *fh = priv;
1201 struct cx8800_dev *dev = fh->dev;
1202 int err, res;
1203
1204 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1205 return -EINVAL;
1206 if (i != fh->type)
1207 return -EINVAL;
1208
1209 res = get_ressource(fh);
1210 err = videobuf_streamoff(get_queue(fh));
1211 if (err < 0)
1212 return err;
1213 res_free(dev,fh,res);
1214 return 0;
1215}
1216
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001217static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *tvnorms)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001218{
1219 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1220
1221 mutex_lock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001222 cx88_set_tvnorm(core,*tvnorms);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001223 mutex_unlock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001224
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001225 return 0;
1226}
1227
1228/* only one input in this sample driver */
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001229int cx88_enum_input (struct cx88_core *core,struct v4l2_input *i)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001230{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001231 static const char *iname[] = {
1232 [ CX88_VMUX_COMPOSITE1 ] = "Composite1",
1233 [ CX88_VMUX_COMPOSITE2 ] = "Composite2",
1234 [ CX88_VMUX_COMPOSITE3 ] = "Composite3",
1235 [ CX88_VMUX_COMPOSITE4 ] = "Composite4",
1236 [ CX88_VMUX_SVIDEO ] = "S-Video",
1237 [ CX88_VMUX_TELEVISION ] = "Television",
1238 [ CX88_VMUX_CABLE ] = "Cable TV",
1239 [ CX88_VMUX_DVB ] = "DVB",
1240 [ CX88_VMUX_DEBUG ] = "for debug only",
1241 };
1242 unsigned int n;
1243
1244 n = i->index;
1245 if (n >= 4)
1246 return -EINVAL;
Trent Piepho6a59d642007-08-15 14:41:57 -03001247 if (0 == INPUT(n).type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001248 return -EINVAL;
1249 memset(i,0,sizeof(*i));
1250 i->index = n;
1251 i->type = V4L2_INPUT_TYPE_CAMERA;
Trent Piepho6a59d642007-08-15 14:41:57 -03001252 strcpy(i->name,iname[INPUT(n).type]);
1253 if ((CX88_VMUX_TELEVISION == INPUT(n).type) ||
1254 (CX88_VMUX_CABLE == INPUT(n).type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001255 i->type = V4L2_INPUT_TYPE_TUNER;
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001256 i->std = CX88_NORMS;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001257 return 0;
1258}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001259EXPORT_SYMBOL(cx88_enum_input);
1260
1261static int vidioc_enum_input (struct file *file, void *priv,
1262 struct v4l2_input *i)
1263{
1264 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1265 return cx88_enum_input (core,i);
1266}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001267
1268static int vidioc_g_input (struct file *file, void *priv, unsigned int *i)
1269{
1270 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1271
1272 *i = core->input;
1273 return 0;
1274}
1275
1276static int vidioc_s_input (struct file *file, void *priv, unsigned int i)
1277{
1278 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1279
1280 if (i >= 4)
1281 return -EINVAL;
1282
1283 mutex_lock(&core->lock);
1284 cx88_newstation(core);
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -03001285 cx88_video_mux(core,i);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001286 mutex_unlock(&core->lock);
1287 return 0;
1288}
1289
1290
1291
1292static int vidioc_queryctrl (struct file *file, void *priv,
1293 struct v4l2_queryctrl *qctrl)
1294{
Frej Drejhammar6d042032008-03-23 22:43:21 -03001295 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1296
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001297 qctrl->id = v4l2_ctrl_next(ctrl_classes, qctrl->id);
1298 if (unlikely(qctrl->id == 0))
1299 return -EINVAL;
Frej Drejhammar6d042032008-03-23 22:43:21 -03001300 return cx8800_ctrl_query(core, qctrl);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001301}
1302
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001303static int vidioc_g_ctrl (struct file *file, void *priv,
1304 struct v4l2_control *ctl)
1305{
1306 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1307 return
1308 cx88_get_control(core,ctl);
1309}
1310
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001311static int vidioc_s_ctrl (struct file *file, void *priv,
1312 struct v4l2_control *ctl)
1313{
1314 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001315 return
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001316 cx88_set_control(core,ctl);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001317}
1318
1319static int vidioc_g_tuner (struct file *file, void *priv,
1320 struct v4l2_tuner *t)
1321{
1322 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1323 u32 reg;
1324
Trent Piepho6a59d642007-08-15 14:41:57 -03001325 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001326 return -EINVAL;
Mauro Carvalho Chehab243d8c02007-01-20 13:58:36 -03001327 if (0 != t->index)
1328 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001329
1330 strcpy(t->name, "Television");
1331 t->type = V4L2_TUNER_ANALOG_TV;
1332 t->capability = V4L2_TUNER_CAP_NORM;
1333 t->rangehigh = 0xffffffffUL;
1334
1335 cx88_get_stereo(core ,t);
1336 reg = cx_read(MO_DEVICE_STATUS);
1337 t->signal = (reg & (1<<5)) ? 0xffff : 0x0000;
1338 return 0;
1339}
1340
1341static int vidioc_s_tuner (struct file *file, void *priv,
1342 struct v4l2_tuner *t)
1343{
1344 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1345
Trent Piepho6a59d642007-08-15 14:41:57 -03001346 if (UNSET == core->board.tuner_type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001347 return -EINVAL;
1348 if (0 != t->index)
1349 return -EINVAL;
1350
1351 cx88_set_stereo(core, t->audmode, 1);
1352 return 0;
1353}
1354
1355static int vidioc_g_frequency (struct file *file, void *priv,
1356 struct v4l2_frequency *f)
1357{
1358 struct cx8800_fh *fh = priv;
1359 struct cx88_core *core = fh->dev->core;
1360
Trent Piepho6a59d642007-08-15 14:41:57 -03001361 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001362 return -EINVAL;
1363
1364 /* f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV; */
1365 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1366 f->frequency = core->freq;
1367
1368 cx88_call_i2c_clients(core,VIDIOC_G_FREQUENCY,f);
1369
1370 return 0;
1371}
1372
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001373int cx88_set_freq (struct cx88_core *core,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001374 struct v4l2_frequency *f)
1375{
Trent Piepho6a59d642007-08-15 14:41:57 -03001376 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001377 return -EINVAL;
1378 if (unlikely(f->tuner != 0))
1379 return -EINVAL;
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001380
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001381 mutex_lock(&core->lock);
1382 core->freq = f->frequency;
1383 cx88_newstation(core);
1384 cx88_call_i2c_clients(core,VIDIOC_S_FREQUENCY,f);
1385
1386 /* When changing channels it is required to reset TVAUDIO */
1387 msleep (10);
1388 cx88_set_tvaudio(core);
1389
1390 mutex_unlock(&core->lock);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001391
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001392 return 0;
1393}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001394EXPORT_SYMBOL(cx88_set_freq);
1395
1396static int vidioc_s_frequency (struct file *file, void *priv,
1397 struct v4l2_frequency *f)
1398{
1399 struct cx8800_fh *fh = priv;
1400 struct cx88_core *core = fh->dev->core;
1401
1402 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1403 return -EINVAL;
1404 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
1405 return -EINVAL;
1406
1407 return
1408 cx88_set_freq (core,f);
1409}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001410
Trent Piephodbbff482007-01-22 23:31:53 -03001411#ifdef CONFIG_VIDEO_ADV_DEBUG
1412static int vidioc_g_register (struct file *file, void *fh,
1413 struct v4l2_register *reg)
1414{
1415 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1416
Hans Verkuilf3d092b2007-02-23 20:55:14 -03001417 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
Trent Piephodbbff482007-01-22 23:31:53 -03001418 return -EINVAL;
1419 /* cx2388x has a 24-bit register space */
1420 reg->val = cx_read(reg->reg&0xffffff);
1421 return 0;
1422}
1423
1424static int vidioc_s_register (struct file *file, void *fh,
1425 struct v4l2_register *reg)
1426{
1427 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1428
Hans Verkuilf3d092b2007-02-23 20:55:14 -03001429 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
Trent Piephodbbff482007-01-22 23:31:53 -03001430 return -EINVAL;
Trent Piephodbbff482007-01-22 23:31:53 -03001431 cx_write(reg->reg&0xffffff, reg->val);
1432 return 0;
1433}
1434#endif
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436/* ----------------------------------------------------------- */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001437/* RADIO ESPECIFIC IOCTLS */
1438/* ----------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001440static int radio_querycap (struct file *file, void *priv,
1441 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001443 struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 struct cx88_core *core = dev->core;
1445
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001446 strcpy(cap->driver, "cx8800");
Trent Piepho6a59d642007-08-15 14:41:57 -03001447 strlcpy(cap->card, core->board.name, sizeof(cap->card));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001448 sprintf(cap->bus_info,"PCI:%s", pci_name(dev->pci));
1449 cap->version = CX88_VERSION_CODE;
1450 cap->capabilities = V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return 0;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001452}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001454static int radio_g_tuner (struct file *file, void *priv,
1455 struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001457 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1458
1459 if (unlikely(t->index > 0))
1460 return -EINVAL;
1461
1462 strcpy(t->name, "Radio");
1463 t->type = V4L2_TUNER_RADIO;
1464
1465 cx88_call_i2c_clients(core,VIDIOC_G_TUNER,t);
1466 return 0;
1467}
1468
1469static int radio_enum_input (struct file *file, void *priv,
1470 struct v4l2_input *i)
1471{
1472 if (i->index != 0)
1473 return -EINVAL;
1474 strcpy(i->name,"Radio");
1475 i->type = V4L2_INPUT_TYPE_TUNER;
1476
1477 return 0;
1478}
1479
1480static int radio_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
1481{
1482 if (unlikely(a->index))
1483 return -EINVAL;
1484
1485 memset(a,0,sizeof(*a));
1486 strcpy(a->name,"Radio");
1487 return 0;
1488}
1489
1490/* FIXME: Should add a standard for radio */
1491
1492static int radio_s_tuner (struct file *file, void *priv,
1493 struct v4l2_tuner *t)
1494{
1495 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1496
1497 if (0 != t->index)
1498 return -EINVAL;
1499
1500 cx88_call_i2c_clients(core,VIDIOC_S_TUNER,t);
1501
1502 return 0;
1503}
1504
1505static int radio_s_audio (struct file *file, void *fh,
1506 struct v4l2_audio *a)
1507{
1508 return 0;
1509}
1510
1511static int radio_s_input (struct file *file, void *fh, unsigned int i)
1512{
1513 return 0;
1514}
1515
1516static int radio_queryctrl (struct file *file, void *priv,
1517 struct v4l2_queryctrl *c)
1518{
1519 int i;
1520
1521 if (c->id < V4L2_CID_BASE ||
1522 c->id >= V4L2_CID_LASTP1)
1523 return -EINVAL;
1524 if (c->id == V4L2_CID_AUDIO_MUTE) {
1525 for (i = 0; i < CX8800_CTLS; i++)
1526 if (cx8800_ctls[i].v.id == c->id)
1527 break;
1528 *c = cx8800_ctls[i].v;
1529 } else
1530 *c = no_ctl;
1531 return 0;
1532}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534/* ----------------------------------------------------------- */
1535
1536static void cx8800_vid_timeout(unsigned long data)
1537{
1538 struct cx8800_dev *dev = (struct cx8800_dev*)data;
1539 struct cx88_core *core = dev->core;
1540 struct cx88_dmaqueue *q = &dev->vidq;
1541 struct cx88_buffer *buf;
1542 unsigned long flags;
1543
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001544 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 cx_clear(MO_VID_DMACNTRL, 0x11);
1547 cx_clear(VID_CAPTURE_CONTROL, 0x06);
1548
1549 spin_lock_irqsave(&dev->slock,flags);
1550 while (!list_empty(&q->active)) {
1551 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
1552 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03001553 buf->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 wake_up(&buf->vb.done);
1555 printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", core->name,
1556 buf, buf->vb.i, (unsigned long)buf->risc.dma);
1557 }
1558 restart_video_queue(dev,q);
1559 spin_unlock_irqrestore(&dev->slock,flags);
1560}
1561
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -07001562static char *cx88_vid_irqs[32] = {
1563 "y_risci1", "u_risci1", "v_risci1", "vbi_risc1",
1564 "y_risci2", "u_risci2", "v_risci2", "vbi_risc2",
1565 "y_oflow", "u_oflow", "v_oflow", "vbi_oflow",
1566 "y_sync", "u_sync", "v_sync", "vbi_sync",
1567 "opc_err", "par_err", "rip_err", "pci_abort",
1568};
1569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570static void cx8800_vid_irq(struct cx8800_dev *dev)
1571{
1572 struct cx88_core *core = dev->core;
1573 u32 status, mask, count;
1574
1575 status = cx_read(MO_VID_INTSTAT);
1576 mask = cx_read(MO_VID_INTMSK);
1577 if (0 == (status & mask))
1578 return;
1579 cx_write(MO_VID_INTSTAT, status);
1580 if (irq_debug || (status & mask & ~0xff))
1581 cx88_print_irqbits(core->name, "irq vid",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -03001582 cx88_vid_irqs, ARRAY_SIZE(cx88_vid_irqs),
1583 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 /* risc op code error */
1586 if (status & (1 << 16)) {
1587 printk(KERN_WARNING "%s/0: video risc op code error\n",core->name);
1588 cx_clear(MO_VID_DMACNTRL, 0x11);
1589 cx_clear(VID_CAPTURE_CONTROL, 0x06);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001590 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
1593 /* risc1 y */
1594 if (status & 0x01) {
1595 spin_lock(&dev->slock);
1596 count = cx_read(MO_VIDY_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001597 cx88_wakeup(core, &dev->vidq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 spin_unlock(&dev->slock);
1599 }
1600
1601 /* risc1 vbi */
1602 if (status & 0x08) {
1603 spin_lock(&dev->slock);
1604 count = cx_read(MO_VBI_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001605 cx88_wakeup(core, &dev->vbiq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 spin_unlock(&dev->slock);
1607 }
1608
1609 /* risc2 y */
1610 if (status & 0x10) {
1611 dprintk(2,"stopper video\n");
1612 spin_lock(&dev->slock);
1613 restart_video_queue(dev,&dev->vidq);
1614 spin_unlock(&dev->slock);
1615 }
1616
1617 /* risc2 vbi */
1618 if (status & 0x80) {
1619 dprintk(2,"stopper vbi\n");
1620 spin_lock(&dev->slock);
1621 cx8800_restart_vbi_queue(dev,&dev->vbiq);
1622 spin_unlock(&dev->slock);
1623 }
1624}
1625
David Howells7d12e782006-10-05 14:55:46 +01001626static irqreturn_t cx8800_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
1628 struct cx8800_dev *dev = dev_id;
1629 struct cx88_core *core = dev->core;
1630 u32 status;
1631 int loop, handled = 0;
1632
1633 for (loop = 0; loop < 10; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001634 status = cx_read(MO_PCI_INTSTAT) &
1635 (core->pci_irqmask | PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (0 == status)
1637 goto out;
1638 cx_write(MO_PCI_INTSTAT, status);
1639 handled = 1;
1640
1641 if (status & core->pci_irqmask)
1642 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001643 if (status & PCI_INT_VIDINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 cx8800_vid_irq(dev);
1645 };
1646 if (10 == loop) {
1647 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
1648 core->name);
1649 cx_write(MO_PCI_INTMSK,0);
1650 }
1651
1652 out:
1653 return IRQ_RETVAL(handled);
1654}
1655
1656/* ----------------------------------------------------------- */
1657/* exported stuff */
1658
Arjan van de Venfa027c22007-02-12 00:55:33 -08001659static const struct file_operations video_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 .owner = THIS_MODULE,
1662 .open = video_open,
1663 .release = video_release,
1664 .read = video_read,
1665 .poll = video_poll,
1666 .mmap = video_mmap,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001667 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -02001668 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 .llseek = no_llseek,
1670};
1671
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001672static struct video_device cx8800_vbi_template;
Adrian Bunk408b6642005-05-01 08:59:29 -07001673static struct video_device cx8800_video_template =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001675 .name = "cx8800-video",
1676 .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|VID_TYPE_SCALES,
1677 .fops = &video_fops,
1678 .minor = -1,
1679 .vidioc_querycap = vidioc_querycap,
1680 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1681 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1682 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1683 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1684 .vidioc_g_fmt_vbi = cx8800_vbi_fmt,
1685 .vidioc_try_fmt_vbi = cx8800_vbi_fmt,
1686 .vidioc_s_fmt_vbi = cx8800_vbi_fmt,
1687 .vidioc_reqbufs = vidioc_reqbufs,
1688 .vidioc_querybuf = vidioc_querybuf,
1689 .vidioc_qbuf = vidioc_qbuf,
1690 .vidioc_dqbuf = vidioc_dqbuf,
1691 .vidioc_s_std = vidioc_s_std,
1692 .vidioc_enum_input = vidioc_enum_input,
1693 .vidioc_g_input = vidioc_g_input,
1694 .vidioc_s_input = vidioc_s_input,
1695 .vidioc_queryctrl = vidioc_queryctrl,
1696 .vidioc_g_ctrl = vidioc_g_ctrl,
1697 .vidioc_s_ctrl = vidioc_s_ctrl,
1698 .vidioc_streamon = vidioc_streamon,
1699 .vidioc_streamoff = vidioc_streamoff,
1700#ifdef CONFIG_VIDEO_V4L1_COMPAT
1701 .vidiocgmbuf = vidiocgmbuf,
1702#endif
1703 .vidioc_g_tuner = vidioc_g_tuner,
1704 .vidioc_s_tuner = vidioc_s_tuner,
1705 .vidioc_g_frequency = vidioc_g_frequency,
1706 .vidioc_s_frequency = vidioc_s_frequency,
Trent Piephodbbff482007-01-22 23:31:53 -03001707#ifdef CONFIG_VIDEO_ADV_DEBUG
1708 .vidioc_g_register = vidioc_g_register,
1709 .vidioc_s_register = vidioc_s_register,
1710#endif
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001711 .tvnorms = CX88_NORMS,
Trent Piephodbbff482007-01-22 23:31:53 -03001712 .current_norm = V4L2_STD_NTSC_M,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713};
1714
Arjan van de Venfa027c22007-02-12 00:55:33 -08001715static const struct file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
1717 .owner = THIS_MODULE,
1718 .open = video_open,
1719 .release = video_release,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001720 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -02001721 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 .llseek = no_llseek,
1723};
1724
Adrian Bunk408b6642005-05-01 08:59:29 -07001725static struct video_device cx8800_radio_template =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001727 .name = "cx8800-radio",
1728 .type = VID_TYPE_TUNER,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001729 .fops = &radio_fops,
1730 .minor = -1,
1731 .vidioc_querycap = radio_querycap,
1732 .vidioc_g_tuner = radio_g_tuner,
1733 .vidioc_enum_input = radio_enum_input,
1734 .vidioc_g_audio = radio_g_audio,
1735 .vidioc_s_tuner = radio_s_tuner,
1736 .vidioc_s_audio = radio_s_audio,
1737 .vidioc_s_input = radio_s_input,
1738 .vidioc_queryctrl = radio_queryctrl,
1739 .vidioc_g_ctrl = vidioc_g_ctrl,
1740 .vidioc_s_ctrl = vidioc_s_ctrl,
1741 .vidioc_g_frequency = vidioc_g_frequency,
1742 .vidioc_s_frequency = vidioc_s_frequency,
Trent Piephoa75d2042007-08-01 00:13:28 -03001743#ifdef CONFIG_VIDEO_ADV_DEBUG
1744 .vidioc_g_register = vidioc_g_register,
1745 .vidioc_s_register = vidioc_s_register,
1746#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747};
1748
1749/* ----------------------------------------------------------- */
1750
1751static void cx8800_unregister_video(struct cx8800_dev *dev)
1752{
1753 if (dev->radio_dev) {
1754 if (-1 != dev->radio_dev->minor)
1755 video_unregister_device(dev->radio_dev);
1756 else
1757 video_device_release(dev->radio_dev);
1758 dev->radio_dev = NULL;
1759 }
1760 if (dev->vbi_dev) {
1761 if (-1 != dev->vbi_dev->minor)
1762 video_unregister_device(dev->vbi_dev);
1763 else
1764 video_device_release(dev->vbi_dev);
1765 dev->vbi_dev = NULL;
1766 }
1767 if (dev->video_dev) {
1768 if (-1 != dev->video_dev->minor)
1769 video_unregister_device(dev->video_dev);
1770 else
1771 video_device_release(dev->video_dev);
1772 dev->video_dev = NULL;
1773 }
1774}
1775
1776static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
1777 const struct pci_device_id *pci_id)
1778{
1779 struct cx8800_dev *dev;
1780 struct cx88_core *core;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 int err;
1783
Panagiotis Issaris74081872006-01-11 19:40:56 -02001784 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (NULL == dev)
1786 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 /* pci init */
1789 dev->pci = pci_dev;
1790 if (pci_enable_device(pci_dev)) {
1791 err = -EIO;
1792 goto fail_free;
1793 }
1794 core = cx88_core_get(dev->pci);
1795 if (NULL == core) {
1796 err = -EINVAL;
1797 goto fail_free;
1798 }
1799 dev->core = core;
1800
1801 /* print pci info */
1802 pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &dev->pci_rev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001803 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &dev->pci_lat);
1804 printk(KERN_INFO "%s/0: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001805 "latency: %d, mmio: 0x%llx\n", core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001807 dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 pci_set_master(pci_dev);
Mauro Carvalho Chehabaaa40cb2007-03-30 10:58:01 -03001810 if (!pci_dma_supported(pci_dev,DMA_32BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name);
1812 err = -EIO;
1813 goto fail_core;
1814 }
1815
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001816 /* Initialize VBI template */
1817 memcpy( &cx8800_vbi_template, &cx8800_video_template,
1818 sizeof(cx8800_vbi_template) );
1819 strcpy(cx8800_vbi_template.name,"cx8800-vbi");
1820 cx8800_vbi_template.type = VID_TYPE_TELETEXT|VID_TYPE_TUNER;
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 spin_lock_init(&dev->slock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001824 core->tvnorm = cx8800_video_template.current_norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 /* init video dma queues */
1827 INIT_LIST_HEAD(&dev->vidq.active);
1828 INIT_LIST_HEAD(&dev->vidq.queued);
1829 dev->vidq.timeout.function = cx8800_vid_timeout;
1830 dev->vidq.timeout.data = (unsigned long)dev;
1831 init_timer(&dev->vidq.timeout);
1832 cx88_risc_stopper(dev->pci,&dev->vidq.stopper,
1833 MO_VID_DMACNTRL,0x11,0x00);
1834
1835 /* init vbi dma queues */
1836 INIT_LIST_HEAD(&dev->vbiq.active);
1837 INIT_LIST_HEAD(&dev->vbiq.queued);
1838 dev->vbiq.timeout.function = cx8800_vbi_timeout;
1839 dev->vbiq.timeout.data = (unsigned long)dev;
1840 init_timer(&dev->vbiq.timeout);
1841 cx88_risc_stopper(dev->pci,&dev->vbiq.stopper,
1842 MO_VID_DMACNTRL,0x88,0x00);
1843
1844 /* get irq */
1845 err = request_irq(pci_dev->irq, cx8800_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -07001846 IRQF_SHARED | IRQF_DISABLED, core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001848 printk(KERN_ERR "%s/0: can't get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 core->name,pci_dev->irq);
1850 goto fail_core;
1851 }
1852 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
1853
1854 /* load and configure helper modules */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001855
Trent Piepho6a59d642007-08-15 14:41:57 -03001856 if (core->board.audio_chip == AUDIO_CHIP_WM8775)
Steven Toth30579062006-09-25 12:43:42 -03001857 request_module("wm8775");
1858
Michael Krufky6fcecce2007-08-24 01:32:31 -03001859 switch (core->boardnr) {
1860 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
Michael Krufky3c66e4e2008-04-22 14:45:35 -03001861 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD:
Michael Krufky6fcecce2007-08-24 01:32:31 -03001862 request_module("rtc-isl1208");
Michael Krufky8efd2e22008-04-22 14:45:14 -03001863 /* break intentionally omitted */
1864 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
1865 request_module("ir-kbd-i2c");
Michael Krufky6fcecce2007-08-24 01:32:31 -03001866 }
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /* register v4l devices */
1869 dev->video_dev = cx88_vdev_init(core,dev->pci,
1870 &cx8800_video_template,"video");
1871 err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER,
1872 video_nr[core->nr]);
1873 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001874 printk(KERN_ERR "%s/0: can't register video device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 core->name);
1876 goto fail_unreg;
1877 }
1878 printk(KERN_INFO "%s/0: registered device video%d [v4l2]\n",
1879 core->name,dev->video_dev->minor & 0x1f);
1880
1881 dev->vbi_dev = cx88_vdev_init(core,dev->pci,&cx8800_vbi_template,"vbi");
1882 err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI,
1883 vbi_nr[core->nr]);
1884 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001885 printk(KERN_ERR "%s/0: can't register vbi device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 core->name);
1887 goto fail_unreg;
1888 }
1889 printk(KERN_INFO "%s/0: registered device vbi%d\n",
1890 core->name,dev->vbi_dev->minor & 0x1f);
1891
Trent Piepho6a59d642007-08-15 14:41:57 -03001892 if (core->board.radio.type == CX88_RADIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 dev->radio_dev = cx88_vdev_init(core,dev->pci,
1894 &cx8800_radio_template,"radio");
1895 err = video_register_device(dev->radio_dev,VFL_TYPE_RADIO,
1896 radio_nr[core->nr]);
1897 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001898 printk(KERN_ERR "%s/0: can't register radio device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 core->name);
1900 goto fail_unreg;
1901 }
1902 printk(KERN_INFO "%s/0: registered device radio%d\n",
1903 core->name,dev->radio_dev->minor & 0x1f);
1904 }
1905
1906 /* everything worked */
1907 list_add_tail(&dev->devlist,&cx8800_devlist);
1908 pci_set_drvdata(pci_dev,dev);
1909
1910 /* initial device configuration */
Ingo Molnar3593cab2006-02-07 06:49:14 -02001911 mutex_lock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001912 cx88_set_tvnorm(core,core->tvnorm);
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001913 init_controls(core);
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -03001914 cx88_video_mux(core,0);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001915 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 /* start tvaudio thread */
Trent Piepho6a59d642007-08-15 14:41:57 -03001918 if (core->board.tuner_type != TUNER_ABSENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001920 if (IS_ERR(core->kthread)) {
1921 err = PTR_ERR(core->kthread);
Trent Piepho5772f812007-08-15 14:41:59 -03001922 printk(KERN_ERR "%s/0: failed to create cx88 audio thread, err=%d\n",
1923 core->name, err);
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001924 }
1925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return 0;
1927
1928fail_unreg:
1929 cx8800_unregister_video(dev);
1930 free_irq(pci_dev->irq, dev);
1931fail_core:
1932 cx88_core_put(core,dev->pci);
1933fail_free:
1934 kfree(dev);
1935 return err;
1936}
1937
1938static void __devexit cx8800_finidev(struct pci_dev *pci_dev)
1939{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001940 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001941 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 /* stop thread */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001944 if (core->kthread) {
1945 kthread_stop(core->kthread);
1946 core->kthread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
1948
Marton Balintb12203d2008-03-26 02:07:35 -03001949 if (core->ir)
1950 cx88_ir_stop(core, core->ir);
1951
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001952 cx88_shutdown(core); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 pci_disable_device(pci_dev);
1954
1955 /* unregister stuff */
1956
1957 free_irq(pci_dev->irq, dev);
1958 cx8800_unregister_video(dev);
1959 pci_set_drvdata(pci_dev, NULL);
1960
1961 /* free memory */
1962 btcx_riscmem_free(dev->pci,&dev->vidq.stopper);
1963 list_del(&dev->devlist);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001964 cx88_core_put(core,dev->pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 kfree(dev);
1966}
1967
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001968#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state)
1970{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001971 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 struct cx88_core *core = dev->core;
1973
1974 /* stop video+vbi capture */
1975 spin_lock(&dev->slock);
1976 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001977 printk("%s/0: suspend video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 stop_video_dma(dev);
1979 del_timer(&dev->vidq.timeout);
1980 }
1981 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001982 printk("%s/0: suspend vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 cx8800_stop_vbi_dma(dev);
1984 del_timer(&dev->vbiq.timeout);
1985 }
1986 spin_unlock(&dev->slock);
1987
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001988 if (core->ir)
1989 cx88_ir_stop(core, core->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /* FIXME -- shutdown device */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001991 cx88_shutdown(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 pci_save_state(pci_dev);
1994 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
1995 pci_disable_device(pci_dev);
1996 dev->state.disabled = 1;
1997 }
1998 return 0;
1999}
2000
2001static int cx8800_resume(struct pci_dev *pci_dev)
2002{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002003 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07002005 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07002008 err=pci_enable_device(pci_dev);
2009 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03002010 printk(KERN_ERR "%s/0: can't enable device\n",
2011 core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07002012 return err;
2013 }
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 dev->state.disabled = 0;
2016 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07002017 err= pci_set_power_state(pci_dev, PCI_D0);
2018 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03002019 printk(KERN_ERR "%s/0: can't set power state\n", core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07002020 pci_disable_device(pci_dev);
2021 dev->state.disabled = 1;
2022
2023 return err;
2024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 pci_restore_state(pci_dev);
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 /* FIXME: re-initialize hardware */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07002028 cx88_reset(core);
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03002029 if (core->ir)
2030 cx88_ir_start(core, core->ir);
2031
2032 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /* restart video+vbi capture */
2035 spin_lock(&dev->slock);
2036 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03002037 printk("%s/0: resume video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 restart_video_queue(dev,&dev->vidq);
2039 }
2040 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03002041 printk("%s/0: resume vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 cx8800_restart_vbi_queue(dev,&dev->vbiq);
2043 }
2044 spin_unlock(&dev->slock);
2045
2046 return 0;
2047}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002048#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050/* ----------------------------------------------------------- */
2051
Adrian Bunk408b6642005-05-01 08:59:29 -07002052static struct pci_device_id cx8800_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 {
2054 .vendor = 0x14f1,
2055 .device = 0x8800,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002056 .subvendor = PCI_ANY_ID,
2057 .subdevice = PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 },{
2059 /* --- end of list --- */
2060 }
2061};
2062MODULE_DEVICE_TABLE(pci, cx8800_pci_tbl);
2063
2064static struct pci_driver cx8800_pci_driver = {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002065 .name = "cx8800",
2066 .id_table = cx8800_pci_tbl,
2067 .probe = cx8800_initdev,
2068 .remove = __devexit_p(cx8800_finidev),
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002069#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 .suspend = cx8800_suspend,
2071 .resume = cx8800_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002072#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073};
2074
2075static int cx8800_init(void)
2076{
Trent Piepho5772f812007-08-15 14:41:59 -03002077 printk(KERN_INFO "cx88/0: cx2388x v4l2 driver version %d.%d.%d loaded\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 (CX88_VERSION_CODE >> 16) & 0xff,
2079 (CX88_VERSION_CODE >> 8) & 0xff,
2080 CX88_VERSION_CODE & 0xff);
2081#ifdef SNAPSHOT
2082 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
2083 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
2084#endif
2085 return pci_register_driver(&cx8800_pci_driver);
2086}
2087
2088static void cx8800_fini(void)
2089{
2090 pci_unregister_driver(&cx8800_pci_driver);
2091}
2092
2093module_init(cx8800_init);
2094module_exit(cx8800_fini);
2095
2096/* ----------------------------------------------------------- */
2097/*
2098 * Local variables:
2099 * c-basic-offset: 8
2100 * End:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002101 * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 */