blob: bd1f52f6e2649e036a0fcd8b6206fc186aada40e [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>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030042#include <media/v4l2-ioctl.h>
Lawrence Rust69518032011-02-06 17:46:12 -030043#include <media/wm8775.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards");
46MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
47MODULE_LICENSE("GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030048MODULE_VERSION(CX88_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* ------------------------------------------------------------------ */
51
52static unsigned int video_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
53static unsigned int vbi_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
54static unsigned int radio_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
55
56module_param_array(video_nr, int, NULL, 0444);
57module_param_array(vbi_nr, int, NULL, 0444);
58module_param_array(radio_nr, int, NULL, 0444);
59
60MODULE_PARM_DESC(video_nr,"video device numbers");
61MODULE_PARM_DESC(vbi_nr,"vbi device numbers");
62MODULE_PARM_DESC(radio_nr,"radio device numbers");
63
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030064static unsigned int video_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065module_param(video_debug,int,0644);
66MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
67
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030068static unsigned int irq_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069module_param(irq_debug,int,0644);
70MODULE_PARM_DESC(irq_debug,"enable debug messages [IRQ handler]");
71
72static unsigned int vid_limit = 16;
73module_param(vid_limit,int,0644);
74MODULE_PARM_DESC(vid_limit,"capture memory limit in megabytes");
75
76#define dprintk(level,fmt, arg...) if (video_debug >= level) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070077 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* ------------------------------------------------------------------- */
80/* static data */
81
lawrence rust2e4e98e2010-08-25 09:50:20 -030082static const struct cx8800_fmt formats[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 {
84 .name = "8 bpp, gray",
85 .fourcc = V4L2_PIX_FMT_GREY,
86 .cxformat = ColorFormatY8,
87 .depth = 8,
88 .flags = FORMAT_FLAGS_PACKED,
89 },{
90 .name = "15 bpp RGB, le",
91 .fourcc = V4L2_PIX_FMT_RGB555,
92 .cxformat = ColorFormatRGB15,
93 .depth = 16,
94 .flags = FORMAT_FLAGS_PACKED,
95 },{
96 .name = "15 bpp RGB, be",
97 .fourcc = V4L2_PIX_FMT_RGB555X,
98 .cxformat = ColorFormatRGB15 | ColorFormatBSWAP,
99 .depth = 16,
100 .flags = FORMAT_FLAGS_PACKED,
101 },{
102 .name = "16 bpp RGB, le",
103 .fourcc = V4L2_PIX_FMT_RGB565,
104 .cxformat = ColorFormatRGB16,
105 .depth = 16,
106 .flags = FORMAT_FLAGS_PACKED,
107 },{
108 .name = "16 bpp RGB, be",
109 .fourcc = V4L2_PIX_FMT_RGB565X,
110 .cxformat = ColorFormatRGB16 | ColorFormatBSWAP,
111 .depth = 16,
112 .flags = FORMAT_FLAGS_PACKED,
113 },{
114 .name = "24 bpp RGB, le",
115 .fourcc = V4L2_PIX_FMT_BGR24,
116 .cxformat = ColorFormatRGB24,
117 .depth = 24,
118 .flags = FORMAT_FLAGS_PACKED,
119 },{
120 .name = "32 bpp RGB, le",
121 .fourcc = V4L2_PIX_FMT_BGR32,
122 .cxformat = ColorFormatRGB32,
123 .depth = 32,
124 .flags = FORMAT_FLAGS_PACKED,
125 },{
126 .name = "32 bpp RGB, be",
127 .fourcc = V4L2_PIX_FMT_RGB32,
128 .cxformat = ColorFormatRGB32 | ColorFormatBSWAP | ColorFormatWSWAP,
129 .depth = 32,
130 .flags = FORMAT_FLAGS_PACKED,
131 },{
132 .name = "4:2:2, packed, YUYV",
133 .fourcc = V4L2_PIX_FMT_YUYV,
134 .cxformat = ColorFormatYUY2,
135 .depth = 16,
136 .flags = FORMAT_FLAGS_PACKED,
137 },{
138 .name = "4:2:2, packed, UYVY",
139 .fourcc = V4L2_PIX_FMT_UYVY,
140 .cxformat = ColorFormatYUY2 | ColorFormatBSWAP,
141 .depth = 16,
142 .flags = FORMAT_FLAGS_PACKED,
143 },
144};
145
lawrence rust2e4e98e2010-08-25 09:50:20 -0300146static const struct cx8800_fmt* format_by_fourcc(unsigned int fourcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 unsigned int i;
149
150 for (i = 0; i < ARRAY_SIZE(formats); i++)
151 if (formats[i].fourcc == fourcc)
152 return formats+i;
153 return NULL;
154}
155
156/* ------------------------------------------------------------------- */
157
Hans Verkuilbac63982012-06-10 07:39:52 -0300158struct cx88_ctrl {
159 /* control information */
160 u32 id;
161 s32 minimum;
162 s32 maximum;
163 u32 step;
164 s32 default_value;
165
166 /* control register information */
167 u32 off;
168 u32 reg;
169 u32 sreg;
170 u32 mask;
171 u32 shift;
172};
173
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300174static const struct cx88_ctrl cx8800_vid_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /* --- video --- */
176 {
Hans Verkuilbac63982012-06-10 07:39:52 -0300177 .id = V4L2_CID_BRIGHTNESS,
178 .minimum = 0x00,
179 .maximum = 0xff,
180 .step = 1,
181 .default_value = 0x7f,
182 .off = 128,
183 .reg = MO_CONTR_BRIGHT,
184 .mask = 0x00ff,
185 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300187 .id = V4L2_CID_CONTRAST,
188 .minimum = 0,
189 .maximum = 0xff,
190 .step = 1,
191 .default_value = 0x3f,
192 .off = 0,
193 .reg = MO_CONTR_BRIGHT,
194 .mask = 0xff00,
195 .shift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300197 .id = V4L2_CID_HUE,
198 .minimum = 0,
199 .maximum = 0xff,
200 .step = 1,
201 .default_value = 0x7f,
202 .off = 128,
203 .reg = MO_HUE,
204 .mask = 0x00ff,
205 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 },{
207 /* strictly, this only describes only U saturation.
208 * V saturation is handled specially through code.
209 */
Hans Verkuilbac63982012-06-10 07:39:52 -0300210 .id = V4L2_CID_SATURATION,
211 .minimum = 0,
212 .maximum = 0xff,
213 .step = 1,
214 .default_value = 0x7f,
215 .off = 0,
216 .reg = MO_UV_SATURATION,
217 .mask = 0x00ff,
218 .shift = 0,
istvan_v@mailbox.hueea16e32011-07-11 11:02:19 -0300219 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300220 .id = V4L2_CID_SHARPNESS,
221 .minimum = 0,
222 .maximum = 4,
223 .step = 1,
224 .default_value = 0x0,
225 .off = 0,
istvan_v@mailbox.hueea16e32011-07-11 11:02:19 -0300226 /* NOTE: the value is converted and written to both even
227 and odd registers in the code */
Hans Verkuilbac63982012-06-10 07:39:52 -0300228 .reg = MO_FILTER_ODD,
229 .mask = 7 << 7,
230 .shift = 7,
istvan_v@mailbox.hueea16e32011-07-11 11:02:19 -0300231 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300232 .id = V4L2_CID_CHROMA_AGC,
233 .minimum = 0,
234 .maximum = 1,
235 .default_value = 0x1,
236 .reg = MO_INPUT_FORMAT,
237 .mask = 1 << 10,
238 .shift = 10,
Frej Drejhammar6d042032008-03-23 22:43:21 -0300239 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300240 .id = V4L2_CID_COLOR_KILLER,
241 .minimum = 0,
242 .maximum = 1,
243 .default_value = 0x1,
244 .reg = MO_INPUT_FORMAT,
245 .mask = 1 << 9,
246 .shift = 9,
Frej Drejhammar1b879c42008-03-23 22:43:24 -0300247 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300248 .id = V4L2_CID_BAND_STOP_FILTER,
249 .minimum = 0,
250 .maximum = 1,
251 .step = 1,
252 .default_value = 0x0,
253 .off = 0,
254 .reg = MO_HTOTAL,
255 .mask = 3 << 11,
256 .shift = 11,
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300257 }
258};
259
260static const struct cx88_ctrl cx8800_aud_ctls[] = {
261 {
Hans Verkuilbac63982012-06-10 07:39:52 -0300262 /* --- audio --- */
263 .id = V4L2_CID_AUDIO_MUTE,
264 .minimum = 0,
265 .maximum = 1,
266 .default_value = 1,
267 .reg = AUD_VOL_CTL,
268 .sreg = SHADOW_AUD_VOL_CTL,
269 .mask = (1 << 6),
270 .shift = 6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300272 .id = V4L2_CID_AUDIO_VOLUME,
273 .minimum = 0,
274 .maximum = 0x3f,
275 .step = 1,
276 .default_value = 0x3f,
277 .reg = AUD_VOL_CTL,
278 .sreg = SHADOW_AUD_VOL_CTL,
279 .mask = 0x3f,
280 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300282 .id = V4L2_CID_AUDIO_BALANCE,
283 .minimum = 0,
284 .maximum = 0x7f,
285 .step = 1,
286 .default_value = 0x40,
287 .reg = AUD_BAL_CTL,
288 .sreg = SHADOW_AUD_BAL_CTL,
289 .mask = 0x7f,
290 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292};
Hans Verkuilbac63982012-06-10 07:39:52 -0300293
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300294enum {
295 CX8800_VID_CTLS = ARRAY_SIZE(cx8800_vid_ctls),
296 CX8800_AUD_CTLS = ARRAY_SIZE(cx8800_aud_ctls),
297};
Michael Krufky38a27132006-06-26 23:42:39 -0300298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/* ------------------------------------------------------------------- */
300/* resource management */
301
302static int res_get(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bit)
303{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700304 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (fh->resources & bit)
306 /* have it already allocated */
307 return 1;
308
309 /* is it free? */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200310 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (dev->resources & bit) {
312 /* no, someone else uses it */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200313 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return 0;
315 }
316 /* it's free, grab it */
317 fh->resources |= bit;
318 dev->resources |= bit;
319 dprintk(1,"res: get %d\n",bit);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200320 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 1;
322}
323
324static
325int res_check(struct cx8800_fh *fh, unsigned int bit)
326{
327 return (fh->resources & bit);
328}
329
330static
331int res_locked(struct cx8800_dev *dev, unsigned int bit)
332{
333 return (dev->resources & bit);
334}
335
336static
337void res_free(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bits)
338{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700339 struct cx88_core *core = dev->core;
Eric Sesterhennae246012006-03-13 13:17:11 -0300340 BUG_ON((fh->resources & bits) != bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Ingo Molnar3593cab2006-02-07 06:49:14 -0200342 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 fh->resources &= ~bits;
344 dev->resources &= ~bits;
345 dprintk(1,"res: put %d\n",bits);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200346 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
349/* ------------------------------------------------------------------ */
350
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -0300351int cx88_video_mux(struct cx88_core *core, unsigned int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700353 /* struct cx88_core *core = dev->core; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 dprintk(1,"video_mux: %d [vmux=%d,gpio=0x%x,0x%x,0x%x,0x%x]\n",
Trent Piepho6a59d642007-08-15 14:41:57 -0300356 input, INPUT(input).vmux,
357 INPUT(input).gpio0,INPUT(input).gpio1,
358 INPUT(input).gpio2,INPUT(input).gpio3);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700359 core->input = input;
Trent Piepho6a59d642007-08-15 14:41:57 -0300360 cx_andor(MO_INPUT_FORMAT, 0x03 << 14, INPUT(input).vmux << 14);
361 cx_write(MO_GP3_IO, INPUT(input).gpio3);
362 cx_write(MO_GP0_IO, INPUT(input).gpio0);
363 cx_write(MO_GP1_IO, INPUT(input).gpio1);
364 cx_write(MO_GP2_IO, INPUT(input).gpio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Trent Piepho6a59d642007-08-15 14:41:57 -0300366 switch (INPUT(input).type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 case CX88_VMUX_SVIDEO:
368 cx_set(MO_AFECFG_IO, 0x00000001);
369 cx_set(MO_INPUT_FORMAT, 0x00010010);
370 cx_set(MO_FILTER_EVEN, 0x00002020);
371 cx_set(MO_FILTER_ODD, 0x00002020);
372 break;
373 default:
374 cx_clear(MO_AFECFG_IO, 0x00000001);
375 cx_clear(MO_INPUT_FORMAT, 0x00010010);
376 cx_clear(MO_FILTER_EVEN, 0x00002020);
377 cx_clear(MO_FILTER_ODD, 0x00002020);
378 break;
379 }
Michael Krufkyf24546a2006-10-16 16:51:11 -0300380
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300381 /* if there are audioroutes defined, we have an external
382 ADC to deal with audio */
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300383 if (INPUT(input).audioroute) {
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300384 /* The wm8775 module has the "2" route hardwired into
385 the initialization. Some boards may use different
386 routes for different inputs. HVR-1300 surely does */
387 if (core->board.audio_chip &&
Hans Verkuil38f9d302008-07-23 05:09:15 -0300388 core->board.audio_chip == V4L2_IDENT_WM8775) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300389 call_all(core, audio, s_routing,
istvan_v@mailbox.hu6e1f4df2010-03-27 09:31:32 -0300390 INPUT(input).audioroute, 0, 0);
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300391 }
Darron Broad430189d2008-10-15 14:18:42 -0300392 /* cx2388's C-ADC is connected to the tuner only.
393 When used with S-Video, that ADC is busy dealing with
394 chroma, so an external must be used for baseband audio */
istvan_v@mailbox.hu6e1f4df2010-03-27 09:31:32 -0300395 if (INPUT(input).type != CX88_VMUX_TELEVISION &&
396 INPUT(input).type != CX88_VMUX_CABLE) {
Darron Broad430189d2008-10-15 14:18:42 -0300397 /* "I2S ADC mode" */
398 core->tvaudio = WW_I2SADC;
399 cx88_set_tvaudio(core);
400 } else {
401 /* Normal mode */
402 cx_write(AUD_I2SCNTL, 0x0);
403 cx_clear(AUD_CTL, EN_I2SIN_ENABLE);
404 }
Michael Krufkyf24546a2006-10-16 16:51:11 -0300405 }
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
408}
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -0300409EXPORT_SYMBOL(cx88_video_mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411/* ------------------------------------------------------------------ */
412
413static int start_video_dma(struct cx8800_dev *dev,
414 struct cx88_dmaqueue *q,
415 struct cx88_buffer *buf)
416{
417 struct cx88_core *core = dev->core;
418
419 /* setup fifo + format */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700420 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 buf->bpl, buf->risc.dma);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700422 cx88_set_scale(core, buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 cx_write(MO_COLOR_CTRL, buf->fmt->cxformat | ColorFormatGamma);
424
425 /* reset counter */
426 cx_write(MO_VIDY_GPCNTRL,GP_COUNT_CONTROL_RESET);
427 q->count = 1;
428
429 /* enable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300430 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_VIDINT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700431
432 /* Enables corresponding bits at PCI_INT_STAT:
433 bits 0 to 4: video, audio, transport stream, VIP, Host
434 bit 7: timer
435 bits 8 and 9: DMA complete for: SRC, DST
436 bits 10 and 11: BERR signal asserted for RISC: RD, WR
437 bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB
438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 cx_set(MO_VID_INTMSK, 0x0f0011);
440
441 /* enable capture */
442 cx_set(VID_CAPTURE_CONTROL,0x06);
443
444 /* start dma */
445 cx_set(MO_DEV_CNTRL2, (1<<5));
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700446 cx_set(MO_VID_DMACNTRL, 0x11); /* Planar Y and packed FIFO and RISC enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 return 0;
449}
450
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300451#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452static int stop_video_dma(struct cx8800_dev *dev)
453{
454 struct cx88_core *core = dev->core;
455
456 /* stop dma */
457 cx_clear(MO_VID_DMACNTRL, 0x11);
458
459 /* disable capture */
460 cx_clear(VID_CAPTURE_CONTROL,0x06);
461
462 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300463 cx_clear(MO_PCI_INTMSK, PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 cx_clear(MO_VID_INTMSK, 0x0f0011);
465 return 0;
466}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300467#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469static int restart_video_queue(struct cx8800_dev *dev,
470 struct cx88_dmaqueue *q)
471{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700472 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct cx88_buffer *buf, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 if (!list_empty(&q->active)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800476 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
478 buf, buf->vb.i);
479 start_video_dma(dev, q, buf);
Trent Piepho8bb629e22007-10-10 05:37:40 -0300480 list_for_each_entry(buf, &q->active, vb.queue)
481 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
483 return 0;
484 }
485
486 prev = NULL;
487 for (;;) {
488 if (list_empty(&q->queued))
489 return 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800490 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (NULL == prev) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700492 list_move_tail(&buf->vb.queue, &q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300494 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 buf->count = q->count++;
496 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
497 dprintk(2,"[%p/%d] restart_queue - first active\n",
498 buf,buf->vb.i);
499
500 } else if (prev->vb.width == buf->vb.width &&
501 prev->vb.height == buf->vb.height &&
502 prev->fmt == buf->fmt) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700503 list_move_tail(&buf->vb.queue, &q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300504 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 buf->count = q->count++;
506 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
507 dprintk(2,"[%p/%d] restart_queue - move to active\n",
508 buf,buf->vb.i);
509 } else {
510 return 0;
511 }
512 prev = buf;
513 }
514}
515
516/* ------------------------------------------------------------------ */
517
518static int
519buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
520{
521 struct cx8800_fh *fh = q->priv_data;
Hans Verkuilc5a86142012-05-11 10:45:18 -0300522 struct cx8800_dev *dev = fh->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Hans Verkuilc5a86142012-05-11 10:45:18 -0300524 *size = dev->fmt->depth * dev->width * dev->height >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (0 == *count)
526 *count = 32;
Andreas Bombedab7e312010-03-21 16:02:45 -0300527 if (*size * *count > vid_limit * 1024 * 1024)
528 *count = (vid_limit * 1024 * 1024) / *size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
530}
531
532static int
533buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
534 enum v4l2_field field)
535{
536 struct cx8800_fh *fh = q->priv_data;
537 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700538 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300540 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int rc, init_buffer = 0;
542
Hans Verkuilc5a86142012-05-11 10:45:18 -0300543 BUG_ON(NULL == dev->fmt);
544 if (dev->width < 48 || dev->width > norm_maxw(core->tvnorm) ||
545 dev->height < 32 || dev->height > norm_maxh(core->tvnorm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return -EINVAL;
Hans Verkuilc5a86142012-05-11 10:45:18 -0300547 buf->vb.size = (dev->width * dev->height * dev->fmt->depth) >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
549 return -EINVAL;
550
Hans Verkuilc5a86142012-05-11 10:45:18 -0300551 if (buf->fmt != dev->fmt ||
552 buf->vb.width != dev->width ||
553 buf->vb.height != dev->height ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 buf->vb.field != field) {
Hans Verkuilc5a86142012-05-11 10:45:18 -0300555 buf->fmt = dev->fmt;
556 buf->vb.width = dev->width;
557 buf->vb.height = dev->height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 buf->vb.field = field;
559 init_buffer = 1;
560 }
561
Brandon Philips0fc06862007-11-06 20:02:36 -0300562 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 init_buffer = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300564 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 goto fail;
566 }
567
568 if (init_buffer) {
569 buf->bpl = buf->vb.width * buf->fmt->depth >> 3;
570 switch (buf->vb.field) {
571 case V4L2_FIELD_TOP:
572 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300573 dma->sglist, 0, UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 buf->bpl, 0, buf->vb.height);
575 break;
576 case V4L2_FIELD_BOTTOM:
577 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300578 dma->sglist, UNSET, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 buf->bpl, 0, buf->vb.height);
580 break;
581 case V4L2_FIELD_INTERLACED:
582 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300583 dma->sglist, 0, buf->bpl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 buf->bpl, buf->bpl,
585 buf->vb.height >> 1);
586 break;
587 case V4L2_FIELD_SEQ_TB:
588 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300589 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 0, buf->bpl * (buf->vb.height >> 1),
591 buf->bpl, 0,
592 buf->vb.height >> 1);
593 break;
594 case V4L2_FIELD_SEQ_BT:
595 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300596 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 buf->bpl * (buf->vb.height >> 1), 0,
598 buf->bpl, 0,
599 buf->vb.height >> 1);
600 break;
601 default:
602 BUG();
603 }
604 }
605 dprintk(2,"[%p/%d] buffer_prepare - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
606 buf, buf->vb.i,
Hans Verkuilc5a86142012-05-11 10:45:18 -0300607 dev->width, dev->height, dev->fmt->depth, dev->fmt->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 (unsigned long)buf->risc.dma);
609
Brandon Philips0fc06862007-11-06 20:02:36 -0300610 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 0;
612
613 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300614 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return rc;
616}
617
618static void
619buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
620{
621 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
622 struct cx88_buffer *prev;
623 struct cx8800_fh *fh = vq->priv_data;
624 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700625 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct cx88_dmaqueue *q = &dev->vidq;
627
628 /* add jump to stopper */
629 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
630 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
631
632 if (!list_empty(&q->queued)) {
633 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300634 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 dprintk(2,"[%p/%d] buffer_queue - append to queued\n",
636 buf, buf->vb.i);
637
638 } else if (list_empty(&q->active)) {
639 list_add_tail(&buf->vb.queue,&q->active);
640 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300641 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 buf->count = q->count++;
643 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
644 dprintk(2,"[%p/%d] buffer_queue - first active\n",
645 buf, buf->vb.i);
646
647 } else {
648 prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
649 if (prev->vb.width == buf->vb.width &&
650 prev->vb.height == buf->vb.height &&
651 prev->fmt == buf->fmt) {
652 list_add_tail(&buf->vb.queue,&q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300653 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 buf->count = q->count++;
655 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
656 dprintk(2,"[%p/%d] buffer_queue - append to active\n",
657 buf, buf->vb.i);
658
659 } else {
660 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300661 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 dprintk(2,"[%p/%d] buffer_queue - first queued\n",
663 buf, buf->vb.i);
664 }
665 }
666}
667
668static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
669{
670 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300672 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
lawrence rust2e4e98e2010-08-25 09:50:20 -0300675static const struct videobuf_queue_ops cx8800_video_qops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 .buf_setup = buffer_setup,
677 .buf_prepare = buffer_prepare,
678 .buf_queue = buffer_queue,
679 .buf_release = buffer_release,
680};
681
682/* ------------------------------------------------------------------ */
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685/* ------------------------------------------------------------------ */
686
Hans Verkuiledbd1382012-05-11 10:33:25 -0300687static struct videobuf_queue *get_queue(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300689 struct video_device *vdev = video_devdata(file);
690 struct cx8800_fh *fh = file->private_data;
691
692 switch (vdev->vfl_type) {
693 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return &fh->vidq;
Hans Verkuiledbd1382012-05-11 10:33:25 -0300695 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return &fh->vbiq;
697 default:
698 BUG();
699 return NULL;
700 }
701}
702
Hans Verkuiledbd1382012-05-11 10:33:25 -0300703static int get_resource(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300705 struct video_device *vdev = video_devdata(file);
706
707 switch (vdev->vfl_type) {
708 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return RESOURCE_VIDEO;
Hans Verkuiledbd1382012-05-11 10:33:25 -0300710 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return RESOURCE_VBI;
712 default:
713 BUG();
714 return 0;
715 }
716}
717
Hans Verkuilbec43662008-12-30 06:58:20 -0300718static int video_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200720 struct video_device *vdev = video_devdata(file);
721 struct cx8800_dev *dev = video_drvdata(file);
Dan Carpenter5401c2d2010-10-21 16:21:45 -0300722 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 struct cx8800_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 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;
737 }
738
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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 /* allocate + initialize per filehandle data */
Panagiotis Issaris74081872006-01-11 19:40:56 -0200743 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300744 if (unlikely(!fh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return -ENOMEM;
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 file->private_data = fh;
748 fh->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300750 mutex_lock(&core->lock);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300751
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300752 videobuf_queue_sg_init(&fh->vidq, &cx8800_video_qops,
753 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 V4L2_BUF_TYPE_VIDEO_CAPTURE,
755 V4L2_FIELD_INTERLACED,
756 sizeof(struct cx88_buffer),
Hans Verkuil08bff032010-09-20 17:39:46 -0300757 fh, NULL);
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300758 videobuf_queue_sg_init(&fh->vbiq, &cx8800_vbi_qops,
759 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 V4L2_BUF_TYPE_VBI_CAPTURE,
761 V4L2_FIELD_SEQ_TB,
762 sizeof(struct cx88_buffer),
Hans Verkuil08bff032010-09-20 17:39:46 -0300763 fh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Hans Verkuiledbd1382012-05-11 10:33:25 -0300765 if (vdev->vfl_type == VFL_TYPE_RADIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 dprintk(1,"video_open: setting radio device\n");
Trent Piepho6a59d642007-08-15 14:41:57 -0300767 cx_write(MO_GP3_IO, core->board.radio.gpio3);
768 cx_write(MO_GP0_IO, core->board.radio.gpio0);
769 cx_write(MO_GP1_IO, core->board.radio.gpio1);
770 cx_write(MO_GP2_IO, core->board.radio.gpio2);
Darron Broad430189d2008-10-15 14:18:42 -0300771 if (core->board.radio.audioroute) {
772 if(core->board.audio_chip &&
773 core->board.audio_chip == V4L2_IDENT_WM8775) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300774 call_all(core, audio, s_routing,
775 core->board.radio.audioroute, 0, 0);
Darron Broad430189d2008-10-15 14:18:42 -0300776 }
777 /* "I2S ADC mode" */
778 core->tvaudio = WW_I2SADC;
779 cx88_set_tvaudio(core);
780 } else {
781 /* FM Mode */
782 core->tvaudio = WW_FM;
783 cx88_set_tvaudio(core);
784 cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1);
785 }
Hans Verkuilb8341e12009-03-29 08:26:01 -0300786 call_all(core, tuner, s_radio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
Jonathan Nieder8d115932011-05-01 06:31:40 -0300789 core->users++;
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300790 mutex_unlock(&core->lock);
Darron Broad3e010842008-09-25 16:51:11 -0300791
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795static ssize_t
Peter Hagervallf9e7a022005-11-08 21:36:29 -0800796video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300798 struct video_device *vdev = video_devdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct cx8800_fh *fh = file->private_data;
800
Hans Verkuiledbd1382012-05-11 10:33:25 -0300801 switch (vdev->vfl_type) {
802 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (res_locked(fh->dev,RESOURCE_VIDEO))
804 return -EBUSY;
805 return videobuf_read_one(&fh->vidq, data, count, ppos,
806 file->f_flags & O_NONBLOCK);
Hans Verkuiledbd1382012-05-11 10:33:25 -0300807 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (!res_get(fh->dev,fh,RESOURCE_VBI))
809 return -EBUSY;
810 return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1,
811 file->f_flags & O_NONBLOCK);
812 default:
813 BUG();
814 return 0;
815 }
816}
817
818static unsigned int
819video_poll(struct file *file, struct poll_table_struct *wait)
820{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300821 struct video_device *vdev = video_devdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 struct cx8800_fh *fh = file->private_data;
823 struct cx88_buffer *buf;
Figo.zhang9fd64182009-06-16 13:31:29 -0300824 unsigned int rc = POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Hans Verkuiledbd1382012-05-11 10:33:25 -0300826 if (vdev->vfl_type == VFL_TYPE_VBI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (!res_get(fh->dev,fh,RESOURCE_VBI))
828 return POLLERR;
829 return videobuf_poll_stream(file, &fh->vbiq, wait);
830 }
831
Figo.zhang9fd64182009-06-16 13:31:29 -0300832 mutex_lock(&fh->vidq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (res_check(fh,RESOURCE_VIDEO)) {
834 /* streaming capture */
835 if (list_empty(&fh->vidq.stream))
Figo.zhang9fd64182009-06-16 13:31:29 -0300836 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 buf = list_entry(fh->vidq.stream.next,struct cx88_buffer,vb.stream);
838 } else {
839 /* read() capture */
840 buf = (struct cx88_buffer*)fh->vidq.read_buf;
841 if (NULL == buf)
Figo.zhang9fd64182009-06-16 13:31:29 -0300842 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 poll_wait(file, &buf->vb.done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -0300845 if (buf->vb.state == VIDEOBUF_DONE ||
846 buf->vb.state == VIDEOBUF_ERROR)
Figo.zhang9fd64182009-06-16 13:31:29 -0300847 rc = POLLIN|POLLRDNORM;
848 else
849 rc = 0;
850done:
851 mutex_unlock(&fh->vidq.vb_lock);
852 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Hans Verkuilbec43662008-12-30 06:58:20 -0300855static int video_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 struct cx8800_fh *fh = file->private_data;
858 struct cx8800_dev *dev = fh->dev;
859
860 /* turn off overlay */
861 if (res_check(fh, RESOURCE_OVERLAY)) {
862 /* FIXME */
863 res_free(dev,fh,RESOURCE_OVERLAY);
864 }
865
866 /* stop video capture */
867 if (res_check(fh, RESOURCE_VIDEO)) {
868 videobuf_queue_cancel(&fh->vidq);
869 res_free(dev,fh,RESOURCE_VIDEO);
870 }
871 if (fh->vidq.read_buf) {
872 buffer_release(&fh->vidq,fh->vidq.read_buf);
873 kfree(fh->vidq.read_buf);
874 }
875
876 /* stop vbi capture */
877 if (res_check(fh, RESOURCE_VBI)) {
Brandon Philips053fcb62007-11-13 20:11:26 -0300878 videobuf_stop(&fh->vbiq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 res_free(dev,fh,RESOURCE_VBI);
880 }
881
882 videobuf_mmap_free(&fh->vidq);
883 videobuf_mmap_free(&fh->vbiq);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300884
885 mutex_lock(&dev->core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 file->private_data = NULL;
887 kfree(fh);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700888
Jonathan Nieder8d115932011-05-01 06:31:40 -0300889 dev->core->users--;
890 if (!dev->core->users)
Laurent Pinchart622b8282009-10-05 10:48:17 -0300891 call_all(dev->core, core, s_power, 0);
Devin Heitmueller06f837c2009-04-28 14:35:27 -0300892 mutex_unlock(&dev->core->lock);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return 0;
895}
896
897static int
898video_mmap(struct file *file, struct vm_area_struct * vma)
899{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300900 return videobuf_mmap_mapper(get_queue(file), vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300904/* VIDEO CTRL IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300906static int cx8800_s_vid_ctrl(struct v4l2_ctrl *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Hans Verkuilbac63982012-06-10 07:39:52 -0300908 struct cx88_core *core =
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300909 container_of(ctrl->handler, struct cx88_core, video_hdl);
910 const struct cx88_ctrl *cc = ctrl->priv;
911 u32 value, mask;
912
913 mask = cc->mask;
914 switch (ctrl->id) {
915 case V4L2_CID_SATURATION:
916 /* special v_sat handling */
917
918 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
919
920 if (core->tvnorm & V4L2_STD_SECAM) {
921 /* For SECAM, both U and V sat should be equal */
922 value = value << 8 | value;
923 } else {
924 /* Keeps U Saturation proportional to V Sat */
925 value = (value * 0x5a) / 0x7f << 8 | value;
926 }
927 mask = 0xffff;
928 break;
929 case V4L2_CID_SHARPNESS:
930 /* 0b000, 0b100, 0b101, 0b110, or 0b111 */
931 value = (ctrl->val < 1 ? 0 : ((ctrl->val + 3) << 7));
932 /* needs to be set for both fields */
933 cx_andor(MO_FILTER_EVEN, mask, value);
934 break;
935 case V4L2_CID_CHROMA_AGC:
936 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
937 break;
938 default:
939 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
940 break;
941 }
942 dprintk(1, "set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
943 ctrl->id, ctrl->name, ctrl->val, cc->reg, value,
944 mask, cc->sreg ? " [shadowed]" : "");
945 if (cc->sreg)
946 cx_sandor(cc->sreg, cc->reg, mask, value);
947 else
948 cx_andor(cc->reg, mask, value);
949 return 0;
950}
951
952static int cx8800_s_aud_ctrl(struct v4l2_ctrl *ctrl)
953{
954 struct cx88_core *core =
955 container_of(ctrl->handler, struct cx88_core, audio_hdl);
Hans Verkuilbac63982012-06-10 07:39:52 -0300956 const struct cx88_ctrl *cc = ctrl->priv;
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200957 u32 value,mask;
Lawrence Rust69518032011-02-06 17:46:12 -0300958
959 /* Pass changes onto any WM8775 */
960 if (core->board.audio_chip == V4L2_IDENT_WM8775) {
Hans Verkuilbac63982012-06-10 07:39:52 -0300961 switch (ctrl->id) {
Lawrence Rust69518032011-02-06 17:46:12 -0300962 case V4L2_CID_AUDIO_MUTE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300963 wm8775_s_ctrl(core, ctrl->id, ctrl->val);
Lawrence Rust69518032011-02-06 17:46:12 -0300964 break;
965 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuilbac63982012-06-10 07:39:52 -0300966 wm8775_s_ctrl(core, ctrl->id, (ctrl->val) ?
967 (0x90 + ctrl->val) << 8 : 0);
Lawrence Rust69518032011-02-06 17:46:12 -0300968 break;
969 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300970 wm8775_s_ctrl(core, ctrl->id, ctrl->val << 9);
Lawrence Rust69518032011-02-06 17:46:12 -0300971 break;
972 default:
Lawrence Rust69518032011-02-06 17:46:12 -0300973 break;
974 }
Lawrence Rust69518032011-02-06 17:46:12 -0300975 }
976
Hans Verkuilbac63982012-06-10 07:39:52 -0300977 mask = cc->mask;
978 switch (ctrl->id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300980 value = (ctrl->val < 0x40) ? (0x7f - ctrl->val) : (ctrl->val - 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
982 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuilbac63982012-06-10 07:39:52 -0300983 value = 0x3f - (ctrl->val & 0x3f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 default:
Hans Verkuilbac63982012-06-10 07:39:52 -0300986 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
988 }
Ian Pickworth6457af52006-02-27 00:09:45 -0300989 dprintk(1,"set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
Hans Verkuilbac63982012-06-10 07:39:52 -0300990 ctrl->id, ctrl->name, ctrl->val, cc->reg, value,
991 mask, cc->sreg ? " [shadowed]" : "");
992 if (cc->sreg)
993 cx_sandor(cc->sreg, cc->reg, mask, value);
994 else
995 cx_andor(cc->reg, mask, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return 0;
997}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001000/* VIDEO IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Hans Verkuil78b526a2008-05-28 12:16:41 -03001002static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001003 struct v4l2_format *f)
1004{
1005 struct cx8800_fh *fh = priv;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001006 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001007
Hans Verkuilc5a86142012-05-11 10:45:18 -03001008 f->fmt.pix.width = dev->width;
1009 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001010 f->fmt.pix.field = fh->vidq.field;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001011 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001012 f->fmt.pix.bytesperline =
Hans Verkuilc5a86142012-05-11 10:45:18 -03001013 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001014 f->fmt.pix.sizeimage =
1015 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001016 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001017 return 0;
1018}
1019
Hans Verkuil78b526a2008-05-28 12:16:41 -03001020static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 struct v4l2_format *f)
1022{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001023 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
lawrence rust2e4e98e2010-08-25 09:50:20 -03001024 const struct cx8800_fmt *fmt;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001025 enum v4l2_field field;
1026 unsigned int maxw, maxh;
1027
1028 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1029 if (NULL == fmt)
1030 return -EINVAL;
1031
1032 field = f->fmt.pix.field;
1033 maxw = norm_maxw(core->tvnorm);
1034 maxh = norm_maxh(core->tvnorm);
1035
1036 if (V4L2_FIELD_ANY == field) {
1037 field = (f->fmt.pix.height > maxh/2)
1038 ? V4L2_FIELD_INTERLACED
1039 : V4L2_FIELD_BOTTOM;
1040 }
1041
1042 switch (field) {
1043 case V4L2_FIELD_TOP:
1044 case V4L2_FIELD_BOTTOM:
1045 maxh = maxh / 2;
1046 break;
1047 case V4L2_FIELD_INTERLACED:
1048 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 default:
1050 return -EINVAL;
1051 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001052
1053 f->fmt.pix.field = field;
Trent Piepho4b899452009-05-30 21:45:46 -03001054 v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2,
1055 &f->fmt.pix.height, 32, maxh, 0, 0);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001056 f->fmt.pix.bytesperline =
1057 (f->fmt.pix.width * fmt->depth) >> 3;
1058 f->fmt.pix.sizeimage =
1059 f->fmt.pix.height * f->fmt.pix.bytesperline;
1060
1061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
Hans Verkuil78b526a2008-05-28 12:16:41 -03001064static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001065 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001067 struct cx8800_fh *fh = priv;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001068 struct cx8800_dev *dev = fh->dev;
Hans Verkuil78b526a2008-05-28 12:16:41 -03001069 int err = vidioc_try_fmt_vid_cap (file,priv,f);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001070
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001071 if (0 != err)
1072 return err;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001073 dev->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1074 dev->width = f->fmt.pix.width;
1075 dev->height = f->fmt.pix.height;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001076 fh->vidq.field = f->fmt.pix.field;
1077 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
Hans Verkuil902e1972012-05-09 16:23:07 -03001080void cx88_querycap(struct file *file, struct cx88_core *core,
1081 struct v4l2_capability *cap)
1082{
1083 struct video_device *vdev = video_devdata(file);
1084
1085 strlcpy(cap->card, core->board.name, sizeof(cap->card));
1086 cap->device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1087 if (UNSET != core->board.tuner_type)
1088 cap->device_caps |= V4L2_CAP_TUNER;
1089 switch (vdev->vfl_type) {
1090 case VFL_TYPE_RADIO:
1091 cap->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER;
1092 break;
1093 case VFL_TYPE_GRABBER:
1094 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE;
1095 break;
1096 case VFL_TYPE_VBI:
1097 cap->device_caps |= V4L2_CAP_VBI_CAPTURE;
1098 break;
1099 }
1100 cap->capabilities = cap->device_caps | V4L2_CAP_VIDEO_CAPTURE |
1101 V4L2_CAP_VBI_CAPTURE | V4L2_CAP_DEVICE_CAPS;
1102 if (core->board.radio.type == CX88_RADIO)
1103 cap->capabilities |= V4L2_CAP_RADIO;
1104}
1105EXPORT_SYMBOL(cx88_querycap);
1106
1107static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001108 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001110 struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001113 strcpy(cap->driver, "cx8800");
Hans Verkuil902e1972012-05-09 16:23:07 -03001114 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
1115 cx88_querycap(file, core, cap);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001116 return 0;
1117}
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001118
Hans Verkuil78b526a2008-05-28 12:16:41 -03001119static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001120 struct v4l2_fmtdesc *f)
1121{
1122 if (unlikely(f->index >= ARRAY_SIZE(formats)))
1123 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001125 strlcpy(f->description,formats[f->index].name,sizeof(f->description));
1126 f->pixelformat = formats[f->index].fourcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001128 return 0;
1129}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001131static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001133 return videobuf_reqbufs(get_queue(file), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001136static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p)
1137{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001138 return videobuf_querybuf(get_queue(file), p);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001139}
1140
1141static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1142{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001143 return videobuf_qbuf(get_queue(file), p);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001144}
1145
1146static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1147{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001148 return videobuf_dqbuf(get_queue(file), p,
1149 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001150}
1151
1152static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1153{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001154 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001155 struct cx8800_fh *fh = priv;
1156 struct cx8800_dev *dev = fh->dev;
1157
Hans Verkuiledbd1382012-05-11 10:33:25 -03001158 if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
1159 (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001160 return -EINVAL;
Rafael Dinizb058e3f2008-10-24 23:07:57 -03001161
Hans Verkuiledbd1382012-05-11 10:33:25 -03001162 if (unlikely(!res_get(dev, fh, get_resource(file))))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001163 return -EBUSY;
Hans Verkuiledbd1382012-05-11 10:33:25 -03001164 return videobuf_streamon(get_queue(file));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001165}
1166
1167static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1168{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001169 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001170 struct cx8800_fh *fh = priv;
1171 struct cx8800_dev *dev = fh->dev;
1172 int err, res;
1173
Hans Verkuiledbd1382012-05-11 10:33:25 -03001174 if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
1175 (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001176 return -EINVAL;
Rafael Dinizb058e3f2008-10-24 23:07:57 -03001177
Hans Verkuiledbd1382012-05-11 10:33:25 -03001178 res = get_resource(file);
1179 err = videobuf_streamoff(get_queue(file));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001180 if (err < 0)
1181 return err;
1182 res_free(dev,fh,res);
1183 return 0;
1184}
1185
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001186static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *tvnorms)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001187{
1188 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1189
1190 mutex_lock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001191 cx88_set_tvnorm(core,*tvnorms);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001192 mutex_unlock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001193
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001194 return 0;
1195}
1196
1197/* only one input in this sample driver */
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001198int cx88_enum_input (struct cx88_core *core,struct v4l2_input *i)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001199{
lawrence rust2e4e98e2010-08-25 09:50:20 -03001200 static const char * const iname[] = {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001201 [ CX88_VMUX_COMPOSITE1 ] = "Composite1",
1202 [ CX88_VMUX_COMPOSITE2 ] = "Composite2",
1203 [ CX88_VMUX_COMPOSITE3 ] = "Composite3",
1204 [ CX88_VMUX_COMPOSITE4 ] = "Composite4",
1205 [ CX88_VMUX_SVIDEO ] = "S-Video",
1206 [ CX88_VMUX_TELEVISION ] = "Television",
1207 [ CX88_VMUX_CABLE ] = "Cable TV",
1208 [ CX88_VMUX_DVB ] = "DVB",
1209 [ CX88_VMUX_DEBUG ] = "for debug only",
1210 };
Trent Piephof3334bc2009-03-04 01:21:03 -03001211 unsigned int n = i->index;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001212
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001213 if (n >= 4)
1214 return -EINVAL;
Trent Piepho6a59d642007-08-15 14:41:57 -03001215 if (0 == INPUT(n).type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001216 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001217 i->type = V4L2_INPUT_TYPE_CAMERA;
Trent Piepho6a59d642007-08-15 14:41:57 -03001218 strcpy(i->name,iname[INPUT(n).type]);
1219 if ((CX88_VMUX_TELEVISION == INPUT(n).type) ||
Julia Lawall473d8022010-08-05 17:22:44 -03001220 (CX88_VMUX_CABLE == INPUT(n).type)) {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001221 i->type = V4L2_INPUT_TYPE_TUNER;
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001222 i->std = CX88_NORMS;
Julia Lawall473d8022010-08-05 17:22:44 -03001223 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001224 return 0;
1225}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001226EXPORT_SYMBOL(cx88_enum_input);
1227
1228static int vidioc_enum_input (struct file *file, void *priv,
1229 struct v4l2_input *i)
1230{
1231 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1232 return cx88_enum_input (core,i);
1233}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001234
1235static int vidioc_g_input (struct file *file, void *priv, unsigned int *i)
1236{
1237 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1238
1239 *i = core->input;
1240 return 0;
1241}
1242
1243static int vidioc_s_input (struct file *file, void *priv, unsigned int i)
1244{
1245 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1246
1247 if (i >= 4)
1248 return -EINVAL;
1249
1250 mutex_lock(&core->lock);
1251 cx88_newstation(core);
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -03001252 cx88_video_mux(core,i);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001253 mutex_unlock(&core->lock);
1254 return 0;
1255}
1256
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001257static int vidioc_g_tuner (struct file *file, void *priv,
1258 struct v4l2_tuner *t)
1259{
1260 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1261 u32 reg;
1262
Trent Piepho6a59d642007-08-15 14:41:57 -03001263 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001264 return -EINVAL;
Mauro Carvalho Chehab243d8c02007-01-20 13:58:36 -03001265 if (0 != t->index)
1266 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001267
1268 strcpy(t->name, "Television");
1269 t->type = V4L2_TUNER_ANALOG_TV;
1270 t->capability = V4L2_TUNER_CAP_NORM;
1271 t->rangehigh = 0xffffffffUL;
1272
1273 cx88_get_stereo(core ,t);
1274 reg = cx_read(MO_DEVICE_STATUS);
1275 t->signal = (reg & (1<<5)) ? 0xffff : 0x0000;
1276 return 0;
1277}
1278
1279static int vidioc_s_tuner (struct file *file, void *priv,
1280 struct v4l2_tuner *t)
1281{
1282 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1283
Trent Piepho6a59d642007-08-15 14:41:57 -03001284 if (UNSET == core->board.tuner_type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001285 return -EINVAL;
1286 if (0 != t->index)
1287 return -EINVAL;
1288
1289 cx88_set_stereo(core, t->audmode, 1);
1290 return 0;
1291}
1292
1293static int vidioc_g_frequency (struct file *file, void *priv,
1294 struct v4l2_frequency *f)
1295{
1296 struct cx8800_fh *fh = priv;
1297 struct cx88_core *core = fh->dev->core;
1298
Trent Piepho6a59d642007-08-15 14:41:57 -03001299 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001300 return -EINVAL;
1301
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001302 f->frequency = core->freq;
1303
Hans Verkuilb8341e12009-03-29 08:26:01 -03001304 call_all(core, tuner, g_frequency, f);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001305
1306 return 0;
1307}
1308
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001309int cx88_set_freq (struct cx88_core *core,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001310 struct v4l2_frequency *f)
1311{
Trent Piepho6a59d642007-08-15 14:41:57 -03001312 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001313 return -EINVAL;
1314 if (unlikely(f->tuner != 0))
1315 return -EINVAL;
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001316
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001317 mutex_lock(&core->lock);
1318 core->freq = f->frequency;
1319 cx88_newstation(core);
Hans Verkuilb8341e12009-03-29 08:26:01 -03001320 call_all(core, tuner, s_frequency, f);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001321
1322 /* When changing channels it is required to reset TVAUDIO */
1323 msleep (10);
1324 cx88_set_tvaudio(core);
1325
1326 mutex_unlock(&core->lock);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001327
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001328 return 0;
1329}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001330EXPORT_SYMBOL(cx88_set_freq);
1331
1332static int vidioc_s_frequency (struct file *file, void *priv,
1333 struct v4l2_frequency *f)
1334{
1335 struct cx8800_fh *fh = priv;
1336 struct cx88_core *core = fh->dev->core;
1337
Hans Verkuiledbd1382012-05-11 10:33:25 -03001338 return cx88_set_freq(core, f);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001339}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001340
Trent Piephodbbff482007-01-22 23:31:53 -03001341#ifdef CONFIG_VIDEO_ADV_DEBUG
1342static int vidioc_g_register (struct file *file, void *fh,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001343 struct v4l2_dbg_register *reg)
Trent Piephodbbff482007-01-22 23:31:53 -03001344{
1345 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1346
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001347 if (!v4l2_chip_match_host(&reg->match))
Trent Piephodbbff482007-01-22 23:31:53 -03001348 return -EINVAL;
1349 /* cx2388x has a 24-bit register space */
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001350 reg->val = cx_read(reg->reg & 0xffffff);
1351 reg->size = 4;
Trent Piephodbbff482007-01-22 23:31:53 -03001352 return 0;
1353}
1354
1355static int vidioc_s_register (struct file *file, void *fh,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001356 struct v4l2_dbg_register *reg)
Trent Piephodbbff482007-01-22 23:31:53 -03001357{
1358 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1359
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001360 if (!v4l2_chip_match_host(&reg->match))
Trent Piephodbbff482007-01-22 23:31:53 -03001361 return -EINVAL;
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001362 cx_write(reg->reg & 0xffffff, reg->val);
Trent Piephodbbff482007-01-22 23:31:53 -03001363 return 0;
1364}
1365#endif
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367/* ----------------------------------------------------------- */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001368/* RADIO ESPECIFIC IOCTLS */
1369/* ----------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001371static int radio_g_tuner (struct file *file, void *priv,
1372 struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001374 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1375
1376 if (unlikely(t->index > 0))
1377 return -EINVAL;
1378
1379 strcpy(t->name, "Radio");
1380 t->type = V4L2_TUNER_RADIO;
1381
Hans Verkuilb8341e12009-03-29 08:26:01 -03001382 call_all(core, tuner, g_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001383 return 0;
1384}
1385
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001386/* FIXME: Should add a standard for radio */
1387
1388static int radio_s_tuner (struct file *file, void *priv,
1389 struct v4l2_tuner *t)
1390{
1391 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1392
1393 if (0 != t->index)
1394 return -EINVAL;
1395
Hans Verkuilb8341e12009-03-29 08:26:01 -03001396 call_all(core, tuner, s_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001397
1398 return 0;
1399}
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401/* ----------------------------------------------------------- */
1402
1403static void cx8800_vid_timeout(unsigned long data)
1404{
1405 struct cx8800_dev *dev = (struct cx8800_dev*)data;
1406 struct cx88_core *core = dev->core;
1407 struct cx88_dmaqueue *q = &dev->vidq;
1408 struct cx88_buffer *buf;
1409 unsigned long flags;
1410
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001411 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 cx_clear(MO_VID_DMACNTRL, 0x11);
1414 cx_clear(VID_CAPTURE_CONTROL, 0x06);
1415
1416 spin_lock_irqsave(&dev->slock,flags);
1417 while (!list_empty(&q->active)) {
1418 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
1419 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03001420 buf->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 wake_up(&buf->vb.done);
1422 printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", core->name,
1423 buf, buf->vb.i, (unsigned long)buf->risc.dma);
1424 }
1425 restart_video_queue(dev,q);
1426 spin_unlock_irqrestore(&dev->slock,flags);
1427}
1428
lawrence rust2e4e98e2010-08-25 09:50:20 -03001429static const char *cx88_vid_irqs[32] = {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -07001430 "y_risci1", "u_risci1", "v_risci1", "vbi_risc1",
1431 "y_risci2", "u_risci2", "v_risci2", "vbi_risc2",
1432 "y_oflow", "u_oflow", "v_oflow", "vbi_oflow",
1433 "y_sync", "u_sync", "v_sync", "vbi_sync",
1434 "opc_err", "par_err", "rip_err", "pci_abort",
1435};
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437static void cx8800_vid_irq(struct cx8800_dev *dev)
1438{
1439 struct cx88_core *core = dev->core;
1440 u32 status, mask, count;
1441
1442 status = cx_read(MO_VID_INTSTAT);
1443 mask = cx_read(MO_VID_INTMSK);
1444 if (0 == (status & mask))
1445 return;
1446 cx_write(MO_VID_INTSTAT, status);
1447 if (irq_debug || (status & mask & ~0xff))
1448 cx88_print_irqbits(core->name, "irq vid",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -03001449 cx88_vid_irqs, ARRAY_SIZE(cx88_vid_irqs),
1450 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 /* risc op code error */
1453 if (status & (1 << 16)) {
1454 printk(KERN_WARNING "%s/0: video risc op code error\n",core->name);
1455 cx_clear(MO_VID_DMACNTRL, 0x11);
1456 cx_clear(VID_CAPTURE_CONTROL, 0x06);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001457 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459
1460 /* risc1 y */
1461 if (status & 0x01) {
1462 spin_lock(&dev->slock);
1463 count = cx_read(MO_VIDY_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001464 cx88_wakeup(core, &dev->vidq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 spin_unlock(&dev->slock);
1466 }
1467
1468 /* risc1 vbi */
1469 if (status & 0x08) {
1470 spin_lock(&dev->slock);
1471 count = cx_read(MO_VBI_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001472 cx88_wakeup(core, &dev->vbiq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 spin_unlock(&dev->slock);
1474 }
1475
1476 /* risc2 y */
1477 if (status & 0x10) {
1478 dprintk(2,"stopper video\n");
1479 spin_lock(&dev->slock);
1480 restart_video_queue(dev,&dev->vidq);
1481 spin_unlock(&dev->slock);
1482 }
1483
1484 /* risc2 vbi */
1485 if (status & 0x80) {
1486 dprintk(2,"stopper vbi\n");
1487 spin_lock(&dev->slock);
1488 cx8800_restart_vbi_queue(dev,&dev->vbiq);
1489 spin_unlock(&dev->slock);
1490 }
1491}
1492
David Howells7d12e782006-10-05 14:55:46 +01001493static irqreturn_t cx8800_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
1495 struct cx8800_dev *dev = dev_id;
1496 struct cx88_core *core = dev->core;
1497 u32 status;
1498 int loop, handled = 0;
1499
1500 for (loop = 0; loop < 10; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001501 status = cx_read(MO_PCI_INTSTAT) &
1502 (core->pci_irqmask | PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (0 == status)
1504 goto out;
1505 cx_write(MO_PCI_INTSTAT, status);
1506 handled = 1;
1507
1508 if (status & core->pci_irqmask)
1509 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001510 if (status & PCI_INT_VIDINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 cx8800_vid_irq(dev);
1512 };
1513 if (10 == loop) {
1514 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
1515 core->name);
1516 cx_write(MO_PCI_INTMSK,0);
1517 }
1518
1519 out:
1520 return IRQ_RETVAL(handled);
1521}
1522
1523/* ----------------------------------------------------------- */
1524/* exported stuff */
1525
Hans Verkuilbec43662008-12-30 06:58:20 -03001526static const struct v4l2_file_operations video_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
1528 .owner = THIS_MODULE,
1529 .open = video_open,
1530 .release = video_release,
1531 .read = video_read,
1532 .poll = video_poll,
1533 .mmap = video_mmap,
Mauro Carvalho Chehabb61872642011-02-13 21:52:02 -03001534 .unlocked_ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535};
1536
Hans Verkuila3998102008-07-21 02:57:38 -03001537static const struct v4l2_ioctl_ops video_ioctl_ops = {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001538 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001539 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1540 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1541 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1542 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1543 .vidioc_g_fmt_vbi_cap = cx8800_vbi_fmt,
1544 .vidioc_try_fmt_vbi_cap = cx8800_vbi_fmt,
1545 .vidioc_s_fmt_vbi_cap = cx8800_vbi_fmt,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001546 .vidioc_reqbufs = vidioc_reqbufs,
1547 .vidioc_querybuf = vidioc_querybuf,
1548 .vidioc_qbuf = vidioc_qbuf,
1549 .vidioc_dqbuf = vidioc_dqbuf,
1550 .vidioc_s_std = vidioc_s_std,
1551 .vidioc_enum_input = vidioc_enum_input,
1552 .vidioc_g_input = vidioc_g_input,
1553 .vidioc_s_input = vidioc_s_input,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001554 .vidioc_streamon = vidioc_streamon,
1555 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001556 .vidioc_g_tuner = vidioc_g_tuner,
1557 .vidioc_s_tuner = vidioc_s_tuner,
1558 .vidioc_g_frequency = vidioc_g_frequency,
1559 .vidioc_s_frequency = vidioc_s_frequency,
Trent Piephodbbff482007-01-22 23:31:53 -03001560#ifdef CONFIG_VIDEO_ADV_DEBUG
1561 .vidioc_g_register = vidioc_g_register,
1562 .vidioc_s_register = vidioc_s_register,
1563#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001564};
1565
1566static struct video_device cx8800_vbi_template;
1567
lawrence rust2e4e98e2010-08-25 09:50:20 -03001568static const struct video_device cx8800_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001569 .name = "cx8800-video",
Hans Verkuila3998102008-07-21 02:57:38 -03001570 .fops = &video_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001571 .ioctl_ops = &video_ioctl_ops,
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001572 .tvnorms = CX88_NORMS,
Trent Piephodbbff482007-01-22 23:31:53 -03001573 .current_norm = V4L2_STD_NTSC_M,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574};
1575
Hans Verkuilbec43662008-12-30 06:58:20 -03001576static const struct v4l2_file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 .owner = THIS_MODULE,
1579 .open = video_open,
1580 .release = video_release,
Mauro Carvalho Chehabb61872642011-02-13 21:52:02 -03001581 .unlocked_ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582};
1583
Hans Verkuila3998102008-07-21 02:57:38 -03001584static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Hans Verkuil902e1972012-05-09 16:23:07 -03001585 .vidioc_querycap = vidioc_querycap,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001586 .vidioc_g_tuner = radio_g_tuner,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001587 .vidioc_s_tuner = radio_s_tuner,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001588 .vidioc_g_frequency = vidioc_g_frequency,
1589 .vidioc_s_frequency = vidioc_s_frequency,
Trent Piephoa75d2042007-08-01 00:13:28 -03001590#ifdef CONFIG_VIDEO_ADV_DEBUG
1591 .vidioc_g_register = vidioc_g_register,
1592 .vidioc_s_register = vidioc_s_register,
1593#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594};
1595
lawrence rust2e4e98e2010-08-25 09:50:20 -03001596static const struct video_device cx8800_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001597 .name = "cx8800-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03001598 .fops = &radio_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001599 .ioctl_ops = &radio_ioctl_ops,
1600};
1601
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001602static const struct v4l2_ctrl_ops cx8800_ctrl_vid_ops = {
1603 .s_ctrl = cx8800_s_vid_ctrl,
1604};
1605
1606static const struct v4l2_ctrl_ops cx8800_ctrl_aud_ops = {
1607 .s_ctrl = cx8800_s_aud_ctrl,
Hans Verkuilbac63982012-06-10 07:39:52 -03001608};
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610/* ----------------------------------------------------------- */
1611
1612static void cx8800_unregister_video(struct cx8800_dev *dev)
1613{
1614 if (dev->radio_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001615 if (video_is_registered(dev->radio_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 video_unregister_device(dev->radio_dev);
1617 else
1618 video_device_release(dev->radio_dev);
1619 dev->radio_dev = NULL;
1620 }
1621 if (dev->vbi_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001622 if (video_is_registered(dev->vbi_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 video_unregister_device(dev->vbi_dev);
1624 else
1625 video_device_release(dev->vbi_dev);
1626 dev->vbi_dev = NULL;
1627 }
1628 if (dev->video_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001629 if (video_is_registered(dev->video_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 video_unregister_device(dev->video_dev);
1631 else
1632 video_device_release(dev->video_dev);
1633 dev->video_dev = NULL;
1634 }
1635}
1636
1637static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
1638 const struct pci_device_id *pci_id)
1639{
1640 struct cx8800_dev *dev;
1641 struct cx88_core *core;
1642 int err;
Hans Verkuilbac63982012-06-10 07:39:52 -03001643 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Panagiotis Issaris74081872006-01-11 19:40:56 -02001645 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (NULL == dev)
1647 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 /* pci init */
1650 dev->pci = pci_dev;
1651 if (pci_enable_device(pci_dev)) {
1652 err = -EIO;
1653 goto fail_free;
1654 }
1655 core = cx88_core_get(dev->pci);
1656 if (NULL == core) {
1657 err = -EINVAL;
1658 goto fail_free;
1659 }
1660 dev->core = core;
1661
1662 /* print pci info */
Bjørn Morkabd34d82011-03-21 11:35:56 -03001663 dev->pci_rev = pci_dev->revision;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001664 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &dev->pci_lat);
1665 printk(KERN_INFO "%s/0: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001666 "latency: %d, mmio: 0x%llx\n", core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001668 dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 pci_set_master(pci_dev);
Yang Hongyang284901a2009-04-06 19:01:15 -07001671 if (!pci_dma_supported(pci_dev,DMA_BIT_MASK(32))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name);
1673 err = -EIO;
1674 goto fail_core;
1675 }
1676
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001677 /* Initialize VBI template */
1678 memcpy( &cx8800_vbi_template, &cx8800_video_template,
1679 sizeof(cx8800_vbi_template) );
1680 strcpy(cx8800_vbi_template.name,"cx8800-vbi");
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 spin_lock_init(&dev->slock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001684 core->tvnorm = cx8800_video_template.current_norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 /* init video dma queues */
1687 INIT_LIST_HEAD(&dev->vidq.active);
1688 INIT_LIST_HEAD(&dev->vidq.queued);
1689 dev->vidq.timeout.function = cx8800_vid_timeout;
1690 dev->vidq.timeout.data = (unsigned long)dev;
1691 init_timer(&dev->vidq.timeout);
1692 cx88_risc_stopper(dev->pci,&dev->vidq.stopper,
1693 MO_VID_DMACNTRL,0x11,0x00);
1694
1695 /* init vbi dma queues */
1696 INIT_LIST_HEAD(&dev->vbiq.active);
1697 INIT_LIST_HEAD(&dev->vbiq.queued);
1698 dev->vbiq.timeout.function = cx8800_vbi_timeout;
1699 dev->vbiq.timeout.data = (unsigned long)dev;
1700 init_timer(&dev->vbiq.timeout);
1701 cx88_risc_stopper(dev->pci,&dev->vbiq.stopper,
1702 MO_VID_DMACNTRL,0x88,0x00);
1703
1704 /* get irq */
1705 err = request_irq(pci_dev->irq, cx8800_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -07001706 IRQF_SHARED | IRQF_DISABLED, core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001708 printk(KERN_ERR "%s/0: can't get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 core->name,pci_dev->irq);
1710 goto fail_core;
1711 }
1712 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
1713
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001714 for (i = 0; i < CX8800_AUD_CTLS; i++) {
1715 const struct cx88_ctrl *cc = &cx8800_aud_ctls[i];
Hans Verkuilbac63982012-06-10 07:39:52 -03001716 struct v4l2_ctrl *vc;
1717
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001718 vc = v4l2_ctrl_new_std(&core->audio_hdl, &cx8800_ctrl_aud_ops,
Hans Verkuilbac63982012-06-10 07:39:52 -03001719 cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value);
1720 if (vc == NULL) {
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001721 err = core->audio_hdl.error;
Hans Verkuilbac63982012-06-10 07:39:52 -03001722 goto fail_core;
1723 }
1724 vc->priv = (void *)cc;
1725 }
1726
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001727 for (i = 0; i < CX8800_VID_CTLS; i++) {
1728 const struct cx88_ctrl *cc = &cx8800_vid_ctls[i];
1729 struct v4l2_ctrl *vc;
1730
1731 vc = v4l2_ctrl_new_std(&core->video_hdl, &cx8800_ctrl_vid_ops,
1732 cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value);
1733 if (vc == NULL) {
1734 err = core->video_hdl.error;
1735 goto fail_core;
1736 }
1737 vc->priv = (void *)cc;
1738 if (vc->id == V4L2_CID_CHROMA_AGC)
1739 core->chroma_agc = vc;
1740 }
1741 v4l2_ctrl_add_handler(&core->video_hdl, &core->audio_hdl);
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 /* load and configure helper modules */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001744
Lawrence Rust69518032011-02-06 17:46:12 -03001745 if (core->board.audio_chip == V4L2_IDENT_WM8775) {
1746 struct i2c_board_info wm8775_info = {
1747 .type = "wm8775",
1748 .addr = 0x36 >> 1,
1749 .platform_data = &core->wm8775_data,
1750 };
1751 struct v4l2_subdev *sd;
1752
1753 if (core->boardnr == CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1)
1754 core->wm8775_data.is_nova_s = true;
1755 else
1756 core->wm8775_data.is_nova_s = false;
1757
1758 sd = v4l2_i2c_new_subdev_board(&core->v4l2_dev, &core->i2c_adap,
1759 &wm8775_info, NULL);
Hans Verkuilbac63982012-06-10 07:39:52 -03001760 if (sd != NULL) {
1761 core->sd_wm8775 = sd;
Lawrence Rust69518032011-02-06 17:46:12 -03001762 sd->grp_id = WM8775_GID;
Hans Verkuilbac63982012-06-10 07:39:52 -03001763 }
Lawrence Rust69518032011-02-06 17:46:12 -03001764 }
Hans Verkuilb8341e12009-03-29 08:26:01 -03001765
1766 if (core->board.audio_chip == V4L2_IDENT_TVAUDIO) {
1767 /* This probes for a tda9874 as is used on some
1768 Pixelview Ultra boards. */
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -03001769 v4l2_i2c_new_subdev(&core->v4l2_dev, &core->i2c_adap,
1770 "tvaudio", 0, I2C_ADDRS(0xb0 >> 1));
Hans Verkuilb8341e12009-03-29 08:26:01 -03001771 }
Steven Toth30579062006-09-25 12:43:42 -03001772
Michael Krufky6fcecce2007-08-24 01:32:31 -03001773 switch (core->boardnr) {
1774 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
Hans Verkuilb8341e12009-03-29 08:26:01 -03001775 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD: {
lawrence rust2e4e98e2010-08-25 09:50:20 -03001776 static const struct i2c_board_info rtc_info = {
Hans Verkuilb8341e12009-03-29 08:26:01 -03001777 I2C_BOARD_INFO("isl1208", 0x6f)
1778 };
1779
Michael Krufky6fcecce2007-08-24 01:32:31 -03001780 request_module("rtc-isl1208");
Hans Verkuilb8341e12009-03-29 08:26:01 -03001781 core->i2c_rtc = i2c_new_device(&core->i2c_adap, &rtc_info);
1782 }
Michael Krufky8efd2e22008-04-22 14:45:14 -03001783 /* break intentionally omitted */
1784 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
1785 request_module("ir-kbd-i2c");
Michael Krufky6fcecce2007-08-24 01:32:31 -03001786 }
1787
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001788 /* Sets device info at pci_dev */
1789 pci_set_drvdata(pci_dev, dev);
1790
Hans Verkuilc5a86142012-05-11 10:45:18 -03001791 dev->width = 320;
1792 dev->height = 240;
1793 dev->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1794
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001795 /* initial device configuration */
1796 mutex_lock(&core->lock);
1797 cx88_set_tvnorm(core, core->tvnorm);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001798 v4l2_ctrl_handler_setup(&core->video_hdl);
1799 v4l2_ctrl_handler_setup(&core->audio_hdl);
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001800 cx88_video_mux(core, 0);
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 /* register v4l devices */
1803 dev->video_dev = cx88_vdev_init(core,dev->pci,
1804 &cx8800_video_template,"video");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001805 video_set_drvdata(dev->video_dev, dev);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001806 dev->video_dev->ctrl_handler = &core->video_hdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER,
1808 video_nr[core->nr]);
1809 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001810 printk(KERN_ERR "%s/0: can't register video device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 core->name);
1812 goto fail_unreg;
1813 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001814 printk(KERN_INFO "%s/0: registered device %s [v4l2]\n",
1815 core->name, video_device_node_name(dev->video_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 dev->vbi_dev = cx88_vdev_init(core,dev->pci,&cx8800_vbi_template,"vbi");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001818 video_set_drvdata(dev->vbi_dev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI,
1820 vbi_nr[core->nr]);
1821 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001822 printk(KERN_ERR "%s/0: can't register vbi device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 core->name);
1824 goto fail_unreg;
1825 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001826 printk(KERN_INFO "%s/0: registered device %s\n",
1827 core->name, video_device_node_name(dev->vbi_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Trent Piepho6a59d642007-08-15 14:41:57 -03001829 if (core->board.radio.type == CX88_RADIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 dev->radio_dev = cx88_vdev_init(core,dev->pci,
1831 &cx8800_radio_template,"radio");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001832 video_set_drvdata(dev->radio_dev, dev);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001833 dev->radio_dev->ctrl_handler = &core->audio_hdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 err = video_register_device(dev->radio_dev,VFL_TYPE_RADIO,
1835 radio_nr[core->nr]);
1836 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001837 printk(KERN_ERR "%s/0: can't register radio device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 core->name);
1839 goto fail_unreg;
1840 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001841 printk(KERN_INFO "%s/0: registered device %s\n",
1842 core->name, video_device_node_name(dev->radio_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /* start tvaudio thread */
Trent Piepho6a59d642007-08-15 14:41:57 -03001846 if (core->board.tuner_type != TUNER_ABSENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001848 if (IS_ERR(core->kthread)) {
1849 err = PTR_ERR(core->kthread);
Trent Piepho5772f812007-08-15 14:41:59 -03001850 printk(KERN_ERR "%s/0: failed to create cx88 audio thread, err=%d\n",
1851 core->name, err);
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001852 }
1853 }
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001854 mutex_unlock(&core->lock);
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 return 0;
1857
1858fail_unreg:
1859 cx8800_unregister_video(dev);
1860 free_irq(pci_dev->irq, dev);
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001861 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862fail_core:
1863 cx88_core_put(core,dev->pci);
1864fail_free:
1865 kfree(dev);
1866 return err;
1867}
1868
1869static void __devexit cx8800_finidev(struct pci_dev *pci_dev)
1870{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001871 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001872 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 /* stop thread */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001875 if (core->kthread) {
1876 kthread_stop(core->kthread);
1877 core->kthread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
1879
Marton Balintb12203d2008-03-26 02:07:35 -03001880 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001881 cx88_ir_stop(core);
Marton Balintb12203d2008-03-26 02:07:35 -03001882
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001883 cx88_shutdown(core); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 pci_disable_device(pci_dev);
1885
1886 /* unregister stuff */
1887
1888 free_irq(pci_dev->irq, dev);
1889 cx8800_unregister_video(dev);
1890 pci_set_drvdata(pci_dev, NULL);
1891
1892 /* free memory */
1893 btcx_riscmem_free(dev->pci,&dev->vidq.stopper);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001894 cx88_core_put(core,dev->pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 kfree(dev);
1896}
1897
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001898#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state)
1900{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001901 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 struct cx88_core *core = dev->core;
1903
1904 /* stop video+vbi capture */
1905 spin_lock(&dev->slock);
1906 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001907 printk("%s/0: suspend video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 stop_video_dma(dev);
1909 del_timer(&dev->vidq.timeout);
1910 }
1911 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001912 printk("%s/0: suspend vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 cx8800_stop_vbi_dma(dev);
1914 del_timer(&dev->vbiq.timeout);
1915 }
1916 spin_unlock(&dev->slock);
1917
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001918 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001919 cx88_ir_stop(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 /* FIXME -- shutdown device */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001921 cx88_shutdown(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 pci_save_state(pci_dev);
1924 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
1925 pci_disable_device(pci_dev);
1926 dev->state.disabled = 1;
1927 }
1928 return 0;
1929}
1930
1931static int cx8800_resume(struct pci_dev *pci_dev)
1932{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001933 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001935 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001938 err=pci_enable_device(pci_dev);
1939 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03001940 printk(KERN_ERR "%s/0: can't enable device\n",
1941 core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001942 return err;
1943 }
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 dev->state.disabled = 0;
1946 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001947 err= pci_set_power_state(pci_dev, PCI_D0);
1948 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03001949 printk(KERN_ERR "%s/0: can't set power state\n", core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001950 pci_disable_device(pci_dev);
1951 dev->state.disabled = 1;
1952
1953 return err;
1954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 pci_restore_state(pci_dev);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /* FIXME: re-initialize hardware */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001958 cx88_reset(core);
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001959 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001960 cx88_ir_start(core);
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001961
1962 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 /* restart video+vbi capture */
1965 spin_lock(&dev->slock);
1966 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001967 printk("%s/0: resume video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 restart_video_queue(dev,&dev->vidq);
1969 }
1970 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001971 printk("%s/0: resume vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 cx8800_restart_vbi_queue(dev,&dev->vbiq);
1973 }
1974 spin_unlock(&dev->slock);
1975
1976 return 0;
1977}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001978#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980/* ----------------------------------------------------------- */
1981
lawrence rust2e4e98e2010-08-25 09:50:20 -03001982static const struct pci_device_id cx8800_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 {
1984 .vendor = 0x14f1,
1985 .device = 0x8800,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001986 .subvendor = PCI_ANY_ID,
1987 .subdevice = PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 },{
1989 /* --- end of list --- */
1990 }
1991};
1992MODULE_DEVICE_TABLE(pci, cx8800_pci_tbl);
1993
1994static struct pci_driver cx8800_pci_driver = {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001995 .name = "cx8800",
1996 .id_table = cx8800_pci_tbl,
1997 .probe = cx8800_initdev,
1998 .remove = __devexit_p(cx8800_finidev),
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001999#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 .suspend = cx8800_suspend,
2001 .resume = cx8800_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002002#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003};
2004
Peter Huewe31d0f842009-07-17 01:00:01 +02002005static int __init cx8800_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03002007 printk(KERN_INFO "cx88/0: cx2388x v4l2 driver version %s loaded\n",
2008 CX88_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return pci_register_driver(&cx8800_pci_driver);
2010}
2011
Peter Huewe31d0f842009-07-17 01:00:01 +02002012static void __exit cx8800_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
2014 pci_unregister_driver(&cx8800_pci_driver);
2015}
2016
2017module_init(cx8800_init);
2018module_exit(cx8800_fini);