blob: ce27e6d4f16ea21df367c0e59930d2446ea82798 [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 */
Hans Verkuil609c4c12013-05-29 10:44:22 -0300388 if (core->sd_wm8775) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300389 call_all(core, audio, s_routing,
istvan_v@mailbox.hu6e1f4df2010-03-27 09:31:32 -0300390 INPUT(input).audioroute, 0, 0);
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300391 }
Darron Broad430189d2008-10-15 14:18:42 -0300392 /* cx2388's C-ADC is connected to the tuner only.
393 When used with S-Video, that ADC is busy dealing with
394 chroma, so an external must be used for baseband audio */
istvan_v@mailbox.hu6e1f4df2010-03-27 09:31:32 -0300395 if (INPUT(input).type != CX88_VMUX_TELEVISION &&
396 INPUT(input).type != CX88_VMUX_CABLE) {
Darron Broad430189d2008-10-15 14:18:42 -0300397 /* "I2S ADC mode" */
398 core->tvaudio = WW_I2SADC;
399 cx88_set_tvaudio(core);
400 } else {
401 /* Normal mode */
402 cx_write(AUD_I2SCNTL, 0x0);
403 cx_clear(AUD_CTL, EN_I2SIN_ENABLE);
404 }
Michael Krufkyf24546a2006-10-16 16:51:11 -0300405 }
Ricardo Cerqueira66e6fbd2007-10-16 20:52:08 -0300406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
408}
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -0300409EXPORT_SYMBOL(cx88_video_mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411/* ------------------------------------------------------------------ */
412
413static int start_video_dma(struct cx8800_dev *dev,
414 struct cx88_dmaqueue *q,
415 struct cx88_buffer *buf)
416{
417 struct cx88_core *core = dev->core;
418
419 /* setup fifo + format */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700420 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 buf->bpl, buf->risc.dma);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700422 cx88_set_scale(core, buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 cx_write(MO_COLOR_CTRL, buf->fmt->cxformat | ColorFormatGamma);
424
425 /* reset counter */
426 cx_write(MO_VIDY_GPCNTRL,GP_COUNT_CONTROL_RESET);
427 q->count = 1;
428
429 /* enable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300430 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_VIDINT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700431
432 /* Enables corresponding bits at PCI_INT_STAT:
433 bits 0 to 4: video, audio, transport stream, VIP, Host
434 bit 7: timer
435 bits 8 and 9: DMA complete for: SRC, DST
436 bits 10 and 11: BERR signal asserted for RISC: RD, WR
437 bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB
438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 cx_set(MO_VID_INTMSK, 0x0f0011);
440
441 /* enable capture */
442 cx_set(VID_CAPTURE_CONTROL,0x06);
443
444 /* start dma */
445 cx_set(MO_DEV_CNTRL2, (1<<5));
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700446 cx_set(MO_VID_DMACNTRL, 0x11); /* Planar Y and packed FIFO and RISC enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 return 0;
449}
450
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300451#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452static int stop_video_dma(struct cx8800_dev *dev)
453{
454 struct cx88_core *core = dev->core;
455
456 /* stop dma */
457 cx_clear(MO_VID_DMACNTRL, 0x11);
458
459 /* disable capture */
460 cx_clear(VID_CAPTURE_CONTROL,0x06);
461
462 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300463 cx_clear(MO_PCI_INTMSK, PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 cx_clear(MO_VID_INTMSK, 0x0f0011);
465 return 0;
466}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300467#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469static int restart_video_queue(struct cx8800_dev *dev,
470 struct cx88_dmaqueue *q)
471{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700472 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct cx88_buffer *buf, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 if (!list_empty(&q->active)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800476 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
478 buf, buf->vb.i);
479 start_video_dma(dev, q, buf);
Trent Piepho8bb629e22007-10-10 05:37:40 -0300480 list_for_each_entry(buf, &q->active, vb.queue)
481 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
483 return 0;
484 }
485
486 prev = NULL;
487 for (;;) {
488 if (list_empty(&q->queued))
489 return 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800490 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (NULL == prev) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700492 list_move_tail(&buf->vb.queue, &q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300494 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 buf->count = q->count++;
496 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
497 dprintk(2,"[%p/%d] restart_queue - first active\n",
498 buf,buf->vb.i);
499
500 } else if (prev->vb.width == buf->vb.width &&
501 prev->vb.height == buf->vb.height &&
502 prev->fmt == buf->fmt) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700503 list_move_tail(&buf->vb.queue, &q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300504 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 buf->count = q->count++;
506 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
507 dprintk(2,"[%p/%d] restart_queue - move to active\n",
508 buf,buf->vb.i);
509 } else {
510 return 0;
511 }
512 prev = buf;
513 }
514}
515
516/* ------------------------------------------------------------------ */
517
518static int
519buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
520{
521 struct cx8800_fh *fh = q->priv_data;
Hans Verkuilc5a86142012-05-11 10:45:18 -0300522 struct cx8800_dev *dev = fh->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Hans Verkuilc5a86142012-05-11 10:45:18 -0300524 *size = dev->fmt->depth * dev->width * dev->height >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (0 == *count)
526 *count = 32;
Andreas Bombedab7e312010-03-21 16:02:45 -0300527 if (*size * *count > vid_limit * 1024 * 1024)
528 *count = (vid_limit * 1024 * 1024) / *size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
530}
531
532static int
533buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
534 enum v4l2_field field)
535{
536 struct cx8800_fh *fh = q->priv_data;
537 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700538 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300540 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int rc, init_buffer = 0;
542
Hans Verkuilc5a86142012-05-11 10:45:18 -0300543 BUG_ON(NULL == dev->fmt);
544 if (dev->width < 48 || dev->width > norm_maxw(core->tvnorm) ||
545 dev->height < 32 || dev->height > norm_maxh(core->tvnorm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return -EINVAL;
Hans Verkuilc5a86142012-05-11 10:45:18 -0300547 buf->vb.size = (dev->width * dev->height * dev->fmt->depth) >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
549 return -EINVAL;
550
Hans Verkuilc5a86142012-05-11 10:45:18 -0300551 if (buf->fmt != dev->fmt ||
552 buf->vb.width != dev->width ||
553 buf->vb.height != dev->height ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 buf->vb.field != field) {
Hans Verkuilc5a86142012-05-11 10:45:18 -0300555 buf->fmt = dev->fmt;
556 buf->vb.width = dev->width;
557 buf->vb.height = dev->height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 buf->vb.field = field;
559 init_buffer = 1;
560 }
561
Brandon Philips0fc06862007-11-06 20:02:36 -0300562 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 init_buffer = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300564 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 goto fail;
566 }
567
568 if (init_buffer) {
569 buf->bpl = buf->vb.width * buf->fmt->depth >> 3;
570 switch (buf->vb.field) {
571 case V4L2_FIELD_TOP:
572 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300573 dma->sglist, 0, UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 buf->bpl, 0, buf->vb.height);
575 break;
576 case V4L2_FIELD_BOTTOM:
577 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300578 dma->sglist, UNSET, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 buf->bpl, 0, buf->vb.height);
580 break;
581 case V4L2_FIELD_INTERLACED:
582 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300583 dma->sglist, 0, buf->bpl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 buf->bpl, buf->bpl,
585 buf->vb.height >> 1);
586 break;
587 case V4L2_FIELD_SEQ_TB:
588 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300589 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 0, buf->bpl * (buf->vb.height >> 1),
591 buf->bpl, 0,
592 buf->vb.height >> 1);
593 break;
594 case V4L2_FIELD_SEQ_BT:
595 cx88_risc_buffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300596 dma->sglist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 buf->bpl * (buf->vb.height >> 1), 0,
598 buf->bpl, 0,
599 buf->vb.height >> 1);
600 break;
601 default:
602 BUG();
603 }
604 }
605 dprintk(2,"[%p/%d] buffer_prepare - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
606 buf, buf->vb.i,
Hans Verkuilc5a86142012-05-11 10:45:18 -0300607 dev->width, dev->height, dev->fmt->depth, dev->fmt->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 (unsigned long)buf->risc.dma);
609
Brandon Philips0fc06862007-11-06 20:02:36 -0300610 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 0;
612
613 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300614 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return rc;
616}
617
618static void
619buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
620{
621 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
622 struct cx88_buffer *prev;
623 struct cx8800_fh *fh = vq->priv_data;
624 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700625 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct cx88_dmaqueue *q = &dev->vidq;
627
628 /* add jump to stopper */
629 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
630 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
631
632 if (!list_empty(&q->queued)) {
633 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300634 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 dprintk(2,"[%p/%d] buffer_queue - append to queued\n",
636 buf, buf->vb.i);
637
638 } else if (list_empty(&q->active)) {
639 list_add_tail(&buf->vb.queue,&q->active);
640 start_video_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300641 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 buf->count = q->count++;
643 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
644 dprintk(2,"[%p/%d] buffer_queue - first active\n",
645 buf, buf->vb.i);
646
647 } else {
648 prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
649 if (prev->vb.width == buf->vb.width &&
650 prev->vb.height == buf->vb.height &&
651 prev->fmt == buf->fmt) {
652 list_add_tail(&buf->vb.queue,&q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300653 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 buf->count = q->count++;
655 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
656 dprintk(2,"[%p/%d] buffer_queue - append to active\n",
657 buf, buf->vb.i);
658
659 } else {
660 list_add_tail(&buf->vb.queue,&q->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300661 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 dprintk(2,"[%p/%d] buffer_queue - first queued\n",
663 buf, buf->vb.i);
664 }
665 }
666}
667
668static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
669{
670 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300672 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
lawrence rust2e4e98e2010-08-25 09:50:20 -0300675static const struct videobuf_queue_ops cx8800_video_qops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 .buf_setup = buffer_setup,
677 .buf_prepare = buffer_prepare,
678 .buf_queue = buffer_queue,
679 .buf_release = buffer_release,
680};
681
682/* ------------------------------------------------------------------ */
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685/* ------------------------------------------------------------------ */
686
Hans Verkuiledbd1382012-05-11 10:33:25 -0300687static struct videobuf_queue *get_queue(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300689 struct video_device *vdev = video_devdata(file);
690 struct cx8800_fh *fh = file->private_data;
691
692 switch (vdev->vfl_type) {
693 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return &fh->vidq;
Hans Verkuiledbd1382012-05-11 10:33:25 -0300695 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return &fh->vbiq;
697 default:
698 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700}
701
Hans Verkuiledbd1382012-05-11 10:33:25 -0300702static int get_resource(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300704 struct video_device *vdev = video_devdata(file);
705
706 switch (vdev->vfl_type) {
707 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return RESOURCE_VIDEO;
Hans Verkuiledbd1382012-05-11 10:33:25 -0300709 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return RESOURCE_VBI;
711 default:
712 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714}
715
Hans Verkuilbec43662008-12-30 06:58:20 -0300716static int video_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200718 struct video_device *vdev = video_devdata(file);
719 struct cx8800_dev *dev = video_drvdata(file);
Dan Carpenter5401c2d2010-10-21 16:21:45 -0300720 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct cx8800_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 enum v4l2_buf_type type = 0;
723 int radio = 0;
724
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200725 switch (vdev->vfl_type) {
726 case VFL_TYPE_GRABBER:
727 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
728 break;
729 case VFL_TYPE_VBI:
730 type = V4L2_BUF_TYPE_VBI_CAPTURE;
731 break;
732 case VFL_TYPE_RADIO:
733 radio = 1;
734 break;
735 }
736
Laurent Pinchart50462eb2009-12-10 11:47:13 -0200737 dprintk(1, "open dev=%s radio=%d type=%s\n",
738 video_device_node_name(vdev), radio, v4l2_type_names[type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /* allocate + initialize per filehandle data */
Panagiotis Issaris74081872006-01-11 19:40:56 -0200741 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300742 if (unlikely(!fh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return -ENOMEM;
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300744
Hans Verkuil88bb42f2012-05-11 10:57:59 -0300745 v4l2_fh_init(&fh->fh, vdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 file->private_data = fh;
747 fh->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300749 mutex_lock(&core->lock);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300750
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300751 videobuf_queue_sg_init(&fh->vidq, &cx8800_video_qops,
752 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 V4L2_BUF_TYPE_VIDEO_CAPTURE,
754 V4L2_FIELD_INTERLACED,
755 sizeof(struct cx88_buffer),
Hans Verkuil08bff032010-09-20 17:39:46 -0300756 fh, NULL);
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300757 videobuf_queue_sg_init(&fh->vbiq, &cx8800_vbi_qops,
758 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 V4L2_BUF_TYPE_VBI_CAPTURE,
760 V4L2_FIELD_SEQ_TB,
761 sizeof(struct cx88_buffer),
Hans Verkuil08bff032010-09-20 17:39:46 -0300762 fh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Hans Verkuiledbd1382012-05-11 10:33:25 -0300764 if (vdev->vfl_type == VFL_TYPE_RADIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 dprintk(1,"video_open: setting radio device\n");
Trent Piepho6a59d642007-08-15 14:41:57 -0300766 cx_write(MO_GP3_IO, core->board.radio.gpio3);
767 cx_write(MO_GP0_IO, core->board.radio.gpio0);
768 cx_write(MO_GP1_IO, core->board.radio.gpio1);
769 cx_write(MO_GP2_IO, core->board.radio.gpio2);
Darron Broad430189d2008-10-15 14:18:42 -0300770 if (core->board.radio.audioroute) {
Hans Verkuil609c4c12013-05-29 10:44:22 -0300771 if (core->sd_wm8775) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300772 call_all(core, audio, s_routing,
773 core->board.radio.audioroute, 0, 0);
Darron Broad430189d2008-10-15 14:18:42 -0300774 }
775 /* "I2S ADC mode" */
776 core->tvaudio = WW_I2SADC;
777 cx88_set_tvaudio(core);
778 } else {
779 /* FM Mode */
780 core->tvaudio = WW_FM;
781 cx88_set_tvaudio(core);
782 cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1);
783 }
Hans Verkuilb8341e12009-03-29 08:26:01 -0300784 call_all(core, tuner, s_radio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
Jonathan Nieder8d115932011-05-01 06:31:40 -0300787 core->users++;
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300788 mutex_unlock(&core->lock);
Hans Verkuil88bb42f2012-05-11 10:57:59 -0300789 v4l2_fh_add(&fh->fh);
Darron Broad3e010842008-09-25 16:51:11 -0300790
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
794static ssize_t
Peter Hagervallf9e7a022005-11-08 21:36:29 -0800795video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300797 struct video_device *vdev = video_devdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 struct cx8800_fh *fh = file->private_data;
799
Hans Verkuiledbd1382012-05-11 10:33:25 -0300800 switch (vdev->vfl_type) {
801 case VFL_TYPE_GRABBER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (res_locked(fh->dev,RESOURCE_VIDEO))
803 return -EBUSY;
804 return videobuf_read_one(&fh->vidq, data, count, ppos,
805 file->f_flags & O_NONBLOCK);
Hans Verkuiledbd1382012-05-11 10:33:25 -0300806 case VFL_TYPE_VBI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!res_get(fh->dev,fh,RESOURCE_VBI))
808 return -EBUSY;
809 return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1,
810 file->f_flags & O_NONBLOCK);
811 default:
812 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814}
815
816static unsigned int
817video_poll(struct file *file, struct poll_table_struct *wait)
818{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300819 struct video_device *vdev = video_devdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 struct cx8800_fh *fh = file->private_data;
821 struct cx88_buffer *buf;
Hans Verkuil1a3c60a2012-05-11 11:25:03 -0300822 unsigned int rc = v4l2_ctrl_poll(file, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Hans Verkuiledbd1382012-05-11 10:33:25 -0300824 if (vdev->vfl_type == VFL_TYPE_VBI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (!res_get(fh->dev,fh,RESOURCE_VBI))
Hans Verkuil1a3c60a2012-05-11 11:25:03 -0300826 return rc | POLLERR;
827 return rc | videobuf_poll_stream(file, &fh->vbiq, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
Figo.zhang9fd64182009-06-16 13:31:29 -0300829 mutex_lock(&fh->vidq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (res_check(fh,RESOURCE_VIDEO)) {
831 /* streaming capture */
832 if (list_empty(&fh->vidq.stream))
Figo.zhang9fd64182009-06-16 13:31:29 -0300833 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 buf = list_entry(fh->vidq.stream.next,struct cx88_buffer,vb.stream);
835 } else {
836 /* read() capture */
837 buf = (struct cx88_buffer*)fh->vidq.read_buf;
838 if (NULL == buf)
Figo.zhang9fd64182009-06-16 13:31:29 -0300839 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841 poll_wait(file, &buf->vb.done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -0300842 if (buf->vb.state == VIDEOBUF_DONE ||
843 buf->vb.state == VIDEOBUF_ERROR)
Hans Verkuil1a3c60a2012-05-11 11:25:03 -0300844 rc |= POLLIN|POLLRDNORM;
Figo.zhang9fd64182009-06-16 13:31:29 -0300845done:
846 mutex_unlock(&fh->vidq.vb_lock);
847 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Hans Verkuilbec43662008-12-30 06:58:20 -0300850static int video_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 struct cx8800_fh *fh = file->private_data;
853 struct cx8800_dev *dev = fh->dev;
854
855 /* turn off overlay */
856 if (res_check(fh, RESOURCE_OVERLAY)) {
857 /* FIXME */
858 res_free(dev,fh,RESOURCE_OVERLAY);
859 }
860
861 /* stop video capture */
862 if (res_check(fh, RESOURCE_VIDEO)) {
863 videobuf_queue_cancel(&fh->vidq);
864 res_free(dev,fh,RESOURCE_VIDEO);
865 }
866 if (fh->vidq.read_buf) {
867 buffer_release(&fh->vidq,fh->vidq.read_buf);
868 kfree(fh->vidq.read_buf);
869 }
870
871 /* stop vbi capture */
872 if (res_check(fh, RESOURCE_VBI)) {
Brandon Philips053fcb62007-11-13 20:11:26 -0300873 videobuf_stop(&fh->vbiq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 res_free(dev,fh,RESOURCE_VBI);
875 }
876
877 videobuf_mmap_free(&fh->vidq);
878 videobuf_mmap_free(&fh->vbiq);
Mauro Carvalho Chehabda497e32010-09-15 09:23:20 -0300879
880 mutex_lock(&dev->core->lock);
Hans Verkuil88bb42f2012-05-11 10:57:59 -0300881 v4l2_fh_del(&fh->fh);
882 v4l2_fh_exit(&fh->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 file->private_data = NULL;
884 kfree(fh);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700885
Jonathan Nieder8d115932011-05-01 06:31:40 -0300886 dev->core->users--;
887 if (!dev->core->users)
Laurent Pinchart622b8282009-10-05 10:48:17 -0300888 call_all(dev->core, core, s_power, 0);
Devin Heitmueller06f837c2009-04-28 14:35:27 -0300889 mutex_unlock(&dev->core->lock);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return 0;
892}
893
894static int
895video_mmap(struct file *file, struct vm_area_struct * vma)
896{
Hans Verkuiledbd1382012-05-11 10:33:25 -0300897 return videobuf_mmap_mapper(get_queue(file), vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
900/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300901/* VIDEO CTRL IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300903static int cx8800_s_vid_ctrl(struct v4l2_ctrl *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Hans Verkuilbac63982012-06-10 07:39:52 -0300905 struct cx88_core *core =
Hans Verkuil8c7cb122012-05-11 09:07:45 -0300906 container_of(ctrl->handler, struct cx88_core, video_hdl);
907 const struct cx88_ctrl *cc = ctrl->priv;
908 u32 value, mask;
909
910 mask = cc->mask;
911 switch (ctrl->id) {
912 case V4L2_CID_SATURATION:
913 /* special v_sat handling */
914
915 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
916
917 if (core->tvnorm & V4L2_STD_SECAM) {
918 /* For SECAM, both U and V sat should be equal */
919 value = value << 8 | value;
920 } else {
921 /* Keeps U Saturation proportional to V Sat */
922 value = (value * 0x5a) / 0x7f << 8 | value;
923 }
924 mask = 0xffff;
925 break;
926 case V4L2_CID_SHARPNESS:
927 /* 0b000, 0b100, 0b101, 0b110, or 0b111 */
928 value = (ctrl->val < 1 ? 0 : ((ctrl->val + 3) << 7));
929 /* needs to be set for both fields */
930 cx_andor(MO_FILTER_EVEN, mask, value);
931 break;
932 case V4L2_CID_CHROMA_AGC:
933 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
934 break;
935 default:
936 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
937 break;
938 }
939 dprintk(1, "set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
940 ctrl->id, ctrl->name, ctrl->val, cc->reg, value,
941 mask, cc->sreg ? " [shadowed]" : "");
942 if (cc->sreg)
943 cx_sandor(cc->sreg, cc->reg, mask, value);
944 else
945 cx_andor(cc->reg, mask, value);
946 return 0;
947}
948
949static int cx8800_s_aud_ctrl(struct v4l2_ctrl *ctrl)
950{
951 struct cx88_core *core =
952 container_of(ctrl->handler, struct cx88_core, audio_hdl);
Hans Verkuilbac63982012-06-10 07:39:52 -0300953 const struct cx88_ctrl *cc = ctrl->priv;
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200954 u32 value,mask;
Lawrence Rust69518032011-02-06 17:46:12 -0300955
956 /* Pass changes onto any WM8775 */
Hans Verkuil609c4c12013-05-29 10:44:22 -0300957 if (core->sd_wm8775) {
Hans Verkuilbac63982012-06-10 07:39:52 -0300958 switch (ctrl->id) {
Lawrence Rust69518032011-02-06 17:46:12 -0300959 case V4L2_CID_AUDIO_MUTE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300960 wm8775_s_ctrl(core, ctrl->id, ctrl->val);
Lawrence Rust69518032011-02-06 17:46:12 -0300961 break;
962 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuilbac63982012-06-10 07:39:52 -0300963 wm8775_s_ctrl(core, ctrl->id, (ctrl->val) ?
964 (0x90 + ctrl->val) << 8 : 0);
Lawrence Rust69518032011-02-06 17:46:12 -0300965 break;
966 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300967 wm8775_s_ctrl(core, ctrl->id, ctrl->val << 9);
Lawrence Rust69518032011-02-06 17:46:12 -0300968 break;
969 default:
Lawrence Rust69518032011-02-06 17:46:12 -0300970 break;
971 }
Lawrence Rust69518032011-02-06 17:46:12 -0300972 }
973
Hans Verkuilbac63982012-06-10 07:39:52 -0300974 mask = cc->mask;
975 switch (ctrl->id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuilbac63982012-06-10 07:39:52 -0300977 value = (ctrl->val < 0x40) ? (0x7f - ctrl->val) : (ctrl->val - 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 break;
979 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuilbac63982012-06-10 07:39:52 -0300980 value = 0x3f - (ctrl->val & 0x3f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 default:
Hans Verkuilbac63982012-06-10 07:39:52 -0300983 value = ((ctrl->val - cc->off) << cc->shift) & cc->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 break;
985 }
Ian Pickworth6457af52006-02-27 00:09:45 -0300986 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 -0300987 ctrl->id, ctrl->name, ctrl->val, cc->reg, value,
988 mask, cc->sreg ? " [shadowed]" : "");
989 if (cc->sreg)
990 cx_sandor(cc->sreg, cc->reg, mask, value);
991 else
992 cx_andor(cc->reg, mask, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return 0;
994}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300997/* VIDEO IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Hans Verkuil78b526a2008-05-28 12:16:41 -0300999static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001000 struct v4l2_format *f)
1001{
1002 struct cx8800_fh *fh = priv;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001003 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001004
Hans Verkuilc5a86142012-05-11 10:45:18 -03001005 f->fmt.pix.width = dev->width;
1006 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001007 f->fmt.pix.field = fh->vidq.field;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001008 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001009 f->fmt.pix.bytesperline =
Hans Verkuilc5a86142012-05-11 10:45:18 -03001010 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001011 f->fmt.pix.sizeimage =
1012 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001013 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001014 return 0;
1015}
1016
Hans Verkuil78b526a2008-05-28 12:16:41 -03001017static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 struct v4l2_format *f)
1019{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001020 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
lawrence rust2e4e98e2010-08-25 09:50:20 -03001021 const struct cx8800_fmt *fmt;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001022 enum v4l2_field field;
1023 unsigned int maxw, maxh;
1024
1025 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1026 if (NULL == fmt)
1027 return -EINVAL;
1028
1029 field = f->fmt.pix.field;
1030 maxw = norm_maxw(core->tvnorm);
1031 maxh = norm_maxh(core->tvnorm);
1032
1033 if (V4L2_FIELD_ANY == field) {
1034 field = (f->fmt.pix.height > maxh/2)
1035 ? V4L2_FIELD_INTERLACED
1036 : V4L2_FIELD_BOTTOM;
1037 }
1038
1039 switch (field) {
1040 case V4L2_FIELD_TOP:
1041 case V4L2_FIELD_BOTTOM:
1042 maxh = maxh / 2;
1043 break;
1044 case V4L2_FIELD_INTERLACED:
1045 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 default:
1047 return -EINVAL;
1048 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001049
1050 f->fmt.pix.field = field;
Trent Piepho4b899452009-05-30 21:45:46 -03001051 v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2,
1052 &f->fmt.pix.height, 32, maxh, 0, 0);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001053 f->fmt.pix.bytesperline =
1054 (f->fmt.pix.width * fmt->depth) >> 3;
1055 f->fmt.pix.sizeimage =
1056 f->fmt.pix.height * f->fmt.pix.bytesperline;
1057
1058 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
Hans Verkuil78b526a2008-05-28 12:16:41 -03001061static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001062 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001064 struct cx8800_fh *fh = priv;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001065 struct cx8800_dev *dev = fh->dev;
Hans Verkuil78b526a2008-05-28 12:16:41 -03001066 int err = vidioc_try_fmt_vid_cap (file,priv,f);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001067
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001068 if (0 != err)
1069 return err;
Hans Verkuilc5a86142012-05-11 10:45:18 -03001070 dev->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1071 dev->width = f->fmt.pix.width;
1072 dev->height = f->fmt.pix.height;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001073 fh->vidq.field = f->fmt.pix.field;
1074 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
Hans Verkuil902e1972012-05-09 16:23:07 -03001077void cx88_querycap(struct file *file, struct cx88_core *core,
1078 struct v4l2_capability *cap)
1079{
1080 struct video_device *vdev = video_devdata(file);
1081
1082 strlcpy(cap->card, core->board.name, sizeof(cap->card));
1083 cap->device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1084 if (UNSET != core->board.tuner_type)
1085 cap->device_caps |= V4L2_CAP_TUNER;
1086 switch (vdev->vfl_type) {
1087 case VFL_TYPE_RADIO:
1088 cap->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER;
1089 break;
1090 case VFL_TYPE_GRABBER:
1091 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE;
1092 break;
1093 case VFL_TYPE_VBI:
1094 cap->device_caps |= V4L2_CAP_VBI_CAPTURE;
1095 break;
1096 }
1097 cap->capabilities = cap->device_caps | V4L2_CAP_VIDEO_CAPTURE |
1098 V4L2_CAP_VBI_CAPTURE | V4L2_CAP_DEVICE_CAPS;
1099 if (core->board.radio.type == CX88_RADIO)
1100 cap->capabilities |= V4L2_CAP_RADIO;
1101}
1102EXPORT_SYMBOL(cx88_querycap);
1103
1104static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001105 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001107 struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001110 strcpy(cap->driver, "cx8800");
Hans Verkuil902e1972012-05-09 16:23:07 -03001111 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
1112 cx88_querycap(file, core, cap);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001113 return 0;
1114}
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001115
Hans Verkuil78b526a2008-05-28 12:16:41 -03001116static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001117 struct v4l2_fmtdesc *f)
1118{
1119 if (unlikely(f->index >= ARRAY_SIZE(formats)))
1120 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001122 strlcpy(f->description,formats[f->index].name,sizeof(f->description));
1123 f->pixelformat = formats[f->index].fourcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001125 return 0;
1126}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001128static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001130 return videobuf_reqbufs(get_queue(file), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001133static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p)
1134{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001135 return videobuf_querybuf(get_queue(file), p);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001136}
1137
1138static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1139{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001140 return videobuf_qbuf(get_queue(file), p);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001141}
1142
1143static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1144{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001145 return videobuf_dqbuf(get_queue(file), p,
1146 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001147}
1148
1149static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1150{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001151 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001152 struct cx8800_fh *fh = priv;
1153 struct cx8800_dev *dev = fh->dev;
1154
Hans Verkuiledbd1382012-05-11 10:33:25 -03001155 if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
1156 (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001157 return -EINVAL;
Rafael Dinizb058e3f2008-10-24 23:07:57 -03001158
Hans Verkuiledbd1382012-05-11 10:33:25 -03001159 if (unlikely(!res_get(dev, fh, get_resource(file))))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001160 return -EBUSY;
Hans Verkuiledbd1382012-05-11 10:33:25 -03001161 return videobuf_streamon(get_queue(file));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001162}
1163
1164static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1165{
Hans Verkuiledbd1382012-05-11 10:33:25 -03001166 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001167 struct cx8800_fh *fh = priv;
1168 struct cx8800_dev *dev = fh->dev;
1169 int err, res;
1170
Hans Verkuiledbd1382012-05-11 10:33:25 -03001171 if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
1172 (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001173 return -EINVAL;
Rafael Dinizb058e3f2008-10-24 23:07:57 -03001174
Hans Verkuiledbd1382012-05-11 10:33:25 -03001175 res = get_resource(file);
1176 err = videobuf_streamoff(get_queue(file));
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001177 if (err < 0)
1178 return err;
1179 res_free(dev,fh,res);
1180 return 0;
1181}
1182
Hans Verkuil48d68802012-05-25 12:15:30 -03001183static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *tvnorm)
1184{
1185 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1186
1187 *tvnorm = core->tvnorm;
1188 return 0;
1189}
1190
Hans Verkuil314527a2013-03-15 06:10:40 -03001191static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id tvnorms)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001192{
1193 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1194
1195 mutex_lock(&core->lock);
Hans Verkuil314527a2013-03-15 06:10:40 -03001196 cx88_set_tvnorm(core, tvnorms);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001197 mutex_unlock(&core->lock);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001198
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001199 return 0;
1200}
1201
1202/* only one input in this sample driver */
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001203int cx88_enum_input (struct cx88_core *core,struct v4l2_input *i)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001204{
lawrence rust2e4e98e2010-08-25 09:50:20 -03001205 static const char * const iname[] = {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001206 [ CX88_VMUX_COMPOSITE1 ] = "Composite1",
1207 [ CX88_VMUX_COMPOSITE2 ] = "Composite2",
1208 [ CX88_VMUX_COMPOSITE3 ] = "Composite3",
1209 [ CX88_VMUX_COMPOSITE4 ] = "Composite4",
1210 [ CX88_VMUX_SVIDEO ] = "S-Video",
1211 [ CX88_VMUX_TELEVISION ] = "Television",
1212 [ CX88_VMUX_CABLE ] = "Cable TV",
1213 [ CX88_VMUX_DVB ] = "DVB",
1214 [ CX88_VMUX_DEBUG ] = "for debug only",
1215 };
Trent Piephof3334bc2009-03-04 01:21:03 -03001216 unsigned int n = i->index;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001217
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001218 if (n >= 4)
1219 return -EINVAL;
Trent Piepho6a59d642007-08-15 14:41:57 -03001220 if (0 == INPUT(n).type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001221 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001222 i->type = V4L2_INPUT_TYPE_CAMERA;
Trent Piepho6a59d642007-08-15 14:41:57 -03001223 strcpy(i->name,iname[INPUT(n).type]);
1224 if ((CX88_VMUX_TELEVISION == INPUT(n).type) ||
Julia Lawall473d8022010-08-05 17:22:44 -03001225 (CX88_VMUX_CABLE == INPUT(n).type)) {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001226 i->type = V4L2_INPUT_TYPE_TUNER;
Julia Lawall473d8022010-08-05 17:22:44 -03001227 }
Hans Verkuilf33e9862012-05-25 12:04:10 -03001228 i->std = CX88_NORMS;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001229 return 0;
1230}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001231EXPORT_SYMBOL(cx88_enum_input);
1232
1233static int vidioc_enum_input (struct file *file, void *priv,
1234 struct v4l2_input *i)
1235{
1236 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1237 return cx88_enum_input (core,i);
1238}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001239
1240static int vidioc_g_input (struct file *file, void *priv, unsigned int *i)
1241{
1242 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1243
1244 *i = core->input;
1245 return 0;
1246}
1247
1248static int vidioc_s_input (struct file *file, void *priv, unsigned int i)
1249{
1250 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1251
1252 if (i >= 4)
1253 return -EINVAL;
Hans Verkuilf33e9862012-05-25 12:04:10 -03001254 if (0 == INPUT(i).type)
1255 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001256
1257 mutex_lock(&core->lock);
1258 cx88_newstation(core);
Mauro Carvalho Chehabe90311a2007-01-20 13:58:29 -03001259 cx88_video_mux(core,i);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001260 mutex_unlock(&core->lock);
1261 return 0;
1262}
1263
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001264static int vidioc_g_tuner (struct file *file, void *priv,
1265 struct v4l2_tuner *t)
1266{
1267 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1268 u32 reg;
1269
Trent Piepho6a59d642007-08-15 14:41:57 -03001270 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001271 return -EINVAL;
Mauro Carvalho Chehab243d8c02007-01-20 13:58:36 -03001272 if (0 != t->index)
1273 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001274
1275 strcpy(t->name, "Television");
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001276 t->capability = V4L2_TUNER_CAP_NORM;
1277 t->rangehigh = 0xffffffffUL;
Hans Verkuilf33e9862012-05-25 12:04:10 -03001278 call_all(core, tuner, g_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001279
1280 cx88_get_stereo(core ,t);
1281 reg = cx_read(MO_DEVICE_STATUS);
1282 t->signal = (reg & (1<<5)) ? 0xffff : 0x0000;
1283 return 0;
1284}
1285
1286static int vidioc_s_tuner (struct file *file, void *priv,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001287 const struct v4l2_tuner *t)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001288{
1289 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1290
Trent Piepho6a59d642007-08-15 14:41:57 -03001291 if (UNSET == core->board.tuner_type)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001292 return -EINVAL;
1293 if (0 != t->index)
1294 return -EINVAL;
1295
1296 cx88_set_stereo(core, t->audmode, 1);
1297 return 0;
1298}
1299
1300static int vidioc_g_frequency (struct file *file, void *priv,
1301 struct v4l2_frequency *f)
1302{
1303 struct cx8800_fh *fh = priv;
1304 struct cx88_core *core = fh->dev->core;
1305
Trent Piepho6a59d642007-08-15 14:41:57 -03001306 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001307 return -EINVAL;
Hans Verkuilf33e9862012-05-25 12:04:10 -03001308 if (f->tuner)
1309 return -EINVAL;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001310
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001311 f->frequency = core->freq;
1312
Hans Verkuilb8341e12009-03-29 08:26:01 -03001313 call_all(core, tuner, g_frequency, f);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001314
1315 return 0;
1316}
1317
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001318int cx88_set_freq (struct cx88_core *core,
Hans Verkuilb530a442013-03-19 04:09:26 -03001319 const struct v4l2_frequency *f)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001320{
Hans Verkuilb530a442013-03-19 04:09:26 -03001321 struct v4l2_frequency new_freq = *f;
1322
Trent Piepho6a59d642007-08-15 14:41:57 -03001323 if (unlikely(UNSET == core->board.tuner_type))
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001324 return -EINVAL;
1325 if (unlikely(f->tuner != 0))
1326 return -EINVAL;
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001327
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001328 mutex_lock(&core->lock);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001329 cx88_newstation(core);
Hans Verkuilb8341e12009-03-29 08:26:01 -03001330 call_all(core, tuner, s_frequency, f);
Hans Verkuilb530a442013-03-19 04:09:26 -03001331 call_all(core, tuner, g_frequency, &new_freq);
1332 core->freq = new_freq.frequency;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001333
1334 /* When changing channels it is required to reset TVAUDIO */
1335 msleep (10);
1336 cx88_set_tvaudio(core);
1337
1338 mutex_unlock(&core->lock);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001339
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001340 return 0;
1341}
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001342EXPORT_SYMBOL(cx88_set_freq);
1343
1344static int vidioc_s_frequency (struct file *file, void *priv,
Hans Verkuilb530a442013-03-19 04:09:26 -03001345 const struct v4l2_frequency *f)
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001346{
1347 struct cx8800_fh *fh = priv;
1348 struct cx88_core *core = fh->dev->core;
1349
Hans Verkuiledbd1382012-05-11 10:33:25 -03001350 return cx88_set_freq(core, f);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -03001351}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001352
Trent Piephodbbff482007-01-22 23:31:53 -03001353#ifdef CONFIG_VIDEO_ADV_DEBUG
1354static int vidioc_g_register (struct file *file, void *fh,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001355 struct v4l2_dbg_register *reg)
Trent Piephodbbff482007-01-22 23:31:53 -03001356{
1357 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1358
Trent Piephodbbff482007-01-22 23:31:53 -03001359 /* cx2388x has a 24-bit register space */
Hans Verkuil7feeb142013-05-29 06:22:02 -03001360 reg->val = cx_read(reg->reg & 0xfffffc);
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001361 reg->size = 4;
Trent Piephodbbff482007-01-22 23:31:53 -03001362 return 0;
1363}
1364
1365static int vidioc_s_register (struct file *file, void *fh,
Hans Verkuil977ba3b2013-03-24 08:28:46 -03001366 const struct v4l2_dbg_register *reg)
Trent Piephodbbff482007-01-22 23:31:53 -03001367{
1368 struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core;
1369
Hans Verkuil7feeb142013-05-29 06:22:02 -03001370 cx_write(reg->reg & 0xfffffc, reg->val);
Trent Piephodbbff482007-01-22 23:31:53 -03001371 return 0;
1372}
1373#endif
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375/* ----------------------------------------------------------- */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001376/* RADIO ESPECIFIC IOCTLS */
1377/* ----------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001379static int radio_g_tuner (struct file *file, void *priv,
1380 struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001382 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1383
1384 if (unlikely(t->index > 0))
1385 return -EINVAL;
1386
1387 strcpy(t->name, "Radio");
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001388
Hans Verkuilb8341e12009-03-29 08:26:01 -03001389 call_all(core, tuner, g_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001390 return 0;
1391}
1392
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001393static int radio_s_tuner (struct file *file, void *priv,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001394 const struct v4l2_tuner *t)
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001395{
1396 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1397
1398 if (0 != t->index)
1399 return -EINVAL;
1400
Hans Verkuilb8341e12009-03-29 08:26:01 -03001401 call_all(core, tuner, s_tuner, t);
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001402 return 0;
1403}
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405/* ----------------------------------------------------------- */
1406
1407static void cx8800_vid_timeout(unsigned long data)
1408{
1409 struct cx8800_dev *dev = (struct cx8800_dev*)data;
1410 struct cx88_core *core = dev->core;
1411 struct cx88_dmaqueue *q = &dev->vidq;
1412 struct cx88_buffer *buf;
1413 unsigned long flags;
1414
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001415 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 cx_clear(MO_VID_DMACNTRL, 0x11);
1418 cx_clear(VID_CAPTURE_CONTROL, 0x06);
1419
1420 spin_lock_irqsave(&dev->slock,flags);
1421 while (!list_empty(&q->active)) {
1422 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
1423 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03001424 buf->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 wake_up(&buf->vb.done);
1426 printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", core->name,
1427 buf, buf->vb.i, (unsigned long)buf->risc.dma);
1428 }
1429 restart_video_queue(dev,q);
1430 spin_unlock_irqrestore(&dev->slock,flags);
1431}
1432
lawrence rust2e4e98e2010-08-25 09:50:20 -03001433static const char *cx88_vid_irqs[32] = {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -07001434 "y_risci1", "u_risci1", "v_risci1", "vbi_risc1",
1435 "y_risci2", "u_risci2", "v_risci2", "vbi_risc2",
1436 "y_oflow", "u_oflow", "v_oflow", "vbi_oflow",
1437 "y_sync", "u_sync", "v_sync", "vbi_sync",
1438 "opc_err", "par_err", "rip_err", "pci_abort",
1439};
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441static void cx8800_vid_irq(struct cx8800_dev *dev)
1442{
1443 struct cx88_core *core = dev->core;
1444 u32 status, mask, count;
1445
1446 status = cx_read(MO_VID_INTSTAT);
1447 mask = cx_read(MO_VID_INTMSK);
1448 if (0 == (status & mask))
1449 return;
1450 cx_write(MO_VID_INTSTAT, status);
1451 if (irq_debug || (status & mask & ~0xff))
1452 cx88_print_irqbits(core->name, "irq vid",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -03001453 cx88_vid_irqs, ARRAY_SIZE(cx88_vid_irqs),
1454 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 /* risc op code error */
1457 if (status & (1 << 16)) {
1458 printk(KERN_WARNING "%s/0: video risc op code error\n",core->name);
1459 cx_clear(MO_VID_DMACNTRL, 0x11);
1460 cx_clear(VID_CAPTURE_CONTROL, 0x06);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001461 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463
1464 /* risc1 y */
1465 if (status & 0x01) {
1466 spin_lock(&dev->slock);
1467 count = cx_read(MO_VIDY_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001468 cx88_wakeup(core, &dev->vidq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 spin_unlock(&dev->slock);
1470 }
1471
1472 /* risc1 vbi */
1473 if (status & 0x08) {
1474 spin_lock(&dev->slock);
1475 count = cx_read(MO_VBI_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001476 cx88_wakeup(core, &dev->vbiq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 spin_unlock(&dev->slock);
1478 }
1479
1480 /* risc2 y */
1481 if (status & 0x10) {
1482 dprintk(2,"stopper video\n");
1483 spin_lock(&dev->slock);
1484 restart_video_queue(dev,&dev->vidq);
1485 spin_unlock(&dev->slock);
1486 }
1487
1488 /* risc2 vbi */
1489 if (status & 0x80) {
1490 dprintk(2,"stopper vbi\n");
1491 spin_lock(&dev->slock);
1492 cx8800_restart_vbi_queue(dev,&dev->vbiq);
1493 spin_unlock(&dev->slock);
1494 }
1495}
1496
David Howells7d12e782006-10-05 14:55:46 +01001497static irqreturn_t cx8800_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 struct cx8800_dev *dev = dev_id;
1500 struct cx88_core *core = dev->core;
1501 u32 status;
1502 int loop, handled = 0;
1503
1504 for (loop = 0; loop < 10; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001505 status = cx_read(MO_PCI_INTSTAT) &
1506 (core->pci_irqmask | PCI_INT_VIDINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (0 == status)
1508 goto out;
1509 cx_write(MO_PCI_INTSTAT, status);
1510 handled = 1;
1511
1512 if (status & core->pci_irqmask)
1513 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -03001514 if (status & PCI_INT_VIDINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 cx8800_vid_irq(dev);
Peter Senna Tschudinc2c1b412012-09-28 05:37:22 -03001516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (10 == loop) {
1518 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
1519 core->name);
1520 cx_write(MO_PCI_INTMSK,0);
1521 }
1522
1523 out:
1524 return IRQ_RETVAL(handled);
1525}
1526
1527/* ----------------------------------------------------------- */
1528/* exported stuff */
1529
Hans Verkuilbec43662008-12-30 06:58:20 -03001530static const struct v4l2_file_operations video_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 .owner = THIS_MODULE,
1533 .open = video_open,
1534 .release = video_release,
1535 .read = video_read,
1536 .poll = video_poll,
1537 .mmap = video_mmap,
Mauro Carvalho Chehabb61872642011-02-13 21:52:02 -03001538 .unlocked_ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539};
1540
Hans Verkuila3998102008-07-21 02:57:38 -03001541static const struct v4l2_ioctl_ops video_ioctl_ops = {
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001542 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001543 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1544 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1545 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1546 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001547 .vidioc_reqbufs = vidioc_reqbufs,
1548 .vidioc_querybuf = vidioc_querybuf,
1549 .vidioc_qbuf = vidioc_qbuf,
1550 .vidioc_dqbuf = vidioc_dqbuf,
Hans Verkuil48d68802012-05-25 12:15:30 -03001551 .vidioc_g_std = vidioc_g_std,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001552 .vidioc_s_std = vidioc_s_std,
1553 .vidioc_enum_input = vidioc_enum_input,
1554 .vidioc_g_input = vidioc_g_input,
1555 .vidioc_s_input = vidioc_s_input,
1556 .vidioc_streamon = vidioc_streamon,
1557 .vidioc_streamoff = vidioc_streamoff,
1558 .vidioc_g_tuner = vidioc_g_tuner,
1559 .vidioc_s_tuner = vidioc_s_tuner,
1560 .vidioc_g_frequency = vidioc_g_frequency,
1561 .vidioc_s_frequency = vidioc_s_frequency,
1562 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1563 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001564#ifdef CONFIG_VIDEO_ADV_DEBUG
1565 .vidioc_g_register = vidioc_g_register,
1566 .vidioc_s_register = vidioc_s_register,
1567#endif
1568};
1569
1570static const struct video_device cx8800_video_template = {
1571 .name = "cx8800-video",
1572 .fops = &video_fops,
1573 .ioctl_ops = &video_ioctl_ops,
1574 .tvnorms = CX88_NORMS,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001575};
1576
1577static const struct v4l2_ioctl_ops vbi_ioctl_ops = {
1578 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001579 .vidioc_g_fmt_vbi_cap = cx8800_vbi_fmt,
1580 .vidioc_try_fmt_vbi_cap = cx8800_vbi_fmt,
1581 .vidioc_s_fmt_vbi_cap = cx8800_vbi_fmt,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001582 .vidioc_reqbufs = vidioc_reqbufs,
1583 .vidioc_querybuf = vidioc_querybuf,
1584 .vidioc_qbuf = vidioc_qbuf,
1585 .vidioc_dqbuf = vidioc_dqbuf,
Hans Verkuil48d68802012-05-25 12:15:30 -03001586 .vidioc_g_std = vidioc_g_std,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001587 .vidioc_s_std = vidioc_s_std,
1588 .vidioc_enum_input = vidioc_enum_input,
1589 .vidioc_g_input = vidioc_g_input,
1590 .vidioc_s_input = vidioc_s_input,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001591 .vidioc_streamon = vidioc_streamon,
1592 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001593 .vidioc_g_tuner = vidioc_g_tuner,
1594 .vidioc_s_tuner = vidioc_s_tuner,
1595 .vidioc_g_frequency = vidioc_g_frequency,
1596 .vidioc_s_frequency = vidioc_s_frequency,
Trent Piephodbbff482007-01-22 23:31:53 -03001597#ifdef CONFIG_VIDEO_ADV_DEBUG
1598 .vidioc_g_register = vidioc_g_register,
1599 .vidioc_s_register = vidioc_s_register,
1600#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001601};
1602
Hans Verkuilf33e9862012-05-25 12:04:10 -03001603static const struct video_device cx8800_vbi_template = {
1604 .name = "cx8800-vbi",
Hans Verkuila3998102008-07-21 02:57:38 -03001605 .fops = &video_fops,
Hans Verkuilf33e9862012-05-25 12:04:10 -03001606 .ioctl_ops = &vbi_ioctl_ops,
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -03001607 .tvnorms = CX88_NORMS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608};
1609
Hans Verkuilbec43662008-12-30 06:58:20 -03001610static const struct v4l2_file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 .owner = THIS_MODULE,
1613 .open = video_open,
Hans Verkuil1a3c60a2012-05-11 11:25:03 -03001614 .poll = v4l2_ctrl_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 .release = video_release,
Mauro Carvalho Chehabb61872642011-02-13 21:52:02 -03001616 .unlocked_ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617};
1618
Hans Verkuila3998102008-07-21 02:57:38 -03001619static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Hans Verkuil902e1972012-05-09 16:23:07 -03001620 .vidioc_querycap = vidioc_querycap,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001621 .vidioc_g_tuner = radio_g_tuner,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001622 .vidioc_s_tuner = radio_s_tuner,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001623 .vidioc_g_frequency = vidioc_g_frequency,
1624 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuil1a3c60a2012-05-11 11:25:03 -03001625 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1626 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Trent Piephoa75d2042007-08-01 00:13:28 -03001627#ifdef CONFIG_VIDEO_ADV_DEBUG
1628 .vidioc_g_register = vidioc_g_register,
1629 .vidioc_s_register = vidioc_s_register,
1630#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631};
1632
lawrence rust2e4e98e2010-08-25 09:50:20 -03001633static const struct video_device cx8800_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001634 .name = "cx8800-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03001635 .fops = &radio_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001636 .ioctl_ops = &radio_ioctl_ops,
1637};
1638
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001639static const struct v4l2_ctrl_ops cx8800_ctrl_vid_ops = {
1640 .s_ctrl = cx8800_s_vid_ctrl,
1641};
1642
1643static const struct v4l2_ctrl_ops cx8800_ctrl_aud_ops = {
1644 .s_ctrl = cx8800_s_aud_ctrl,
Hans Verkuilbac63982012-06-10 07:39:52 -03001645};
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647/* ----------------------------------------------------------- */
1648
1649static void cx8800_unregister_video(struct cx8800_dev *dev)
1650{
1651 if (dev->radio_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001652 if (video_is_registered(dev->radio_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 video_unregister_device(dev->radio_dev);
1654 else
1655 video_device_release(dev->radio_dev);
1656 dev->radio_dev = NULL;
1657 }
1658 if (dev->vbi_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001659 if (video_is_registered(dev->vbi_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 video_unregister_device(dev->vbi_dev);
1661 else
1662 video_device_release(dev->vbi_dev);
1663 dev->vbi_dev = NULL;
1664 }
1665 if (dev->video_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03001666 if (video_is_registered(dev->video_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 video_unregister_device(dev->video_dev);
1668 else
1669 video_device_release(dev->video_dev);
1670 dev->video_dev = NULL;
1671 }
1672}
1673
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001674static int cx8800_initdev(struct pci_dev *pci_dev,
1675 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 struct cx8800_dev *dev;
1678 struct cx88_core *core;
1679 int err;
Hans Verkuilbac63982012-06-10 07:39:52 -03001680 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Panagiotis Issaris74081872006-01-11 19:40:56 -02001682 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (NULL == dev)
1684 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 /* pci init */
1687 dev->pci = pci_dev;
1688 if (pci_enable_device(pci_dev)) {
1689 err = -EIO;
1690 goto fail_free;
1691 }
1692 core = cx88_core_get(dev->pci);
1693 if (NULL == core) {
1694 err = -EINVAL;
1695 goto fail_free;
1696 }
1697 dev->core = core;
1698
1699 /* print pci info */
Bjørn Morkabd34d82011-03-21 11:35:56 -03001700 dev->pci_rev = pci_dev->revision;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001701 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &dev->pci_lat);
1702 printk(KERN_INFO "%s/0: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001703 "latency: %d, mmio: 0x%llx\n", core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001705 dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 pci_set_master(pci_dev);
Yang Hongyang284901a2009-04-06 19:01:15 -07001708 if (!pci_dma_supported(pci_dev,DMA_BIT_MASK(32))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name);
1710 err = -EIO;
1711 goto fail_core;
1712 }
1713
1714 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 spin_lock_init(&dev->slock);
Hans Verkuil48d68802012-05-25 12:15:30 -03001716 core->tvnorm = V4L2_STD_NTSC_M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 /* init video dma queues */
1719 INIT_LIST_HEAD(&dev->vidq.active);
1720 INIT_LIST_HEAD(&dev->vidq.queued);
1721 dev->vidq.timeout.function = cx8800_vid_timeout;
1722 dev->vidq.timeout.data = (unsigned long)dev;
1723 init_timer(&dev->vidq.timeout);
1724 cx88_risc_stopper(dev->pci,&dev->vidq.stopper,
1725 MO_VID_DMACNTRL,0x11,0x00);
1726
1727 /* init vbi dma queues */
1728 INIT_LIST_HEAD(&dev->vbiq.active);
1729 INIT_LIST_HEAD(&dev->vbiq.queued);
1730 dev->vbiq.timeout.function = cx8800_vbi_timeout;
1731 dev->vbiq.timeout.data = (unsigned long)dev;
1732 init_timer(&dev->vbiq.timeout);
1733 cx88_risc_stopper(dev->pci,&dev->vbiq.stopper,
1734 MO_VID_DMACNTRL,0x88,0x00);
1735
1736 /* get irq */
1737 err = request_irq(pci_dev->irq, cx8800_irq,
Michael Opdenacker3e018fe2013-10-13 02:49:29 -03001738 IRQF_SHARED, core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001740 printk(KERN_ERR "%s/0: can't get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 core->name,pci_dev->irq);
1742 goto fail_core;
1743 }
1744 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
1745
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001746 for (i = 0; i < CX8800_AUD_CTLS; i++) {
1747 const struct cx88_ctrl *cc = &cx8800_aud_ctls[i];
Hans Verkuilbac63982012-06-10 07:39:52 -03001748 struct v4l2_ctrl *vc;
1749
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001750 vc = v4l2_ctrl_new_std(&core->audio_hdl, &cx8800_ctrl_aud_ops,
Hans Verkuilbac63982012-06-10 07:39:52 -03001751 cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value);
1752 if (vc == NULL) {
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001753 err = core->audio_hdl.error;
Hans Verkuilbac63982012-06-10 07:39:52 -03001754 goto fail_core;
1755 }
1756 vc->priv = (void *)cc;
1757 }
1758
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001759 for (i = 0; i < CX8800_VID_CTLS; i++) {
1760 const struct cx88_ctrl *cc = &cx8800_vid_ctls[i];
1761 struct v4l2_ctrl *vc;
1762
1763 vc = v4l2_ctrl_new_std(&core->video_hdl, &cx8800_ctrl_vid_ops,
1764 cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value);
1765 if (vc == NULL) {
1766 err = core->video_hdl.error;
1767 goto fail_core;
1768 }
1769 vc->priv = (void *)cc;
1770 if (vc->id == V4L2_CID_CHROMA_AGC)
1771 core->chroma_agc = vc;
1772 }
Hans Verkuil34a6b7d2012-09-14 07:15:03 -03001773 v4l2_ctrl_add_handler(&core->video_hdl, &core->audio_hdl, NULL);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 /* load and configure helper modules */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001776
Hans Verkuilfacd2362013-05-26 07:56:06 -03001777 if (core->board.audio_chip == CX88_AUDIO_WM8775) {
Lawrence Rust69518032011-02-06 17:46:12 -03001778 struct i2c_board_info wm8775_info = {
1779 .type = "wm8775",
1780 .addr = 0x36 >> 1,
1781 .platform_data = &core->wm8775_data,
1782 };
1783 struct v4l2_subdev *sd;
1784
1785 if (core->boardnr == CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1)
1786 core->wm8775_data.is_nova_s = true;
1787 else
1788 core->wm8775_data.is_nova_s = false;
1789
1790 sd = v4l2_i2c_new_subdev_board(&core->v4l2_dev, &core->i2c_adap,
1791 &wm8775_info, NULL);
Hans Verkuilbac63982012-06-10 07:39:52 -03001792 if (sd != NULL) {
1793 core->sd_wm8775 = sd;
Lawrence Rust69518032011-02-06 17:46:12 -03001794 sd->grp_id = WM8775_GID;
Hans Verkuilbac63982012-06-10 07:39:52 -03001795 }
Lawrence Rust69518032011-02-06 17:46:12 -03001796 }
Hans Verkuilb8341e12009-03-29 08:26:01 -03001797
Hans Verkuilfacd2362013-05-26 07:56:06 -03001798 if (core->board.audio_chip == CX88_AUDIO_TVAUDIO) {
Hans Verkuilb8341e12009-03-29 08:26:01 -03001799 /* This probes for a tda9874 as is used on some
1800 Pixelview Ultra boards. */
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -03001801 v4l2_i2c_new_subdev(&core->v4l2_dev, &core->i2c_adap,
1802 "tvaudio", 0, I2C_ADDRS(0xb0 >> 1));
Hans Verkuilb8341e12009-03-29 08:26:01 -03001803 }
Steven Toth30579062006-09-25 12:43:42 -03001804
Michael Krufky6fcecce2007-08-24 01:32:31 -03001805 switch (core->boardnr) {
1806 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
Hans Verkuilb8341e12009-03-29 08:26:01 -03001807 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD: {
lawrence rust2e4e98e2010-08-25 09:50:20 -03001808 static const struct i2c_board_info rtc_info = {
Hans Verkuilb8341e12009-03-29 08:26:01 -03001809 I2C_BOARD_INFO("isl1208", 0x6f)
1810 };
1811
Michael Krufky6fcecce2007-08-24 01:32:31 -03001812 request_module("rtc-isl1208");
Hans Verkuilb8341e12009-03-29 08:26:01 -03001813 core->i2c_rtc = i2c_new_device(&core->i2c_adap, &rtc_info);
1814 }
Michael Krufky8efd2e22008-04-22 14:45:14 -03001815 /* break intentionally omitted */
1816 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
1817 request_module("ir-kbd-i2c");
Michael Krufky6fcecce2007-08-24 01:32:31 -03001818 }
1819
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001820 /* Sets device info at pci_dev */
1821 pci_set_drvdata(pci_dev, dev);
1822
Hans Verkuilc5a86142012-05-11 10:45:18 -03001823 dev->width = 320;
1824 dev->height = 240;
1825 dev->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1826
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001827 /* initial device configuration */
1828 mutex_lock(&core->lock);
1829 cx88_set_tvnorm(core, core->tvnorm);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001830 v4l2_ctrl_handler_setup(&core->video_hdl);
1831 v4l2_ctrl_handler_setup(&core->audio_hdl);
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001832 cx88_video_mux(core, 0);
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 /* register v4l devices */
1835 dev->video_dev = cx88_vdev_init(core,dev->pci,
1836 &cx8800_video_template,"video");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001837 video_set_drvdata(dev->video_dev, dev);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001838 dev->video_dev->ctrl_handler = &core->video_hdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER,
1840 video_nr[core->nr]);
1841 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001842 printk(KERN_ERR "%s/0: can't register video device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 core->name);
1844 goto fail_unreg;
1845 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001846 printk(KERN_INFO "%s/0: registered device %s [v4l2]\n",
1847 core->name, video_device_node_name(dev->video_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 dev->vbi_dev = cx88_vdev_init(core,dev->pci,&cx8800_vbi_template,"vbi");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001850 video_set_drvdata(dev->vbi_dev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI,
1852 vbi_nr[core->nr]);
1853 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001854 printk(KERN_ERR "%s/0: can't register vbi device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 core->name);
1856 goto fail_unreg;
1857 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001858 printk(KERN_INFO "%s/0: registered device %s\n",
1859 core->name, video_device_node_name(dev->vbi_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Trent Piepho6a59d642007-08-15 14:41:57 -03001861 if (core->board.radio.type == CX88_RADIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 dev->radio_dev = cx88_vdev_init(core,dev->pci,
1863 &cx8800_radio_template,"radio");
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001864 video_set_drvdata(dev->radio_dev, dev);
Hans Verkuil8c7cb122012-05-11 09:07:45 -03001865 dev->radio_dev->ctrl_handler = &core->audio_hdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 err = video_register_device(dev->radio_dev,VFL_TYPE_RADIO,
1867 radio_nr[core->nr]);
1868 if (err < 0) {
Trent Piepho5772f812007-08-15 14:41:59 -03001869 printk(KERN_ERR "%s/0: can't register radio device\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 core->name);
1871 goto fail_unreg;
1872 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001873 printk(KERN_INFO "%s/0: registered device %s\n",
1874 core->name, video_device_node_name(dev->radio_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 /* start tvaudio thread */
Trent Piepho6a59d642007-08-15 14:41:57 -03001878 if (core->board.tuner_type != TUNER_ABSENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001880 if (IS_ERR(core->kthread)) {
1881 err = PTR_ERR(core->kthread);
Trent Piepho5772f812007-08-15 14:41:59 -03001882 printk(KERN_ERR "%s/0: failed to create cx88 audio thread, err=%d\n",
1883 core->name, err);
Cyrill Gorcunov32b78de2007-07-19 11:44:11 -03001884 }
1885 }
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001886 mutex_unlock(&core->lock);
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return 0;
1889
1890fail_unreg:
1891 cx8800_unregister_video(dev);
1892 free_irq(pci_dev->irq, dev);
Mauro Carvalho Chehab121ec132011-02-14 07:01:51 -03001893 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894fail_core:
1895 cx88_core_put(core,dev->pci);
1896fail_free:
1897 kfree(dev);
1898 return err;
1899}
1900
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001901static void cx8800_finidev(struct pci_dev *pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001903 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001904 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 /* stop thread */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001907 if (core->kthread) {
1908 kthread_stop(core->kthread);
1909 core->kthread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
1911
Marton Balintb12203d2008-03-26 02:07:35 -03001912 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001913 cx88_ir_stop(core);
Marton Balintb12203d2008-03-26 02:07:35 -03001914
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001915 cx88_shutdown(core); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 pci_disable_device(pci_dev);
1917
1918 /* unregister stuff */
1919
1920 free_irq(pci_dev->irq, dev);
1921 cx8800_unregister_video(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /* free memory */
1924 btcx_riscmem_free(dev->pci,&dev->vidq.stopper);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001925 cx88_core_put(core,dev->pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 kfree(dev);
1927}
1928
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001929#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state)
1931{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001932 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 struct cx88_core *core = dev->core;
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -03001934 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 /* stop video+vbi capture */
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -03001937 spin_lock_irqsave(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001939 printk("%s/0: suspend video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 stop_video_dma(dev);
1941 del_timer(&dev->vidq.timeout);
1942 }
1943 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03001944 printk("%s/0: suspend vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 cx8800_stop_vbi_dma(dev);
1946 del_timer(&dev->vbiq.timeout);
1947 }
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -03001948 spin_unlock_irqrestore(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001950 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001951 cx88_ir_stop(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 /* FIXME -- shutdown device */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001953 cx88_shutdown(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955 pci_save_state(pci_dev);
1956 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
1957 pci_disable_device(pci_dev);
1958 dev->state.disabled = 1;
1959 }
1960 return 0;
1961}
1962
1963static int cx8800_resume(struct pci_dev *pci_dev)
1964{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001965 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 struct cx88_core *core = dev->core;
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -03001967 unsigned long flags;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001968 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001971 err=pci_enable_device(pci_dev);
1972 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03001973 printk(KERN_ERR "%s/0: can't enable device\n",
1974 core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001975 return err;
1976 }
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 dev->state.disabled = 0;
1979 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001980 err= pci_set_power_state(pci_dev, PCI_D0);
1981 if (err) {
Trent Piepho5772f812007-08-15 14:41:59 -03001982 printk(KERN_ERR "%s/0: can't set power state\n", core->name);
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001983 pci_disable_device(pci_dev);
1984 dev->state.disabled = 1;
1985
1986 return err;
1987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 pci_restore_state(pci_dev);
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /* FIXME: re-initialize hardware */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001991 cx88_reset(core);
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001992 if (core->ir)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -03001993 cx88_ir_start(core);
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -03001994
1995 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997 /* restart video+vbi capture */
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -03001998 spin_lock_irqsave(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 if (!list_empty(&dev->vidq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03002000 printk("%s/0: resume video\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 restart_video_queue(dev,&dev->vidq);
2002 }
2003 if (!list_empty(&dev->vbiq.active)) {
Trent Piepho5772f812007-08-15 14:41:59 -03002004 printk("%s/0: resume vbi\n", core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 cx8800_restart_vbi_queue(dev,&dev->vbiq);
2006 }
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -03002007 spin_unlock_irqrestore(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 return 0;
2010}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002011#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013/* ----------------------------------------------------------- */
2014
lawrence rust2e4e98e2010-08-25 09:50:20 -03002015static const struct pci_device_id cx8800_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 {
2017 .vendor = 0x14f1,
2018 .device = 0x8800,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002019 .subvendor = PCI_ANY_ID,
2020 .subdevice = PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 },{
2022 /* --- end of list --- */
2023 }
2024};
2025MODULE_DEVICE_TABLE(pci, cx8800_pci_tbl);
2026
2027static struct pci_driver cx8800_pci_driver = {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002028 .name = "cx8800",
2029 .id_table = cx8800_pci_tbl,
2030 .probe = cx8800_initdev,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002031 .remove = cx8800_finidev,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002032#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 .suspend = cx8800_suspend,
2034 .resume = cx8800_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002035#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036};
2037
Sachin Kamat06333e02013-09-20 05:32:07 -03002038module_pci_driver(cx8800_pci_driver);