blob: 5389825995e71215d3ed7515991365c9fa5d0642 [file] [log] [blame]
Sri Deevie0d3baf2009-03-03 14:37:50 -03001/*
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002 cx231xx-video.c - driver for Conexant Cx23100/101/102
3 USB video capture devices
Sri Deevie0d3baf2009-03-03 14:37:50 -03004
5 Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03006 Based on em28xx driver
7 Based on cx23885 driver
8 Based on cx88 driver
Sri Deevie0d3baf2009-03-03 14:37:50 -03009
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
Sri Deevie0d3baf2009-03-03 14:37:50 -030025#include <linux/init.h>
26#include <linux/list.h>
27#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/bitmap.h>
30#include <linux/usb.h>
31#include <linux/i2c.h>
Sri Deevie0d3baf2009-03-03 14:37:50 -030032#include <linux/mm.h>
33#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Sri Deevie0d3baf2009-03-03 14:37:50 -030035
36#include <media/v4l2-common.h>
37#include <media/v4l2-ioctl.h>
38#include <media/v4l2-chip-ident.h>
39#include <media/msp3400.h>
40#include <media/tuner.h>
41
42#include "dvb_frontend.h"
43
44#include "cx231xx.h"
45#include "cx231xx-vbi.h"
46
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030047#define CX231XX_VERSION "0.0.2"
Mauro Carvalho Chehab818fdf32009-03-13 07:41:58 -030048
Sri Deevie0d3baf2009-03-03 14:37:50 -030049#define DRIVER_AUTHOR "Srinivasa Deevi <srinivasa.deevi@conexant.com>"
50#define DRIVER_DESC "Conexant cx231xx based USB video device driver"
51
Sri Deevie0d3baf2009-03-03 14:37:50 -030052#define cx231xx_videodbg(fmt, arg...) do {\
53 if (video_debug) \
54 printk(KERN_INFO "%s %s :"fmt, \
55 dev->name, __func__ , ##arg); } while (0)
56
57static unsigned int isoc_debug;
58module_param(isoc_debug, int, 0644);
59MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
60
61#define cx231xx_isocdbg(fmt, arg...) \
62do {\
63 if (isoc_debug) { \
64 printk(KERN_INFO "%s %s :"fmt, \
65 dev->name, __func__ , ##arg); \
66 } \
67 } while (0)
68
69MODULE_AUTHOR(DRIVER_AUTHOR);
70MODULE_DESCRIPTION(DRIVER_DESC);
71MODULE_LICENSE("GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030072MODULE_VERSION(CX231XX_VERSION);
Sri Deevie0d3baf2009-03-03 14:37:50 -030073
Sri Deevie0d3baf2009-03-03 14:37:50 -030074static unsigned int card[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
75static unsigned int video_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
76static unsigned int vbi_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
77static unsigned int radio_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
78
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030079module_param_array(card, int, NULL, 0444);
Sri Deevie0d3baf2009-03-03 14:37:50 -030080module_param_array(video_nr, int, NULL, 0444);
81module_param_array(vbi_nr, int, NULL, 0444);
82module_param_array(radio_nr, int, NULL, 0444);
83
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030084MODULE_PARM_DESC(card, "card type");
Sri Deevie0d3baf2009-03-03 14:37:50 -030085MODULE_PARM_DESC(video_nr, "video device numbers");
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030086MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
Sri Deevie0d3baf2009-03-03 14:37:50 -030087MODULE_PARM_DESC(radio_nr, "radio device numbers");
88
89static unsigned int video_debug;
90module_param(video_debug, int, 0644);
91MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
92
Sri Deevie0d3baf2009-03-03 14:37:50 -030093/* supported video standards */
94static struct cx231xx_fmt format[] = {
95 {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030096 .name = "16bpp YUY2, 4:2:2, packed",
97 .fourcc = V4L2_PIX_FMT_YUYV,
98 .depth = 16,
99 .reg = 0,
100 },
Sri Deevie0d3baf2009-03-03 14:37:50 -0300101};
102
Sri Deevie0d3baf2009-03-03 14:37:50 -0300103/* supported controls */
104/* Common to all boards */
105
106/* ------------------------------------------------------------------- */
107
108static const struct v4l2_queryctrl no_ctl = {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300109 .name = "42",
Sri Deevie0d3baf2009-03-03 14:37:50 -0300110 .flags = V4L2_CTRL_FLAG_DISABLED,
111};
112
113static struct cx231xx_ctrl cx231xx_ctls[] = {
114 /* --- video --- */
115 {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300116 .v = {
117 .id = V4L2_CID_BRIGHTNESS,
118 .name = "Brightness",
119 .minimum = 0x00,
120 .maximum = 0xff,
121 .step = 1,
122 .default_value = 0x7f,
123 .type = V4L2_CTRL_TYPE_INTEGER,
124 },
125 .off = 128,
126 .reg = LUMA_CTRL,
127 .mask = 0x00ff,
128 .shift = 0,
129 }, {
130 .v = {
131 .id = V4L2_CID_CONTRAST,
132 .name = "Contrast",
133 .minimum = 0,
134 .maximum = 0xff,
135 .step = 1,
136 .default_value = 0x3f,
137 .type = V4L2_CTRL_TYPE_INTEGER,
138 },
139 .off = 0,
140 .reg = LUMA_CTRL,
141 .mask = 0xff00,
142 .shift = 8,
143 }, {
144 .v = {
145 .id = V4L2_CID_HUE,
146 .name = "Hue",
147 .minimum = 0,
148 .maximum = 0xff,
149 .step = 1,
150 .default_value = 0x7f,
151 .type = V4L2_CTRL_TYPE_INTEGER,
152 },
153 .off = 128,
154 .reg = CHROMA_CTRL,
155 .mask = 0xff0000,
156 .shift = 16,
157 }, {
158 /* strictly, this only describes only U saturation.
159 * V saturation is handled specially through code.
160 */
161 .v = {
162 .id = V4L2_CID_SATURATION,
163 .name = "Saturation",
164 .minimum = 0,
165 .maximum = 0xff,
166 .step = 1,
167 .default_value = 0x7f,
168 .type = V4L2_CTRL_TYPE_INTEGER,
169 },
170 .off = 0,
171 .reg = CHROMA_CTRL,
172 .mask = 0x00ff,
173 .shift = 0,
174 }, {
175 /* --- audio --- */
176 .v = {
177 .id = V4L2_CID_AUDIO_MUTE,
178 .name = "Mute",
179 .minimum = 0,
180 .maximum = 1,
181 .default_value = 1,
182 .type = V4L2_CTRL_TYPE_BOOLEAN,
183 },
184 .reg = PATH1_CTL1,
185 .mask = (0x1f << 24),
186 .shift = 24,
187 }, {
188 .v = {
189 .id = V4L2_CID_AUDIO_VOLUME,
190 .name = "Volume",
191 .minimum = 0,
192 .maximum = 0x3f,
193 .step = 1,
194 .default_value = 0x3f,
195 .type = V4L2_CTRL_TYPE_INTEGER,
196 },
197 .reg = PATH1_VOL_CTL,
198 .mask = 0xff,
199 .shift = 0,
200 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300201};
202static const int CX231XX_CTLS = ARRAY_SIZE(cx231xx_ctls);
203
204static const u32 cx231xx_user_ctrls[] = {
205 V4L2_CID_USER_CLASS,
206 V4L2_CID_BRIGHTNESS,
207 V4L2_CID_CONTRAST,
208 V4L2_CID_SATURATION,
209 V4L2_CID_HUE,
210 V4L2_CID_AUDIO_VOLUME,
211#if 0
212 V4L2_CID_AUDIO_BALANCE,
213#endif
214 V4L2_CID_AUDIO_MUTE,
215 0
216};
217
218static const u32 *ctrl_classes[] = {
219 cx231xx_user_ctrls,
220 NULL
221};
222
Sri Deevie0d3baf2009-03-03 14:37:50 -0300223/* ------------------------------------------------------------------
224 Video buffer and parser functions
225 ------------------------------------------------------------------*/
226
227/*
228 * Announces that a buffer were filled and request the next
229 */
230static inline void buffer_filled(struct cx231xx *dev,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300231 struct cx231xx_dmaqueue *dma_q,
232 struct cx231xx_buffer *buf)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300233{
234 /* Advice that buffer was filled */
235 cx231xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
236 buf->vb.state = VIDEOBUF_DONE;
237 buf->vb.field_count++;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300238 v4l2_get_timestamp(&buf->vb.ts);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300239
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300240 if (dev->USE_ISO)
241 dev->video_mode.isoc_ctl.buf = NULL;
242 else
243 dev->video_mode.bulk_ctl.buf = NULL;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300244
245 list_del(&buf->vb.queue);
246 wake_up(&buf->vb.done);
247}
248
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300249static inline void print_err_status(struct cx231xx *dev, int packet, int status)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300250{
251 char *errmsg = "Unknown";
252
253 switch (status) {
254 case -ENOENT:
255 errmsg = "unlinked synchronuously";
256 break;
257 case -ECONNRESET:
258 errmsg = "unlinked asynchronuously";
259 break;
260 case -ENOSR:
261 errmsg = "Buffer error (overrun)";
262 break;
263 case -EPIPE:
264 errmsg = "Stalled (device not responding)";
265 break;
266 case -EOVERFLOW:
267 errmsg = "Babble (bad cable?)";
268 break;
269 case -EPROTO:
270 errmsg = "Bit-stuff error (bad cable?)";
271 break;
272 case -EILSEQ:
273 errmsg = "CRC/Timeout (could be anything)";
274 break;
275 case -ETIME:
276 errmsg = "Device does not respond";
277 break;
278 }
279 if (packet < 0) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300280 cx231xx_isocdbg("URB status %d [%s].\n", status, errmsg);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300281 } else {
282 cx231xx_isocdbg("URB packet %d, status %d [%s].\n",
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300283 packet, status, errmsg);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300284 }
285}
286
287/*
288 * video-buf generic routine to get the next available buffer
289 */
290static inline void get_next_buf(struct cx231xx_dmaqueue *dma_q,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300291 struct cx231xx_buffer **buf)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300292{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300293 struct cx231xx_video_mode *vmode =
294 container_of(dma_q, struct cx231xx_video_mode, vidq);
295 struct cx231xx *dev = container_of(vmode, struct cx231xx, video_mode);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300296
297 char *outp;
298
Sri Deevie0d3baf2009-03-03 14:37:50 -0300299 if (list_empty(&dma_q->active)) {
300 cx231xx_isocdbg("No active queue to serve\n");
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300301 if (dev->USE_ISO)
302 dev->video_mode.isoc_ctl.buf = NULL;
303 else
304 dev->video_mode.bulk_ctl.buf = NULL;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300305 *buf = NULL;
306 return;
307 }
308
309 /* Get the next buffer */
310 *buf = list_entry(dma_q->active.next, struct cx231xx_buffer, vb.queue);
311
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300312 /* Cleans up buffer - Useful for testing for frame/URB loss */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300313 outp = videobuf_to_vmalloc(&(*buf)->vb);
314 memset(outp, 0, (*buf)->vb.size);
315
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300316 if (dev->USE_ISO)
317 dev->video_mode.isoc_ctl.buf = *buf;
318 else
319 dev->video_mode.bulk_ctl.buf = *buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300320
321 return;
322}
323
324/*
325 * Controls the isoc copy of each urb packet
326 */
327static inline int cx231xx_isoc_copy(struct cx231xx *dev, struct urb *urb)
328{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300329 struct cx231xx_dmaqueue *dma_q = urb->context;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300330 int i, rc = 1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300331 unsigned char *p_buffer;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300332 u32 bytes_parsed = 0, buffer_size = 0;
333 u8 sav_eav = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300334
335 if (!dev)
336 return 0;
337
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200338 if (dev->state & DEV_DISCONNECTED)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300339 return 0;
340
341 if (urb->status < 0) {
342 print_err_status(dev, -1, urb->status);
343 if (urb->status == -ENOENT)
344 return 0;
345 }
346
Sri Deevie0d3baf2009-03-03 14:37:50 -0300347 for (i = 0; i < urb->number_of_packets; i++) {
348 int status = urb->iso_frame_desc[i].status;
349
350 if (status < 0) {
351 print_err_status(dev, i, status);
352 if (urb->iso_frame_desc[i].status != -EPROTO)
353 continue;
354 }
355
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300356 if (urb->iso_frame_desc[i].actual_length <= 0) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300357 /* cx231xx_isocdbg("packet %d is empty",i); - spammy */
358 continue;
359 }
360 if (urb->iso_frame_desc[i].actual_length >
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300361 dev->video_mode.max_pkt_size) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300362 cx231xx_isocdbg("packet bigger than packet size");
363 continue;
364 }
365
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300366 /* get buffer pointer and length */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300367 p_buffer = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300368 buffer_size = urb->iso_frame_desc[i].actual_length;
369 bytes_parsed = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300370
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300371 if (dma_q->is_partial_line) {
Sri Deevib9255172009-03-04 17:49:01 -0300372 /* Handle the case of a partial line */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300373 sav_eav = dma_q->last_sav;
374 } else {
Sri Deevib9255172009-03-04 17:49:01 -0300375 /* Check for a SAV/EAV overlapping
376 the buffer boundary */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300377 sav_eav =
378 cx231xx_find_boundary_SAV_EAV(p_buffer,
379 dma_q->partial_buf,
380 &bytes_parsed);
381 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300382
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300383 sav_eav &= 0xF0;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300384 /* Get the first line if we have some portion of an SAV/EAV from
385 the last buffer or a partial line */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300386 if (sav_eav) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300387 bytes_parsed += cx231xx_get_video_line(dev, dma_q,
Sri Deevib9255172009-03-04 17:49:01 -0300388 sav_eav, /* SAV/EAV */
389 p_buffer + bytes_parsed, /* p_buffer */
390 buffer_size - bytes_parsed);/* buf size */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300391 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300392
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300393 /* Now parse data that is completely in this buffer */
394 /* dma_q->is_partial_line = 0; */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300395
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300396 while (bytes_parsed < buffer_size) {
397 u32 bytes_used = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300398
Sri Deevib9255172009-03-04 17:49:01 -0300399 sav_eav = cx231xx_find_next_SAV_EAV(
400 p_buffer + bytes_parsed, /* p_buffer */
401 buffer_size - bytes_parsed, /* buf size */
402 &bytes_used);/* bytes used to get SAV/EAV */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300403
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300404 bytes_parsed += bytes_used;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300405
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300406 sav_eav &= 0xF0;
407 if (sav_eav && (bytes_parsed < buffer_size)) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300408 bytes_parsed += cx231xx_get_video_line(dev,
Sri Deevib9255172009-03-04 17:49:01 -0300409 dma_q, sav_eav, /* SAV/EAV */
410 p_buffer + bytes_parsed,/* p_buffer */
411 buffer_size - bytes_parsed);/*buf size*/
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300412 }
413 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300414
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300415 /* Save the last four bytes of the buffer so we can check the
416 buffer boundary condition next time */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300417 memcpy(dma_q->partial_buf, p_buffer + buffer_size - 4, 4);
418 bytes_parsed = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300419
420 }
421 return rc;
422}
423
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300424static inline int cx231xx_bulk_copy(struct cx231xx *dev, struct urb *urb)
425{
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300426 struct cx231xx_dmaqueue *dma_q = urb->context;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300427 int rc = 1;
428 unsigned char *p_buffer;
429 u32 bytes_parsed = 0, buffer_size = 0;
430 u8 sav_eav = 0;
431
432 if (!dev)
433 return 0;
434
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200435 if (dev->state & DEV_DISCONNECTED)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300436 return 0;
437
438 if (urb->status < 0) {
439 print_err_status(dev, -1, urb->status);
440 if (urb->status == -ENOENT)
441 return 0;
442 }
443
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300444 if (1) {
445
446 /* get buffer pointer and length */
447 p_buffer = urb->transfer_buffer;
448 buffer_size = urb->actual_length;
449 bytes_parsed = 0;
450
451 if (dma_q->is_partial_line) {
452 /* Handle the case of a partial line */
453 sav_eav = dma_q->last_sav;
454 } else {
455 /* Check for a SAV/EAV overlapping
456 the buffer boundary */
457 sav_eav =
458 cx231xx_find_boundary_SAV_EAV(p_buffer,
459 dma_q->partial_buf,
460 &bytes_parsed);
461 }
462
463 sav_eav &= 0xF0;
464 /* Get the first line if we have some portion of an SAV/EAV from
465 the last buffer or a partial line */
466 if (sav_eav) {
467 bytes_parsed += cx231xx_get_video_line(dev, dma_q,
468 sav_eav, /* SAV/EAV */
469 p_buffer + bytes_parsed, /* p_buffer */
470 buffer_size - bytes_parsed);/* buf size */
471 }
472
473 /* Now parse data that is completely in this buffer */
474 /* dma_q->is_partial_line = 0; */
475
476 while (bytes_parsed < buffer_size) {
477 u32 bytes_used = 0;
478
479 sav_eav = cx231xx_find_next_SAV_EAV(
480 p_buffer + bytes_parsed, /* p_buffer */
481 buffer_size - bytes_parsed, /* buf size */
482 &bytes_used);/* bytes used to get SAV/EAV */
483
484 bytes_parsed += bytes_used;
485
486 sav_eav &= 0xF0;
487 if (sav_eav && (bytes_parsed < buffer_size)) {
488 bytes_parsed += cx231xx_get_video_line(dev,
489 dma_q, sav_eav, /* SAV/EAV */
490 p_buffer + bytes_parsed,/* p_buffer */
491 buffer_size - bytes_parsed);/*buf size*/
492 }
493 }
494
495 /* Save the last four bytes of the buffer so we can check the
496 buffer boundary condition next time */
497 memcpy(dma_q->partial_buf, p_buffer + buffer_size - 4, 4);
498 bytes_parsed = 0;
499
500 }
501 return rc;
502}
503
504
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300505u8 cx231xx_find_boundary_SAV_EAV(u8 *p_buffer, u8 *partial_buf,
506 u32 *p_bytes_used)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300507{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300508 u32 bytes_used;
509 u8 boundary_bytes[8];
510 u8 sav_eav = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300511
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300512 *p_bytes_used = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300513
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300514 /* Create an array of the last 4 bytes of the last buffer and the first
515 4 bytes of the current buffer. */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300516
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300517 memcpy(boundary_bytes, partial_buf, 4);
518 memcpy(boundary_bytes + 4, p_buffer, 4);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300519
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300520 /* Check for the SAV/EAV in the boundary buffer */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300521 sav_eav = cx231xx_find_next_SAV_EAV((u8 *)&boundary_bytes, 8,
522 &bytes_used);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300523
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300524 if (sav_eav) {
525 /* found a boundary SAV/EAV. Updates the bytes used to reflect
526 only those used in the new buffer */
527 *p_bytes_used = bytes_used - 4;
528 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300529
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300530 return sav_eav;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300531}
532
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300533u8 cx231xx_find_next_SAV_EAV(u8 *p_buffer, u32 buffer_size, u32 *p_bytes_used)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300534{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300535 u32 i;
536 u8 sav_eav = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300537
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300538 /*
539 * Don't search if the buffer size is less than 4. It causes a page
540 * fault since buffer_size - 4 evaluates to a large number in that
541 * case.
542 */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300543 if (buffer_size < 4) {
544 *p_bytes_used = buffer_size;
545 return 0;
546 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300547
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300548 for (i = 0; i < (buffer_size - 3); i++) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300549
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300550 if ((p_buffer[i] == 0xFF) &&
551 (p_buffer[i + 1] == 0x00) && (p_buffer[i + 2] == 0x00)) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300552
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300553 *p_bytes_used = i + 4;
554 sav_eav = p_buffer[i + 3];
555 return sav_eav;
556 }
557 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300558
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300559 *p_bytes_used = buffer_size;
560 return 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300561}
562
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300563u32 cx231xx_get_video_line(struct cx231xx *dev,
564 struct cx231xx_dmaqueue *dma_q, u8 sav_eav,
565 u8 *p_buffer, u32 buffer_size)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300566{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300567 u32 bytes_copied = 0;
568 int current_field = -1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300569
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300570 switch (sav_eav) {
571 case SAV_ACTIVE_VIDEO_FIELD1:
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300572 /* looking for skipped line which occurred in PAL 720x480 mode.
573 In this case, there will be no active data contained
574 between the SAV and EAV */
575 if ((buffer_size > 3) && (p_buffer[0] == 0xFF) &&
576 (p_buffer[1] == 0x00) && (p_buffer[2] == 0x00) &&
577 ((p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD1) ||
578 (p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD2) ||
579 (p_buffer[3] == EAV_VBLANK_FIELD1) ||
580 (p_buffer[3] == EAV_VBLANK_FIELD2)))
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300581 return bytes_copied;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300582 current_field = 1;
583 break;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300584
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300585 case SAV_ACTIVE_VIDEO_FIELD2:
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300586 /* looking for skipped line which occurred in PAL 720x480 mode.
587 In this case, there will be no active data contained between
588 the SAV and EAV */
589 if ((buffer_size > 3) && (p_buffer[0] == 0xFF) &&
590 (p_buffer[1] == 0x00) && (p_buffer[2] == 0x00) &&
591 ((p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD1) ||
592 (p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD2) ||
593 (p_buffer[3] == EAV_VBLANK_FIELD1) ||
594 (p_buffer[3] == EAV_VBLANK_FIELD2)))
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300595 return bytes_copied;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300596 current_field = 2;
597 break;
598 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300599
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300600 dma_q->last_sav = sav_eav;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300601
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300602 bytes_copied = cx231xx_copy_video_line(dev, dma_q, p_buffer,
603 buffer_size, current_field);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300604
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300605 return bytes_copied;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300606}
607
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300608u32 cx231xx_copy_video_line(struct cx231xx *dev,
609 struct cx231xx_dmaqueue *dma_q, u8 *p_line,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300610 u32 length, int field_number)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300611{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300612 u32 bytes_to_copy;
613 struct cx231xx_buffer *buf;
614 u32 _line_size = dev->width * 2;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300615
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300616 if (dma_q->current_field != field_number)
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300617 cx231xx_reset_video_buffer(dev, dma_q);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300618
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300619 /* get the buffer pointer */
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300620 if (dev->USE_ISO)
621 buf = dev->video_mode.isoc_ctl.buf;
622 else
623 buf = dev->video_mode.bulk_ctl.buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300624
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300625 /* Remember the field number for next time */
626 dma_q->current_field = field_number;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300627
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300628 bytes_to_copy = dma_q->bytes_left_in_line;
629 if (bytes_to_copy > length)
630 bytes_to_copy = length;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300631
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300632 if (dma_q->lines_completed >= dma_q->lines_per_field) {
633 dma_q->bytes_left_in_line -= bytes_to_copy;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300634 dma_q->is_partial_line = (dma_q->bytes_left_in_line == 0) ?
635 0 : 1;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300636 return 0;
637 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300638
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300639 dma_q->is_partial_line = 1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300640
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300641 /* If we don't have a buffer, just return the number of bytes we would
642 have copied if we had a buffer. */
643 if (!buf) {
644 dma_q->bytes_left_in_line -= bytes_to_copy;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300645 dma_q->is_partial_line = (dma_q->bytes_left_in_line == 0)
646 ? 0 : 1;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300647 return bytes_to_copy;
648 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300649
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300650 /* copy the data to video buffer */
651 cx231xx_do_copy(dev, dma_q, p_line, bytes_to_copy);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300652
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300653 dma_q->pos += bytes_to_copy;
654 dma_q->bytes_left_in_line -= bytes_to_copy;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300655
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300656 if (dma_q->bytes_left_in_line == 0) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300657 dma_q->bytes_left_in_line = _line_size;
658 dma_q->lines_completed++;
659 dma_q->is_partial_line = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300660
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300661 if (cx231xx_is_buffer_done(dev, dma_q) && buf) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300662 buffer_filled(dev, dma_q, buf);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300663
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300664 dma_q->pos = 0;
665 buf = NULL;
666 dma_q->lines_completed = 0;
667 }
668 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300669
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300670 return bytes_to_copy;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300671}
672
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300673void cx231xx_reset_video_buffer(struct cx231xx *dev,
674 struct cx231xx_dmaqueue *dma_q)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300675{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300676 struct cx231xx_buffer *buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300677
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300678 /* handle the switch from field 1 to field 2 */
679 if (dma_q->current_field == 1) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300680 if (dma_q->lines_completed >= dma_q->lines_per_field)
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300681 dma_q->field1_done = 1;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300682 else
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300683 dma_q->field1_done = 0;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300684 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300685
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300686 if (dev->USE_ISO)
687 buf = dev->video_mode.isoc_ctl.buf;
688 else
689 buf = dev->video_mode.bulk_ctl.buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300690
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300691 if (buf == NULL) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300692 /* first try to get the buffer */
693 get_next_buf(dma_q, &buf);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300694
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300695 dma_q->pos = 0;
696 dma_q->field1_done = 0;
697 dma_q->current_field = -1;
698 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300699
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300700 /* reset the counters */
701 dma_q->bytes_left_in_line = dev->width << 1;
702 dma_q->lines_completed = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300703}
704
705int cx231xx_do_copy(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300706 u8 *p_buffer, u32 bytes_to_copy)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300707{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300708 u8 *p_out_buffer = NULL;
709 u32 current_line_bytes_copied = 0;
710 struct cx231xx_buffer *buf;
711 u32 _line_size = dev->width << 1;
712 void *startwrite;
713 int offset, lencopy;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300714
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300715 if (dev->USE_ISO)
716 buf = dev->video_mode.isoc_ctl.buf;
717 else
718 buf = dev->video_mode.bulk_ctl.buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300719
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300720 if (buf == NULL)
721 return -1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300722
723 p_out_buffer = videobuf_to_vmalloc(&buf->vb);
724
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300725 current_line_bytes_copied = _line_size - dma_q->bytes_left_in_line;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300726
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300727 /* Offset field 2 one line from the top of the buffer */
728 offset = (dma_q->current_field == 1) ? 0 : _line_size;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300729
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300730 /* Offset for field 2 */
731 startwrite = p_out_buffer + offset;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300732
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300733 /* lines already completed in the current field */
734 startwrite += (dma_q->lines_completed * _line_size * 2);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300735
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300736 /* bytes already completed in the current line */
737 startwrite += current_line_bytes_copied;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300738
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300739 lencopy = dma_q->bytes_left_in_line > bytes_to_copy ?
740 bytes_to_copy : dma_q->bytes_left_in_line;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300741
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300742 if ((u8 *)(startwrite + lencopy) > (u8 *)(p_out_buffer + buf->vb.size))
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300743 return 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300744
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300745 /* The below copies the UYVY data straight into video buffer */
746 cx231xx_swab((u16 *) p_buffer, (u16 *) startwrite, (u16) lencopy);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300747
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300748 return 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300749}
750
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300751void cx231xx_swab(u16 *from, u16 *to, u16 len)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300752{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300753 u16 i;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300754
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300755 if (len <= 0)
756 return;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300757
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300758 for (i = 0; i < len / 2; i++)
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300759 to[i] = (from[i] << 8) | (from[i] >> 8);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300760}
761
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300762u8 cx231xx_is_buffer_done(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300763{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300764 u8 buffer_complete = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300765
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300766 /* Dual field stream */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300767 buffer_complete = ((dma_q->current_field == 2) &&
768 (dma_q->lines_completed >= dma_q->lines_per_field) &&
769 dma_q->field1_done);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300770
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300771 return buffer_complete;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300772}
773
Sri Deevie0d3baf2009-03-03 14:37:50 -0300774/* ------------------------------------------------------------------
775 Videobuf operations
776 ------------------------------------------------------------------*/
777
778static int
779buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
780{
781 struct cx231xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300782 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300783
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300784 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7)>>3;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300785 if (0 == *count)
786 *count = CX231XX_DEF_BUF;
787
788 if (*count < CX231XX_MIN_BUF)
789 *count = CX231XX_MIN_BUF;
790
Sri Deevie0d3baf2009-03-03 14:37:50 -0300791 return 0;
792}
793
794/* This is called *without* dev->slock held; please keep it that way */
795static void free_buffer(struct videobuf_queue *vq, struct cx231xx_buffer *buf)
796{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300797 struct cx231xx_fh *fh = vq->priv_data;
798 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300799 unsigned long flags = 0;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300800
Sri Deevie0d3baf2009-03-03 14:37:50 -0300801 if (in_interrupt())
802 BUG();
803
804 /* We used to wait for the buffer to finish here, but this didn't work
805 because, as we were keeping the state as VIDEOBUF_QUEUED,
806 videobuf_queue_cancel marked it as finished for us.
807 (Also, it could wedge forever if the hardware was misconfigured.)
808
809 This should be safe; by the time we get here, the buffer isn't
810 queued anymore. If we ever start marking the buffers as
811 VIDEOBUF_ACTIVE, it won't be, though.
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300812 */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300813 spin_lock_irqsave(&dev->video_mode.slock, flags);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300814 if (dev->USE_ISO) {
815 if (dev->video_mode.isoc_ctl.buf == buf)
816 dev->video_mode.isoc_ctl.buf = NULL;
817 } else {
818 if (dev->video_mode.bulk_ctl.buf == buf)
819 dev->video_mode.bulk_ctl.buf = NULL;
820 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300821 spin_unlock_irqrestore(&dev->video_mode.slock, flags);
822
823 videobuf_vmalloc_free(&buf->vb);
824 buf->vb.state = VIDEOBUF_NEEDS_INIT;
825}
826
827static int
828buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300829 enum v4l2_field field)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300830{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300831 struct cx231xx_fh *fh = vq->priv_data;
832 struct cx231xx_buffer *buf =
833 container_of(vb, struct cx231xx_buffer, vb);
834 struct cx231xx *dev = fh->dev;
835 int rc = 0, urb_init = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300836
837 /* The only currently supported format is 16 bits/pixel */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300838 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth
839 + 7) >> 3;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300840 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300841 return -EINVAL;
842
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300843 buf->vb.width = dev->width;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300844 buf->vb.height = dev->height;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300845 buf->vb.field = field;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300846
847 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
848 rc = videobuf_iolock(vq, &buf->vb, NULL);
849 if (rc < 0)
850 goto fail;
851 }
852
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300853 if (dev->USE_ISO) {
854 if (!dev->video_mode.isoc_ctl.num_bufs)
855 urb_init = 1;
856 } else {
857 if (!dev->video_mode.bulk_ctl.num_bufs)
858 urb_init = 1;
859 }
860 /*cx231xx_info("urb_init=%d dev->video_mode.max_pkt_size=%d\n",
861 urb_init, dev->video_mode.max_pkt_size);*/
Sri Deevie0d3baf2009-03-03 14:37:50 -0300862 if (urb_init) {
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300863 dev->mode_tv = 0;
864 if (dev->USE_ISO)
865 rc = cx231xx_init_isoc(dev, CX231XX_NUM_PACKETS,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300866 CX231XX_NUM_BUFS,
867 dev->video_mode.max_pkt_size,
868 cx231xx_isoc_copy);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300869 else
870 rc = cx231xx_init_bulk(dev, CX231XX_NUM_PACKETS,
871 CX231XX_NUM_BUFS,
872 dev->video_mode.max_pkt_size,
873 cx231xx_bulk_copy);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300874 if (rc < 0)
875 goto fail;
876 }
877
878 buf->vb.state = VIDEOBUF_PREPARED;
879 return 0;
880
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300881fail:
Sri Deevie0d3baf2009-03-03 14:37:50 -0300882 free_buffer(vq, buf);
883 return rc;
884}
885
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300886static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300887{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300888 struct cx231xx_buffer *buf =
889 container_of(vb, struct cx231xx_buffer, vb);
890 struct cx231xx_fh *fh = vq->priv_data;
891 struct cx231xx *dev = fh->dev;
892 struct cx231xx_dmaqueue *vidq = &dev->video_mode.vidq;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300893
894 buf->vb.state = VIDEOBUF_QUEUED;
895 list_add_tail(&buf->vb.queue, &vidq->active);
896
897}
898
899static void buffer_release(struct videobuf_queue *vq,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300900 struct videobuf_buffer *vb)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300901{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300902 struct cx231xx_buffer *buf =
903 container_of(vb, struct cx231xx_buffer, vb);
904 struct cx231xx_fh *fh = vq->priv_data;
905 struct cx231xx *dev = (struct cx231xx *)fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300906
907 cx231xx_isocdbg("cx231xx: called buffer_release\n");
908
909 free_buffer(vq, buf);
910}
911
912static struct videobuf_queue_ops cx231xx_video_qops = {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300913 .buf_setup = buffer_setup,
914 .buf_prepare = buffer_prepare,
915 .buf_queue = buffer_queue,
916 .buf_release = buffer_release,
Sri Deevie0d3baf2009-03-03 14:37:50 -0300917};
918
919/********************* v4l2 interface **************************************/
920
Sri Deevie0d3baf2009-03-03 14:37:50 -0300921void video_mux(struct cx231xx *dev, int index)
922{
Sri Deevie0d3baf2009-03-03 14:37:50 -0300923 dev->video_input = index;
924 dev->ctl_ainput = INPUT(index)->amux;
925
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300926 cx231xx_set_video_input_mux(dev, index);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300927
Hans Verkuil5325b422009-04-02 11:26:22 -0300928 cx25840_call(dev, video, s_routing, INPUT(index)->vmux, 0, 0);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300929
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300930 cx231xx_set_audio_input(dev, dev->ctl_ainput);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300931
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300932 cx231xx_info("video_mux : %d\n", index);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300933
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300934 /* do mode control overrides if required */
935 cx231xx_do_mode_ctrl_overrides(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300936}
937
938/* Usage lock check functions */
939static int res_get(struct cx231xx_fh *fh)
940{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300941 struct cx231xx *dev = fh->dev;
942 int rc = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300943
944 /* This instance already has stream_on */
945 if (fh->stream_on)
946 return rc;
947
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300948 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
949 if (dev->stream_on)
950 return -EBUSY;
951 dev->stream_on = 1;
952 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
953 if (dev->vbi_stream_on)
954 return -EBUSY;
955 dev->vbi_stream_on = 1;
956 } else
957 return -EINVAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300958
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300959 fh->stream_on = 1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300960
961 return rc;
962}
963
964static int res_check(struct cx231xx_fh *fh)
965{
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300966 return fh->stream_on;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300967}
968
969static void res_free(struct cx231xx_fh *fh)
970{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300971 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300972
973 fh->stream_on = 0;
974
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300975 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
976 dev->stream_on = 0;
977 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
978 dev->vbi_stream_on = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300979}
980
981static int check_dev(struct cx231xx *dev)
982{
983 if (dev->state & DEV_DISCONNECTED) {
984 cx231xx_errdev("v4l2 ioctl: device not present\n");
985 return -ENODEV;
986 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300987 return 0;
988}
989
Sri Deevie0d3baf2009-03-03 14:37:50 -0300990/* ------------------------------------------------------------------
991 IOCTL vidioc handling
992 ------------------------------------------------------------------*/
993
994static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300995 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300996{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300997 struct cx231xx_fh *fh = priv;
998 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300999
Sri Deevie0d3baf2009-03-03 14:37:50 -03001000 f->fmt.pix.width = dev->width;
1001 f->fmt.pix.height = dev->height;
Joe Perches1ebcad72009-07-02 15:57:09 -03001002 f->fmt.pix.pixelformat = dev->format->fourcc;
1003 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001004 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001005 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1006
1007 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil8b735c12013-02-09 06:35:02 -03001008 f->fmt.pix.priv = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001009
Sri Deevie0d3baf2009-03-03 14:37:50 -03001010 return 0;
1011}
1012
1013static struct cx231xx_fmt *format_by_fourcc(unsigned int fourcc)
1014{
1015 unsigned int i;
1016
1017 for (i = 0; i < ARRAY_SIZE(format); i++)
1018 if (format[i].fourcc == fourcc)
1019 return &format[i];
1020
1021 return NULL;
1022}
1023
1024static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001025 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001026{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001027 struct cx231xx_fh *fh = priv;
1028 struct cx231xx *dev = fh->dev;
Trent Piepho9bd0e8d2009-05-30 21:45:46 -03001029 unsigned int width = f->fmt.pix.width;
1030 unsigned int height = f->fmt.pix.height;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001031 unsigned int maxw = norm_maxw(dev);
1032 unsigned int maxh = norm_maxh(dev);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001033 struct cx231xx_fmt *fmt;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001034
1035 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1036 if (!fmt) {
1037 cx231xx_videodbg("Fourcc format (%08x) invalid.\n",
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001038 f->fmt.pix.pixelformat);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001039 return -EINVAL;
1040 }
1041
1042 /* width must even because of the YUYV format
1043 height must be even because of interlacing */
Trent Piepho9bd0e8d2009-05-30 21:45:46 -03001044 v4l_bound_align_image(&width, 48, maxw, 1, &height, 32, maxh, 1, 0);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001045
Sri Deevie0d3baf2009-03-03 14:37:50 -03001046 f->fmt.pix.width = width;
1047 f->fmt.pix.height = height;
1048 f->fmt.pix.pixelformat = fmt->fourcc;
Hans Verkuil8b735c12013-02-09 06:35:02 -03001049 f->fmt.pix.bytesperline = (width * fmt->depth + 7) >> 3;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001050 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
1051 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1052 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil8b735c12013-02-09 06:35:02 -03001053 f->fmt.pix.priv = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001054
1055 return 0;
1056}
1057
1058static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001059 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001060{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001061 struct cx231xx_fh *fh = priv;
1062 struct cx231xx *dev = fh->dev;
1063 int rc;
1064 struct cx231xx_fmt *fmt;
Hans Verkuil112cb4a2010-05-09 10:11:01 -03001065 struct v4l2_mbus_framefmt mbus_fmt;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001066
1067 rc = check_dev(dev);
1068 if (rc < 0)
1069 return rc;
1070
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001071 vidioc_try_fmt_vid_cap(file, priv, f);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001072
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001073 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001074 if (!fmt)
1075 return -EINVAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001076
1077 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
1078 cx231xx_errdev("%s queue busy\n", __func__);
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001079 return -EBUSY;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001080 }
1081
1082 if (dev->stream_on && !fh->stream_on) {
1083 cx231xx_errdev("%s device in use by another fh\n", __func__);
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001084 return -EBUSY;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001085 }
1086
1087 /* set new image size */
1088 dev->width = f->fmt.pix.width;
1089 dev->height = f->fmt.pix.height;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001090 dev->format = fmt;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001091
Hans Verkuil112cb4a2010-05-09 10:11:01 -03001092 v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED);
1093 call_all(dev, video, s_mbus_fmt, &mbus_fmt);
1094 v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001095
Sri Deevie0d3baf2009-03-03 14:37:50 -03001096 return rc;
1097}
1098
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001099static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *id)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001100{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001101 struct cx231xx_fh *fh = priv;
1102 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001103
1104 *id = dev->norm;
1105 return 0;
1106}
1107
Sri Deevib1196122009-03-20 23:33:48 -03001108static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001109{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001110 struct cx231xx_fh *fh = priv;
1111 struct cx231xx *dev = fh->dev;
Devin Heitmueller435b4f72010-07-09 13:29:31 -03001112 struct v4l2_mbus_framefmt mbus_fmt;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001113 struct v4l2_format f;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001114 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001115
1116 rc = check_dev(dev);
1117 if (rc < 0)
1118 return rc;
1119
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001120 cx231xx_info("vidioc_s_std : 0x%x\n", (unsigned int)*norm);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001121
Sri Deevie0d3baf2009-03-03 14:37:50 -03001122 dev->norm = *norm;
1123
Sri Deevie0d3baf2009-03-03 14:37:50 -03001124 /* Adjusts width/height, if needed */
1125 f.fmt.pix.width = dev->width;
1126 f.fmt.pix.height = dev->height;
1127 vidioc_try_fmt_vid_cap(file, priv, &f);
1128
Devin Heitmueller435b4f72010-07-09 13:29:31 -03001129 call_all(dev, core, s_std, dev->norm);
1130
1131 /* We need to reset basic properties in the decoder related to
1132 resolution (since a standard change effects things like the number
1133 of lines in VACT, etc) */
1134 v4l2_fill_mbus_format(&mbus_fmt, &f.fmt.pix, V4L2_MBUS_FMT_FIXED);
1135 call_all(dev, video, s_mbus_fmt, &mbus_fmt);
1136 v4l2_fill_pix_format(&f.fmt.pix, &mbus_fmt);
1137
Sri Deevie0d3baf2009-03-03 14:37:50 -03001138 /* set new image size */
1139 dev->width = f.fmt.pix.width;
1140 dev->height = f.fmt.pix.height;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001141
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001142 /* do mode control overrides */
1143 cx231xx_do_mode_ctrl_overrides(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001144
1145 return 0;
1146}
1147
1148static const char *iname[] = {
1149 [CX231XX_VMUX_COMPOSITE1] = "Composite1",
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001150 [CX231XX_VMUX_SVIDEO] = "S-Video",
Sri Deevie0d3baf2009-03-03 14:37:50 -03001151 [CX231XX_VMUX_TELEVISION] = "Television",
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001152 [CX231XX_VMUX_CABLE] = "Cable TV",
1153 [CX231XX_VMUX_DVB] = "DVB",
1154 [CX231XX_VMUX_DEBUG] = "for debug only",
Sri Deevie0d3baf2009-03-03 14:37:50 -03001155};
1156
1157static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001158 struct v4l2_input *i)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001159{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001160 struct cx231xx_fh *fh = priv;
1161 struct cx231xx *dev = fh->dev;
Devin Heitmuellerde99d532011-07-24 17:07:07 -03001162 u32 gen_stat;
1163 unsigned int ret, n;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001164
1165 n = i->index;
1166 if (n >= MAX_CX231XX_INPUT)
1167 return -EINVAL;
1168 if (0 == INPUT(n)->type)
1169 return -EINVAL;
1170
1171 i->index = n;
1172 i->type = V4L2_INPUT_TYPE_CAMERA;
1173
1174 strcpy(i->name, iname[INPUT(n)->type]);
1175
1176 if ((CX231XX_VMUX_TELEVISION == INPUT(n)->type) ||
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001177 (CX231XX_VMUX_CABLE == INPUT(n)->type))
Sri Deevie0d3baf2009-03-03 14:37:50 -03001178 i->type = V4L2_INPUT_TYPE_TUNER;
1179
1180 i->std = dev->vdev->tvnorms;
1181
Devin Heitmuellerde99d532011-07-24 17:07:07 -03001182 /* If they are asking about the active input, read signal status */
1183 if (n == dev->video_input) {
1184 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1185 GEN_STAT, 2, &gen_stat, 4);
1186 if (ret > 0) {
1187 if ((gen_stat & FLD_VPRES) == 0x00)
1188 i->status |= V4L2_IN_ST_NO_SIGNAL;
1189 if ((gen_stat & FLD_HLOCK) == 0x00)
1190 i->status |= V4L2_IN_ST_NO_H_LOCK;
1191 }
1192 }
1193
Sri Deevie0d3baf2009-03-03 14:37:50 -03001194 return 0;
1195}
1196
1197static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1198{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001199 struct cx231xx_fh *fh = priv;
1200 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001201
1202 *i = dev->video_input;
1203
1204 return 0;
1205}
1206
1207static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1208{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001209 struct cx231xx_fh *fh = priv;
1210 struct cx231xx *dev = fh->dev;
1211 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001212
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001213 dev->mode_tv = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001214 rc = check_dev(dev);
1215 if (rc < 0)
1216 return rc;
1217
1218 if (i >= MAX_CX231XX_INPUT)
1219 return -EINVAL;
1220 if (0 == INPUT(i)->type)
1221 return -EINVAL;
1222
Sri Deevie0d3baf2009-03-03 14:37:50 -03001223 video_mux(dev, i);
1224
Devin Heitmuellerc09d6692010-07-12 16:50:30 -03001225 if (INPUT(i)->type == CX231XX_VMUX_TELEVISION ||
1226 INPUT(i)->type == CX231XX_VMUX_CABLE) {
1227 /* There's a tuner, so reset the standard and put it on the
1228 last known frequency (since it was probably powered down
1229 until now */
1230 call_all(dev, core, s_std, dev->norm);
1231 }
1232
Sri Deevie0d3baf2009-03-03 14:37:50 -03001233 return 0;
1234}
1235
Sri Deevie0d3baf2009-03-03 14:37:50 -03001236static int vidioc_queryctrl(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001237 struct v4l2_queryctrl *qc)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001238{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001239 struct cx231xx_fh *fh = priv;
1240 struct cx231xx *dev = fh->dev;
1241 int id = qc->id;
1242 int i;
1243 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001244
1245 rc = check_dev(dev);
1246 if (rc < 0)
1247 return rc;
1248
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001249 qc->id = v4l2_ctrl_next(ctrl_classes, qc->id);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001250 if (unlikely(qc->id == 0))
1251 return -EINVAL;
1252
1253 memset(qc, 0, sizeof(*qc));
1254
1255 qc->id = id;
1256
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001257 if (qc->id < V4L2_CID_BASE || qc->id >= V4L2_CID_LASTP1)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001258 return -EINVAL;
1259
1260 for (i = 0; i < CX231XX_CTLS; i++)
1261 if (cx231xx_ctls[i].v.id == qc->id)
1262 break;
1263
1264 if (i == CX231XX_CTLS) {
1265 *qc = no_ctl;
1266 return 0;
1267 }
1268 *qc = cx231xx_ctls[i].v;
1269
Sri Deevib1196122009-03-20 23:33:48 -03001270 call_all(dev, core, queryctrl, qc);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001271
1272 if (qc->type)
1273 return 0;
1274 else
1275 return -EINVAL;
1276}
1277
1278static int vidioc_g_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001279 struct v4l2_control *ctrl)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001280{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001281 struct cx231xx_fh *fh = priv;
1282 struct cx231xx *dev = fh->dev;
1283 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001284
1285 rc = check_dev(dev);
1286 if (rc < 0)
1287 return rc;
1288
Sri Deevib1196122009-03-20 23:33:48 -03001289 call_all(dev, core, g_ctrl, ctrl);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001290 return rc;
1291}
1292
1293static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001294 struct v4l2_control *ctrl)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001295{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001296 struct cx231xx_fh *fh = priv;
1297 struct cx231xx *dev = fh->dev;
1298 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001299
1300 rc = check_dev(dev);
1301 if (rc < 0)
1302 return rc;
1303
Sri Deevib1196122009-03-20 23:33:48 -03001304 call_all(dev, core, s_ctrl, ctrl);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001305 return rc;
1306}
1307
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001308static int vidioc_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001309{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001310 struct cx231xx_fh *fh = priv;
1311 struct cx231xx *dev = fh->dev;
1312 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001313
1314 rc = check_dev(dev);
1315 if (rc < 0)
1316 return rc;
1317
1318 if (0 != t->index)
1319 return -EINVAL;
1320
1321 strcpy(t->name, "Tuner");
1322
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001323 t->type = V4L2_TUNER_ANALOG_TV;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001324 t->capability = V4L2_TUNER_CAP_NORM;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001325 t->rangehigh = 0xffffffffUL;
1326 t->signal = 0xffff; /* LOCKED */
Hans Verkuilb251f952012-09-13 12:54:36 -03001327 call_all(dev, tuner, g_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001328
1329 return 0;
1330}
1331
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001332static int vidioc_s_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001333{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001334 struct cx231xx_fh *fh = priv;
1335 struct cx231xx *dev = fh->dev;
1336 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001337
1338 rc = check_dev(dev);
1339 if (rc < 0)
1340 return rc;
1341
1342 if (0 != t->index)
1343 return -EINVAL;
1344#if 0
Sri Deevib1196122009-03-20 23:33:48 -03001345 call_all(dev, tuner, s_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001346#endif
1347 return 0;
1348}
1349
1350static int vidioc_g_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001351 struct v4l2_frequency *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001352{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001353 struct cx231xx_fh *fh = priv;
1354 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001355
Hans Verkuilb251f952012-09-13 12:54:36 -03001356 if (f->tuner)
1357 return -EINVAL;
1358
Sri Deevie0d3baf2009-03-03 14:37:50 -03001359 f->frequency = dev->ctl_freq;
1360
Sri Deevie0d3baf2009-03-03 14:37:50 -03001361 return 0;
1362}
1363
1364static int vidioc_s_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001365 struct v4l2_frequency *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001366{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001367 struct cx231xx_fh *fh = priv;
1368 struct cx231xx *dev = fh->dev;
1369 int rc;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001370 u32 if_frequency = 5400000;
1371
1372 cx231xx_info("Enter vidioc_s_frequency()f->frequency=%d;f->type=%d\n",
1373 f->frequency, f->type);
1374 /*cx231xx_info("f->type: 1-radio 2-analogTV 3-digitalTV\n");*/
Sri Deevie0d3baf2009-03-03 14:37:50 -03001375
1376 rc = check_dev(dev);
1377 if (rc < 0)
1378 return rc;
1379
1380 if (0 != f->tuner)
1381 return -EINVAL;
1382
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001383 /* set pre channel change settings in DIF first */
1384 rc = cx231xx_tuner_pre_channel_change(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001385
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001386 call_all(dev, tuner, s_frequency, f);
Hans Verkuil0752d982013-02-09 06:40:33 -03001387 call_all(dev, tuner, g_frequency, f);
1388 dev->ctl_freq = f->frequency;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001389
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001390 /* set post channel change settings in DIF first */
1391 rc = cx231xx_tuner_post_channel_change(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001392
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001393 if (dev->tuner_type == TUNER_NXP_TDA18271) {
1394 if (dev->norm & (V4L2_STD_MN | V4L2_STD_NTSC_443))
1395 if_frequency = 5400000; /*5.4MHz */
1396 else if (dev->norm & V4L2_STD_B)
1397 if_frequency = 6000000; /*6.0MHz */
1398 else if (dev->norm & (V4L2_STD_PAL_DK | V4L2_STD_SECAM_DK))
1399 if_frequency = 6900000; /*6.9MHz */
1400 else if (dev->norm & V4L2_STD_GH)
1401 if_frequency = 7100000; /*7.1MHz */
1402 else if (dev->norm & V4L2_STD_PAL_I)
1403 if_frequency = 7250000; /*7.25MHz */
1404 else if (dev->norm & V4L2_STD_SECAM_L)
1405 if_frequency = 6900000; /*6.9MHz */
1406 else if (dev->norm & V4L2_STD_SECAM_LC)
1407 if_frequency = 1250000; /*1.25MHz */
1408
1409 cx231xx_info("if_frequency is set to %d\n", if_frequency);
1410 cx231xx_set_Colibri_For_LowIF(dev, if_frequency, 1, 1);
1411
1412 update_HH_register_after_set_DIF(dev);
1413 }
1414
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001415 cx231xx_info("Set New FREQUENCY to %d\n", f->frequency);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001416
1417 return rc;
1418}
1419
Hans Verkuilfddd14c2012-09-13 05:37:11 -03001420static int vidioc_g_chip_ident(struct file *file, void *fh,
1421 struct v4l2_dbg_chip_ident *chip)
1422{
1423 chip->ident = V4L2_IDENT_NONE;
1424 chip->revision = 0;
1425 if (chip->match.type == V4L2_CHIP_MATCH_HOST) {
1426 if (v4l2_chip_match_host(&chip->match))
1427 chip->ident = V4L2_IDENT_CX23100;
1428 return 0;
1429 }
1430 return -EINVAL;
1431}
1432
Sri Deevie0d3baf2009-03-03 14:37:50 -03001433#ifdef CONFIG_VIDEO_ADV_DEBUG
1434
Sri Deevie0d3baf2009-03-03 14:37:50 -03001435/*
Sri Deevib9255172009-03-04 17:49:01 -03001436 -R, --list-registers=type=<host/i2cdrv/i2caddr>,
1437 chip=<chip>[,min=<addr>,max=<addr>]
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001438 dump registers from <min> to <max> [VIDIOC_DBG_G_REGISTER]
Sri Deevib9255172009-03-04 17:49:01 -03001439 -r, --set-register=type=<host/i2cdrv/i2caddr>,
1440 chip=<chip>,reg=<addr>,val=<val>
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001441 set the register [VIDIOC_DBG_S_REGISTER]
Sri Deevie0d3baf2009-03-03 14:37:50 -03001442
1443 if type == host, then <chip> is the hosts chip ID (default 0)
1444 if type == i2cdrv (default), then <chip> is the I2C driver name or ID
1445 if type == i2caddr, then <chip> is the 7-bit I2C address
1446*/
1447
Sri Deevie0d3baf2009-03-03 14:37:50 -03001448static int vidioc_g_register(struct file *file, void *priv,
1449 struct v4l2_dbg_register *reg)
1450{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001451 struct cx231xx_fh *fh = priv;
1452 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001453 int ret = 0;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001454 u8 value[4] = { 0, 0, 0, 0 };
1455 u32 data = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001456
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001457 switch (reg->match.type) {
1458 case V4L2_CHIP_MATCH_HOST:
1459 switch (reg->match.addr) {
1460 case 0: /* Cx231xx - internal registers */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001461 ret = cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER,
1462 (u16)reg->reg, value, 4);
1463 reg->val = value[0] | value[1] << 8 |
1464 value[2] << 16 | value[3] << 24;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001465 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001466 case 1: /* AFE - read byte */
1467 ret = cx231xx_read_i2c_data(dev, AFE_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001468 (u16)reg->reg, 2, &data, 1);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001469 reg->val = le32_to_cpu(data & 0xff);
1470 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001471 case 14: /* AFE - read dword */
1472 ret = cx231xx_read_i2c_data(dev, AFE_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001473 (u16)reg->reg, 2, &data, 4);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001474 reg->val = le32_to_cpu(data);
1475 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001476 case 2: /* Video Block - read byte */
1477 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001478 (u16)reg->reg, 2, &data, 1);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001479 reg->val = le32_to_cpu(data & 0xff);
1480 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001481 case 24: /* Video Block - read dword */
1482 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001483 (u16)reg->reg, 2, &data, 4);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001484 reg->val = le32_to_cpu(data);
1485 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001486 case 3: /* I2S block - read byte */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001487 ret = cx231xx_read_i2c_data(dev,
Sri Deeviecc67d12009-03-21 22:00:20 -03001488 I2S_BLK_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001489 (u16)reg->reg, 1,
1490 &data, 1);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001491 reg->val = le32_to_cpu(data & 0xff);
1492 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001493 case 34: /* I2S Block - read dword */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001494 ret =
Sri Deeviecc67d12009-03-21 22:00:20 -03001495 cx231xx_read_i2c_data(dev, I2S_BLK_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001496 (u16)reg->reg, 1, &data, 4);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001497 reg->val = le32_to_cpu(data);
1498 break;
1499 }
1500 return ret < 0 ? ret : 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001501
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001502 case V4L2_CHIP_MATCH_I2C_DRIVER:
Sri Deevib1196122009-03-20 23:33:48 -03001503 call_all(dev, core, g_register, reg);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001504 return 0;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001505 case V4L2_CHIP_MATCH_I2C_ADDR:/*for register debug*/
1506 switch (reg->match.addr) {
1507 case 0: /* Cx231xx - internal registers */
1508 ret = cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER,
1509 (u16)reg->reg, value, 4);
1510 reg->val = value[0] | value[1] << 8 |
1511 value[2] << 16 | value[3] << 24;
1512
1513 break;
1514 case 0x600:/* AFE - read byte */
1515 ret = cx231xx_read_i2c_master(dev, AFE_DEVICE_ADDRESS,
1516 (u16)reg->reg, 2,
1517 &data, 1 , 0);
1518 reg->val = le32_to_cpu(data & 0xff);
1519 break;
1520
1521 case 0x880:/* Video Block - read byte */
1522 if (reg->reg < 0x0b) {
1523 ret = cx231xx_read_i2c_master(dev,
1524 VID_BLK_I2C_ADDRESS,
1525 (u16)reg->reg, 2,
1526 &data, 1 , 0);
1527 reg->val = le32_to_cpu(data & 0xff);
1528 } else {
1529 ret = cx231xx_read_i2c_master(dev,
1530 VID_BLK_I2C_ADDRESS,
1531 (u16)reg->reg, 2,
1532 &data, 4 , 0);
1533 reg->val = le32_to_cpu(data);
1534 }
1535 break;
1536 case 0x980:
1537 ret = cx231xx_read_i2c_master(dev,
1538 I2S_BLK_DEVICE_ADDRESS,
1539 (u16)reg->reg, 1,
1540 &data, 1 , 0);
1541 reg->val = le32_to_cpu(data & 0xff);
1542 break;
1543 case 0x400:
1544 ret =
1545 cx231xx_read_i2c_master(dev, 0x40,
1546 (u16)reg->reg, 1,
1547 &data, 1 , 0);
1548 reg->val = le32_to_cpu(data & 0xff);
1549 break;
1550 case 0xc01:
1551 ret =
1552 cx231xx_read_i2c_master(dev, 0xc0,
1553 (u16)reg->reg, 2,
1554 &data, 38, 1);
1555 reg->val = le32_to_cpu(data);
1556 break;
1557 case 0x022:
1558 ret =
1559 cx231xx_read_i2c_master(dev, 0x02,
1560 (u16)reg->reg, 1,
1561 &data, 1, 2);
1562 reg->val = le32_to_cpu(data & 0xff);
1563 break;
1564 case 0x322:
1565 ret = cx231xx_read_i2c_master(dev,
1566 0x32,
1567 (u16)reg->reg, 1,
1568 &data, 4 , 2);
1569 reg->val = le32_to_cpu(data);
1570 break;
1571 case 0x342:
1572 ret = cx231xx_read_i2c_master(dev,
1573 0x34,
1574 (u16)reg->reg, 1,
1575 &data, 4 , 2);
1576 reg->val = le32_to_cpu(data);
1577 break;
1578
1579 default:
1580 cx231xx_info("no match device address!!\n");
1581 break;
1582 }
1583 return ret < 0 ? ret : 0;
1584 /*return -EINVAL;*/
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001585 default:
1586 if (!v4l2_chip_match_host(&reg->match))
1587 return -EINVAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001588 }
1589
Sri Deevib1196122009-03-20 23:33:48 -03001590 call_all(dev, core, g_register, reg);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001591
1592 return ret;
1593}
1594
1595static int vidioc_s_register(struct file *file, void *priv,
1596 struct v4l2_dbg_register *reg)
1597{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001598 struct cx231xx_fh *fh = priv;
1599 struct cx231xx *dev = fh->dev;
1600 int ret = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001601 __le64 buf;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001602 u32 value;
1603 u8 data[4] = { 0, 0, 0, 0 };
Sri Deevie0d3baf2009-03-03 14:37:50 -03001604
1605 buf = cpu_to_le64(reg->val);
1606
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001607 switch (reg->match.type) {
1608 case V4L2_CHIP_MATCH_HOST:
1609 {
1610 value = (u32) buf & 0xffffffff;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001611
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001612 switch (reg->match.addr) {
1613 case 0: /* cx231xx internal registers */
1614 data[0] = (u8) value;
1615 data[1] = (u8) (value >> 8);
1616 data[2] = (u8) (value >> 16);
1617 data[3] = (u8) (value >> 24);
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001618 ret = cx231xx_write_ctrl_reg(dev,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001619 VRT_SET_REGISTER,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001620 (u16)reg->reg, data,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001621 4);
1622 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001623 case 1: /* AFE - read byte */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001624 ret = cx231xx_write_i2c_data(dev,
Sri Deeviecc67d12009-03-21 22:00:20 -03001625 AFE_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001626 (u16)reg->reg, 2,
1627 value, 1);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001628 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001629 case 14: /* AFE - read dword */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001630 ret = cx231xx_write_i2c_data(dev,
Sri Deeviecc67d12009-03-21 22:00:20 -03001631 AFE_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001632 (u16)reg->reg, 2,
1633 value, 4);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001634 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001635 case 2: /* Video Block - read byte */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001636 ret =
1637 cx231xx_write_i2c_data(dev,
Sri Deeviecc67d12009-03-21 22:00:20 -03001638 VID_BLK_I2C_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001639 (u16)reg->reg, 2,
1640 value, 1);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001641 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001642 case 24: /* Video Block - read dword */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001643 ret =
1644 cx231xx_write_i2c_data(dev,
Sri Deeviecc67d12009-03-21 22:00:20 -03001645 VID_BLK_I2C_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001646 (u16)reg->reg, 2,
1647 value, 4);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001648 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001649 case 3: /* I2S block - read byte */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001650 ret =
1651 cx231xx_write_i2c_data(dev,
Sri Deeviecc67d12009-03-21 22:00:20 -03001652 I2S_BLK_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001653 (u16)reg->reg, 1,
1654 value, 1);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001655 break;
Sri Deeviecc67d12009-03-21 22:00:20 -03001656 case 34: /* I2S block - read dword */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001657 ret =
1658 cx231xx_write_i2c_data(dev,
Sri Deeviecc67d12009-03-21 22:00:20 -03001659 I2S_BLK_DEVICE_ADDRESS,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001660 (u16)reg->reg, 1,
1661 value, 4);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001662 break;
1663 }
1664 }
1665 return ret < 0 ? ret : 0;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001666 case V4L2_CHIP_MATCH_I2C_ADDR:
1667 {
1668 value = (u32) buf & 0xffffffff;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001669
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001670 switch (reg->match.addr) {
1671 case 0:/*cx231xx internal registers*/
1672 data[0] = (u8) value;
1673 data[1] = (u8) (value >> 8);
1674 data[2] = (u8) (value >> 16);
1675 data[3] = (u8) (value >> 24);
1676 ret = cx231xx_write_ctrl_reg(dev,
1677 VRT_SET_REGISTER,
1678 (u16)reg->reg, data,
1679 4);
1680 break;
1681 case 0x600:/* AFE - read byte */
1682 ret = cx231xx_write_i2c_master(dev,
1683 AFE_DEVICE_ADDRESS,
1684 (u16)reg->reg, 2,
1685 value, 1 , 0);
1686 break;
1687
1688 case 0x880:/* Video Block - read byte */
1689 if (reg->reg < 0x0b)
1690 cx231xx_write_i2c_master(dev,
1691 VID_BLK_I2C_ADDRESS,
1692 (u16)reg->reg, 2,
1693 value, 1, 0);
1694 else
1695 cx231xx_write_i2c_master(dev,
1696 VID_BLK_I2C_ADDRESS,
1697 (u16)reg->reg, 2,
1698 value, 4, 0);
1699 break;
1700 case 0x980:
1701 ret =
1702 cx231xx_write_i2c_master(dev,
1703 I2S_BLK_DEVICE_ADDRESS,
1704 (u16)reg->reg, 1,
1705 value, 1, 0);
1706 break;
1707 case 0x400:
1708 ret =
1709 cx231xx_write_i2c_master(dev,
1710 0x40,
1711 (u16)reg->reg, 1,
1712 value, 1, 0);
1713 break;
1714 case 0xc01:
1715 ret =
1716 cx231xx_write_i2c_master(dev,
1717 0xc0,
1718 (u16)reg->reg, 1,
1719 value, 1, 1);
1720 break;
1721
1722 case 0x022:
1723 ret =
1724 cx231xx_write_i2c_master(dev,
1725 0x02,
1726 (u16)reg->reg, 1,
1727 value, 1, 2);
Dan Carpenterf62436a2013-01-11 02:48:41 -03001728 break;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001729 case 0x322:
1730 ret =
1731 cx231xx_write_i2c_master(dev,
1732 0x32,
1733 (u16)reg->reg, 1,
1734 value, 4, 2);
1735 break;
1736
1737 case 0x342:
1738 ret =
1739 cx231xx_write_i2c_master(dev,
1740 0x34,
1741 (u16)reg->reg, 1,
1742 value, 4, 2);
1743 break;
1744 default:
1745 cx231xx_info("no match device address, "
1746 "the value is %x\n", reg->match.addr);
1747 break;
1748
1749 }
1750
1751 }
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001752 default:
1753 break;
1754 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03001755
Sri Deevib1196122009-03-20 23:33:48 -03001756 call_all(dev, core, s_register, reg);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001757
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001758 return ret;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001759}
1760#endif
1761
Sri Deevie0d3baf2009-03-03 14:37:50 -03001762static int vidioc_cropcap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001763 struct v4l2_cropcap *cc)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001764{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001765 struct cx231xx_fh *fh = priv;
1766 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001767
1768 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1769 return -EINVAL;
1770
1771 cc->bounds.left = 0;
1772 cc->bounds.top = 0;
1773 cc->bounds.width = dev->width;
1774 cc->bounds.height = dev->height;
1775 cc->defrect = cc->bounds;
1776 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1777 cc->pixelaspect.denominator = 59;
1778
1779 return 0;
1780}
1781
1782static int vidioc_streamon(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001783 enum v4l2_buf_type type)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001784{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001785 struct cx231xx_fh *fh = priv;
1786 struct cx231xx *dev = fh->dev;
1787 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001788
1789 rc = check_dev(dev);
1790 if (rc < 0)
1791 return rc;
1792
Sri Deevie0d3baf2009-03-03 14:37:50 -03001793 rc = res_get(fh);
1794
1795 if (likely(rc >= 0))
1796 rc = videobuf_streamon(&fh->vb_vidq);
1797
Sri Deevib1196122009-03-20 23:33:48 -03001798 call_all(dev, video, s_stream, 1);
1799
Sri Deevie0d3baf2009-03-03 14:37:50 -03001800 return rc;
1801}
1802
1803static int vidioc_streamoff(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001804 enum v4l2_buf_type type)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001805{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001806 struct cx231xx_fh *fh = priv;
1807 struct cx231xx *dev = fh->dev;
1808 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001809
1810 rc = check_dev(dev);
1811 if (rc < 0)
1812 return rc;
1813
Mauro Carvalho Chehab92fcbd32009-03-21 22:16:34 -03001814 if ((fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) &&
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001815 (fh->type != V4L2_BUF_TYPE_VBI_CAPTURE))
Sri Deevie0d3baf2009-03-03 14:37:50 -03001816 return -EINVAL;
1817 if (type != fh->type)
1818 return -EINVAL;
1819
Sri Deevib1196122009-03-20 23:33:48 -03001820 cx25840_call(dev, video, s_stream, 0);
1821
Sri Deevie0d3baf2009-03-03 14:37:50 -03001822 videobuf_streamoff(&fh->vb_vidq);
1823 res_free(fh);
1824
Sri Deevie0d3baf2009-03-03 14:37:50 -03001825 return 0;
1826}
1827
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001828static int vidioc_querycap(struct file *file, void *priv,
1829 struct v4l2_capability *cap)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001830{
Hans Verkuil4bc837d2012-09-13 05:29:12 -03001831 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001832 struct cx231xx_fh *fh = priv;
1833 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001834
1835 strlcpy(cap->driver, "cx231xx", sizeof(cap->driver));
1836 strlcpy(cap->card, cx231xx_boards[dev->model].name, sizeof(cap->card));
Mauro Carvalho Chehab2c6beca2009-03-22 08:53:36 -03001837 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001838
Hans Verkuil530e01e2013-01-29 12:32:20 -03001839 if (vdev->vfl_type == VFL_TYPE_RADIO)
1840 cap->device_caps = V4L2_CAP_RADIO;
1841 else {
Hans Verkuil06c46002012-09-13 06:17:47 -03001842 cap->device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
Hans Verkuil530e01e2013-01-29 12:32:20 -03001843 if (vdev->vfl_type == VFL_TYPE_VBI)
1844 cap->device_caps |= V4L2_CAP_VBI_CAPTURE;
1845 else
1846 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE;
1847 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03001848 if (dev->tuner_type != TUNER_ABSENT)
Hans Verkuil4bc837d2012-09-13 05:29:12 -03001849 cap->device_caps |= V4L2_CAP_TUNER;
Hans Verkuil06c46002012-09-13 06:17:47 -03001850 cap->capabilities = cap->device_caps | V4L2_CAP_READWRITE |
Hans Verkuil4bc837d2012-09-13 05:29:12 -03001851 V4L2_CAP_VBI_CAPTURE | V4L2_CAP_VIDEO_CAPTURE |
Hans Verkuil530e01e2013-01-29 12:32:20 -03001852 V4L2_CAP_STREAMING | V4L2_CAP_DEVICE_CAPS;
1853 if (dev->radio_dev)
1854 cap->capabilities |= V4L2_CAP_RADIO;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001855
1856 return 0;
1857}
1858
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001859static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
1860 struct v4l2_fmtdesc *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001861{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001862 if (unlikely(f->index >= ARRAY_SIZE(format)))
Sri Deevie0d3baf2009-03-03 14:37:50 -03001863 return -EINVAL;
1864
1865 strlcpy(f->description, format[f->index].name, sizeof(f->description));
1866 f->pixelformat = format[f->index].fourcc;
1867
1868 return 0;
1869}
1870
Sri Deevie0d3baf2009-03-03 14:37:50 -03001871/* RAW VBI ioctls */
1872
1873static int vidioc_g_fmt_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001874 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001875{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001876 struct cx231xx_fh *fh = priv;
1877 struct cx231xx *dev = fh->dev;
Hans Verkuil62647222013-02-09 06:41:11 -03001878
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001879 f->fmt.vbi.sampling_rate = 6750000 * 4;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001880 f->fmt.vbi.samples_per_line = VBI_LINE_LENGTH;
1881 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001882 f->fmt.vbi.offset = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001883 f->fmt.vbi.start[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001884 PAL_VBI_START_LINE : NTSC_VBI_START_LINE;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001885 f->fmt.vbi.count[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001886 PAL_VBI_LINES : NTSC_VBI_LINES;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001887 f->fmt.vbi.start[1] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001888 PAL_VBI_START_LINE + 312 : NTSC_VBI_START_LINE + 263;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001889 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
Hans Verkuil62647222013-02-09 06:41:11 -03001890 memset(f->fmt.vbi.reserved, 0, sizeof(f->fmt.vbi.reserved));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001891
1892 return 0;
1893
1894}
1895
1896static int vidioc_try_fmt_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001897 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001898{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001899 struct cx231xx_fh *fh = priv;
1900 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001901
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001902 f->fmt.vbi.sampling_rate = 6750000 * 4;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001903 f->fmt.vbi.samples_per_line = VBI_LINE_LENGTH;
1904 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001905 f->fmt.vbi.offset = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001906 f->fmt.vbi.flags = 0;
1907 f->fmt.vbi.start[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001908 PAL_VBI_START_LINE : NTSC_VBI_START_LINE;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001909 f->fmt.vbi.count[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001910 PAL_VBI_LINES : NTSC_VBI_LINES;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001911 f->fmt.vbi.start[1] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001912 PAL_VBI_START_LINE + 312 : NTSC_VBI_START_LINE + 263;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001913 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
Hans Verkuil62647222013-02-09 06:41:11 -03001914 memset(f->fmt.vbi.reserved, 0, sizeof(f->fmt.vbi.reserved));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001915
1916 return 0;
1917
1918}
1919
Hans Verkuil62647222013-02-09 06:41:11 -03001920static int vidioc_s_fmt_vbi_cap(struct file *file, void *priv,
1921 struct v4l2_format *f)
1922{
1923 struct cx231xx_fh *fh = priv;
1924 struct cx231xx *dev = fh->dev;
1925
1926 if (dev->vbi_stream_on && !fh->stream_on) {
1927 cx231xx_errdev("%s device in use by another fh\n", __func__);
1928 return -EBUSY;
1929 }
1930 return vidioc_try_fmt_vbi_cap(file, priv, f);
1931}
1932
Sri Deevie0d3baf2009-03-03 14:37:50 -03001933static int vidioc_reqbufs(struct file *file, void *priv,
1934 struct v4l2_requestbuffers *rb)
1935{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001936 struct cx231xx_fh *fh = priv;
1937 struct cx231xx *dev = fh->dev;
1938 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001939
1940 rc = check_dev(dev);
1941 if (rc < 0)
1942 return rc;
1943
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001944 return videobuf_reqbufs(&fh->vb_vidq, rb);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001945}
1946
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001947static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *b)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001948{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001949 struct cx231xx_fh *fh = priv;
1950 struct cx231xx *dev = fh->dev;
1951 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001952
1953 rc = check_dev(dev);
1954 if (rc < 0)
1955 return rc;
1956
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001957 return videobuf_querybuf(&fh->vb_vidq, b);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001958}
1959
1960static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1961{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001962 struct cx231xx_fh *fh = priv;
1963 struct cx231xx *dev = fh->dev;
1964 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001965
1966 rc = check_dev(dev);
1967 if (rc < 0)
1968 return rc;
1969
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001970 return videobuf_qbuf(&fh->vb_vidq, b);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001971}
1972
1973static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1974{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001975 struct cx231xx_fh *fh = priv;
1976 struct cx231xx *dev = fh->dev;
1977 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001978
1979 rc = check_dev(dev);
1980 if (rc < 0)
1981 return rc;
1982
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001983 return videobuf_dqbuf(&fh->vb_vidq, b, file->f_flags & O_NONBLOCK);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001984}
1985
Sri Deevie0d3baf2009-03-03 14:37:50 -03001986/* ----------------------------------------------------------- */
1987/* RADIO ESPECIFIC IOCTLS */
1988/* ----------------------------------------------------------- */
1989
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001990static int radio_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001991{
1992 struct cx231xx *dev = ((struct cx231xx_fh *)priv)->dev;
1993
Hans Verkuil530e01e2013-01-29 12:32:20 -03001994 if (t->index)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001995 return -EINVAL;
1996
1997 strcpy(t->name, "Radio");
Sri Deevie0d3baf2009-03-03 14:37:50 -03001998
Hans Verkuil530e01e2013-01-29 12:32:20 -03001999 call_all(dev, tuner, g_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002000
2001 return 0;
2002}
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002003static int radio_s_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002004{
2005 struct cx231xx *dev = ((struct cx231xx_fh *)priv)->dev;
2006
2007 if (0 != t->index)
2008 return -EINVAL;
2009
Sri Deevib1196122009-03-20 23:33:48 -03002010 call_all(dev, tuner, s_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002011
2012 return 0;
2013}
2014
Sri Deevie0d3baf2009-03-03 14:37:50 -03002015static int radio_queryctrl(struct file *file, void *priv,
2016 struct v4l2_queryctrl *c)
2017{
2018 int i;
2019
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002020 if (c->id < V4L2_CID_BASE || c->id >= V4L2_CID_LASTP1)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002021 return -EINVAL;
2022 if (c->id == V4L2_CID_AUDIO_MUTE) {
Dan Carpenter8e475672010-04-02 08:30:10 -03002023 for (i = 0; i < CX231XX_CTLS; i++) {
Sri Deevie0d3baf2009-03-03 14:37:50 -03002024 if (cx231xx_ctls[i].v.id == c->id)
2025 break;
Dan Carpenter8e475672010-04-02 08:30:10 -03002026 }
2027 if (i == CX231XX_CTLS)
2028 return -EINVAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002029 *c = cx231xx_ctls[i].v;
2030 } else
2031 *c = no_ctl;
2032 return 0;
2033}
2034
2035/*
2036 * cx231xx_v4l2_open()
2037 * inits the device and starts isoc transfer
2038 */
2039static int cx231xx_v4l2_open(struct file *filp)
2040{
Sri Deevie0d3baf2009-03-03 14:37:50 -03002041 int errCode = 0, radio = 0;
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002042 struct video_device *vdev = video_devdata(filp);
2043 struct cx231xx *dev = video_drvdata(filp);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002044 struct cx231xx_fh *fh;
2045 enum v4l2_buf_type fh_type = 0;
2046
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002047 switch (vdev->vfl_type) {
2048 case VFL_TYPE_GRABBER:
2049 fh_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2050 break;
2051 case VFL_TYPE_VBI:
2052 fh_type = V4L2_BUF_TYPE_VBI_CAPTURE;
2053 break;
2054 case VFL_TYPE_RADIO:
2055 radio = 1;
2056 break;
2057 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03002058
Laurent Pinchart50462eb2009-12-10 11:47:13 -02002059 cx231xx_videodbg("open dev=%s type=%s users=%d\n",
2060 video_device_node_name(vdev), v4l2_type_names[fh_type],
2061 dev->users);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002062
2063#if 0
2064 errCode = cx231xx_set_mode(dev, CX231XX_ANALOG_MODE);
2065 if (errCode < 0) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002066 cx231xx_errdev
2067 ("Device locked on digital mode. Can't open analog\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -03002068 return -EBUSY;
2069 }
2070#endif
2071
2072 fh = kzalloc(sizeof(struct cx231xx_fh), GFP_KERNEL);
2073 if (!fh) {
2074 cx231xx_errdev("cx231xx-video.c: Out of memory?!\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -03002075 return -ENOMEM;
2076 }
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002077 if (mutex_lock_interruptible(&dev->lock)) {
2078 kfree(fh);
2079 return -ERESTARTSYS;
2080 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03002081 fh->dev = dev;
2082 fh->radio = radio;
2083 fh->type = fh_type;
2084 filp->private_data = fh;
2085
2086 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
2087 dev->width = norm_maxw(dev);
2088 dev->height = norm_maxh(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002089
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002090 /* Power up in Analog TV mode */
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03002091 if (dev->board.external_av)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002092 cx231xx_set_power_mode(dev,
2093 POLARIS_AVMODE_ENXTERNAL_AV);
2094 else
2095 cx231xx_set_power_mode(dev, POLARIS_AVMODE_ANALOGT_TV);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002096
2097#if 0
2098 cx231xx_set_mode(dev, CX231XX_ANALOG_MODE);
2099#endif
Sri Deevie0d3baf2009-03-03 14:37:50 -03002100
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002101 /* set video alternate setting */
2102 cx231xx_set_video_alternate(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002103
2104 /* Needed, since GPIO might have disabled power of
2105 some i2c device */
2106 cx231xx_config_i2c(dev);
2107
2108 /* device needs to be initialized before isoc transfer */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002109 dev->video_input = dev->video_input > 2 ? 2 : dev->video_input;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002110
2111 }
2112 if (fh->radio) {
2113 cx231xx_videodbg("video_open: setting radio device\n");
2114
2115 /* cx231xx_start_radio(dev); */
2116
Sri Deevib1196122009-03-20 23:33:48 -03002117 call_all(dev, tuner, s_radio);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002118 }
2119
2120 dev->users++;
2121
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002122 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
2123 videobuf_queue_vmalloc_init(&fh->vb_vidq, &cx231xx_video_qops,
2124 NULL, &dev->video_mode.slock,
2125 fh->type, V4L2_FIELD_INTERLACED,
Hans Verkuil08bff032010-09-20 17:39:46 -03002126 sizeof(struct cx231xx_buffer),
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03002127 fh, &dev->lock);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002128 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002129 /* Set the required alternate setting VBI interface works in
2130 Bulk mode only */
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03002131 cx231xx_set_alt_setting(dev, INDEX_VANC, 0);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002132
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002133 videobuf_queue_vmalloc_init(&fh->vb_vidq, &cx231xx_vbi_qops,
2134 NULL, &dev->vbi_mode.slock,
2135 fh->type, V4L2_FIELD_SEQ_TB,
Hans Verkuil08bff032010-09-20 17:39:46 -03002136 sizeof(struct cx231xx_buffer),
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03002137 fh, &dev->lock);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002138 }
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002139 mutex_unlock(&dev->lock);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002140
Sri Deevie0d3baf2009-03-03 14:37:50 -03002141 return errCode;
2142}
2143
2144/*
2145 * cx231xx_realease_resources()
2146 * unregisters the v4l2,i2c and usb devices
2147 * called when the device gets disconected or at module unload
2148*/
2149void cx231xx_release_analog_resources(struct cx231xx *dev)
2150{
2151
2152 /*FIXME: I2C IR should be disconnected */
2153
2154 if (dev->radio_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002155 if (video_is_registered(dev->radio_dev))
Sri Deevie0d3baf2009-03-03 14:37:50 -03002156 video_unregister_device(dev->radio_dev);
2157 else
2158 video_device_release(dev->radio_dev);
2159 dev->radio_dev = NULL;
2160 }
2161 if (dev->vbi_dev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002162 cx231xx_info("V4L2 device %s deregistered\n",
2163 video_device_node_name(dev->vbi_dev));
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002164 if (video_is_registered(dev->vbi_dev))
Sri Deevie0d3baf2009-03-03 14:37:50 -03002165 video_unregister_device(dev->vbi_dev);
2166 else
2167 video_device_release(dev->vbi_dev);
2168 dev->vbi_dev = NULL;
2169 }
2170 if (dev->vdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002171 cx231xx_info("V4L2 device %s deregistered\n",
2172 video_device_node_name(dev->vdev));
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002173
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03002174 if (dev->board.has_417)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002175 cx231xx_417_unregister(dev);
2176
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002177 if (video_is_registered(dev->vdev))
Sri Deevie0d3baf2009-03-03 14:37:50 -03002178 video_unregister_device(dev->vdev);
2179 else
2180 video_device_release(dev->vdev);
2181 dev->vdev = NULL;
2182 }
2183}
2184
2185/*
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002186 * cx231xx_close()
Sri Deevie0d3baf2009-03-03 14:37:50 -03002187 * stops streaming and deallocates all resources allocated by the v4l2
2188 * calls and ioctls
2189 */
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002190static int cx231xx_close(struct file *filp)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002191{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002192 struct cx231xx_fh *fh = filp->private_data;
2193 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002194
2195 cx231xx_videodbg("users=%d\n", dev->users);
2196
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002197 cx231xx_videodbg("users=%d\n", dev->users);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002198 if (res_check(fh))
2199 res_free(fh);
2200
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03002201 /*
2202 * To workaround error number=-71 on EP0 for VideoGrabber,
2203 * need exclude following.
2204 * FIXME: It is probably safe to remove most of these, as we're
2205 * now avoiding the alternate setting for INDEX_VANC
2206 */
2207 if (!dev->board.no_alt_vanc)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002208 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
2209 videobuf_stop(&fh->vb_vidq);
2210 videobuf_mmap_free(&fh->vb_vidq);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002211
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002212 /* the device is already disconnect,
2213 free the remaining resources */
2214 if (dev->state & DEV_DISCONNECTED) {
2215 if (atomic_read(&dev->devlist_count) > 0) {
2216 cx231xx_release_resources(dev);
Jesper Juhl266e8ae2012-03-04 16:25:04 -03002217 fh->dev = NULL;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002218 return 0;
2219 }
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002220 return 0;
2221 }
2222
2223 /* do this before setting alternate! */
2224 cx231xx_uninit_vbi_isoc(dev);
2225
2226 /* set alternate 0 */
2227 if (!dev->vbi_or_sliced_cc_mode)
2228 cx231xx_set_alt_setting(dev, INDEX_VANC, 0);
2229 else
2230 cx231xx_set_alt_setting(dev, INDEX_HANC, 0);
2231
2232 kfree(fh);
2233 dev->users--;
2234 wake_up_interruptible_nr(&dev->open, 1);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002235 return 0;
2236 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03002237
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -02002238 dev->users--;
2239 if (!dev->users) {
Sri Deevie0d3baf2009-03-03 14:37:50 -03002240 videobuf_stop(&fh->vb_vidq);
2241 videobuf_mmap_free(&fh->vb_vidq);
2242
2243 /* the device is already disconnect,
2244 free the remaining resources */
2245 if (dev->state & DEV_DISCONNECTED) {
2246 cx231xx_release_resources(dev);
Jesper Juhl266e8ae2012-03-04 16:25:04 -03002247 fh->dev = NULL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002248 return 0;
2249 }
2250
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002251 /* Save some power by putting tuner to sleep */
Laurent Pinchart622b8282009-10-05 10:48:17 -03002252 call_all(dev, core, s_power, 0);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002253
2254 /* do this before setting alternate! */
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002255 if (dev->USE_ISO)
2256 cx231xx_uninit_isoc(dev);
2257 else
2258 cx231xx_uninit_bulk(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002259 cx231xx_set_mode(dev, CX231XX_SUSPEND);
2260
2261 /* set alternate 0 */
2262 cx231xx_set_alt_setting(dev, INDEX_VIDEO, 0);
2263 }
2264 kfree(fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002265 wake_up_interruptible_nr(&dev->open, 1);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002266 return 0;
2267}
2268
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002269static int cx231xx_v4l2_close(struct file *filp)
2270{
2271 struct cx231xx_fh *fh = filp->private_data;
2272 struct cx231xx *dev = fh->dev;
2273 int rc;
2274
2275 mutex_lock(&dev->lock);
2276 rc = cx231xx_close(filp);
2277 mutex_unlock(&dev->lock);
2278 return rc;
2279}
2280
Sri Deevie0d3baf2009-03-03 14:37:50 -03002281/*
2282 * cx231xx_v4l2_read()
2283 * will allocate buffers when called for the first time
2284 */
2285static ssize_t
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002286cx231xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
2287 loff_t *pos)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002288{
2289 struct cx231xx_fh *fh = filp->private_data;
2290 struct cx231xx *dev = fh->dev;
2291 int rc;
2292
2293 rc = check_dev(dev);
2294 if (rc < 0)
2295 return rc;
2296
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002297 if ((fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
2298 (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)) {
Sri Deevie0d3baf2009-03-03 14:37:50 -03002299 rc = res_get(fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002300
2301 if (unlikely(rc < 0))
2302 return rc;
2303
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002304 if (mutex_lock_interruptible(&dev->lock))
2305 return -ERESTARTSYS;
2306 rc = videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002307 filp->f_flags & O_NONBLOCK);
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002308 mutex_unlock(&dev->lock);
2309 return rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002310 }
2311 return 0;
2312}
2313
2314/*
2315 * cx231xx_v4l2_poll()
2316 * will allocate buffers when called for the first time
2317 */
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03002318static unsigned int cx231xx_v4l2_poll(struct file *filp, poll_table *wait)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002319{
2320 struct cx231xx_fh *fh = filp->private_data;
2321 struct cx231xx *dev = fh->dev;
2322 int rc;
2323
2324 rc = check_dev(dev);
2325 if (rc < 0)
2326 return rc;
2327
Sri Deevie0d3baf2009-03-03 14:37:50 -03002328 rc = res_get(fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002329
2330 if (unlikely(rc < 0))
2331 return POLLERR;
2332
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002333 if ((V4L2_BUF_TYPE_VIDEO_CAPTURE == fh->type) ||
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002334 (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type)) {
2335 unsigned int res;
2336
2337 mutex_lock(&dev->lock);
2338 res = videobuf_poll_stream(filp, &fh->vb_vidq, wait);
2339 mutex_unlock(&dev->lock);
2340 return res;
2341 }
2342 return POLLERR;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002343}
2344
2345/*
2346 * cx231xx_v4l2_mmap()
2347 */
2348static int cx231xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
2349{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002350 struct cx231xx_fh *fh = filp->private_data;
2351 struct cx231xx *dev = fh->dev;
2352 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002353
2354 rc = check_dev(dev);
2355 if (rc < 0)
2356 return rc;
2357
Sri Deevie0d3baf2009-03-03 14:37:50 -03002358 rc = res_get(fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002359
2360 if (unlikely(rc < 0))
2361 return rc;
2362
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002363 if (mutex_lock_interruptible(&dev->lock))
2364 return -ERESTARTSYS;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002365 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002366 mutex_unlock(&dev->lock);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002367
2368 cx231xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002369 (unsigned long)vma->vm_start,
2370 (unsigned long)vma->vm_end -
2371 (unsigned long)vma->vm_start, rc);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002372
2373 return rc;
2374}
2375
2376static const struct v4l2_file_operations cx231xx_v4l_fops = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002377 .owner = THIS_MODULE,
2378 .open = cx231xx_v4l2_open,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002379 .release = cx231xx_v4l2_close,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002380 .read = cx231xx_v4l2_read,
2381 .poll = cx231xx_v4l2_poll,
2382 .mmap = cx231xx_v4l2_mmap,
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03002383 .unlocked_ioctl = video_ioctl2,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002384};
2385
2386static const struct v4l2_ioctl_ops video_ioctl_ops = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002387 .vidioc_querycap = vidioc_querycap,
2388 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
2389 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
2390 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
2391 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
2392 .vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
2393 .vidioc_try_fmt_vbi_cap = vidioc_try_fmt_vbi_cap,
Hans Verkuil62647222013-02-09 06:41:11 -03002394 .vidioc_s_fmt_vbi_cap = vidioc_s_fmt_vbi_cap,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002395 .vidioc_cropcap = vidioc_cropcap,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002396 .vidioc_reqbufs = vidioc_reqbufs,
2397 .vidioc_querybuf = vidioc_querybuf,
2398 .vidioc_qbuf = vidioc_qbuf,
2399 .vidioc_dqbuf = vidioc_dqbuf,
2400 .vidioc_s_std = vidioc_s_std,
2401 .vidioc_g_std = vidioc_g_std,
2402 .vidioc_enum_input = vidioc_enum_input,
2403 .vidioc_g_input = vidioc_g_input,
2404 .vidioc_s_input = vidioc_s_input,
2405 .vidioc_queryctrl = vidioc_queryctrl,
2406 .vidioc_g_ctrl = vidioc_g_ctrl,
2407 .vidioc_s_ctrl = vidioc_s_ctrl,
2408 .vidioc_streamon = vidioc_streamon,
2409 .vidioc_streamoff = vidioc_streamoff,
2410 .vidioc_g_tuner = vidioc_g_tuner,
2411 .vidioc_s_tuner = vidioc_s_tuner,
2412 .vidioc_g_frequency = vidioc_g_frequency,
2413 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuilfddd14c2012-09-13 05:37:11 -03002414 .vidioc_g_chip_ident = vidioc_g_chip_ident,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002415#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002416 .vidioc_g_register = vidioc_g_register,
2417 .vidioc_s_register = vidioc_s_register,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002418#endif
Sri Deevie0d3baf2009-03-03 14:37:50 -03002419};
2420
2421static struct video_device cx231xx_vbi_template;
2422
2423static const struct video_device cx231xx_video_template = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002424 .fops = &cx231xx_v4l_fops,
2425 .release = video_device_release,
2426 .ioctl_ops = &video_ioctl_ops,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002427 .tvnorms = V4L2_STD_ALL,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002428 .current_norm = V4L2_STD_PAL,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002429};
2430
2431static const struct v4l2_file_operations radio_fops = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002432 .owner = THIS_MODULE,
2433 .open = cx231xx_v4l2_open,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002434 .release = cx231xx_v4l2_close,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002435 .ioctl = video_ioctl2,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002436};
2437
2438static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Hans Verkuil530e01e2013-01-29 12:32:20 -03002439 .vidioc_querycap = vidioc_querycap,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002440 .vidioc_g_tuner = radio_g_tuner,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002441 .vidioc_s_tuner = radio_s_tuner,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002442 .vidioc_queryctrl = radio_queryctrl,
2443 .vidioc_g_ctrl = vidioc_g_ctrl,
2444 .vidioc_s_ctrl = vidioc_s_ctrl,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002445 .vidioc_g_frequency = vidioc_g_frequency,
2446 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuil530e01e2013-01-29 12:32:20 -03002447 .vidioc_g_chip_ident = vidioc_g_chip_ident,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002448#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002449 .vidioc_g_register = vidioc_g_register,
2450 .vidioc_s_register = vidioc_s_register,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002451#endif
2452};
2453
2454static struct video_device cx231xx_radio_template = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002455 .name = "cx231xx-radio",
2456 .fops = &radio_fops,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002457 .ioctl_ops = &radio_ioctl_ops,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002458};
2459
2460/******************************** usb interface ******************************/
2461
Sri Deevib9255172009-03-04 17:49:01 -03002462static struct video_device *cx231xx_vdev_init(struct cx231xx *dev,
2463 const struct video_device
2464 *template, const char *type_name)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002465{
2466 struct video_device *vfd;
2467
2468 vfd = video_device_alloc();
2469 if (NULL == vfd)
2470 return NULL;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002471
Sri Deevie0d3baf2009-03-03 14:37:50 -03002472 *vfd = *template;
Sri Deevib1196122009-03-20 23:33:48 -03002473 vfd->v4l2_dev = &dev->v4l2_dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002474 vfd->release = video_device_release;
2475 vfd->debug = video_debug;
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03002476 vfd->lock = &dev->lock;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002477
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002478 snprintf(vfd->name, sizeof(vfd->name), "%s %s", dev->name, type_name);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002479
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002480 video_set_drvdata(vfd, dev);
Hans Verkuil06c46002012-09-13 06:17:47 -03002481 if (dev->tuner_type == TUNER_ABSENT) {
2482 v4l2_disable_ioctl(vfd, VIDIOC_G_FREQUENCY);
2483 v4l2_disable_ioctl(vfd, VIDIOC_S_FREQUENCY);
2484 v4l2_disable_ioctl(vfd, VIDIOC_G_TUNER);
2485 v4l2_disable_ioctl(vfd, VIDIOC_S_TUNER);
2486 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03002487 return vfd;
2488}
2489
2490int cx231xx_register_analog_devices(struct cx231xx *dev)
2491{
2492 int ret;
2493
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03002494 cx231xx_info("%s: v4l2 driver version %s\n",
2495 dev->name, CX231XX_VERSION);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002496
2497 /* set default norm */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002498 /*dev->norm = cx231xx_video_template.current_norm; */
Sri Deevie0d3baf2009-03-03 14:37:50 -03002499 dev->width = norm_maxw(dev);
2500 dev->height = norm_maxh(dev);
2501 dev->interlaced = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002502
2503 /* Analog specific initialization */
2504 dev->format = &format[0];
Devin Heitmueller6e6a2ba2010-07-12 15:34:57 -03002505
2506 /* Set the initial input */
2507 video_mux(dev, dev->video_input);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002508
2509 /* Audio defaults */
2510 dev->mute = 1;
2511 dev->volume = 0x1f;
2512
2513 /* enable vbi capturing */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002514 /* write code here... */
Sri Deevie0d3baf2009-03-03 14:37:50 -03002515
2516 /* allocate and fill video video_device struct */
2517 dev->vdev = cx231xx_vdev_init(dev, &cx231xx_video_template, "video");
2518 if (!dev->vdev) {
2519 cx231xx_errdev("cannot allocate video_device.\n");
2520 return -ENODEV;
2521 }
2522
2523 /* register v4l2 video video_device */
2524 ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002525 video_nr[dev->devno]);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002526 if (ret) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002527 cx231xx_errdev("unable to register video device (error=%i).\n",
2528 ret);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002529 return ret;
2530 }
2531
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002532 cx231xx_info("%s/0: registered device %s [v4l2]\n",
2533 dev->name, video_device_node_name(dev->vdev));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002534
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002535 /* Initialize VBI template */
Ezequiel Garcia3724dde2012-10-23 15:57:05 -03002536 cx231xx_vbi_template = cx231xx_video_template;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002537 strcpy(cx231xx_vbi_template.name, "cx231xx-vbi");
Sri Deevie0d3baf2009-03-03 14:37:50 -03002538
2539 /* Allocate and fill vbi video_device struct */
2540 dev->vbi_dev = cx231xx_vdev_init(dev, &cx231xx_vbi_template, "vbi");
2541
2542 /* register v4l2 vbi video_device */
2543 ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002544 vbi_nr[dev->devno]);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002545 if (ret < 0) {
2546 cx231xx_errdev("unable to register vbi device\n");
2547 return ret;
2548 }
2549
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002550 cx231xx_info("%s/0: registered device %s\n",
2551 dev->name, video_device_node_name(dev->vbi_dev));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002552
2553 if (cx231xx_boards[dev->model].radio.type == CX231XX_RADIO) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002554 dev->radio_dev = cx231xx_vdev_init(dev, &cx231xx_radio_template,
2555 "radio");
Sri Deevie0d3baf2009-03-03 14:37:50 -03002556 if (!dev->radio_dev) {
2557 cx231xx_errdev("cannot allocate video_device.\n");
2558 return -ENODEV;
2559 }
2560 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2561 radio_nr[dev->devno]);
2562 if (ret < 0) {
2563 cx231xx_errdev("can't register radio device\n");
2564 return ret;
2565 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002566 cx231xx_info("Registered radio device as %s\n",
2567 video_device_node_name(dev->radio_dev));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002568 }
2569
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002570 cx231xx_info("V4L2 device registered as %s and %s\n",
2571 video_device_node_name(dev->vdev),
2572 video_device_node_name(dev->vbi_dev));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002573
2574 return 0;
2575}