blob: 3dee42141979435cdcd745de5a9649886d7bd531 [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>
Hans Verkuil1a3c60a2012-05-11 11:25:03 -030043#include <media/v4l2-event.h>
Lawrence Rust69518032011-02-06 17:46:12 -030044#include <media/wm8775.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards");
47MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
48MODULE_LICENSE("GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030049MODULE_VERSION(CX88_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* ------------------------------------------------------------------ */
52
53static unsigned int video_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
54static unsigned int vbi_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
55static unsigned int radio_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
56
57module_param_array(video_nr, int, NULL, 0444);
58module_param_array(vbi_nr, int, NULL, 0444);
59module_param_array(radio_nr, int, NULL, 0444);
60
61MODULE_PARM_DESC(video_nr,"video device numbers");
62MODULE_PARM_DESC(vbi_nr,"vbi device numbers");
63MODULE_PARM_DESC(radio_nr,"radio device numbers");
64
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030065static unsigned int video_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066module_param(video_debug,int,0644);
67MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
68
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030069static unsigned int irq_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070module_param(irq_debug,int,0644);
71MODULE_PARM_DESC(irq_debug,"enable debug messages [IRQ handler]");
72
73static unsigned int vid_limit = 16;
74module_param(vid_limit,int,0644);
75MODULE_PARM_DESC(vid_limit,"capture memory limit in megabytes");
76
77#define dprintk(level,fmt, arg...) if (video_debug >= level) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070078 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* ------------------------------------------------------------------- */
81/* static data */
82
lawrence rust2e4e98e2010-08-25 09:50:20 -030083static const struct cx8800_fmt formats[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 {
85 .name = "8 bpp, gray",
86 .fourcc = V4L2_PIX_FMT_GREY,
87 .cxformat = ColorFormatY8,
88 .depth = 8,
89 .flags = FORMAT_FLAGS_PACKED,
90 },{
91 .name = "15 bpp RGB, le",
92 .fourcc = V4L2_PIX_FMT_RGB555,
93 .cxformat = ColorFormatRGB15,
94 .depth = 16,
95 .flags = FORMAT_FLAGS_PACKED,
96 },{
97 .name = "15 bpp RGB, be",
98 .fourcc = V4L2_PIX_FMT_RGB555X,
99 .cxformat = ColorFormatRGB15 | ColorFormatBSWAP,
100 .depth = 16,
101 .flags = FORMAT_FLAGS_PACKED,
102 },{
103 .name = "16 bpp RGB, le",
104 .fourcc = V4L2_PIX_FMT_RGB565,
105 .cxformat = ColorFormatRGB16,
106 .depth = 16,
107 .flags = FORMAT_FLAGS_PACKED,
108 },{
109 .name = "16 bpp RGB, be",
110 .fourcc = V4L2_PIX_FMT_RGB565X,
111 .cxformat = ColorFormatRGB16 | ColorFormatBSWAP,
112 .depth = 16,
113 .flags = FORMAT_FLAGS_PACKED,
114 },{
115 .name = "24 bpp RGB, le",
116 .fourcc = V4L2_PIX_FMT_BGR24,
117 .cxformat = ColorFormatRGB24,
118 .depth = 24,
119 .flags = FORMAT_FLAGS_PACKED,
120 },{
121 .name = "32 bpp RGB, le",
122 .fourcc = V4L2_PIX_FMT_BGR32,
123 .cxformat = ColorFormatRGB32,
124 .depth = 32,
125 .flags = FORMAT_FLAGS_PACKED,
126 },{
127 .name = "32 bpp RGB, be",
128 .fourcc = V4L2_PIX_FMT_RGB32,
129 .cxformat = ColorFormatRGB32 | ColorFormatBSWAP | ColorFormatWSWAP,
130 .depth = 32,
131 .flags = FORMAT_FLAGS_PACKED,
132 },{
133 .name = "4:2:2, packed, YUYV",
134 .fourcc = V4L2_PIX_FMT_YUYV,
135 .cxformat = ColorFormatYUY2,
136 .depth = 16,
137 .flags = FORMAT_FLAGS_PACKED,
138 },{
139 .name = "4:2:2, packed, UYVY",
140 .fourcc = V4L2_PIX_FMT_UYVY,
141 .cxformat = ColorFormatYUY2 | ColorFormatBSWAP,
142 .depth = 16,
143 .flags = FORMAT_FLAGS_PACKED,
144 },
145};
146
lawrence rust2e4e98e2010-08-25 09:50:20 -0300147static const struct cx8800_fmt* format_by_fourcc(unsigned int fourcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 unsigned int i;
150
151 for (i = 0; i < ARRAY_SIZE(formats); i++)
152 if (formats[i].fourcc == fourcc)
153 return formats+i;
154 return NULL;
155}
156
157/* ------------------------------------------------------------------- */
158
Hans Verkuilbac63982012-06-10 07:39:52 -0300159struct cx88_ctrl {
160 /* control information */
161 u32 id;
162 s32 minimum;
163 s32 maximum;
164 u32 step;
165 s32 default_value;
166
167 /* control register information */
168 u32 off;
169 u32 reg;
170 u32 sreg;
171 u32 mask;
172 u32 shift;
173};
174
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300175static const struct cx88_ctrl cx8800_vid_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* --- video --- */
177 {
Hans Verkuilbac63982012-06-10 07:39:52 -0300178 .id = V4L2_CID_BRIGHTNESS,
179 .minimum = 0x00,
180 .maximum = 0xff,
181 .step = 1,
182 .default_value = 0x7f,
183 .off = 128,
184 .reg = MO_CONTR_BRIGHT,
185 .mask = 0x00ff,
186 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300188 .id = V4L2_CID_CONTRAST,
189 .minimum = 0,
190 .maximum = 0xff,
191 .step = 1,
192 .default_value = 0x3f,
193 .off = 0,
194 .reg = MO_CONTR_BRIGHT,
195 .mask = 0xff00,
196 .shift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300198 .id = V4L2_CID_HUE,
199 .minimum = 0,
200 .maximum = 0xff,
201 .step = 1,
202 .default_value = 0x7f,
203 .off = 128,
204 .reg = MO_HUE,
205 .mask = 0x00ff,
206 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 },{
208 /* strictly, this only describes only U saturation.
209 * V saturation is handled specially through code.
210 */
Hans Verkuilbac63982012-06-10 07:39:52 -0300211 .id = V4L2_CID_SATURATION,
212 .minimum = 0,
213 .maximum = 0xff,
214 .step = 1,
215 .default_value = 0x7f,
216 .off = 0,
217 .reg = MO_UV_SATURATION,
218 .mask = 0x00ff,
219 .shift = 0,
istvan_v@mailbox.hueea16e32011-07-11 11:02:19 -0300220 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300221 .id = V4L2_CID_SHARPNESS,
222 .minimum = 0,
223 .maximum = 4,
224 .step = 1,
225 .default_value = 0x0,
226 .off = 0,
istvan_v@mailbox.hueea16e32011-07-11 11:02:19 -0300227 /* NOTE: the value is converted and written to both even
228 and odd registers in the code */
Hans Verkuilbac63982012-06-10 07:39:52 -0300229 .reg = MO_FILTER_ODD,
230 .mask = 7 << 7,
231 .shift = 7,
istvan_v@mailbox.hueea16e32011-07-11 11:02:19 -0300232 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300233 .id = V4L2_CID_CHROMA_AGC,
234 .minimum = 0,
235 .maximum = 1,
236 .default_value = 0x1,
237 .reg = MO_INPUT_FORMAT,
238 .mask = 1 << 10,
239 .shift = 10,
Frej Drejhammar6d042032008-03-23 22:43:21 -0300240 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300241 .id = V4L2_CID_COLOR_KILLER,
242 .minimum = 0,
243 .maximum = 1,
244 .default_value = 0x1,
245 .reg = MO_INPUT_FORMAT,
246 .mask = 1 << 9,
247 .shift = 9,
Frej Drejhammar1b879c42008-03-23 22:43:24 -0300248 }, {
Hans Verkuilbac63982012-06-10 07:39:52 -0300249 .id = V4L2_CID_BAND_STOP_FILTER,
250 .minimum = 0,
251 .maximum = 1,
252 .step = 1,
253 .default_value = 0x0,
254 .off = 0,
255 .reg = MO_HTOTAL,
256 .mask = 3 << 11,
257 .shift = 11,
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300258 }
259};
260
261static const struct cx88_ctrl cx8800_aud_ctls[] = {
262 {
Hans Verkuilbac63982012-06-10 07:39:52 -0300263 /* --- audio --- */
264 .id = V4L2_CID_AUDIO_MUTE,
265 .minimum = 0,
266 .maximum = 1,
267 .default_value = 1,
268 .reg = AUD_VOL_CTL,
269 .sreg = SHADOW_AUD_VOL_CTL,
270 .mask = (1 << 6),
271 .shift = 6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300273 .id = V4L2_CID_AUDIO_VOLUME,
274 .minimum = 0,
275 .maximum = 0x3f,
276 .step = 1,
277 .default_value = 0x3f,
278 .reg = AUD_VOL_CTL,
279 .sreg = SHADOW_AUD_VOL_CTL,
280 .mask = 0x3f,
281 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 },{
Hans Verkuilbac63982012-06-10 07:39:52 -0300283 .id = V4L2_CID_AUDIO_BALANCE,
284 .minimum = 0,
285 .maximum = 0x7f,
286 .step = 1,
287 .default_value = 0x40,
288 .reg = AUD_BAL_CTL,
289 .sreg = SHADOW_AUD_BAL_CTL,
290 .mask = 0x7f,
291 .shift = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293};
Hans Verkuilbac63982012-06-10 07:39:52 -0300294
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300295enum {
296 CX8800_VID_CTLS = ARRAY_SIZE(cx8800_vid_ctls),
297 CX8800_AUD_CTLS = ARRAY_SIZE(cx8800_aud_ctls),
298};
Michael Krufky38a27132006-06-26 23:42:39 -0300299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/* ------------------------------------------------------------------- */
301/* resource management */
302
303static int res_get(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bit)
304{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700305 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (fh->resources & bit)
307 /* have it already allocated */
308 return 1;
309
310 /* is it free? */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200311 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (dev->resources & bit) {
313 /* no, someone else uses it */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200314 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return 0;
316 }
317 /* it's free, grab it */
318 fh->resources |= bit;
319 dev->resources |= bit;
320 dprintk(1,"res: get %d\n",bit);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200321 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return 1;
323}
324
325static
326int res_check(struct cx8800_fh *fh, unsigned int bit)
327{
328 return (fh->resources & bit);
329}
330
331static
332int res_locked(struct cx8800_dev *dev, unsigned int bit)
333{
334 return (dev->resources & bit);
335}
336
337static
338void res_free(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bits)
339{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700340 struct cx88_core *core = dev->core;
Eric Sesterhennae246012006-03-13 13:17:11 -0300341 BUG_ON((fh->resources & bits) != bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Ingo Molnar3593cab2006-02-07 06:49:14 -0200343 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 fh->resources &= ~bits;
345 dev->resources &= ~bits;
346 dprintk(1,"res: put %d\n",bits);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200347 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350/* ------------------------------------------------------------------ */
351
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -0300352int cx88_video_mux(struct cx88_core *core, unsigned int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700354 /* struct cx88_core *core = dev->core; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 dprintk(1,"video_mux: %d [vmux=%d,gpio=0x%x,0x%x,0x%x,0x%x]\n",
Trent Piepho6a59d642007-08-15 14:41:57 -0300357 input, INPUT(input).vmux,
358 INPUT(input).gpio0,INPUT(input).gpio1,
359 INPUT(input).gpio2,INPUT(input).gpio3);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700360 core->input = input;
Trent Piepho6a59d642007-08-15 14:41:57 -0300361 cx_andor(MO_INPUT_FORMAT, 0x03 << 14, INPUT(input).vmux << 14);
362 cx_write(MO_GP3_IO, INPUT(input).gpio3);
363 cx_write(MO_GP0_IO, INPUT(input).gpio0);
364 cx_write(MO_GP1_IO, INPUT(input).gpio1);
365 cx_write(MO_GP2_IO, INPUT(input).gpio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Trent Piepho6a59d642007-08-15 14:41:57 -0300367 switch (INPUT(input).type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 case CX88_VMUX_SVIDEO:
369 cx_set(MO_AFECFG_IO, 0x00000001);
370 cx_set(MO_INPUT_FORMAT, 0x00010010);
371 cx_set(MO_FILTER_EVEN, 0x00002020);
372 cx_set(MO_FILTER_ODD, 0x00002020);
373 break;
374 default:
375 cx_clear(MO_AFECFG_IO, 0x00000001);
376 cx_clear(MO_INPUT_FORMAT, 0x00010010);
377 cx_clear(MO_FILTER_EVEN, 0x00002020);
378 cx_clear(MO_FILTER_ODD, 0x00002020);
379 break;
380 }
Michael Krufkyf24546a2006-10-16 16:51:11 -0300381
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300382 /* if there are audioroutes defined, we have an external
383 ADC to deal with audio */
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300384 if (INPUT(input).audioroute) {
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300385 /* The wm8775 module has the "2" route hardwired into
386 the initialization. Some boards may use different
387 routes for different inputs. HVR-1300 surely does */
388 if (core->board.audio_chip &&
Hans Verkuil38f9d302008-07-23 05:09:15 -0300389 core->board.audio_chip == V4L2_IDENT_WM8775) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300390 call_all(core, audio, s_routing,
istvan_v@mailbox.hu6e1f4df2010-03-27 09:31:32 -0300391 INPUT(input).audioroute, 0, 0);
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300392 }
Darron Broad430189d2008-10-15 14:18:42 -0300393 /* cx2388's C-ADC is connected to the tuner only.
394 When used with S-Video, that ADC is busy dealing with
395 chroma, so an external must be used for baseband audio */
istvan_v@mailbox.hu6e1f4df2010-03-27 09:31:32 -0300396 if (INPUT(input).type != CX88_VMUX_TELEVISION &&
397 INPUT(input).type != CX88_VMUX_CABLE) {
Darron Broad430189d2008-10-15 14:18:42 -0300398 /* "I2S ADC mode" */
399 core->tvaudio = WW_I2SADC;
400 cx88_set_tvaudio(core);
401 } else {
402 /* Normal mode */
403 cx_write(AUD_I2SCNTL, 0x0);
404 cx_clear(AUD_CTL, EN_I2SIN_ENABLE);
405 }
Michael Krufkyf24546a2006-10-16 16:51:11 -0300406 }
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return 0;
409}
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -0300410EXPORT_SYMBOL(cx88_video_mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412/* ------------------------------------------------------------------ */
413
414static int start_video_dma(struct cx8800_dev *dev,
415 struct cx88_dmaqueue *q,
416 struct cx88_buffer *buf)
417{
418 struct cx88_core *core = dev->core;
419
420 /* setup fifo + format */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700421 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 buf->bpl, buf->risc.dma);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700423 cx88_set_scale(core, buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 cx_write(MO_COLOR_CTRL, buf->fmt->cxformat | ColorFormatGamma);
425
426 /* reset counter */
427 cx_write(MO_VIDY_GPCNTRL,GP_COUNT_CONTROL_RESET);
428 q->count = 1;
429
430 /* enable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300431 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_VIDINT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700432
433 /* Enables corresponding bits at PCI_INT_STAT:
434 bits 0 to 4: video, audio, transport stream, VIP, Host
435 bit 7: timer
436 bits 8 and 9: DMA complete for: SRC, DST
437 bits 10 and 11: BERR signal asserted for RISC: RD, WR
438 bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB
439 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 cx_set(MO_VID_INTMSK, 0x0f0011);
441
442 /* enable capture */
443 cx_set(VID_CAPTURE_CONTROL,0x06);
444
445 /* start dma */
446 cx_set(MO_DEV_CNTRL2, (1<<5));
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700447 cx_set(MO_VID_DMACNTRL, 0x11); /* Planar Y and packed FIFO and RISC enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 return 0;
450}
451
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300452#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453static int stop_video_dma(struct cx8800_dev *dev)
454{
455 struct cx88_core *core = dev->core;
456
457 /* stop dma */
458 cx_clear(MO_VID_DMACNTRL, 0x11);
459
460 /* disable capture */
461 cx_clear(VID_CAPTURE_CONTROL,0x06);
462
463 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300464 cx_clear(MO_PCI_INTMSK, PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 cx_clear(MO_VID_INTMSK, 0x0f0011);
466 return 0;
467}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300468#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470static int restart_video_queue(struct cx8800_dev *dev,
471 struct cx88_dmaqueue *q)
472{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700473 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct cx88_buffer *buf, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 if (!list_empty(&q->active)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800477 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
479 buf, buf->vb.i);
480 start_video_dma(dev, q, buf);
Trent Piepho8bb629e22007-10-10 05:37:40 -0300481 list_for_each_entry(buf, &q->active, vb.queue)
482 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
484 return 0;
485 }
486
487 prev = NULL;
488 for (;;) {
489 if (list_empty(&q->queued))
490 return 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800491 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (NULL == prev) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700493 list_move_tail(&buf->vb.queue, &q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300495 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 buf->count = q->count++;
497 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
498 dprintk(2,"[%p/%d] restart_queue - first active\n",
499 buf,buf->vb.i);
500
501 } else if (prev->vb.width == buf->vb.width &&
502 prev->vb.height == buf->vb.height &&
503 prev->fmt == buf->fmt) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700504 list_move_tail(&buf->vb.queue, &q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300505 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 buf->count = q->count++;
507 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
508 dprintk(2,"[%p/%d] restart_queue - move to active\n",
509 buf,buf->vb.i);
510 } else {
511 return 0;
512 }
513 prev = buf;
514 }
515}
516
517/* ------------------------------------------------------------------ */
518
519static int
520buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
521{
522 struct cx8800_fh *fh = q->priv_data;
Hans Verkuilc5a86142012-05-11 10:45:18 -0300523 struct cx8800_dev *dev = fh->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Hans Verkuilc5a86142012-05-11 10:45:18 -0300525 *size = dev->fmt->depth * dev->width * dev->height >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (0 == *count)
527 *count = 32;
Andreas Bombedab7e312010-03-21 16:02:45 -0300528 if (*size * *count > vid_limit * 1024 * 1024)
529 *count = (vid_limit * 1024 * 1024) / *size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return 0;
531}
532
533static int
534buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
535 enum v4l2_field field)
536{
537 struct cx8800_fh *fh = q->priv_data;
538 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700539 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300541 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 int rc, init_buffer = 0;
543
Hans Verkuilc5a86142012-05-11 10:45:18 -0300544 BUG_ON(NULL == dev->fmt);
545 if (dev->width < 48 || dev->width > norm_maxw(core->tvnorm) ||
546 dev->height < 32 || dev->height > norm_maxh(core->tvnorm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -EINVAL;
Hans Verkuilc5a86142012-05-11 10:45:18 -0300548 buf->vb.size = (dev->width * dev->height * dev->fmt->depth) >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
550 return -EINVAL;
551
Hans Verkuilc5a86142012-05-11 10:45:18 -0300552 if (buf->fmt != dev->fmt ||
553 buf->vb.width != dev->width ||
554 buf->vb.height != dev->height ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 buf->vb.field != field) {
Hans Verkuilc5a86142012-05-11 10:45:18 -0300556 buf->fmt = dev->fmt;
557 buf->vb.width = dev->width;
558 buf->vb.height = dev->height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 buf->vb.field = field;
560 init_buffer = 1;
561 }
562
Brandon Philips0fc06862007-11-06 20:02:36 -0300563 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 init_buffer = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300565 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto fail;
567 }
568
569 if (init_buffer) {
570 buf->bpl = buf->vb.width * buf->fmt->depth >> 3;
571 switch (buf->vb.field) {
572 case V4L2_FIELD_TOP:
573 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300574 dma->sglist, 0, UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 buf->bpl, 0, buf->vb.height);
576 break;
577 case V4L2_FIELD_BOTTOM:
578 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300579 dma->sglist, UNSET, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 buf->bpl, 0, buf->vb.height);
581 break;
582 case V4L2_FIELD_INTERLACED:
583 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300584 dma->sglist, 0, buf->bpl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 buf->bpl, buf->bpl,
586 buf->vb.height >> 1);
587 break;
588 case V4L2_FIELD_SEQ_TB:
589 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300590 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 0, buf->bpl * (buf->vb.height >> 1),
592 buf->bpl, 0,
593 buf->vb.height >> 1);
594 break;
595 case V4L2_FIELD_SEQ_BT:
596 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300597 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 buf->bpl * (buf->vb.height >> 1), 0,
599 buf->bpl, 0,
600 buf->vb.height >> 1);
601 break;
602 default:
603 BUG();
604 }
605 }
606 dprintk(2,"[%p/%d] buffer_prepare - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
607 buf, buf->vb.i,
Hans Verkuilc5a86142012-05-11 10:45:18 -0300608 dev->width, dev->height, dev->fmt->depth, dev->fmt->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 (unsigned long)buf->risc.dma);
610
Brandon Philips0fc06862007-11-06 20:02:36 -0300611 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
613
614 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300615 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return rc;
617}
618
619static void
620buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
621{
622 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
623 struct cx88_buffer *prev;
624 struct cx8800_fh *fh = vq->priv_data;
625 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700626 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 struct cx88_dmaqueue *q = &dev->vidq;
628
629 /* add jump to stopper */
630 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
631 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
632
633 if (!list_empty(&q->queued)) {
634 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300635 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 dprintk(2,"[%p/%d] buffer_queue - append to queued\n",
637 buf, buf->vb.i);
638
639 } else if (list_empty(&q->active)) {
640 list_add_tail(&buf->vb.queue,&q->active);
641 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300642 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 buf->count = q->count++;
644 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
645 dprintk(2,"[%p/%d] buffer_queue - first active\n",
646 buf, buf->vb.i);
647
648 } else {
649 prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
650 if (prev->vb.width == buf->vb.width &&
651 prev->vb.height == buf->vb.height &&
652 prev->fmt == buf->fmt) {
653 list_add_tail(&buf->vb.queue,&q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300654 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 buf->count = q->count++;
656 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
657 dprintk(2,"[%p/%d] buffer_queue - append to active\n",
658 buf, buf->vb.i);
659
660 } else {
661 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300662 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 dprintk(2,"[%p/%d] buffer_queue - first queued\n",
664 buf, buf->vb.i);
665 }
666 }
667}
668
669static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
670{
671 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300673 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
lawrence rust2e4e98e2010-08-25 09:50:20 -0300676static const struct videobuf_queue_ops cx8800_video_qops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 .buf_setup = buffer_setup,
678 .buf_prepare = buffer_prepare,
679 .buf_queue = buffer_queue,
680 .buf_release = buffer_release,
681};
682
683/* ------------------------------------------------------------------ */
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686/* ------------------------------------------------------------------ */
687
Hans Verkuiledbd1382012-05-11 10:33:25 -0300688static struct videobuf_queue *get_queue(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300690 struct video_device *vdev = video_devdata(file);
691 struct cx8800_fh *fh = file->private_data;
692
693 switch (vdev->vfl_type) {
694 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return &fh->vidq;
Hans Verkuiledbd1382012-05-11 10:33:25 -0300696 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return &fh->vbiq;
698 default:
699 BUG();
700 return NULL;
701 }
702}
703
Hans Verkuiledbd1382012-05-11 10:33:25 -0300704static int get_resource(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300706 struct video_device *vdev = video_devdata(file);
707
708 switch (vdev->vfl_type) {
709 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return RESOURCE_VIDEO;
Hans Verkuiledbd1382012-05-11 10:33:25 -0300711 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return RESOURCE_VBI;
713 default:
714 BUG();
715 return 0;
716 }
717}
718
Hans Verkuilbec43662008-12-30 06:58:20 -0300719static int video_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200721 struct video_device *vdev = video_devdata(file);
722 struct cx8800_dev *dev = video_drvdata(file);
Dan Carpenter5401c2d2010-10-21 16:21:45 -0300723 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 struct cx8800_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 enum v4l2_buf_type type = 0;
726 int radio = 0;
727
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200728 switch (vdev->vfl_type) {
729 case VFL_TYPE_GRABBER:
730 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
731 break;
732 case VFL_TYPE_VBI:
733 type = V4L2_BUF_TYPE_VBI_CAPTURE;
734 break;
735 case VFL_TYPE_RADIO:
736 radio = 1;
737 break;
738 }
739
Laurent Pinchart50462eb2009-12-10 11:47:13 -0200740 dprintk(1, "open dev=%s radio=%d type=%s\n",
741 video_device_node_name(vdev), radio, v4l2_type_names[type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /* allocate + initialize per filehandle data */
Panagiotis Issaris74081872006-01-11 19:40:56 -0200744 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300745 if (unlikely(!fh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -ENOMEM;
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300747
Hans Verkuil88bb42f2012-05-11 10:57:59 -0300748 v4l2_fh_init(&fh->fh, vdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 file->private_data = fh;
750 fh->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300752 mutex_lock(&core->lock);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300753
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300754 videobuf_queue_sg_init(&fh->vidq, &cx8800_video_qops,
755 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 V4L2_BUF_TYPE_VIDEO_CAPTURE,
757 V4L2_FIELD_INTERLACED,
758 sizeof(struct cx88_buffer),
Hans Verkuil08bff032010-09-20 17:39:46 -0300759 fh, NULL);
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300760 videobuf_queue_sg_init(&fh->vbiq, &cx8800_vbi_qops,
761 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 V4L2_BUF_TYPE_VBI_CAPTURE,
763 V4L2_FIELD_SEQ_TB,
764 sizeof(struct cx88_buffer),
Hans Verkuil08bff032010-09-20 17:39:46 -0300765 fh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Hans Verkuiledbd1382012-05-11 10:33:25 -0300767 if (vdev->vfl_type == VFL_TYPE_RADIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 dprintk(1,"video_open: setting radio device\n");
Trent Piepho6a59d642007-08-15 14:41:57 -0300769 cx_write(MO_GP3_IO, core->board.radio.gpio3);
770 cx_write(MO_GP0_IO, core->board.radio.gpio0);
771 cx_write(MO_GP1_IO, core->board.radio.gpio1);
772 cx_write(MO_GP2_IO, core->board.radio.gpio2);
Darron Broad430189d2008-10-15 14:18:42 -0300773 if (core->board.radio.audioroute) {
774 if(core->board.audio_chip &&
775 core->board.audio_chip == V4L2_IDENT_WM8775) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300776 call_all(core, audio, s_routing,
777 core->board.radio.audioroute, 0, 0);
Darron Broad430189d2008-10-15 14:18:42 -0300778 }
779 /* "I2S ADC mode" */
780 core->tvaudio = WW_I2SADC;
781 cx88_set_tvaudio(core);
782 } else {
783 /* FM Mode */
784 core->tvaudio = WW_FM;
785 cx88_set_tvaudio(core);
786 cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1);
787 }
Hans Verkuilb8341e12009-03-29 08:26:01 -0300788 call_all(core, tuner, s_radio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790
Jonathan Nieder8d115932011-05-01 06:31:40 -0300791 core->users++;
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300792 mutex_unlock(&core->lock);
Hans Verkuil88bb42f2012-05-11 10:57:59 -0300793 v4l2_fh_add(&fh->fh);
Darron Broad3e010842008-09-25 16:51:11 -0300794
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800795 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798static ssize_t
Peter Hagervallf9e7a022005-11-08 21:36:29 -0800799video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300801 struct video_device *vdev = video_devdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 struct cx8800_fh *fh = file->private_data;
803
Hans Verkuiledbd1382012-05-11 10:33:25 -0300804 switch (vdev->vfl_type) {
805 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (res_locked(fh->dev,RESOURCE_VIDEO))
807 return -EBUSY;
808 return videobuf_read_one(&fh->vidq, data, count, ppos,
809 file->f_flags & O_NONBLOCK);
Hans Verkuiledbd1382012-05-11 10:33:25 -0300810 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (!res_get(fh->dev,fh,RESOURCE_VBI))
812 return -EBUSY;
813 return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1,
814 file->f_flags & O_NONBLOCK);
815 default:
816 BUG();
817 return 0;
818 }
819}
820
821static unsigned int
822video_poll(struct file *file, struct poll_table_struct *wait)
823{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300824 struct video_device *vdev = video_devdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 struct cx8800_fh *fh = file->private_data;
826 struct cx88_buffer *buf;
Hans Verkuil1a3c60a2012-05-11 11:25:03 -0300827 unsigned int rc = v4l2_ctrl_poll(file, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Hans Verkuiledbd1382012-05-11 10:33:25 -0300829 if (vdev->vfl_type == VFL_TYPE_VBI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (!res_get(fh->dev,fh,RESOURCE_VBI))
Hans Verkuil1a3c60a2012-05-11 11:25:03 -0300831 return rc | POLLERR;
832 return rc | videobuf_poll_stream(file, &fh->vbiq, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
Figo.zhang9fd64182009-06-16 13:31:29 -0300834 mutex_lock(&fh->vidq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (res_check(fh,RESOURCE_VIDEO)) {
836 /* streaming capture */
837 if (list_empty(&fh->vidq.stream))
Figo.zhang9fd64182009-06-16 13:31:29 -0300838 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 buf = list_entry(fh->vidq.stream.next,struct cx88_buffer,vb.stream);
840 } else {
841 /* read() capture */
842 buf = (struct cx88_buffer*)fh->vidq.read_buf;
843 if (NULL == buf)
Figo.zhang9fd64182009-06-16 13:31:29 -0300844 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 poll_wait(file, &buf->vb.done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -0300847 if (buf->vb.state == VIDEOBUF_DONE ||
848 buf->vb.state == VIDEOBUF_ERROR)
Hans Verkuil1a3c60a2012-05-11 11:25:03 -0300849 rc |= POLLIN|POLLRDNORM;
Figo.zhang9fd64182009-06-16 13:31:29 -0300850done:
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);
Hans Verkuil88bb42f2012-05-11 10:57:59 -0300886 v4l2_fh_del(&fh->fh);
887 v4l2_fh_exit(&fh->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 file->private_data = NULL;
889 kfree(fh);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700890
Jonathan Nieder8d115932011-05-01 06:31:40 -0300891 dev->core->users--;
892 if (!dev->core->users)
Laurent Pinchart622b8282009-10-05 10:48:17 -0300893 call_all(dev->core, core, s_power, 0);
Devin Heitmueller06f837c2009-04-28 14:35:27 -0300894 mutex_unlock(&dev->core->lock);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return 0;
897}
898
899static int
900video_mmap(struct file *file, struct vm_area_struct * vma)
901{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300902 return videobuf_mmap_mapper(get_queue(file), vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
905/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300906/* VIDEO CTRL IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300908static int cx8800_s_vid_ctrl(struct v4l2_ctrl *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Hans Verkuilbac63982012-06-10 07:39:52 -0300910 struct cx88_core *core =
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300911 container_of(ctrl->handler, struct cx88_core, video_hdl);
912 const struct cx88_ctrl *cc = ctrl->priv;
913 u32 value, mask;
914
915 mask = cc->mask;
916 switch (ctrl->id) {
917 case V4L2_CID_SATURATION:
918 /* special v_sat handling */
919
920 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
921
922 if (core->tvnorm & V4L2_STD_SECAM) {
923 /* For SECAM, both U and V sat should be equal */
924 value = value << 8 | value;
925 } else {
926 /* Keeps U Saturation proportional to V Sat */
927 value = (value * 0x5a) / 0x7f << 8 | value;
928 }
929 mask = 0xffff;
930 break;
931 case V4L2_CID_SHARPNESS:
932 /* 0b000, 0b100, 0b101, 0b110, or 0b111 */
933 value = (ctrl->val < 1 ? 0 : ((ctrl->val + 3) << 7));
934 /* needs to be set for both fields */
935 cx_andor(MO_FILTER_EVEN, mask, value);
936 break;
937 case V4L2_CID_CHROMA_AGC:
938 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
939 break;
940 default:
941 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
942 break;
943 }
944 dprintk(1, "set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
945 ctrl->id, ctrl->name, ctrl->val, cc->reg, value,
946 mask, cc->sreg ? " [shadowed]" : "");
947 if (cc->sreg)
948 cx_sandor(cc->sreg, cc->reg, mask, value);
949 else
950 cx_andor(cc->reg, mask, value);
951 return 0;
952}
953
954static int cx8800_s_aud_ctrl(struct v4l2_ctrl *ctrl)
955{
956 struct cx88_core *core =
957 container_of(ctrl->handler, struct cx88_core, audio_hdl);
Hans Verkuilbac63982012-06-10 07:39:52 -0300958 const struct cx88_ctrl *cc = ctrl->priv;
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200959 u32 value,mask;
Lawrence Rust69518032011-02-06 17:46:12 -0300960
961 /* Pass changes onto any WM8775 */
962 if (core->board.audio_chip == V4L2_IDENT_WM8775) {
Hans Verkuilbac63982012-06-10 07:39:52 -0300963 switch (ctrl->id) {
Lawrence Rust69518032011-02-06 17:46:12 -0300964 case V4L2_CID_AUDIO_MUTE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300965 wm8775_s_ctrl(core, ctrl->id, ctrl->val);
Lawrence Rust69518032011-02-06 17:46:12 -0300966 break;
967 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuilbac63982012-06-10 07:39:52 -0300968 wm8775_s_ctrl(core, ctrl->id, (ctrl->val) ?
969 (0x90 + ctrl->val) << 8 : 0);
Lawrence Rust69518032011-02-06 17:46:12 -0300970 break;
971 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300972 wm8775_s_ctrl(core, ctrl->id, ctrl->val << 9);
Lawrence Rust69518032011-02-06 17:46:12 -0300973 break;
974 default:
Lawrence Rust69518032011-02-06 17:46:12 -0300975 break;
976 }
Lawrence Rust69518032011-02-06 17:46:12 -0300977 }
978
Hans Verkuilbac63982012-06-10 07:39:52 -0300979 mask = cc->mask;
980 switch (ctrl->id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300982 value = (ctrl->val < 0x40) ? (0x7f - ctrl->val) : (ctrl->val - 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 break;
984 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuilbac63982012-06-10 07:39:52 -0300985 value = 0x3f - (ctrl->val & 0x3f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 default:
Hans Verkuilbac63982012-06-10 07:39:52 -0300988 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 break;
990 }
Ian Pickworth6457af52006-02-27 00:09:45 -0300991 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 -0300992 ctrl->id, ctrl->name, ctrl->val, cc->reg, value,
993 mask, cc->sreg ? " [shadowed]" : "");
994 if (cc->sreg)
995 cx_sandor(cc->sreg, cc->reg, mask, value);
996 else
997 cx_andor(cc->reg, mask, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return 0;
999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001002/* VIDEO IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Hans Verkuil78b526a2008-05-28 12:16:41 -03001004static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001005 struct v4l2_format *f)
1006{
1007 struct cx8800_fh *fh = priv;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001008 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001009
Hans Verkuilc5a86142012-05-11 10:45:18 -03001010 f->fmt.pix.width = dev->width;
1011 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001012 f->fmt.pix.field = fh->vidq.field;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001013 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001014 f->fmt.pix.bytesperline =
Hans Verkuilc5a86142012-05-11 10:45:18 -03001015 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001016 f->fmt.pix.sizeimage =
1017 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001018 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001019 return 0;
1020}
1021
Hans Verkuil78b526a2008-05-28 12:16:41 -03001022static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct v4l2_format *f)
1024{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001025 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
lawrence rust2e4e98e2010-08-25 09:50:20 -03001026 const struct cx8800_fmt *fmt;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001027 enum v4l2_field field;
1028 unsigned int maxw, maxh;
1029
1030 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1031 if (NULL == fmt)
1032 return -EINVAL;
1033
1034 field = f->fmt.pix.field;
1035 maxw = norm_maxw(core->tvnorm);
1036 maxh = norm_maxh(core->tvnorm);
1037
1038 if (V4L2_FIELD_ANY == field) {
1039 field = (f->fmt.pix.height > maxh/2)
1040 ? V4L2_FIELD_INTERLACED
1041 : V4L2_FIELD_BOTTOM;
1042 }
1043
1044 switch (field) {
1045 case V4L2_FIELD_TOP:
1046 case V4L2_FIELD_BOTTOM:
1047 maxh = maxh / 2;
1048 break;
1049 case V4L2_FIELD_INTERLACED:
1050 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 default:
1052 return -EINVAL;
1053 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001054
1055 f->fmt.pix.field = field;
Trent Piepho4b899452009-05-30 21:45:46 -03001056 v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2,
1057 &f->fmt.pix.height, 32, maxh, 0, 0);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001058 f->fmt.pix.bytesperline =
1059 (f->fmt.pix.width * fmt->depth) >> 3;
1060 f->fmt.pix.sizeimage =
1061 f->fmt.pix.height * f->fmt.pix.bytesperline;
1062
1063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Hans Verkuil78b526a2008-05-28 12:16:41 -03001066static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001067 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001069 struct cx8800_fh *fh = priv;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001070 struct cx8800_dev *dev = fh->dev;
Hans Verkuil78b526a2008-05-28 12:16:41 -03001071 int err = vidioc_try_fmt_vid_cap (file,priv,f);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001072
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001073 if (0 != err)
1074 return err;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001075 dev->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1076 dev->width = f->fmt.pix.width;
1077 dev->height = f->fmt.pix.height;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001078 fh->vidq.field = f->fmt.pix.field;
1079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Hans Verkuil902e1972012-05-09 16:23:07 -03001082void cx88_querycap(struct file *file, struct cx88_core *core,
1083 struct v4l2_capability *cap)
1084{
1085 struct video_device *vdev = video_devdata(file);
1086
1087 strlcpy(cap->card, core->board.name, sizeof(cap->card));
1088 cap->device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1089 if (UNSET != core->board.tuner_type)
1090 cap->device_caps |= V4L2_CAP_TUNER;
1091 switch (vdev->vfl_type) {
1092 case VFL_TYPE_RADIO:
1093 cap->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER;
1094 break;
1095 case VFL_TYPE_GRABBER:
1096 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE;
1097 break;
1098 case VFL_TYPE_VBI:
1099 cap->device_caps |= V4L2_CAP_VBI_CAPTURE;
1100 break;
1101 }
1102 cap->capabilities = cap->device_caps | V4L2_CAP_VIDEO_CAPTURE |
1103 V4L2_CAP_VBI_CAPTURE | V4L2_CAP_DEVICE_CAPS;
1104 if (core->board.radio.type == CX88_RADIO)
1105 cap->capabilities |= V4L2_CAP_RADIO;
1106}
1107EXPORT_SYMBOL(cx88_querycap);
1108
1109static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001110 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001112 struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001115 strcpy(cap->driver, "cx8800");
Hans Verkuil902e1972012-05-09 16:23:07 -03001116 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
1117 cx88_querycap(file, core, cap);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001118 return 0;
1119}
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001120
Hans Verkuil78b526a2008-05-28 12:16:41 -03001121static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001122 struct v4l2_fmtdesc *f)
1123{
1124 if (unlikely(f->index >= ARRAY_SIZE(formats)))
1125 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001127 strlcpy(f->description,formats[f->index].name,sizeof(f->description));
1128 f->pixelformat = formats[f->index].fourcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001130 return 0;
1131}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001133static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001135 return videobuf_reqbufs(get_queue(file), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001138static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p)
1139{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001140 return videobuf_querybuf(get_queue(file), p);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001141}
1142
1143static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1144{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001145 return videobuf_qbuf(get_queue(file), p);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001146}
1147
1148static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1149{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001150 return videobuf_dqbuf(get_queue(file), p,
1151 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001152}
1153
1154static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1155{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001156 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001157 struct cx8800_fh *fh = priv;
1158 struct cx8800_dev *dev = fh->dev;
1159
Hans Verkuiledbd1382012-05-11 10:33:25 -03001160 if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
1161 (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001162 return -EINVAL;
Rafael Dinizb058e3f2008-10-24 23:07:57 -03001163
Hans Verkuiledbd1382012-05-11 10:33:25 -03001164 if (unlikely(!res_get(dev, fh, get_resource(file))))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001165 return -EBUSY;
Hans Verkuiledbd1382012-05-11 10:33:25 -03001166 return videobuf_streamon(get_queue(file));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001167}
1168
1169static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1170{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001171 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001172 struct cx8800_fh *fh = priv;
1173 struct cx8800_dev *dev = fh->dev;
1174 int err, res;
1175
Hans Verkuiledbd1382012-05-11 10:33:25 -03001176 if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
1177 (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001178 return -EINVAL;
Rafael Dinizb058e3f2008-10-24 23:07:57 -03001179
Hans Verkuiledbd1382012-05-11 10:33:25 -03001180 res = get_resource(file);
1181 err = videobuf_streamoff(get_queue(file));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001182 if (err < 0)
1183 return err;
1184 res_free(dev,fh,res);
1185 return 0;
1186}
1187
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001188static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *tvnorms)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001189{
1190 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1191
1192 mutex_lock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001193 cx88_set_tvnorm(core,*tvnorms);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001194 mutex_unlock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001195
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001196 return 0;
1197}
1198
1199/* only one input in this sample driver */
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001200int cx88_enum_input (struct cx88_core *core,struct v4l2_input *i)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001201{
lawrence rust2e4e98e2010-08-25 09:50:20 -03001202 static const char * const iname[] = {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001203 [ CX88_VMUX_COMPOSITE1 ] = "Composite1",
1204 [ CX88_VMUX_COMPOSITE2 ] = "Composite2",
1205 [ CX88_VMUX_COMPOSITE3 ] = "Composite3",
1206 [ CX88_VMUX_COMPOSITE4 ] = "Composite4",
1207 [ CX88_VMUX_SVIDEO ] = "S-Video",
1208 [ CX88_VMUX_TELEVISION ] = "Television",
1209 [ CX88_VMUX_CABLE ] = "Cable TV",
1210 [ CX88_VMUX_DVB ] = "DVB",
1211 [ CX88_VMUX_DEBUG ] = "for debug only",
1212 };
Trent Piephof3334bc2009-03-04 01:21:03 -03001213 unsigned int n = i->index;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001214
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001215 if (n >= 4)
1216 return -EINVAL;
Trent Piepho6a59d642007-08-15 14:41:57 -03001217 if (0 == INPUT(n).type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001218 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001219 i->type = V4L2_INPUT_TYPE_CAMERA;
Trent Piepho6a59d642007-08-15 14:41:57 -03001220 strcpy(i->name,iname[INPUT(n).type]);
1221 if ((CX88_VMUX_TELEVISION == INPUT(n).type) ||
Julia Lawall473d8022010-08-05 17:22:44 -03001222 (CX88_VMUX_CABLE == INPUT(n).type)) {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001223 i->type = V4L2_INPUT_TYPE_TUNER;
Julia Lawall473d8022010-08-05 17:22:44 -03001224 }
Hans Verkuilf33e9862012-05-25 12:04:10 -03001225 i->std = CX88_NORMS;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001226 return 0;
1227}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001228EXPORT_SYMBOL(cx88_enum_input);
1229
1230static int vidioc_enum_input (struct file *file, void *priv,
1231 struct v4l2_input *i)
1232{
1233 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1234 return cx88_enum_input (core,i);
1235}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001236
1237static int vidioc_g_input (struct file *file, void *priv, unsigned int *i)
1238{
1239 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1240
1241 *i = core->input;
1242 return 0;
1243}
1244
1245static int vidioc_s_input (struct file *file, void *priv, unsigned int i)
1246{
1247 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1248
1249 if (i >= 4)
1250 return -EINVAL;
Hans Verkuilf33e9862012-05-25 12:04:10 -03001251 if (0 == INPUT(i).type)
1252 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001253
1254 mutex_lock(&core->lock);
1255 cx88_newstation(core);
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -03001256 cx88_video_mux(core,i);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001257 mutex_unlock(&core->lock);
1258 return 0;
1259}
1260
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001261static int vidioc_g_tuner (struct file *file, void *priv,
1262 struct v4l2_tuner *t)
1263{
1264 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1265 u32 reg;
1266
Trent Piepho6a59d642007-08-15 14:41:57 -03001267 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001268 return -EINVAL;
Mauro Carvalho Chehab243d8c02007-01-20 13:58:36 -03001269 if (0 != t->index)
1270 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001271
1272 strcpy(t->name, "Television");
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001273 t->capability = V4L2_TUNER_CAP_NORM;
1274 t->rangehigh = 0xffffffffUL;
Hans Verkuilf33e9862012-05-25 12:04:10 -03001275 call_all(core, tuner, g_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001276
1277 cx88_get_stereo(core ,t);
1278 reg = cx_read(MO_DEVICE_STATUS);
1279 t->signal = (reg & (1<<5)) ? 0xffff : 0x0000;
1280 return 0;
1281}
1282
1283static int vidioc_s_tuner (struct file *file, void *priv,
1284 struct v4l2_tuner *t)
1285{
1286 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1287
Trent Piepho6a59d642007-08-15 14:41:57 -03001288 if (UNSET == core->board.tuner_type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001289 return -EINVAL;
1290 if (0 != t->index)
1291 return -EINVAL;
1292
1293 cx88_set_stereo(core, t->audmode, 1);
1294 return 0;
1295}
1296
1297static int vidioc_g_frequency (struct file *file, void *priv,
1298 struct v4l2_frequency *f)
1299{
1300 struct cx8800_fh *fh = priv;
1301 struct cx88_core *core = fh->dev->core;
1302
Trent Piepho6a59d642007-08-15 14:41:57 -03001303 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001304 return -EINVAL;
Hans Verkuilf33e9862012-05-25 12:04:10 -03001305 if (f->tuner)
1306 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001307
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001308 f->frequency = core->freq;
1309
Hans Verkuilb8341e12009-03-29 08:26:01 -03001310 call_all(core, tuner, g_frequency, f);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001311
1312 return 0;
1313}
1314
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001315int cx88_set_freq (struct cx88_core *core,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001316 struct v4l2_frequency *f)
1317{
Trent Piepho6a59d642007-08-15 14:41:57 -03001318 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001319 return -EINVAL;
1320 if (unlikely(f->tuner != 0))
1321 return -EINVAL;
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001322
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001323 mutex_lock(&core->lock);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001324 cx88_newstation(core);
Hans Verkuilb8341e12009-03-29 08:26:01 -03001325 call_all(core, tuner, s_frequency, f);
Hans Verkuilf33e9862012-05-25 12:04:10 -03001326 call_all(core, tuner, g_frequency, f);
1327 core->freq = f->frequency;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001328
1329 /* When changing channels it is required to reset TVAUDIO */
1330 msleep (10);
1331 cx88_set_tvaudio(core);
1332
1333 mutex_unlock(&core->lock);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001334
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001335 return 0;
1336}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001337EXPORT_SYMBOL(cx88_set_freq);
1338
1339static int vidioc_s_frequency (struct file *file, void *priv,
1340 struct v4l2_frequency *f)
1341{
1342 struct cx8800_fh *fh = priv;
1343 struct cx88_core *core = fh->dev->core;
1344
Hans Verkuiledbd1382012-05-11 10:33:25 -03001345 return cx88_set_freq(core, f);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001346}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001347
Hans Verkuilf33e9862012-05-25 12:04:10 -03001348static int vidioc_g_chip_ident(struct file *file, void *priv,
1349 struct v4l2_dbg_chip_ident *chip)
1350{
1351 if (!v4l2_chip_match_host(&chip->match))
1352 return -EINVAL;
1353 chip->revision = 0;
1354 chip->ident = V4L2_IDENT_UNKNOWN;
1355 return 0;
1356}
1357
Trent Piephodbbff482007-01-22 23:31:53 -03001358#ifdef CONFIG_VIDEO_ADV_DEBUG
1359static int vidioc_g_register (struct file *file, void *fh,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001360 struct v4l2_dbg_register *reg)
Trent Piephodbbff482007-01-22 23:31:53 -03001361{
1362 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1363
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001364 if (!v4l2_chip_match_host(&reg->match))
Trent Piephodbbff482007-01-22 23:31:53 -03001365 return -EINVAL;
1366 /* cx2388x has a 24-bit register space */
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001367 reg->val = cx_read(reg->reg & 0xffffff);
1368 reg->size = 4;
Trent Piephodbbff482007-01-22 23:31:53 -03001369 return 0;
1370}
1371
1372static int vidioc_s_register (struct file *file, void *fh,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001373 struct v4l2_dbg_register *reg)
Trent Piephodbbff482007-01-22 23:31:53 -03001374{
1375 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1376
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001377 if (!v4l2_chip_match_host(&reg->match))
Trent Piephodbbff482007-01-22 23:31:53 -03001378 return -EINVAL;
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001379 cx_write(reg->reg & 0xffffff, reg->val);
Trent Piephodbbff482007-01-22 23:31:53 -03001380 return 0;
1381}
1382#endif
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/* ----------------------------------------------------------- */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001385/* RADIO ESPECIFIC IOCTLS */
1386/* ----------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001388static int radio_g_tuner (struct file *file, void *priv,
1389 struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001391 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1392
1393 if (unlikely(t->index > 0))
1394 return -EINVAL;
1395
1396 strcpy(t->name, "Radio");
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001397
Hans Verkuilb8341e12009-03-29 08:26:01 -03001398 call_all(core, tuner, g_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001399 return 0;
1400}
1401
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001402/* FIXME: Should add a standard for radio */
1403
1404static int radio_s_tuner (struct file *file, void *priv,
1405 struct v4l2_tuner *t)
1406{
1407 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1408
1409 if (0 != t->index)
1410 return -EINVAL;
Hans Verkuilf33e9862012-05-25 12:04:10 -03001411 if (t->audmode > V4L2_TUNER_MODE_STEREO)
1412 t->audmode = V4L2_TUNER_MODE_STEREO;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001413
Hans Verkuilb8341e12009-03-29 08:26:01 -03001414 call_all(core, tuner, s_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001415
1416 return 0;
1417}
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419/* ----------------------------------------------------------- */
1420
1421static void cx8800_vid_timeout(unsigned long data)
1422{
1423 struct cx8800_dev *dev = (struct cx8800_dev*)data;
1424 struct cx88_core *core = dev->core;
1425 struct cx88_dmaqueue *q = &dev->vidq;
1426 struct cx88_buffer *buf;
1427 unsigned long flags;
1428
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001429 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 cx_clear(MO_VID_DMACNTRL, 0x11);
1432 cx_clear(VID_CAPTURE_CONTROL, 0x06);
1433
1434 spin_lock_irqsave(&dev->slock,flags);
1435 while (!list_empty(&q->active)) {
1436 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
1437 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03001438 buf->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 wake_up(&buf->vb.done);
1440 printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", core->name,
1441 buf, buf->vb.i, (unsigned long)buf->risc.dma);
1442 }
1443 restart_video_queue(dev,q);
1444 spin_unlock_irqrestore(&dev->slock,flags);
1445}
1446
lawrence rust2e4e98e2010-08-25 09:50:20 -03001447static const char *cx88_vid_irqs[32] = {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -07001448 "y_risci1", "u_risci1", "v_risci1", "vbi_risc1",
1449 "y_risci2", "u_risci2", "v_risci2", "vbi_risc2",
1450 "y_oflow", "u_oflow", "v_oflow", "vbi_oflow",
1451 "y_sync", "u_sync", "v_sync", "vbi_sync",
1452 "opc_err", "par_err", "rip_err", "pci_abort",
1453};
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455static void cx8800_vid_irq(struct cx8800_dev *dev)
1456{
1457 struct cx88_core *core = dev->core;
1458 u32 status, mask, count;
1459
1460 status = cx_read(MO_VID_INTSTAT);
1461 mask = cx_read(MO_VID_INTMSK);
1462 if (0 == (status & mask))
1463 return;
1464 cx_write(MO_VID_INTSTAT, status);
1465 if (irq_debug || (status & mask & ~0xff))
1466 cx88_print_irqbits(core->name, "irq vid",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -03001467 cx88_vid_irqs, ARRAY_SIZE(cx88_vid_irqs),
1468 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 /* risc op code error */
1471 if (status & (1 << 16)) {
1472 printk(KERN_WARNING "%s/0: video risc op code error\n",core->name);
1473 cx_clear(MO_VID_DMACNTRL, 0x11);
1474 cx_clear(VID_CAPTURE_CONTROL, 0x06);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001475 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
1477
1478 /* risc1 y */
1479 if (status & 0x01) {
1480 spin_lock(&dev->slock);
1481 count = cx_read(MO_VIDY_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001482 cx88_wakeup(core, &dev->vidq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 spin_unlock(&dev->slock);
1484 }
1485
1486 /* risc1 vbi */
1487 if (status & 0x08) {
1488 spin_lock(&dev->slock);
1489 count = cx_read(MO_VBI_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001490 cx88_wakeup(core, &dev->vbiq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 spin_unlock(&dev->slock);
1492 }
1493
1494 /* risc2 y */
1495 if (status & 0x10) {
1496 dprintk(2,"stopper video\n");
1497 spin_lock(&dev->slock);
1498 restart_video_queue(dev,&dev->vidq);
1499 spin_unlock(&dev->slock);
1500 }
1501
1502 /* risc2 vbi */
1503 if (status & 0x80) {
1504 dprintk(2,"stopper vbi\n");
1505 spin_lock(&dev->slock);
1506 cx8800_restart_vbi_queue(dev,&dev->vbiq);
1507 spin_unlock(&dev->slock);
1508 }
1509}
1510
David Howells7d12e782006-10-05 14:55:46 +01001511static irqreturn_t cx8800_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
1513 struct cx8800_dev *dev = dev_id;
1514 struct cx88_core *core = dev->core;
1515 u32 status;
1516 int loop, handled = 0;
1517
1518 for (loop = 0; loop < 10; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001519 status = cx_read(MO_PCI_INTSTAT) &
1520 (core->pci_irqmask | PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (0 == status)
1522 goto out;
1523 cx_write(MO_PCI_INTSTAT, status);
1524 handled = 1;
1525
1526 if (status & core->pci_irqmask)
1527 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001528 if (status & PCI_INT_VIDINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 cx8800_vid_irq(dev);
1530 };
1531 if (10 == loop) {
1532 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
1533 core->name);
1534 cx_write(MO_PCI_INTMSK,0);
1535 }
1536
1537 out:
1538 return IRQ_RETVAL(handled);
1539}
1540
1541/* ----------------------------------------------------------- */
1542/* exported stuff */
1543
Hans Verkuilbec43662008-12-30 06:58:20 -03001544static const struct v4l2_file_operations video_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
1546 .owner = THIS_MODULE,
1547 .open = video_open,
1548 .release = video_release,
1549 .read = video_read,
1550 .poll = video_poll,
1551 .mmap = video_mmap,
Mauro Carvalho Chehabb61872642011-02-13 21:52:02 -03001552 .unlocked_ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553};
1554
Hans Verkuila3998102008-07-21 02:57:38 -03001555static const struct v4l2_ioctl_ops video_ioctl_ops = {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001556 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001557 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1558 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1559 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1560 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001561 .vidioc_reqbufs = vidioc_reqbufs,
1562 .vidioc_querybuf = vidioc_querybuf,
1563 .vidioc_qbuf = vidioc_qbuf,
1564 .vidioc_dqbuf = vidioc_dqbuf,
1565 .vidioc_s_std = vidioc_s_std,
1566 .vidioc_enum_input = vidioc_enum_input,
1567 .vidioc_g_input = vidioc_g_input,
1568 .vidioc_s_input = vidioc_s_input,
1569 .vidioc_streamon = vidioc_streamon,
1570 .vidioc_streamoff = vidioc_streamoff,
1571 .vidioc_g_tuner = vidioc_g_tuner,
1572 .vidioc_s_tuner = vidioc_s_tuner,
1573 .vidioc_g_frequency = vidioc_g_frequency,
1574 .vidioc_s_frequency = vidioc_s_frequency,
1575 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1576 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1577 .vidioc_g_chip_ident = vidioc_g_chip_ident,
1578#ifdef CONFIG_VIDEO_ADV_DEBUG
1579 .vidioc_g_register = vidioc_g_register,
1580 .vidioc_s_register = vidioc_s_register,
1581#endif
1582};
1583
1584static const struct video_device cx8800_video_template = {
1585 .name = "cx8800-video",
1586 .fops = &video_fops,
1587 .ioctl_ops = &video_ioctl_ops,
1588 .tvnorms = CX88_NORMS,
1589 .current_norm = V4L2_STD_NTSC_M,
1590};
1591
1592static const struct v4l2_ioctl_ops vbi_ioctl_ops = {
1593 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001594 .vidioc_g_fmt_vbi_cap = cx8800_vbi_fmt,
1595 .vidioc_try_fmt_vbi_cap = cx8800_vbi_fmt,
1596 .vidioc_s_fmt_vbi_cap = cx8800_vbi_fmt,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001597 .vidioc_reqbufs = vidioc_reqbufs,
1598 .vidioc_querybuf = vidioc_querybuf,
1599 .vidioc_qbuf = vidioc_qbuf,
1600 .vidioc_dqbuf = vidioc_dqbuf,
1601 .vidioc_s_std = vidioc_s_std,
1602 .vidioc_enum_input = vidioc_enum_input,
1603 .vidioc_g_input = vidioc_g_input,
1604 .vidioc_s_input = vidioc_s_input,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001605 .vidioc_streamon = vidioc_streamon,
1606 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001607 .vidioc_g_tuner = vidioc_g_tuner,
1608 .vidioc_s_tuner = vidioc_s_tuner,
1609 .vidioc_g_frequency = vidioc_g_frequency,
1610 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001611 .vidioc_g_chip_ident = vidioc_g_chip_ident,
Trent Piephodbbff482007-01-22 23:31:53 -03001612#ifdef CONFIG_VIDEO_ADV_DEBUG
1613 .vidioc_g_register = vidioc_g_register,
1614 .vidioc_s_register = vidioc_s_register,
1615#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001616};
1617
Hans Verkuilf33e9862012-05-25 12:04:10 -03001618static const struct video_device cx8800_vbi_template = {
1619 .name = "cx8800-vbi",
Hans Verkuila3998102008-07-21 02:57:38 -03001620 .fops = &video_fops,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001621 .ioctl_ops = &vbi_ioctl_ops,
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001622 .tvnorms = CX88_NORMS,
Trent Piephodbbff482007-01-22 23:31:53 -03001623 .current_norm = V4L2_STD_NTSC_M,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624};
1625
Hans Verkuilbec43662008-12-30 06:58:20 -03001626static const struct v4l2_file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
1628 .owner = THIS_MODULE,
1629 .open = video_open,
Hans Verkuil1a3c60a2012-05-11 11:25:03 -03001630 .poll = v4l2_ctrl_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 .release = video_release,
Mauro Carvalho Chehabb61872642011-02-13 21:52:02 -03001632 .unlocked_ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633};
1634
Hans Verkuila3998102008-07-21 02:57:38 -03001635static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Hans Verkuil902e1972012-05-09 16:23:07 -03001636 .vidioc_querycap = vidioc_querycap,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001637 .vidioc_g_tuner = radio_g_tuner,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001638 .vidioc_s_tuner = radio_s_tuner,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001639 .vidioc_g_frequency = vidioc_g_frequency,
1640 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuil1a3c60a2012-05-11 11:25:03 -03001641 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1642 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001643 .vidioc_g_chip_ident = vidioc_g_chip_ident,
Trent Piephoa75d2042007-08-01 00:13:28 -03001644#ifdef CONFIG_VIDEO_ADV_DEBUG
1645 .vidioc_g_register = vidioc_g_register,
1646 .vidioc_s_register = vidioc_s_register,
1647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648};
1649
lawrence rust2e4e98e2010-08-25 09:50:20 -03001650static const struct video_device cx8800_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001651 .name = "cx8800-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03001652 .fops = &radio_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001653 .ioctl_ops = &radio_ioctl_ops,
1654};
1655
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001656static const struct v4l2_ctrl_ops cx8800_ctrl_vid_ops = {
1657 .s_ctrl = cx8800_s_vid_ctrl,
1658};
1659
1660static const struct v4l2_ctrl_ops cx8800_ctrl_aud_ops = {
1661 .s_ctrl = cx8800_s_aud_ctrl,
Hans Verkuilbac63982012-06-10 07:39:52 -03001662};
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664/* ----------------------------------------------------------- */
1665
1666static void cx8800_unregister_video(struct cx8800_dev *dev)
1667{
1668 if (dev->radio_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001669 if (video_is_registered(dev->radio_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 video_unregister_device(dev->radio_dev);
1671 else
1672 video_device_release(dev->radio_dev);
1673 dev->radio_dev = NULL;
1674 }
1675 if (dev->vbi_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001676 if (video_is_registered(dev->vbi_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 video_unregister_device(dev->vbi_dev);
1678 else
1679 video_device_release(dev->vbi_dev);
1680 dev->vbi_dev = NULL;
1681 }
1682 if (dev->video_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001683 if (video_is_registered(dev->video_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 video_unregister_device(dev->video_dev);
1685 else
1686 video_device_release(dev->video_dev);
1687 dev->video_dev = NULL;
1688 }
1689}
1690
1691static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
1692 const struct pci_device_id *pci_id)
1693{
1694 struct cx8800_dev *dev;
1695 struct cx88_core *core;
1696 int err;
Hans Verkuilbac63982012-06-10 07:39:52 -03001697 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Panagiotis Issaris74081872006-01-11 19:40:56 -02001699 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (NULL == dev)
1701 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 /* pci init */
1704 dev->pci = pci_dev;
1705 if (pci_enable_device(pci_dev)) {
1706 err = -EIO;
1707 goto fail_free;
1708 }
1709 core = cx88_core_get(dev->pci);
1710 if (NULL == core) {
1711 err = -EINVAL;
1712 goto fail_free;
1713 }
1714 dev->core = core;
1715
1716 /* print pci info */
Bjørn Morkabd34d82011-03-21 11:35:56 -03001717 dev->pci_rev = pci_dev->revision;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001718 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &dev->pci_lat);
1719 printk(KERN_INFO "%s/0: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001720 "latency: %d, mmio: 0x%llx\n", core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001722 dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 pci_set_master(pci_dev);
Yang Hongyang284901a2009-04-06 19:01:15 -07001725 if (!pci_dma_supported(pci_dev,DMA_BIT_MASK(32))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name);
1727 err = -EIO;
1728 goto fail_core;
1729 }
1730
1731 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 spin_lock_init(&dev->slock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001733 core->tvnorm = cx8800_video_template.current_norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 /* init video dma queues */
1736 INIT_LIST_HEAD(&dev->vidq.active);
1737 INIT_LIST_HEAD(&dev->vidq.queued);
1738 dev->vidq.timeout.function = cx8800_vid_timeout;
1739 dev->vidq.timeout.data = (unsigned long)dev;
1740 init_timer(&dev->vidq.timeout);
1741 cx88_risc_stopper(dev->pci,&dev->vidq.stopper,
1742 MO_VID_DMACNTRL,0x11,0x00);
1743
1744 /* init vbi dma queues */
1745 INIT_LIST_HEAD(&dev->vbiq.active);
1746 INIT_LIST_HEAD(&dev->vbiq.queued);
1747 dev->vbiq.timeout.function = cx8800_vbi_timeout;
1748 dev->vbiq.timeout.data = (unsigned long)dev;
1749 init_timer(&dev->vbiq.timeout);
1750 cx88_risc_stopper(dev->pci,&dev->vbiq.stopper,
1751 MO_VID_DMACNTRL,0x88,0x00);
1752
1753 /* get irq */
1754 err = request_irq(pci_dev->irq, cx8800_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -07001755 IRQF_SHARED | IRQF_DISABLED, core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001757 printk(KERN_ERR "%s/0: can't get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 core->name,pci_dev->irq);
1759 goto fail_core;
1760 }
1761 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
1762
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001763 for (i = 0; i < CX8800_AUD_CTLS; i++) {
1764 const struct cx88_ctrl *cc = &cx8800_aud_ctls[i];
Hans Verkuilbac63982012-06-10 07:39:52 -03001765 struct v4l2_ctrl *vc;
1766
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001767 vc = v4l2_ctrl_new_std(&core->audio_hdl, &cx8800_ctrl_aud_ops,
Hans Verkuilbac63982012-06-10 07:39:52 -03001768 cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value);
1769 if (vc == NULL) {
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001770 err = core->audio_hdl.error;
Hans Verkuilbac63982012-06-10 07:39:52 -03001771 goto fail_core;
1772 }
1773 vc->priv = (void *)cc;
1774 }
1775
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001776 for (i = 0; i < CX8800_VID_CTLS; i++) {
1777 const struct cx88_ctrl *cc = &cx8800_vid_ctls[i];
1778 struct v4l2_ctrl *vc;
1779
1780 vc = v4l2_ctrl_new_std(&core->video_hdl, &cx8800_ctrl_vid_ops,
1781 cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value);
1782 if (vc == NULL) {
1783 err = core->video_hdl.error;
1784 goto fail_core;
1785 }
1786 vc->priv = (void *)cc;
1787 if (vc->id == V4L2_CID_CHROMA_AGC)
1788 core->chroma_agc = vc;
1789 }
1790 v4l2_ctrl_add_handler(&core->video_hdl, &core->audio_hdl);
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 /* load and configure helper modules */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001793
Lawrence Rust69518032011-02-06 17:46:12 -03001794 if (core->board.audio_chip == V4L2_IDENT_WM8775) {
1795 struct i2c_board_info wm8775_info = {
1796 .type = "wm8775",
1797 .addr = 0x36 >> 1,
1798 .platform_data = &core->wm8775_data,
1799 };
1800 struct v4l2_subdev *sd;
1801
1802 if (core->boardnr == CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1)
1803 core->wm8775_data.is_nova_s = true;
1804 else
1805 core->wm8775_data.is_nova_s = false;
1806
1807 sd = v4l2_i2c_new_subdev_board(&core->v4l2_dev, &core->i2c_adap,
1808 &wm8775_info, NULL);
Hans Verkuilbac63982012-06-10 07:39:52 -03001809 if (sd != NULL) {
1810 core->sd_wm8775 = sd;
Lawrence Rust69518032011-02-06 17:46:12 -03001811 sd->grp_id = WM8775_GID;
Hans Verkuilbac63982012-06-10 07:39:52 -03001812 }
Lawrence Rust69518032011-02-06 17:46:12 -03001813 }
Hans Verkuilb8341e12009-03-29 08:26:01 -03001814
1815 if (core->board.audio_chip == V4L2_IDENT_TVAUDIO) {
1816 /* This probes for a tda9874 as is used on some
1817 Pixelview Ultra boards. */
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -03001818 v4l2_i2c_new_subdev(&core->v4l2_dev, &core->i2c_adap,
1819 "tvaudio", 0, I2C_ADDRS(0xb0 >> 1));
Hans Verkuilb8341e12009-03-29 08:26:01 -03001820 }
Steven Toth30579062006-09-25 12:43:42 -03001821
Michael Krufky6fcecce2007-08-24 01:32:31 -03001822 switch (core->boardnr) {
1823 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
Hans Verkuilb8341e12009-03-29 08:26:01 -03001824 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD: {
lawrence rust2e4e98e2010-08-25 09:50:20 -03001825 static const struct i2c_board_info rtc_info = {
Hans Verkuilb8341e12009-03-29 08:26:01 -03001826 I2C_BOARD_INFO("isl1208", 0x6f)
1827 };
1828
Michael Krufky6fcecce2007-08-24 01:32:31 -03001829 request_module("rtc-isl1208");
Hans Verkuilb8341e12009-03-29 08:26:01 -03001830 core->i2c_rtc = i2c_new_device(&core->i2c_adap, &rtc_info);
1831 }
Michael Krufky8efd2e22008-04-22 14:45:14 -03001832 /* break intentionally omitted */
1833 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
1834 request_module("ir-kbd-i2c");
Michael Krufky6fcecce2007-08-24 01:32:31 -03001835 }
1836
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001837 /* Sets device info at pci_dev */
1838 pci_set_drvdata(pci_dev, dev);
1839
Hans Verkuilc5a86142012-05-11 10:45:18 -03001840 dev->width = 320;
1841 dev->height = 240;
1842 dev->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1843
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001844 /* initial device configuration */
1845 mutex_lock(&core->lock);
1846 cx88_set_tvnorm(core, core->tvnorm);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001847 v4l2_ctrl_handler_setup(&core->video_hdl);
1848 v4l2_ctrl_handler_setup(&core->audio_hdl);
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001849 cx88_video_mux(core, 0);
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 /* register v4l devices */
1852 dev->video_dev = cx88_vdev_init(core,dev->pci,
1853 &cx8800_video_template,"video");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001854 video_set_drvdata(dev->video_dev, dev);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001855 dev->video_dev->ctrl_handler = &core->video_hdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER,
1857 video_nr[core->nr]);
1858 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001859 printk(KERN_ERR "%s/0: can't register video device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 core->name);
1861 goto fail_unreg;
1862 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001863 printk(KERN_INFO "%s/0: registered device %s [v4l2]\n",
1864 core->name, video_device_node_name(dev->video_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 dev->vbi_dev = cx88_vdev_init(core,dev->pci,&cx8800_vbi_template,"vbi");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001867 video_set_drvdata(dev->vbi_dev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI,
1869 vbi_nr[core->nr]);
1870 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001871 printk(KERN_ERR "%s/0: can't register vbi device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 core->name);
1873 goto fail_unreg;
1874 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001875 printk(KERN_INFO "%s/0: registered device %s\n",
1876 core->name, video_device_node_name(dev->vbi_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Trent Piepho6a59d642007-08-15 14:41:57 -03001878 if (core->board.radio.type == CX88_RADIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 dev->radio_dev = cx88_vdev_init(core,dev->pci,
1880 &cx8800_radio_template,"radio");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001881 video_set_drvdata(dev->radio_dev, dev);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001882 dev->radio_dev->ctrl_handler = &core->audio_hdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 err = video_register_device(dev->radio_dev,VFL_TYPE_RADIO,
1884 radio_nr[core->nr]);
1885 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001886 printk(KERN_ERR "%s/0: can't register radio device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 core->name);
1888 goto fail_unreg;
1889 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001890 printk(KERN_INFO "%s/0: registered device %s\n",
1891 core->name, video_device_node_name(dev->radio_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 }
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* start tvaudio thread */
Trent Piepho6a59d642007-08-15 14:41:57 -03001895 if (core->board.tuner_type != TUNER_ABSENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001897 if (IS_ERR(core->kthread)) {
1898 err = PTR_ERR(core->kthread);
Trent Piepho5772f812007-08-15 14:41:59 -03001899 printk(KERN_ERR "%s/0: failed to create cx88 audio thread, err=%d\n",
1900 core->name, err);
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001901 }
1902 }
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001903 mutex_unlock(&core->lock);
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return 0;
1906
1907fail_unreg:
1908 cx8800_unregister_video(dev);
1909 free_irq(pci_dev->irq, dev);
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001910 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911fail_core:
1912 cx88_core_put(core,dev->pci);
1913fail_free:
1914 kfree(dev);
1915 return err;
1916}
1917
1918static void __devexit cx8800_finidev(struct pci_dev *pci_dev)
1919{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001920 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001921 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /* stop thread */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001924 if (core->kthread) {
1925 kthread_stop(core->kthread);
1926 core->kthread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
1928
Marton Balintb12203d2008-03-26 02:07:35 -03001929 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001930 cx88_ir_stop(core);
Marton Balintb12203d2008-03-26 02:07:35 -03001931
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001932 cx88_shutdown(core); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 pci_disable_device(pci_dev);
1934
1935 /* unregister stuff */
1936
1937 free_irq(pci_dev->irq, dev);
1938 cx8800_unregister_video(dev);
1939 pci_set_drvdata(pci_dev, NULL);
1940
1941 /* free memory */
1942 btcx_riscmem_free(dev->pci,&dev->vidq.stopper);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001943 cx88_core_put(core,dev->pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 kfree(dev);
1945}
1946
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001947#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state)
1949{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001950 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 struct cx88_core *core = dev->core;
1952
1953 /* stop video+vbi capture */
1954 spin_lock(&dev->slock);
1955 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001956 printk("%s/0: suspend video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 stop_video_dma(dev);
1958 del_timer(&dev->vidq.timeout);
1959 }
1960 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001961 printk("%s/0: suspend vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 cx8800_stop_vbi_dma(dev);
1963 del_timer(&dev->vbiq.timeout);
1964 }
1965 spin_unlock(&dev->slock);
1966
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001967 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001968 cx88_ir_stop(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 /* FIXME -- shutdown device */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001970 cx88_shutdown(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 pci_save_state(pci_dev);
1973 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
1974 pci_disable_device(pci_dev);
1975 dev->state.disabled = 1;
1976 }
1977 return 0;
1978}
1979
1980static int cx8800_resume(struct pci_dev *pci_dev)
1981{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001982 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001984 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001987 err=pci_enable_device(pci_dev);
1988 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03001989 printk(KERN_ERR "%s/0: can't enable device\n",
1990 core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001991 return err;
1992 }
1993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 dev->state.disabled = 0;
1995 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001996 err= pci_set_power_state(pci_dev, PCI_D0);
1997 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03001998 printk(KERN_ERR "%s/0: can't set power state\n", core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001999 pci_disable_device(pci_dev);
2000 dev->state.disabled = 1;
2001
2002 return err;
2003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 pci_restore_state(pci_dev);
2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 /* FIXME: re-initialize hardware */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07002007 cx88_reset(core);
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03002008 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03002009 cx88_ir_start(core);
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03002010
2011 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 /* restart video+vbi capture */
2014 spin_lock(&dev->slock);
2015 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03002016 printk("%s/0: resume video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 restart_video_queue(dev,&dev->vidq);
2018 }
2019 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03002020 printk("%s/0: resume vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 cx8800_restart_vbi_queue(dev,&dev->vbiq);
2022 }
2023 spin_unlock(&dev->slock);
2024
2025 return 0;
2026}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002027#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029/* ----------------------------------------------------------- */
2030
lawrence rust2e4e98e2010-08-25 09:50:20 -03002031static const struct pci_device_id cx8800_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 {
2033 .vendor = 0x14f1,
2034 .device = 0x8800,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002035 .subvendor = PCI_ANY_ID,
2036 .subdevice = PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 },{
2038 /* --- end of list --- */
2039 }
2040};
2041MODULE_DEVICE_TABLE(pci, cx8800_pci_tbl);
2042
2043static struct pci_driver cx8800_pci_driver = {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002044 .name = "cx8800",
2045 .id_table = cx8800_pci_tbl,
2046 .probe = cx8800_initdev,
2047 .remove = __devexit_p(cx8800_finidev),
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002048#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 .suspend = cx8800_suspend,
2050 .resume = cx8800_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002051#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052};
2053
Peter Huewe31d0f842009-07-17 01:00:01 +02002054static int __init cx8800_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03002056 printk(KERN_INFO "cx88/0: cx2388x v4l2 driver version %s loaded\n",
2057 CX88_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return pci_register_driver(&cx8800_pci_driver);
2059}
2060
Peter Huewe31d0f842009-07-17 01:00:01 +02002061static void __exit cx8800_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
2063 pci_unregister_driver(&cx8800_pci_driver);
2064}
2065
2066module_init(cx8800_init);
2067module_exit(cx8800_fini);