blob: f2f034c5cd6207ade6e786b8853a6bb5129e118a [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
Mauro Carvalho Chehab589dadf2014-11-01 08:09:44 -030025#include "cx231xx.h"
Sri Deevie0d3baf2009-03-03 14:37:50 -030026#include <linux/init.h>
27#include <linux/list.h>
28#include <linux/module.h>
29#include <linux/kernel.h>
30#include <linux/bitmap.h>
Sri Deevie0d3baf2009-03-03 14:37:50 -030031#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>
Hans Verkuil1d08a4f2012-09-17 07:31:04 -030038#include <media/v4l2-event.h>
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -020039#include <media/drv-intf/msp3400.h>
Sri Deevie0d3baf2009-03-03 14:37:50 -030040#include <media/tuner.h>
41
Mauro Carvalho Chehabfada1932017-12-28 13:03:51 -050042#include <media/dvb_frontend.h>
Sri Deevie0d3baf2009-03-03 14:37:50 -030043
Sri Deevie0d3baf2009-03-03 14:37:50 -030044#include "cx231xx-vbi.h"
45
Mauro Carvalho Chehab3d28cf32014-11-02 08:35:46 -030046#define CX231XX_VERSION "0.0.3"
Mauro Carvalho Chehab818fdf32009-03-13 07:41:58 -030047
Sri Deevie0d3baf2009-03-03 14:37:50 -030048#define DRIVER_AUTHOR "Srinivasa Deevi <srinivasa.deevi@conexant.com>"
49#define DRIVER_DESC "Conexant cx231xx based USB video device driver"
50
Sri Deevie0d3baf2009-03-03 14:37:50 -030051#define cx231xx_videodbg(fmt, arg...) do {\
52 if (video_debug) \
53 printk(KERN_INFO "%s %s :"fmt, \
54 dev->name, __func__ , ##arg); } while (0)
55
56static unsigned int isoc_debug;
57module_param(isoc_debug, int, 0644);
58MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
59
60#define cx231xx_isocdbg(fmt, arg...) \
61do {\
62 if (isoc_debug) { \
63 printk(KERN_INFO "%s %s :"fmt, \
64 dev->name, __func__ , ##arg); \
65 } \
66 } while (0)
67
68MODULE_AUTHOR(DRIVER_AUTHOR);
69MODULE_DESCRIPTION(DRIVER_DESC);
70MODULE_LICENSE("GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030071MODULE_VERSION(CX231XX_VERSION);
Sri Deevie0d3baf2009-03-03 14:37:50 -030072
Sri Deevie0d3baf2009-03-03 14:37:50 -030073static unsigned int card[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
74static unsigned int video_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
75static unsigned int vbi_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
76static unsigned int radio_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
77
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030078module_param_array(card, int, NULL, 0444);
Sri Deevie0d3baf2009-03-03 14:37:50 -030079module_param_array(video_nr, int, NULL, 0444);
80module_param_array(vbi_nr, int, NULL, 0444);
81module_param_array(radio_nr, int, NULL, 0444);
82
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030083MODULE_PARM_DESC(card, "card type");
Sri Deevie0d3baf2009-03-03 14:37:50 -030084MODULE_PARM_DESC(video_nr, "video device numbers");
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030085MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
Sri Deevie0d3baf2009-03-03 14:37:50 -030086MODULE_PARM_DESC(radio_nr, "radio device numbers");
87
88static unsigned int video_debug;
89module_param(video_debug, int, 0644);
90MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
91
Sri Deevie0d3baf2009-03-03 14:37:50 -030092/* supported video standards */
93static struct cx231xx_fmt format[] = {
94 {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030095 .name = "16bpp YUY2, 4:2:2, packed",
96 .fourcc = V4L2_PIX_FMT_YUYV,
97 .depth = 16,
98 .reg = 0,
99 },
Sri Deevie0d3baf2009-03-03 14:37:50 -0300100};
101
Sri Deevie0d3baf2009-03-03 14:37:50 -0300102
Mauro Carvalho Chehab3d263112015-02-18 12:22:27 -0300103static int cx231xx_enable_analog_tuner(struct cx231xx *dev)
104{
105#ifdef CONFIG_MEDIA_CONTROLLER
106 struct media_device *mdev = dev->media_dev;
107 struct media_entity *entity, *decoder = NULL, *source;
108 struct media_link *link, *found_link = NULL;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300109 int ret, active_links = 0;
Mauro Carvalho Chehab3d263112015-02-18 12:22:27 -0300110
111 if (!mdev)
112 return 0;
113
114 /*
115 * This will find the tuner that is connected into the decoder.
116 * Technically, this is not 100% correct, as the device may be
117 * using an analog input instead of the tuner. However, as we can't
118 * do DVB streaming while the DMA engine is being used for V4L2,
119 * this should be enough for the actual needs.
120 */
121 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200122 if (entity->function == MEDIA_ENT_F_ATV_DECODER) {
Mauro Carvalho Chehab3d263112015-02-18 12:22:27 -0300123 decoder = entity;
124 break;
125 }
126 }
127 if (!decoder)
128 return 0;
129
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300130 list_for_each_entry(link, &decoder->links, list) {
Mauro Carvalho Chehab3d263112015-02-18 12:22:27 -0300131 if (link->sink->entity == decoder) {
132 found_link = link;
133 if (link->flags & MEDIA_LNK_FL_ENABLED)
134 active_links++;
135 break;
136 }
137 }
138
139 if (active_links == 1 || !found_link)
140 return 0;
141
142 source = found_link->source->entity;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300143 list_for_each_entry(link, &source->links, list) {
Mauro Carvalho Chehab3d263112015-02-18 12:22:27 -0300144 struct media_entity *sink;
145 int flags = 0;
146
Mauro Carvalho Chehab3d263112015-02-18 12:22:27 -0300147 sink = link->sink->entity;
148
149 if (sink == entity)
150 flags = MEDIA_LNK_FL_ENABLED;
151
152 ret = media_entity_setup_link(link, flags);
153 if (ret) {
154 dev_err(dev->dev,
155 "Couldn't change link %s->%s to %s. Error %d\n",
156 source->name, sink->name,
157 flags ? "enabled" : "disabled",
158 ret);
159 return ret;
160 } else
161 dev_dbg(dev->dev,
162 "link %s->%s was %s\n",
163 source->name, sink->name,
164 flags ? "ENABLED" : "disabled");
165 }
166#endif
167 return 0;
168}
169
Sri Deevie0d3baf2009-03-03 14:37:50 -0300170/* ------------------------------------------------------------------
171 Video buffer and parser functions
172 ------------------------------------------------------------------*/
173
174/*
175 * Announces that a buffer were filled and request the next
176 */
177static inline void buffer_filled(struct cx231xx *dev,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300178 struct cx231xx_dmaqueue *dma_q,
179 struct cx231xx_buffer *buf)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300180{
181 /* Advice that buffer was filled */
182 cx231xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
183 buf->vb.state = VIDEOBUF_DONE;
184 buf->vb.field_count++;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300185 v4l2_get_timestamp(&buf->vb.ts);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300186
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300187 if (dev->USE_ISO)
188 dev->video_mode.isoc_ctl.buf = NULL;
189 else
190 dev->video_mode.bulk_ctl.buf = NULL;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300191
192 list_del(&buf->vb.queue);
193 wake_up(&buf->vb.done);
194}
195
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300196static inline void print_err_status(struct cx231xx *dev, int packet, int status)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300197{
198 char *errmsg = "Unknown";
199
200 switch (status) {
201 case -ENOENT:
Colin Ian Kingb436e262017-11-02 06:11:53 -0400202 errmsg = "unlinked synchronously";
Sri Deevie0d3baf2009-03-03 14:37:50 -0300203 break;
204 case -ECONNRESET:
Colin Ian Kingb436e262017-11-02 06:11:53 -0400205 errmsg = "unlinked asynchronously";
Sri Deevie0d3baf2009-03-03 14:37:50 -0300206 break;
207 case -ENOSR:
208 errmsg = "Buffer error (overrun)";
209 break;
210 case -EPIPE:
211 errmsg = "Stalled (device not responding)";
212 break;
213 case -EOVERFLOW:
214 errmsg = "Babble (bad cable?)";
215 break;
216 case -EPROTO:
217 errmsg = "Bit-stuff error (bad cable?)";
218 break;
219 case -EILSEQ:
220 errmsg = "CRC/Timeout (could be anything)";
221 break;
222 case -ETIME:
223 errmsg = "Device does not respond";
224 break;
225 }
226 if (packet < 0) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300227 cx231xx_isocdbg("URB status %d [%s].\n", status, errmsg);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300228 } else {
229 cx231xx_isocdbg("URB packet %d, status %d [%s].\n",
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300230 packet, status, errmsg);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300231 }
232}
233
234/*
235 * video-buf generic routine to get the next available buffer
236 */
237static inline void get_next_buf(struct cx231xx_dmaqueue *dma_q,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300238 struct cx231xx_buffer **buf)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300239{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300240 struct cx231xx_video_mode *vmode =
241 container_of(dma_q, struct cx231xx_video_mode, vidq);
242 struct cx231xx *dev = container_of(vmode, struct cx231xx, video_mode);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300243
244 char *outp;
245
Sri Deevie0d3baf2009-03-03 14:37:50 -0300246 if (list_empty(&dma_q->active)) {
247 cx231xx_isocdbg("No active queue to serve\n");
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300248 if (dev->USE_ISO)
249 dev->video_mode.isoc_ctl.buf = NULL;
250 else
251 dev->video_mode.bulk_ctl.buf = NULL;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300252 *buf = NULL;
253 return;
254 }
255
256 /* Get the next buffer */
257 *buf = list_entry(dma_q->active.next, struct cx231xx_buffer, vb.queue);
258
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300259 /* Cleans up buffer - Useful for testing for frame/URB loss */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300260 outp = videobuf_to_vmalloc(&(*buf)->vb);
261 memset(outp, 0, (*buf)->vb.size);
262
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300263 if (dev->USE_ISO)
264 dev->video_mode.isoc_ctl.buf = *buf;
265 else
266 dev->video_mode.bulk_ctl.buf = *buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300267
268 return;
269}
270
271/*
272 * Controls the isoc copy of each urb packet
273 */
274static inline int cx231xx_isoc_copy(struct cx231xx *dev, struct urb *urb)
275{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300276 struct cx231xx_dmaqueue *dma_q = urb->context;
Peter Senna Tschudin4df16f72014-05-31 13:30:52 -0300277 int i;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300278 unsigned char *p_buffer;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300279 u32 bytes_parsed = 0, buffer_size = 0;
280 u8 sav_eav = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300281
282 if (!dev)
283 return 0;
284
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200285 if (dev->state & DEV_DISCONNECTED)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300286 return 0;
287
288 if (urb->status < 0) {
289 print_err_status(dev, -1, urb->status);
290 if (urb->status == -ENOENT)
291 return 0;
292 }
293
Sri Deevie0d3baf2009-03-03 14:37:50 -0300294 for (i = 0; i < urb->number_of_packets; i++) {
295 int status = urb->iso_frame_desc[i].status;
296
297 if (status < 0) {
298 print_err_status(dev, i, status);
299 if (urb->iso_frame_desc[i].status != -EPROTO)
300 continue;
301 }
302
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300303 if (urb->iso_frame_desc[i].actual_length <= 0) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300304 /* cx231xx_isocdbg("packet %d is empty",i); - spammy */
305 continue;
306 }
307 if (urb->iso_frame_desc[i].actual_length >
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300308 dev->video_mode.max_pkt_size) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300309 cx231xx_isocdbg("packet bigger than packet size");
310 continue;
311 }
312
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300313 /* get buffer pointer and length */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300314 p_buffer = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300315 buffer_size = urb->iso_frame_desc[i].actual_length;
316 bytes_parsed = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300317
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300318 if (dma_q->is_partial_line) {
Sri Deevib9255172009-03-04 17:49:01 -0300319 /* Handle the case of a partial line */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300320 sav_eav = dma_q->last_sav;
321 } else {
Sri Deevib9255172009-03-04 17:49:01 -0300322 /* Check for a SAV/EAV overlapping
323 the buffer boundary */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300324 sav_eav =
325 cx231xx_find_boundary_SAV_EAV(p_buffer,
326 dma_q->partial_buf,
327 &bytes_parsed);
328 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300329
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300330 sav_eav &= 0xF0;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300331 /* Get the first line if we have some portion of an SAV/EAV from
332 the last buffer or a partial line */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300333 if (sav_eav) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300334 bytes_parsed += cx231xx_get_video_line(dev, dma_q,
Sri Deevib9255172009-03-04 17:49:01 -0300335 sav_eav, /* SAV/EAV */
336 p_buffer + bytes_parsed, /* p_buffer */
337 buffer_size - bytes_parsed);/* buf size */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300338 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300339
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300340 /* Now parse data that is completely in this buffer */
341 /* dma_q->is_partial_line = 0; */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300342
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300343 while (bytes_parsed < buffer_size) {
344 u32 bytes_used = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300345
Sri Deevib9255172009-03-04 17:49:01 -0300346 sav_eav = cx231xx_find_next_SAV_EAV(
347 p_buffer + bytes_parsed, /* p_buffer */
348 buffer_size - bytes_parsed, /* buf size */
349 &bytes_used);/* bytes used to get SAV/EAV */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300350
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300351 bytes_parsed += bytes_used;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300352
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300353 sav_eav &= 0xF0;
354 if (sav_eav && (bytes_parsed < buffer_size)) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300355 bytes_parsed += cx231xx_get_video_line(dev,
Sri Deevib9255172009-03-04 17:49:01 -0300356 dma_q, sav_eav, /* SAV/EAV */
357 p_buffer + bytes_parsed,/* p_buffer */
358 buffer_size - bytes_parsed);/*buf size*/
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300359 }
360 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300361
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300362 /* Save the last four bytes of the buffer so we can check the
363 buffer boundary condition next time */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300364 memcpy(dma_q->partial_buf, p_buffer + buffer_size - 4, 4);
365 bytes_parsed = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300366
367 }
Peter Senna Tschudin4df16f72014-05-31 13:30:52 -0300368 return 1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300369}
370
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300371static inline int cx231xx_bulk_copy(struct cx231xx *dev, struct urb *urb)
372{
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300373 struct cx231xx_dmaqueue *dma_q = urb->context;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300374 unsigned char *p_buffer;
375 u32 bytes_parsed = 0, buffer_size = 0;
376 u8 sav_eav = 0;
377
378 if (!dev)
379 return 0;
380
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200381 if (dev->state & DEV_DISCONNECTED)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300382 return 0;
383
384 if (urb->status < 0) {
385 print_err_status(dev, -1, urb->status);
386 if (urb->status == -ENOENT)
387 return 0;
388 }
389
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300390 if (1) {
391
392 /* get buffer pointer and length */
393 p_buffer = urb->transfer_buffer;
394 buffer_size = urb->actual_length;
395 bytes_parsed = 0;
396
397 if (dma_q->is_partial_line) {
398 /* Handle the case of a partial line */
399 sav_eav = dma_q->last_sav;
400 } else {
401 /* Check for a SAV/EAV overlapping
402 the buffer boundary */
403 sav_eav =
404 cx231xx_find_boundary_SAV_EAV(p_buffer,
405 dma_q->partial_buf,
406 &bytes_parsed);
407 }
408
409 sav_eav &= 0xF0;
410 /* Get the first line if we have some portion of an SAV/EAV from
411 the last buffer or a partial line */
412 if (sav_eav) {
413 bytes_parsed += cx231xx_get_video_line(dev, dma_q,
414 sav_eav, /* SAV/EAV */
415 p_buffer + bytes_parsed, /* p_buffer */
416 buffer_size - bytes_parsed);/* buf size */
417 }
418
419 /* Now parse data that is completely in this buffer */
420 /* dma_q->is_partial_line = 0; */
421
422 while (bytes_parsed < buffer_size) {
423 u32 bytes_used = 0;
424
425 sav_eav = cx231xx_find_next_SAV_EAV(
426 p_buffer + bytes_parsed, /* p_buffer */
427 buffer_size - bytes_parsed, /* buf size */
428 &bytes_used);/* bytes used to get SAV/EAV */
429
430 bytes_parsed += bytes_used;
431
432 sav_eav &= 0xF0;
433 if (sav_eav && (bytes_parsed < buffer_size)) {
434 bytes_parsed += cx231xx_get_video_line(dev,
435 dma_q, sav_eav, /* SAV/EAV */
436 p_buffer + bytes_parsed,/* p_buffer */
437 buffer_size - bytes_parsed);/*buf size*/
438 }
439 }
440
441 /* Save the last four bytes of the buffer so we can check the
442 buffer boundary condition next time */
443 memcpy(dma_q->partial_buf, p_buffer + buffer_size - 4, 4);
444 bytes_parsed = 0;
445
446 }
Peter Senna Tschudin4df16f72014-05-31 13:30:52 -0300447 return 1;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300448}
449
450
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300451u8 cx231xx_find_boundary_SAV_EAV(u8 *p_buffer, u8 *partial_buf,
452 u32 *p_bytes_used)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300453{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300454 u32 bytes_used;
455 u8 boundary_bytes[8];
456 u8 sav_eav = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300457
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300458 *p_bytes_used = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300459
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300460 /* Create an array of the last 4 bytes of the last buffer and the first
461 4 bytes of the current buffer. */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300462
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300463 memcpy(boundary_bytes, partial_buf, 4);
464 memcpy(boundary_bytes + 4, p_buffer, 4);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300465
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300466 /* Check for the SAV/EAV in the boundary buffer */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300467 sav_eav = cx231xx_find_next_SAV_EAV((u8 *)&boundary_bytes, 8,
468 &bytes_used);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300469
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300470 if (sav_eav) {
471 /* found a boundary SAV/EAV. Updates the bytes used to reflect
472 only those used in the new buffer */
473 *p_bytes_used = bytes_used - 4;
474 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300475
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300476 return sav_eav;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300477}
478
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300479u8 cx231xx_find_next_SAV_EAV(u8 *p_buffer, u32 buffer_size, u32 *p_bytes_used)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300480{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300481 u32 i;
482 u8 sav_eav = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300483
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300484 /*
485 * Don't search if the buffer size is less than 4. It causes a page
486 * fault since buffer_size - 4 evaluates to a large number in that
487 * case.
488 */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300489 if (buffer_size < 4) {
490 *p_bytes_used = buffer_size;
491 return 0;
492 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300493
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300494 for (i = 0; i < (buffer_size - 3); i++) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300495
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300496 if ((p_buffer[i] == 0xFF) &&
497 (p_buffer[i + 1] == 0x00) && (p_buffer[i + 2] == 0x00)) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300498
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300499 *p_bytes_used = i + 4;
500 sav_eav = p_buffer[i + 3];
501 return sav_eav;
502 }
503 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300504
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300505 *p_bytes_used = buffer_size;
506 return 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300507}
508
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300509u32 cx231xx_get_video_line(struct cx231xx *dev,
510 struct cx231xx_dmaqueue *dma_q, u8 sav_eav,
511 u8 *p_buffer, u32 buffer_size)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300512{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300513 u32 bytes_copied = 0;
514 int current_field = -1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300515
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300516 switch (sav_eav) {
517 case SAV_ACTIVE_VIDEO_FIELD1:
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300518 /* looking for skipped line which occurred in PAL 720x480 mode.
519 In this case, there will be no active data contained
520 between the SAV and EAV */
521 if ((buffer_size > 3) && (p_buffer[0] == 0xFF) &&
522 (p_buffer[1] == 0x00) && (p_buffer[2] == 0x00) &&
523 ((p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD1) ||
524 (p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD2) ||
525 (p_buffer[3] == EAV_VBLANK_FIELD1) ||
526 (p_buffer[3] == EAV_VBLANK_FIELD2)))
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300527 return bytes_copied;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300528 current_field = 1;
529 break;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300530
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300531 case SAV_ACTIVE_VIDEO_FIELD2:
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300532 /* looking for skipped line which occurred in PAL 720x480 mode.
533 In this case, there will be no active data contained between
534 the SAV and EAV */
535 if ((buffer_size > 3) && (p_buffer[0] == 0xFF) &&
536 (p_buffer[1] == 0x00) && (p_buffer[2] == 0x00) &&
537 ((p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD1) ||
538 (p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD2) ||
539 (p_buffer[3] == EAV_VBLANK_FIELD1) ||
540 (p_buffer[3] == EAV_VBLANK_FIELD2)))
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300541 return bytes_copied;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300542 current_field = 2;
543 break;
544 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300545
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300546 dma_q->last_sav = sav_eav;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300547
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300548 bytes_copied = cx231xx_copy_video_line(dev, dma_q, p_buffer,
549 buffer_size, current_field);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300550
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300551 return bytes_copied;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300552}
553
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300554u32 cx231xx_copy_video_line(struct cx231xx *dev,
555 struct cx231xx_dmaqueue *dma_q, u8 *p_line,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300556 u32 length, int field_number)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300557{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300558 u32 bytes_to_copy;
559 struct cx231xx_buffer *buf;
560 u32 _line_size = dev->width * 2;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300561
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300562 if (dma_q->current_field != field_number)
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300563 cx231xx_reset_video_buffer(dev, dma_q);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300564
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300565 /* get the buffer pointer */
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300566 if (dev->USE_ISO)
567 buf = dev->video_mode.isoc_ctl.buf;
568 else
569 buf = dev->video_mode.bulk_ctl.buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300570
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300571 /* Remember the field number for next time */
572 dma_q->current_field = field_number;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300573
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300574 bytes_to_copy = dma_q->bytes_left_in_line;
575 if (bytes_to_copy > length)
576 bytes_to_copy = length;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300577
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300578 if (dma_q->lines_completed >= dma_q->lines_per_field) {
579 dma_q->bytes_left_in_line -= bytes_to_copy;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300580 dma_q->is_partial_line = (dma_q->bytes_left_in_line == 0) ?
581 0 : 1;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300582 return 0;
583 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300584
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300585 dma_q->is_partial_line = 1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300586
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300587 /* If we don't have a buffer, just return the number of bytes we would
588 have copied if we had a buffer. */
589 if (!buf) {
590 dma_q->bytes_left_in_line -= bytes_to_copy;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300591 dma_q->is_partial_line = (dma_q->bytes_left_in_line == 0)
592 ? 0 : 1;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300593 return bytes_to_copy;
594 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300595
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300596 /* copy the data to video buffer */
597 cx231xx_do_copy(dev, dma_q, p_line, bytes_to_copy);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300598
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300599 dma_q->pos += bytes_to_copy;
600 dma_q->bytes_left_in_line -= bytes_to_copy;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300601
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300602 if (dma_q->bytes_left_in_line == 0) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300603 dma_q->bytes_left_in_line = _line_size;
604 dma_q->lines_completed++;
605 dma_q->is_partial_line = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300606
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300607 if (cx231xx_is_buffer_done(dev, dma_q) && buf) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300608 buffer_filled(dev, dma_q, buf);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300609
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300610 dma_q->pos = 0;
611 buf = NULL;
612 dma_q->lines_completed = 0;
613 }
614 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300615
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300616 return bytes_to_copy;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300617}
618
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300619void cx231xx_reset_video_buffer(struct cx231xx *dev,
620 struct cx231xx_dmaqueue *dma_q)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300621{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300622 struct cx231xx_buffer *buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300623
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300624 /* handle the switch from field 1 to field 2 */
625 if (dma_q->current_field == 1) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300626 if (dma_q->lines_completed >= dma_q->lines_per_field)
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300627 dma_q->field1_done = 1;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300628 else
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300629 dma_q->field1_done = 0;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300630 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300631
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300632 if (dev->USE_ISO)
633 buf = dev->video_mode.isoc_ctl.buf;
634 else
635 buf = dev->video_mode.bulk_ctl.buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300636
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300637 if (buf == NULL) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300638 /* first try to get the buffer */
639 get_next_buf(dma_q, &buf);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300640
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300641 dma_q->pos = 0;
642 dma_q->field1_done = 0;
643 dma_q->current_field = -1;
644 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300645
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300646 /* reset the counters */
647 dma_q->bytes_left_in_line = dev->width << 1;
648 dma_q->lines_completed = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300649}
650
651int cx231xx_do_copy(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300652 u8 *p_buffer, u32 bytes_to_copy)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300653{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300654 u8 *p_out_buffer = NULL;
655 u32 current_line_bytes_copied = 0;
656 struct cx231xx_buffer *buf;
657 u32 _line_size = dev->width << 1;
658 void *startwrite;
659 int offset, lencopy;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300660
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300661 if (dev->USE_ISO)
662 buf = dev->video_mode.isoc_ctl.buf;
663 else
664 buf = dev->video_mode.bulk_ctl.buf;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300665
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300666 if (buf == NULL)
667 return -1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300668
669 p_out_buffer = videobuf_to_vmalloc(&buf->vb);
670
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300671 current_line_bytes_copied = _line_size - dma_q->bytes_left_in_line;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300672
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300673 /* Offset field 2 one line from the top of the buffer */
674 offset = (dma_q->current_field == 1) ? 0 : _line_size;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300675
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300676 /* Offset for field 2 */
677 startwrite = p_out_buffer + offset;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300678
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300679 /* lines already completed in the current field */
680 startwrite += (dma_q->lines_completed * _line_size * 2);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300681
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300682 /* bytes already completed in the current line */
683 startwrite += current_line_bytes_copied;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300684
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300685 lencopy = dma_q->bytes_left_in_line > bytes_to_copy ?
686 bytes_to_copy : dma_q->bytes_left_in_line;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300687
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300688 if ((u8 *)(startwrite + lencopy) > (u8 *)(p_out_buffer + buf->vb.size))
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300689 return 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300690
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300691 /* The below copies the UYVY data straight into video buffer */
692 cx231xx_swab((u16 *) p_buffer, (u16 *) startwrite, (u16) lencopy);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300693
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300694 return 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300695}
696
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300697void cx231xx_swab(u16 *from, u16 *to, u16 len)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300698{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300699 u16 i;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300700
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300701 if (len <= 0)
702 return;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300703
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300704 for (i = 0; i < len / 2; i++)
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300705 to[i] = (from[i] << 8) | (from[i] >> 8);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300706}
707
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300708u8 cx231xx_is_buffer_done(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300709{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300710 u8 buffer_complete = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300711
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300712 /* Dual field stream */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300713 buffer_complete = ((dma_q->current_field == 2) &&
714 (dma_q->lines_completed >= dma_q->lines_per_field) &&
715 dma_q->field1_done);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300716
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300717 return buffer_complete;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300718}
719
Sri Deevie0d3baf2009-03-03 14:37:50 -0300720/* ------------------------------------------------------------------
721 Videobuf operations
722 ------------------------------------------------------------------*/
723
724static int
725buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
726{
727 struct cx231xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300728 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300729
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300730 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7)>>3;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300731 if (0 == *count)
732 *count = CX231XX_DEF_BUF;
733
734 if (*count < CX231XX_MIN_BUF)
735 *count = CX231XX_MIN_BUF;
736
Mauro Carvalho Chehab3d263112015-02-18 12:22:27 -0300737
738 cx231xx_enable_analog_tuner(dev);
739
Sri Deevie0d3baf2009-03-03 14:37:50 -0300740 return 0;
741}
742
743/* This is called *without* dev->slock held; please keep it that way */
744static void free_buffer(struct videobuf_queue *vq, struct cx231xx_buffer *buf)
745{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300746 struct cx231xx_fh *fh = vq->priv_data;
747 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300748 unsigned long flags = 0;
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300749
Mauro Carvalho Chehab09f20822015-05-19 08:00:56 -0300750 BUG_ON(in_interrupt());
Sri Deevie0d3baf2009-03-03 14:37:50 -0300751
752 /* We used to wait for the buffer to finish here, but this didn't work
753 because, as we were keeping the state as VIDEOBUF_QUEUED,
754 videobuf_queue_cancel marked it as finished for us.
755 (Also, it could wedge forever if the hardware was misconfigured.)
756
757 This should be safe; by the time we get here, the buffer isn't
758 queued anymore. If we ever start marking the buffers as
759 VIDEOBUF_ACTIVE, it won't be, though.
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300760 */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300761 spin_lock_irqsave(&dev->video_mode.slock, flags);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300762 if (dev->USE_ISO) {
763 if (dev->video_mode.isoc_ctl.buf == buf)
764 dev->video_mode.isoc_ctl.buf = NULL;
765 } else {
766 if (dev->video_mode.bulk_ctl.buf == buf)
767 dev->video_mode.bulk_ctl.buf = NULL;
768 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300769 spin_unlock_irqrestore(&dev->video_mode.slock, flags);
770
771 videobuf_vmalloc_free(&buf->vb);
772 buf->vb.state = VIDEOBUF_NEEDS_INIT;
773}
774
775static int
776buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300777 enum v4l2_field field)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300778{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300779 struct cx231xx_fh *fh = vq->priv_data;
780 struct cx231xx_buffer *buf =
781 container_of(vb, struct cx231xx_buffer, vb);
782 struct cx231xx *dev = fh->dev;
783 int rc = 0, urb_init = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300784
785 /* The only currently supported format is 16 bits/pixel */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300786 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth
787 + 7) >> 3;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300788 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300789 return -EINVAL;
790
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300791 buf->vb.width = dev->width;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300792 buf->vb.height = dev->height;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300793 buf->vb.field = field;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300794
795 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
796 rc = videobuf_iolock(vq, &buf->vb, NULL);
797 if (rc < 0)
798 goto fail;
799 }
800
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300801 if (dev->USE_ISO) {
802 if (!dev->video_mode.isoc_ctl.num_bufs)
803 urb_init = 1;
804 } else {
805 if (!dev->video_mode.bulk_ctl.num_bufs)
806 urb_init = 1;
807 }
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300808 dev_dbg(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300809 "urb_init=%d dev->video_mode.max_pkt_size=%d\n",
810 urb_init, dev->video_mode.max_pkt_size);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300811 if (urb_init) {
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300812 dev->mode_tv = 0;
813 if (dev->USE_ISO)
814 rc = cx231xx_init_isoc(dev, CX231XX_NUM_PACKETS,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300815 CX231XX_NUM_BUFS,
816 dev->video_mode.max_pkt_size,
817 cx231xx_isoc_copy);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300818 else
819 rc = cx231xx_init_bulk(dev, CX231XX_NUM_PACKETS,
820 CX231XX_NUM_BUFS,
821 dev->video_mode.max_pkt_size,
822 cx231xx_bulk_copy);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300823 if (rc < 0)
824 goto fail;
825 }
826
827 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab0f0fa902015-01-06 15:26:06 -0300828
Sri Deevie0d3baf2009-03-03 14:37:50 -0300829 return 0;
830
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300831fail:
Sri Deevie0d3baf2009-03-03 14:37:50 -0300832 free_buffer(vq, buf);
833 return rc;
834}
835
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300836static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300837{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300838 struct cx231xx_buffer *buf =
839 container_of(vb, struct cx231xx_buffer, vb);
840 struct cx231xx_fh *fh = vq->priv_data;
841 struct cx231xx *dev = fh->dev;
842 struct cx231xx_dmaqueue *vidq = &dev->video_mode.vidq;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300843
844 buf->vb.state = VIDEOBUF_QUEUED;
845 list_add_tail(&buf->vb.queue, &vidq->active);
846
847}
848
849static void buffer_release(struct videobuf_queue *vq,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300850 struct videobuf_buffer *vb)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300851{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300852 struct cx231xx_buffer *buf =
853 container_of(vb, struct cx231xx_buffer, vb);
854 struct cx231xx_fh *fh = vq->priv_data;
855 struct cx231xx *dev = (struct cx231xx *)fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300856
857 cx231xx_isocdbg("cx231xx: called buffer_release\n");
858
859 free_buffer(vq, buf);
860}
861
Julia Lawall177267a2017-08-04 08:09:46 -0400862static const struct videobuf_queue_ops cx231xx_video_qops = {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300863 .buf_setup = buffer_setup,
864 .buf_prepare = buffer_prepare,
865 .buf_queue = buffer_queue,
866 .buf_release = buffer_release,
Sri Deevie0d3baf2009-03-03 14:37:50 -0300867};
868
869/********************* v4l2 interface **************************************/
870
Sri Deevie0d3baf2009-03-03 14:37:50 -0300871void video_mux(struct cx231xx *dev, int index)
872{
Sri Deevie0d3baf2009-03-03 14:37:50 -0300873 dev->video_input = index;
874 dev->ctl_ainput = INPUT(index)->amux;
875
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300876 cx231xx_set_video_input_mux(dev, index);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300877
Hans Verkuil5325b422009-04-02 11:26:22 -0300878 cx25840_call(dev, video, s_routing, INPUT(index)->vmux, 0, 0);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300879
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300880 cx231xx_set_audio_input(dev, dev->ctl_ainput);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300881
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300882 dev_dbg(dev->dev, "video_mux : %d\n", index);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300883
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300884 /* do mode control overrides if required */
885 cx231xx_do_mode_ctrl_overrides(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300886}
887
888/* Usage lock check functions */
889static int res_get(struct cx231xx_fh *fh)
890{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300891 struct cx231xx *dev = fh->dev;
892 int rc = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300893
894 /* This instance already has stream_on */
895 if (fh->stream_on)
896 return rc;
897
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300898 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
899 if (dev->stream_on)
900 return -EBUSY;
901 dev->stream_on = 1;
902 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
903 if (dev->vbi_stream_on)
904 return -EBUSY;
905 dev->vbi_stream_on = 1;
906 } else
907 return -EINVAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300908
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300909 fh->stream_on = 1;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300910
911 return rc;
912}
913
914static int res_check(struct cx231xx_fh *fh)
915{
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300916 return fh->stream_on;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300917}
918
919static void res_free(struct cx231xx_fh *fh)
920{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300921 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300922
923 fh->stream_on = 0;
924
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300925 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
926 dev->stream_on = 0;
927 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
928 dev->vbi_stream_on = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300929}
930
931static int check_dev(struct cx231xx *dev)
932{
933 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300934 dev_err(dev->dev, "v4l2 ioctl: device not present\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300935 return -ENODEV;
936 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300937 return 0;
938}
939
Sri Deevie0d3baf2009-03-03 14:37:50 -0300940/* ------------------------------------------------------------------
941 IOCTL vidioc handling
942 ------------------------------------------------------------------*/
943
944static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300945 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300946{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300947 struct cx231xx_fh *fh = priv;
948 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300949
Sri Deevie0d3baf2009-03-03 14:37:50 -0300950 f->fmt.pix.width = dev->width;
951 f->fmt.pix.height = dev->height;
Joe Perches1ebcad72009-07-02 15:57:09 -0300952 f->fmt.pix.pixelformat = dev->format->fourcc;
953 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300954 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300955 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
956
957 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
958
Sri Deevie0d3baf2009-03-03 14:37:50 -0300959 return 0;
960}
961
962static struct cx231xx_fmt *format_by_fourcc(unsigned int fourcc)
963{
964 unsigned int i;
965
966 for (i = 0; i < ARRAY_SIZE(format); i++)
967 if (format[i].fourcc == fourcc)
968 return &format[i];
969
970 return NULL;
971}
972
973static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300974 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300975{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300976 struct cx231xx_fh *fh = priv;
977 struct cx231xx *dev = fh->dev;
Trent Piepho9bd0e8d2009-05-30 21:45:46 -0300978 unsigned int width = f->fmt.pix.width;
979 unsigned int height = f->fmt.pix.height;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300980 unsigned int maxw = norm_maxw(dev);
981 unsigned int maxh = norm_maxh(dev);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300982 struct cx231xx_fmt *fmt;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300983
984 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
985 if (!fmt) {
986 cx231xx_videodbg("Fourcc format (%08x) invalid.\n",
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300987 f->fmt.pix.pixelformat);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300988 return -EINVAL;
989 }
990
991 /* width must even because of the YUYV format
992 height must be even because of interlacing */
Trent Piepho9bd0e8d2009-05-30 21:45:46 -0300993 v4l_bound_align_image(&width, 48, maxw, 1, &height, 32, maxh, 1, 0);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300994
Sri Deevie0d3baf2009-03-03 14:37:50 -0300995 f->fmt.pix.width = width;
996 f->fmt.pix.height = height;
997 f->fmt.pix.pixelformat = fmt->fourcc;
Hans Verkuil8b735c12013-02-09 06:35:02 -0300998 f->fmt.pix.bytesperline = (width * fmt->depth + 7) >> 3;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300999 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
1000 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1001 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
1002
1003 return 0;
1004}
1005
1006static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001007 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001008{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001009 struct cx231xx_fh *fh = priv;
1010 struct cx231xx *dev = fh->dev;
1011 int rc;
1012 struct cx231xx_fmt *fmt;
Hans Verkuilebf984b2015-04-09 04:05:59 -03001013 struct v4l2_subdev_format format = {
1014 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1015 };
Sri Deevie0d3baf2009-03-03 14:37:50 -03001016
1017 rc = check_dev(dev);
1018 if (rc < 0)
1019 return rc;
1020
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001021 vidioc_try_fmt_vid_cap(file, priv, f);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001022
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001023 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001024 if (!fmt)
1025 return -EINVAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001026
1027 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001028 dev_err(dev->dev, "%s: queue busy\n", __func__);
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001029 return -EBUSY;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001030 }
1031
1032 if (dev->stream_on && !fh->stream_on) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001033 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03001034 "%s: device in use by another fh\n", __func__);
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001035 return -EBUSY;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001036 }
1037
1038 /* set new image size */
1039 dev->width = f->fmt.pix.width;
1040 dev->height = f->fmt.pix.height;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001041 dev->format = fmt;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001042
Hans Verkuilebf984b2015-04-09 04:05:59 -03001043 v4l2_fill_mbus_format(&format.format, &f->fmt.pix, MEDIA_BUS_FMT_FIXED);
1044 call_all(dev, pad, set_fmt, NULL, &format);
1045 v4l2_fill_pix_format(&f->fmt.pix, &format.format);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001046
Sri Deevie0d3baf2009-03-03 14:37:50 -03001047 return rc;
1048}
1049
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001050static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *id)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001051{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001052 struct cx231xx_fh *fh = priv;
1053 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001054
1055 *id = dev->norm;
1056 return 0;
1057}
1058
Hans Verkuil314527a2013-03-15 06:10:40 -03001059static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id norm)
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;
Hans Verkuilebf984b2015-04-09 04:05:59 -03001063 struct v4l2_subdev_format format = {
1064 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1065 };
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001066 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001067
1068 rc = check_dev(dev);
1069 if (rc < 0)
1070 return rc;
1071
Hans Verkuil314527a2013-03-15 06:10:40 -03001072 if (dev->norm == norm)
Hans Verkuild61072a2013-01-29 10:50:54 -03001073 return 0;
1074
1075 if (videobuf_queue_is_busy(&fh->vb_vidq))
1076 return -EBUSY;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001077
Hans Verkuil314527a2013-03-15 06:10:40 -03001078 dev->norm = norm;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001079
Sri Deevie0d3baf2009-03-03 14:37:50 -03001080 /* Adjusts width/height, if needed */
Hans Verkuild61072a2013-01-29 10:50:54 -03001081 dev->width = 720;
1082 dev->height = (dev->norm & V4L2_STD_625_50) ? 576 : 480;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001083
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001084 call_all(dev, video, s_std, dev->norm);
Devin Heitmueller435b4f72010-07-09 13:29:31 -03001085
1086 /* We need to reset basic properties in the decoder related to
1087 resolution (since a standard change effects things like the number
1088 of lines in VACT, etc) */
Hans Verkuilebf984b2015-04-09 04:05:59 -03001089 format.format.code = MEDIA_BUS_FMT_FIXED;
1090 format.format.width = dev->width;
1091 format.format.height = dev->height;
1092 call_all(dev, pad, set_fmt, NULL, &format);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001093
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001094 /* do mode control overrides */
1095 cx231xx_do_mode_ctrl_overrides(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001096
1097 return 0;
1098}
1099
1100static const char *iname[] = {
1101 [CX231XX_VMUX_COMPOSITE1] = "Composite1",
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001102 [CX231XX_VMUX_SVIDEO] = "S-Video",
Sri Deevie0d3baf2009-03-03 14:37:50 -03001103 [CX231XX_VMUX_TELEVISION] = "Television",
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001104 [CX231XX_VMUX_CABLE] = "Cable TV",
1105 [CX231XX_VMUX_DVB] = "DVB",
Sri Deevie0d3baf2009-03-03 14:37:50 -03001106};
1107
Mauro Carvalho Chehab61683092016-02-11 22:39:52 -02001108void cx231xx_v4l2_create_entities(struct cx231xx *dev)
1109{
1110#if defined(CONFIG_MEDIA_CONTROLLER)
1111 int ret, i;
1112
1113 /* Create entities for each input connector */
1114 for (i = 0; i < MAX_CX231XX_INPUT; i++) {
1115 struct media_entity *ent = &dev->input_ent[i];
1116
1117 if (!INPUT(i)->type)
1118 break;
1119
1120 ent->name = iname[INPUT(i)->type];
1121 ent->flags = MEDIA_ENT_FL_CONNECTOR;
1122 dev->input_pad[i].flags = MEDIA_PAD_FL_SOURCE;
1123
1124 switch (INPUT(i)->type) {
1125 case CX231XX_VMUX_COMPOSITE1:
1126 ent->function = MEDIA_ENT_F_CONN_COMPOSITE;
1127 break;
1128 case CX231XX_VMUX_SVIDEO:
1129 ent->function = MEDIA_ENT_F_CONN_SVIDEO;
1130 break;
1131 case CX231XX_VMUX_TELEVISION:
1132 case CX231XX_VMUX_CABLE:
1133 case CX231XX_VMUX_DVB:
1134 /* The DVB core will handle it */
1135 if (dev->tuner_type == TUNER_ABSENT)
1136 continue;
Mauro Carvalho Chehab06eeefe2017-05-18 08:13:28 -03001137 /* fall through */
Mauro Carvalho Chehab22d50e92016-02-12 09:17:14 -02001138 default: /* just to shut up a gcc warning */
Mauro Carvalho Chehab61683092016-02-11 22:39:52 -02001139 ent->function = MEDIA_ENT_F_CONN_RF;
1140 break;
1141 }
1142
1143 ret = media_entity_pads_init(ent, 1, &dev->input_pad[i]);
1144 if (ret < 0)
1145 pr_err("failed to initialize input pad[%d]!\n", i);
1146
1147 ret = media_device_register_entity(dev->media_dev, ent);
1148 if (ret < 0)
1149 pr_err("failed to register input entity %d!\n", i);
1150 }
1151#endif
1152}
1153
Hans Verkuilb86d1542013-01-29 13:16:06 -03001154int cx231xx_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001155 struct v4l2_input *i)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001156{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001157 struct cx231xx_fh *fh = priv;
1158 struct cx231xx *dev = fh->dev;
Devin Heitmuellerde99d532011-07-24 17:07:07 -03001159 u32 gen_stat;
Andrzej Hajdae54560d2015-09-24 11:00:18 -03001160 unsigned int n;
1161 int ret;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001162
1163 n = i->index;
1164 if (n >= MAX_CX231XX_INPUT)
1165 return -EINVAL;
1166 if (0 == INPUT(n)->type)
1167 return -EINVAL;
1168
1169 i->index = n;
1170 i->type = V4L2_INPUT_TYPE_CAMERA;
1171
Mauro Carvalho Chehabcc1e6312018-09-10 16:20:42 -04001172 strscpy(i->name, iname[INPUT(n)->type], sizeof(i->name));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001173
1174 if ((CX231XX_VMUX_TELEVISION == INPUT(n)->type) ||
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001175 (CX231XX_VMUX_CABLE == INPUT(n)->type))
Sri Deevie0d3baf2009-03-03 14:37:50 -03001176 i->type = V4L2_INPUT_TYPE_TUNER;
1177
Hans Verkuil60acf182015-03-09 13:34:13 -03001178 i->std = dev->vdev.tvnorms;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001179
Devin Heitmuellerde99d532011-07-24 17:07:07 -03001180 /* If they are asking about the active input, read signal status */
1181 if (n == dev->video_input) {
1182 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1183 GEN_STAT, 2, &gen_stat, 4);
1184 if (ret > 0) {
1185 if ((gen_stat & FLD_VPRES) == 0x00)
1186 i->status |= V4L2_IN_ST_NO_SIGNAL;
1187 if ((gen_stat & FLD_HLOCK) == 0x00)
1188 i->status |= V4L2_IN_ST_NO_H_LOCK;
1189 }
1190 }
1191
Sri Deevie0d3baf2009-03-03 14:37:50 -03001192 return 0;
1193}
1194
Hans Verkuilb86d1542013-01-29 13:16:06 -03001195int cx231xx_g_input(struct file *file, void *priv, unsigned int *i)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001196{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001197 struct cx231xx_fh *fh = priv;
1198 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001199
1200 *i = dev->video_input;
1201
1202 return 0;
1203}
1204
Hans Verkuilb86d1542013-01-29 13:16:06 -03001205int cx231xx_s_input(struct file *file, void *priv, unsigned int i)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001206{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001207 struct cx231xx_fh *fh = priv;
1208 struct cx231xx *dev = fh->dev;
1209 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001210
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001211 dev->mode_tv = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001212 rc = check_dev(dev);
1213 if (rc < 0)
1214 return rc;
1215
1216 if (i >= MAX_CX231XX_INPUT)
1217 return -EINVAL;
1218 if (0 == INPUT(i)->type)
1219 return -EINVAL;
1220
Sri Deevie0d3baf2009-03-03 14:37:50 -03001221 video_mux(dev, i);
1222
Devin Heitmuellerc09d6692010-07-12 16:50:30 -03001223 if (INPUT(i)->type == CX231XX_VMUX_TELEVISION ||
1224 INPUT(i)->type == CX231XX_VMUX_CABLE) {
1225 /* There's a tuner, so reset the standard and put it on the
1226 last known frequency (since it was probably powered down
1227 until now */
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001228 call_all(dev, video, s_std, dev->norm);
Devin Heitmuellerc09d6692010-07-12 16:50:30 -03001229 }
1230
Sri Deevie0d3baf2009-03-03 14:37:50 -03001231 return 0;
1232}
1233
Hans Verkuilb86d1542013-01-29 13:16:06 -03001234int cx231xx_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001235{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001236 struct cx231xx_fh *fh = priv;
1237 struct cx231xx *dev = fh->dev;
1238 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001239
1240 rc = check_dev(dev);
1241 if (rc < 0)
1242 return rc;
1243
1244 if (0 != t->index)
1245 return -EINVAL;
1246
Mauro Carvalho Chehabcc1e6312018-09-10 16:20:42 -04001247 strscpy(t->name, "Tuner", sizeof(t->name));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001248
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001249 t->type = V4L2_TUNER_ANALOG_TV;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001250 t->capability = V4L2_TUNER_CAP_NORM;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001251 t->rangehigh = 0xffffffffUL;
1252 t->signal = 0xffff; /* LOCKED */
Hans Verkuilb251f952012-09-13 12:54:36 -03001253 call_all(dev, tuner, g_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001254
1255 return 0;
1256}
1257
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001258int cx231xx_s_tuner(struct file *file, void *priv, const struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001259{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001260 struct cx231xx_fh *fh = priv;
1261 struct cx231xx *dev = fh->dev;
1262 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001263
1264 rc = check_dev(dev);
1265 if (rc < 0)
1266 return rc;
1267
1268 if (0 != t->index)
1269 return -EINVAL;
1270#if 0
Sri Deevib1196122009-03-20 23:33:48 -03001271 call_all(dev, tuner, s_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001272#endif
1273 return 0;
1274}
1275
Hans Verkuilb86d1542013-01-29 13:16:06 -03001276int cx231xx_g_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001277 struct v4l2_frequency *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001278{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001279 struct cx231xx_fh *fh = priv;
1280 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001281
Hans Verkuilb251f952012-09-13 12:54:36 -03001282 if (f->tuner)
1283 return -EINVAL;
1284
Sri Deevie0d3baf2009-03-03 14:37:50 -03001285 f->frequency = dev->ctl_freq;
1286
Sri Deevie0d3baf2009-03-03 14:37:50 -03001287 return 0;
1288}
1289
Hans Verkuilb86d1542013-01-29 13:16:06 -03001290int cx231xx_s_frequency(struct file *file, void *priv,
Hans Verkuilb530a442013-03-19 04:09:26 -03001291 const struct v4l2_frequency *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001292{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001293 struct cx231xx_fh *fh = priv;
1294 struct cx231xx *dev = fh->dev;
Hans Verkuilb530a442013-03-19 04:09:26 -03001295 struct v4l2_frequency new_freq = *f;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001296 int rc;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001297 u32 if_frequency = 5400000;
1298
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001299 dev_dbg(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03001300 "Enter vidioc_s_frequency()f->frequency=%d;f->type=%d\n",
1301 f->frequency, f->type);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001302
1303 rc = check_dev(dev);
1304 if (rc < 0)
1305 return rc;
1306
1307 if (0 != f->tuner)
1308 return -EINVAL;
1309
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001310 /* set pre channel change settings in DIF first */
1311 rc = cx231xx_tuner_pre_channel_change(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001312
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001313 call_all(dev, tuner, s_frequency, f);
Hans Verkuilb530a442013-03-19 04:09:26 -03001314 call_all(dev, tuner, g_frequency, &new_freq);
1315 dev->ctl_freq = new_freq.frequency;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001316
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001317 /* set post channel change settings in DIF first */
1318 rc = cx231xx_tuner_post_channel_change(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001319
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001320 if (dev->tuner_type == TUNER_NXP_TDA18271) {
1321 if (dev->norm & (V4L2_STD_MN | V4L2_STD_NTSC_443))
1322 if_frequency = 5400000; /*5.4MHz */
1323 else if (dev->norm & V4L2_STD_B)
1324 if_frequency = 6000000; /*6.0MHz */
1325 else if (dev->norm & (V4L2_STD_PAL_DK | V4L2_STD_SECAM_DK))
1326 if_frequency = 6900000; /*6.9MHz */
1327 else if (dev->norm & V4L2_STD_GH)
1328 if_frequency = 7100000; /*7.1MHz */
1329 else if (dev->norm & V4L2_STD_PAL_I)
1330 if_frequency = 7250000; /*7.25MHz */
1331 else if (dev->norm & V4L2_STD_SECAM_L)
1332 if_frequency = 6900000; /*6.9MHz */
1333 else if (dev->norm & V4L2_STD_SECAM_LC)
1334 if_frequency = 1250000; /*1.25MHz */
1335
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001336 dev_dbg(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03001337 "if_frequency is set to %d\n", if_frequency);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001338 cx231xx_set_Colibri_For_LowIF(dev, if_frequency, 1, 1);
1339
1340 update_HH_register_after_set_DIF(dev);
1341 }
1342
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001343 dev_dbg(dev->dev, "Set New FREQUENCY to %d\n", f->frequency);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001344
1345 return rc;
1346}
1347
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001348#ifdef CONFIG_VIDEO_ADV_DEBUG
1349
1350int cx231xx_g_chip_info(struct file *file, void *fh,
1351 struct v4l2_dbg_chip_info *chip)
Hans Verkuilfddd14c2012-09-13 05:37:11 -03001352{
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001353 switch (chip->match.addr) {
1354 case 0: /* Cx231xx - internal registers */
1355 return 0;
1356 case 1: /* AFE - read byte */
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001357 strscpy(chip->name, "AFE (byte)", sizeof(chip->name));
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001358 return 0;
1359 case 2: /* Video Block - read byte */
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001360 strscpy(chip->name, "Video (byte)", sizeof(chip->name));
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001361 return 0;
1362 case 3: /* I2S block - read byte */
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001363 strscpy(chip->name, "I2S (byte)", sizeof(chip->name));
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001364 return 0;
1365 case 4: /* AFE - read dword */
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001366 strscpy(chip->name, "AFE (dword)", sizeof(chip->name));
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001367 return 0;
1368 case 5: /* Video Block - read dword */
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001369 strscpy(chip->name, "Video (dword)", sizeof(chip->name));
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001370 return 0;
1371 case 6: /* I2S Block - read dword */
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001372 strscpy(chip->name, "I2S (dword)", sizeof(chip->name));
Hans Verkuilfddd14c2012-09-13 05:37:11 -03001373 return 0;
1374 }
1375 return -EINVAL;
1376}
1377
Hans Verkuilb86d1542013-01-29 13:16:06 -03001378int cx231xx_g_register(struct file *file, void *priv,
Sri Deevie0d3baf2009-03-03 14:37:50 -03001379 struct v4l2_dbg_register *reg)
1380{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001381 struct cx231xx_fh *fh = priv;
1382 struct cx231xx *dev = fh->dev;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001383 int ret;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001384 u8 value[4] = { 0, 0, 0, 0 };
1385 u32 data = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001386
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001387 switch (reg->match.addr) {
1388 case 0: /* Cx231xx - internal registers */
1389 ret = cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER,
1390 (u16)reg->reg, value, 4);
1391 reg->val = value[0] | value[1] << 8 |
Colin Ian King32ae5922018-10-06 14:01:42 -04001392 value[2] << 16 | (u32)value[3] << 24;
Hans Verkuil04ae4cf2013-05-29 07:00:04 -03001393 reg->size = 4;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001394 break;
1395 case 1: /* AFE - read byte */
1396 ret = cx231xx_read_i2c_data(dev, AFE_DEVICE_ADDRESS,
1397 (u16)reg->reg, 2, &data, 1);
1398 reg->val = data;
Hans Verkuil04ae4cf2013-05-29 07:00:04 -03001399 reg->size = 1;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001400 break;
1401 case 2: /* Video Block - read byte */
1402 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1403 (u16)reg->reg, 2, &data, 1);
1404 reg->val = data;
Hans Verkuil04ae4cf2013-05-29 07:00:04 -03001405 reg->size = 1;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001406 break;
1407 case 3: /* I2S block - read byte */
1408 ret = cx231xx_read_i2c_data(dev, I2S_BLK_DEVICE_ADDRESS,
1409 (u16)reg->reg, 1, &data, 1);
1410 reg->val = data;
Hans Verkuil04ae4cf2013-05-29 07:00:04 -03001411 reg->size = 1;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001412 break;
1413 case 4: /* AFE - read dword */
1414 ret = cx231xx_read_i2c_data(dev, AFE_DEVICE_ADDRESS,
1415 (u16)reg->reg, 2, &data, 4);
1416 reg->val = data;
Hans Verkuil04ae4cf2013-05-29 07:00:04 -03001417 reg->size = 4;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001418 break;
1419 case 5: /* Video Block - read dword */
1420 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1421 (u16)reg->reg, 2, &data, 4);
1422 reg->val = data;
Hans Verkuil04ae4cf2013-05-29 07:00:04 -03001423 reg->size = 4;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001424 break;
1425 case 6: /* I2S Block - read dword */
1426 ret = cx231xx_read_i2c_data(dev, I2S_BLK_DEVICE_ADDRESS,
1427 (u16)reg->reg, 1, &data, 4);
1428 reg->val = data;
Hans Verkuil04ae4cf2013-05-29 07:00:04 -03001429 reg->size = 4;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001430 break;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001431 default:
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001432 return -EINVAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001433 }
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001434 return ret < 0 ? ret : 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001435}
1436
Hans Verkuilb86d1542013-01-29 13:16:06 -03001437int cx231xx_s_register(struct file *file, void *priv,
Hans Verkuil977ba3b12013-03-24 08:28:46 -03001438 const struct v4l2_dbg_register *reg)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001439{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001440 struct cx231xx_fh *fh = priv;
1441 struct cx231xx *dev = fh->dev;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001442 int ret;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001443 u8 data[4] = { 0, 0, 0, 0 };
Sri Deevie0d3baf2009-03-03 14:37:50 -03001444
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001445 switch (reg->match.addr) {
1446 case 0: /* cx231xx internal registers */
1447 data[0] = (u8) reg->val;
1448 data[1] = (u8) (reg->val >> 8);
1449 data[2] = (u8) (reg->val >> 16);
1450 data[3] = (u8) (reg->val >> 24);
1451 ret = cx231xx_write_ctrl_reg(dev, VRT_SET_REGISTER,
1452 (u16)reg->reg, data, 4);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001453 break;
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001454 case 1: /* AFE - write byte */
1455 ret = cx231xx_write_i2c_data(dev, AFE_DEVICE_ADDRESS,
1456 (u16)reg->reg, 2, reg->val, 1);
1457 break;
1458 case 2: /* Video Block - write byte */
1459 ret = cx231xx_write_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1460 (u16)reg->reg, 2, reg->val, 1);
1461 break;
1462 case 3: /* I2S block - write byte */
1463 ret = cx231xx_write_i2c_data(dev, I2S_BLK_DEVICE_ADDRESS,
1464 (u16)reg->reg, 1, reg->val, 1);
1465 break;
1466 case 4: /* AFE - write dword */
1467 ret = cx231xx_write_i2c_data(dev, AFE_DEVICE_ADDRESS,
1468 (u16)reg->reg, 2, reg->val, 4);
1469 break;
1470 case 5: /* Video Block - write dword */
1471 ret = cx231xx_write_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1472 (u16)reg->reg, 2, reg->val, 4);
1473 break;
1474 case 6: /* I2S block - write dword */
1475 ret = cx231xx_write_i2c_data(dev, I2S_BLK_DEVICE_ADDRESS,
1476 (u16)reg->reg, 1, reg->val, 4);
1477 break;
1478 default:
1479 return -EINVAL;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001480 }
Hans Verkuil08fe9f72013-05-29 06:59:43 -03001481 return ret < 0 ? ret : 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001482}
1483#endif
1484
Sri Deevie0d3baf2009-03-03 14:37:50 -03001485static int vidioc_cropcap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001486 struct v4l2_cropcap *cc)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001487{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001488 struct cx231xx_fh *fh = priv;
1489 struct cx231xx *dev = fh->dev;
Hans Verkuile25cb202015-11-30 10:03:30 -02001490 bool is_50hz = dev->norm & V4L2_STD_625_50;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001491
1492 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1493 return -EINVAL;
1494
1495 cc->bounds.left = 0;
1496 cc->bounds.top = 0;
1497 cc->bounds.width = dev->width;
1498 cc->bounds.height = dev->height;
1499 cc->defrect = cc->bounds;
Hans Verkuile25cb202015-11-30 10:03:30 -02001500 cc->pixelaspect.numerator = is_50hz ? 54 : 11;
1501 cc->pixelaspect.denominator = is_50hz ? 59 : 10;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001502
1503 return 0;
1504}
1505
1506static int vidioc_streamon(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001507 enum v4l2_buf_type type)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001508{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001509 struct cx231xx_fh *fh = priv;
1510 struct cx231xx *dev = fh->dev;
1511 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001512
1513 rc = check_dev(dev);
1514 if (rc < 0)
1515 return rc;
1516
Sri Deevie0d3baf2009-03-03 14:37:50 -03001517 rc = res_get(fh);
1518
1519 if (likely(rc >= 0))
1520 rc = videobuf_streamon(&fh->vb_vidq);
1521
Sri Deevib1196122009-03-20 23:33:48 -03001522 call_all(dev, video, s_stream, 1);
1523
Sri Deevie0d3baf2009-03-03 14:37:50 -03001524 return rc;
1525}
1526
1527static int vidioc_streamoff(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001528 enum v4l2_buf_type type)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001529{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001530 struct cx231xx_fh *fh = priv;
1531 struct cx231xx *dev = fh->dev;
1532 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001533
1534 rc = check_dev(dev);
1535 if (rc < 0)
1536 return rc;
1537
Sri Deevie0d3baf2009-03-03 14:37:50 -03001538 if (type != fh->type)
1539 return -EINVAL;
1540
Sri Deevib1196122009-03-20 23:33:48 -03001541 cx25840_call(dev, video, s_stream, 0);
1542
Sri Deevie0d3baf2009-03-03 14:37:50 -03001543 videobuf_streamoff(&fh->vb_vidq);
1544 res_free(fh);
1545
Sri Deevie0d3baf2009-03-03 14:37:50 -03001546 return 0;
1547}
1548
Hans Verkuilbc087342013-01-29 12:52:33 -03001549int cx231xx_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001550 struct v4l2_capability *cap)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001551{
Hans Verkuil4bc837d2012-09-13 05:29:12 -03001552 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001553 struct cx231xx_fh *fh = priv;
1554 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001555
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001556 strscpy(cap->driver, "cx231xx", sizeof(cap->driver));
1557 strscpy(cap->card, cx231xx_boards[dev->model].name, sizeof(cap->card));
Mauro Carvalho Chehab2c6beca2009-03-22 08:53:36 -03001558 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001559
Hans Verkuil530e01e2013-01-29 12:32:20 -03001560 if (vdev->vfl_type == VFL_TYPE_RADIO)
1561 cap->device_caps = V4L2_CAP_RADIO;
1562 else {
Hans Verkuil06c46002012-09-13 06:17:47 -03001563 cap->device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
Hans Verkuil530e01e2013-01-29 12:32:20 -03001564 if (vdev->vfl_type == VFL_TYPE_VBI)
1565 cap->device_caps |= V4L2_CAP_VBI_CAPTURE;
1566 else
1567 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE;
1568 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03001569 if (dev->tuner_type != TUNER_ABSENT)
Hans Verkuil4bc837d2012-09-13 05:29:12 -03001570 cap->device_caps |= V4L2_CAP_TUNER;
Hans Verkuil06c46002012-09-13 06:17:47 -03001571 cap->capabilities = cap->device_caps | V4L2_CAP_READWRITE |
Hans Verkuil4bc837d2012-09-13 05:29:12 -03001572 V4L2_CAP_VBI_CAPTURE | V4L2_CAP_VIDEO_CAPTURE |
Hans Verkuil530e01e2013-01-29 12:32:20 -03001573 V4L2_CAP_STREAMING | V4L2_CAP_DEVICE_CAPS;
Hans Verkuil60acf182015-03-09 13:34:13 -03001574 if (video_is_registered(&dev->radio_dev))
Hans Verkuil530e01e2013-01-29 12:32:20 -03001575 cap->capabilities |= V4L2_CAP_RADIO;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001576
1577 return 0;
1578}
1579
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001580static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
1581 struct v4l2_fmtdesc *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001582{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001583 if (unlikely(f->index >= ARRAY_SIZE(format)))
Sri Deevie0d3baf2009-03-03 14:37:50 -03001584 return -EINVAL;
1585
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001586 strscpy(f->description, format[f->index].name, sizeof(f->description));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001587 f->pixelformat = format[f->index].fourcc;
1588
1589 return 0;
1590}
1591
Sri Deevie0d3baf2009-03-03 14:37:50 -03001592/* RAW VBI ioctls */
1593
1594static int vidioc_g_fmt_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001595 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001596{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001597 struct cx231xx_fh *fh = priv;
1598 struct cx231xx *dev = fh->dev;
Hans Verkuil62647222013-02-09 06:41:11 -03001599
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001600 f->fmt.vbi.sampling_rate = 6750000 * 4;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001601 f->fmt.vbi.samples_per_line = VBI_LINE_LENGTH;
1602 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001603 f->fmt.vbi.offset = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001604 f->fmt.vbi.start[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001605 PAL_VBI_START_LINE : NTSC_VBI_START_LINE;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001606 f->fmt.vbi.count[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001607 PAL_VBI_LINES : NTSC_VBI_LINES;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001608 f->fmt.vbi.start[1] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001609 PAL_VBI_START_LINE + 312 : NTSC_VBI_START_LINE + 263;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001610 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
Hans Verkuil62647222013-02-09 06:41:11 -03001611 memset(f->fmt.vbi.reserved, 0, sizeof(f->fmt.vbi.reserved));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001612
1613 return 0;
1614
1615}
1616
1617static int vidioc_try_fmt_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001618 struct v4l2_format *f)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001619{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001620 struct cx231xx_fh *fh = priv;
1621 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001622
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001623 f->fmt.vbi.sampling_rate = 6750000 * 4;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001624 f->fmt.vbi.samples_per_line = VBI_LINE_LENGTH;
1625 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
Devin Heitmuelleradc03562010-07-08 13:12:47 -03001626 f->fmt.vbi.offset = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001627 f->fmt.vbi.flags = 0;
1628 f->fmt.vbi.start[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001629 PAL_VBI_START_LINE : NTSC_VBI_START_LINE;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001630 f->fmt.vbi.count[0] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001631 PAL_VBI_LINES : NTSC_VBI_LINES;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001632 f->fmt.vbi.start[1] = (dev->norm & V4L2_STD_625_50) ?
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001633 PAL_VBI_START_LINE + 312 : NTSC_VBI_START_LINE + 263;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001634 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
Hans Verkuil62647222013-02-09 06:41:11 -03001635 memset(f->fmt.vbi.reserved, 0, sizeof(f->fmt.vbi.reserved));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001636
1637 return 0;
1638
1639}
1640
Hans Verkuil62647222013-02-09 06:41:11 -03001641static int vidioc_s_fmt_vbi_cap(struct file *file, void *priv,
1642 struct v4l2_format *f)
1643{
1644 struct cx231xx_fh *fh = priv;
1645 struct cx231xx *dev = fh->dev;
1646
1647 if (dev->vbi_stream_on && !fh->stream_on) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001648 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03001649 "%s device in use by another fh\n", __func__);
Hans Verkuil62647222013-02-09 06:41:11 -03001650 return -EBUSY;
1651 }
1652 return vidioc_try_fmt_vbi_cap(file, priv, f);
1653}
1654
Sri Deevie0d3baf2009-03-03 14:37:50 -03001655static int vidioc_reqbufs(struct file *file, void *priv,
1656 struct v4l2_requestbuffers *rb)
1657{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001658 struct cx231xx_fh *fh = priv;
1659 struct cx231xx *dev = fh->dev;
1660 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001661
1662 rc = check_dev(dev);
1663 if (rc < 0)
1664 return rc;
1665
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001666 return videobuf_reqbufs(&fh->vb_vidq, rb);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001667}
1668
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001669static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *b)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001670{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001671 struct cx231xx_fh *fh = priv;
1672 struct cx231xx *dev = fh->dev;
1673 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001674
1675 rc = check_dev(dev);
1676 if (rc < 0)
1677 return rc;
1678
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001679 return videobuf_querybuf(&fh->vb_vidq, b);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001680}
1681
1682static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1683{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001684 struct cx231xx_fh *fh = priv;
1685 struct cx231xx *dev = fh->dev;
1686 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001687
1688 rc = check_dev(dev);
1689 if (rc < 0)
1690 return rc;
1691
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001692 return videobuf_qbuf(&fh->vb_vidq, b);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001693}
1694
1695static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1696{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001697 struct cx231xx_fh *fh = priv;
1698 struct cx231xx *dev = fh->dev;
1699 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001700
1701 rc = check_dev(dev);
1702 if (rc < 0)
1703 return rc;
1704
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001705 return videobuf_dqbuf(&fh->vb_vidq, b, file->f_flags & O_NONBLOCK);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001706}
1707
Sri Deevie0d3baf2009-03-03 14:37:50 -03001708/* ----------------------------------------------------------- */
1709/* RADIO ESPECIFIC IOCTLS */
1710/* ----------------------------------------------------------- */
1711
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001712static int radio_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001713{
1714 struct cx231xx *dev = ((struct cx231xx_fh *)priv)->dev;
1715
Hans Verkuil530e01e2013-01-29 12:32:20 -03001716 if (t->index)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001717 return -EINVAL;
1718
Mauro Carvalho Chehabcc1e6312018-09-10 16:20:42 -04001719 strscpy(t->name, "Radio", sizeof(t->name));
Sri Deevie0d3baf2009-03-03 14:37:50 -03001720
Hans Verkuil530e01e2013-01-29 12:32:20 -03001721 call_all(dev, tuner, g_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001722
1723 return 0;
1724}
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001725static int radio_s_tuner(struct file *file, void *priv, const struct v4l2_tuner *t)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001726{
1727 struct cx231xx *dev = ((struct cx231xx_fh *)priv)->dev;
1728
Hans Verkuilb86d1542013-01-29 13:16:06 -03001729 if (t->index)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001730 return -EINVAL;
1731
Sri Deevib1196122009-03-20 23:33:48 -03001732 call_all(dev, tuner, s_tuner, t);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001733
1734 return 0;
1735}
1736
Sri Deevie0d3baf2009-03-03 14:37:50 -03001737/*
1738 * cx231xx_v4l2_open()
1739 * inits the device and starts isoc transfer
1740 */
1741static int cx231xx_v4l2_open(struct file *filp)
1742{
Peter Senna Tschudin4df16f72014-05-31 13:30:52 -03001743 int radio = 0;
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001744 struct video_device *vdev = video_devdata(filp);
1745 struct cx231xx *dev = video_drvdata(filp);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001746 struct cx231xx_fh *fh;
1747 enum v4l2_buf_type fh_type = 0;
1748
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001749 switch (vdev->vfl_type) {
1750 case VFL_TYPE_GRABBER:
1751 fh_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1752 break;
1753 case VFL_TYPE_VBI:
1754 fh_type = V4L2_BUF_TYPE_VBI_CAPTURE;
1755 break;
1756 case VFL_TYPE_RADIO:
1757 radio = 1;
1758 break;
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -04001759 default:
1760 return -EINVAL;
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001761 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03001762
Laurent Pinchart50462eb2009-12-10 11:47:13 -02001763 cx231xx_videodbg("open dev=%s type=%s users=%d\n",
1764 video_device_node_name(vdev), v4l2_type_names[fh_type],
1765 dev->users);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001766
1767#if 0
1768 errCode = cx231xx_set_mode(dev, CX231XX_ANALOG_MODE);
1769 if (errCode < 0) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001770 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03001771 "Device locked on digital mode. Can't open analog\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -03001772 return -EBUSY;
1773 }
1774#endif
1775
1776 fh = kzalloc(sizeof(struct cx231xx_fh), GFP_KERNEL);
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03001777 if (!fh)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001778 return -ENOMEM;
Hans Verkuil1f7e0732012-06-24 06:43:02 -03001779 if (mutex_lock_interruptible(&dev->lock)) {
1780 kfree(fh);
1781 return -ERESTARTSYS;
1782 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03001783 fh->dev = dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001784 fh->type = fh_type;
1785 filp->private_data = fh;
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03001786 v4l2_fh_init(&fh->fh, vdev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001787
1788 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001789 /* Power up in Analog TV mode */
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03001790 if (dev->board.external_av)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001791 cx231xx_set_power_mode(dev,
1792 POLARIS_AVMODE_ENXTERNAL_AV);
1793 else
1794 cx231xx_set_power_mode(dev, POLARIS_AVMODE_ANALOGT_TV);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001795
1796#if 0
1797 cx231xx_set_mode(dev, CX231XX_ANALOG_MODE);
1798#endif
Sri Deevie0d3baf2009-03-03 14:37:50 -03001799
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001800 /* set video alternate setting */
1801 cx231xx_set_video_alternate(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001802
1803 /* Needed, since GPIO might have disabled power of
1804 some i2c device */
1805 cx231xx_config_i2c(dev);
1806
1807 /* device needs to be initialized before isoc transfer */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001808 dev->video_input = dev->video_input > 2 ? 2 : dev->video_input;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001809
1810 }
Hans Verkuil71590762013-01-28 12:57:47 -03001811 if (radio) {
Sri Deevie0d3baf2009-03-03 14:37:50 -03001812 cx231xx_videodbg("video_open: setting radio device\n");
1813
1814 /* cx231xx_start_radio(dev); */
1815
Sri Deevib1196122009-03-20 23:33:48 -03001816 call_all(dev, tuner, s_radio);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001817 }
1818
1819 dev->users++;
1820
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001821 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1822 videobuf_queue_vmalloc_init(&fh->vb_vidq, &cx231xx_video_qops,
1823 NULL, &dev->video_mode.slock,
1824 fh->type, V4L2_FIELD_INTERLACED,
Hans Verkuil08bff032010-09-20 17:39:46 -03001825 sizeof(struct cx231xx_buffer),
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001826 fh, &dev->lock);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001827 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001828 /* Set the required alternate setting VBI interface works in
1829 Bulk mode only */
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03001830 cx231xx_set_alt_setting(dev, INDEX_VANC, 0);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001831
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001832 videobuf_queue_vmalloc_init(&fh->vb_vidq, &cx231xx_vbi_qops,
1833 NULL, &dev->vbi_mode.slock,
1834 fh->type, V4L2_FIELD_SEQ_TB,
Hans Verkuil08bff032010-09-20 17:39:46 -03001835 sizeof(struct cx231xx_buffer),
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03001836 fh, &dev->lock);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001837 }
Hans Verkuil1f7e0732012-06-24 06:43:02 -03001838 mutex_unlock(&dev->lock);
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03001839 v4l2_fh_add(&fh->fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001840
Peter Senna Tschudin4df16f72014-05-31 13:30:52 -03001841 return 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001842}
1843
1844/*
1845 * cx231xx_realease_resources()
1846 * unregisters the v4l2,i2c and usb devices
1847 * called when the device gets disconected or at module unload
1848*/
1849void cx231xx_release_analog_resources(struct cx231xx *dev)
1850{
1851
1852 /*FIXME: I2C IR should be disconnected */
1853
Hans Verkuil60acf182015-03-09 13:34:13 -03001854 if (video_is_registered(&dev->radio_dev))
1855 video_unregister_device(&dev->radio_dev);
1856 if (video_is_registered(&dev->vbi_dev)) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001857 dev_info(dev->dev, "V4L2 device %s deregistered\n",
Hans Verkuil60acf182015-03-09 13:34:13 -03001858 video_device_node_name(&dev->vbi_dev));
1859 video_unregister_device(&dev->vbi_dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001860 }
Hans Verkuil60acf182015-03-09 13:34:13 -03001861 if (video_is_registered(&dev->vdev)) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03001862 dev_info(dev->dev, "V4L2 device %s deregistered\n",
Hans Verkuil60acf182015-03-09 13:34:13 -03001863 video_device_node_name(&dev->vdev));
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001864
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03001865 if (dev->board.has_417)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001866 cx231xx_417_unregister(dev);
1867
Hans Verkuil60acf182015-03-09 13:34:13 -03001868 video_unregister_device(&dev->vdev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001869 }
Hans Verkuild2370f82012-09-17 07:22:09 -03001870 v4l2_ctrl_handler_free(&dev->ctrl_handler);
1871 v4l2_ctrl_handler_free(&dev->radio_ctrl_handler);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001872}
1873
1874/*
Hans Verkuil1f7e0732012-06-24 06:43:02 -03001875 * cx231xx_close()
Sri Deevie0d3baf2009-03-03 14:37:50 -03001876 * stops streaming and deallocates all resources allocated by the v4l2
1877 * calls and ioctls
1878 */
Hans Verkuil1f7e0732012-06-24 06:43:02 -03001879static int cx231xx_close(struct file *filp)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001880{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001881 struct cx231xx_fh *fh = filp->private_data;
1882 struct cx231xx *dev = fh->dev;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001883
1884 cx231xx_videodbg("users=%d\n", dev->users);
1885
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001886 cx231xx_videodbg("users=%d\n", dev->users);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001887 if (res_check(fh))
1888 res_free(fh);
1889
Mauro Carvalho Chehab2f861382011-01-31 22:12:15 -03001890 /*
1891 * To workaround error number=-71 on EP0 for VideoGrabber,
1892 * need exclude following.
1893 * FIXME: It is probably safe to remove most of these, as we're
1894 * now avoiding the alternate setting for INDEX_VANC
1895 */
1896 if (!dev->board.no_alt_vanc)
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001897 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
1898 videobuf_stop(&fh->vb_vidq);
1899 videobuf_mmap_free(&fh->vb_vidq);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001900
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001901 /* the device is already disconnect,
1902 free the remaining resources */
1903 if (dev->state & DEV_DISCONNECTED) {
1904 if (atomic_read(&dev->devlist_count) > 0) {
1905 cx231xx_release_resources(dev);
Jesper Juhl266e8ae2012-03-04 16:25:04 -03001906 fh->dev = NULL;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001907 return 0;
1908 }
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001909 return 0;
1910 }
1911
1912 /* do this before setting alternate! */
1913 cx231xx_uninit_vbi_isoc(dev);
1914
1915 /* set alternate 0 */
1916 if (!dev->vbi_or_sliced_cc_mode)
1917 cx231xx_set_alt_setting(dev, INDEX_VANC, 0);
1918 else
1919 cx231xx_set_alt_setting(dev, INDEX_HANC, 0);
1920
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03001921 v4l2_fh_del(&fh->fh);
1922 v4l2_fh_exit(&fh->fh);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001923 kfree(fh);
1924 dev->users--;
Steven Rostedt543409a2015-08-20 18:03:43 -03001925 wake_up_interruptible(&dev->open);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001926 return 0;
1927 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03001928
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03001929 v4l2_fh_del(&fh->fh);
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -02001930 dev->users--;
1931 if (!dev->users) {
Sri Deevie0d3baf2009-03-03 14:37:50 -03001932 videobuf_stop(&fh->vb_vidq);
1933 videobuf_mmap_free(&fh->vb_vidq);
1934
1935 /* the device is already disconnect,
1936 free the remaining resources */
1937 if (dev->state & DEV_DISCONNECTED) {
1938 cx231xx_release_resources(dev);
Jesper Juhl266e8ae2012-03-04 16:25:04 -03001939 fh->dev = NULL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03001940 return 0;
1941 }
1942
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001943 /* Save some power by putting tuner to sleep */
Hans Verkuil3aab15a2018-02-21 02:49:25 -05001944 call_all(dev, tuner, standby);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001945
1946 /* do this before setting alternate! */
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -03001947 if (dev->USE_ISO)
1948 cx231xx_uninit_isoc(dev);
1949 else
1950 cx231xx_uninit_bulk(dev);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001951 cx231xx_set_mode(dev, CX231XX_SUSPEND);
1952
1953 /* set alternate 0 */
1954 cx231xx_set_alt_setting(dev, INDEX_VIDEO, 0);
1955 }
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03001956 v4l2_fh_exit(&fh->fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001957 kfree(fh);
Steven Rostedt543409a2015-08-20 18:03:43 -03001958 wake_up_interruptible(&dev->open);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001959 return 0;
1960}
1961
Hans Verkuil1f7e0732012-06-24 06:43:02 -03001962static int cx231xx_v4l2_close(struct file *filp)
1963{
1964 struct cx231xx_fh *fh = filp->private_data;
1965 struct cx231xx *dev = fh->dev;
1966 int rc;
1967
1968 mutex_lock(&dev->lock);
1969 rc = cx231xx_close(filp);
1970 mutex_unlock(&dev->lock);
1971 return rc;
1972}
1973
Sri Deevie0d3baf2009-03-03 14:37:50 -03001974/*
1975 * cx231xx_v4l2_read()
1976 * will allocate buffers when called for the first time
1977 */
1978static ssize_t
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03001979cx231xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
1980 loff_t *pos)
Sri Deevie0d3baf2009-03-03 14:37:50 -03001981{
1982 struct cx231xx_fh *fh = filp->private_data;
1983 struct cx231xx *dev = fh->dev;
1984 int rc;
1985
1986 rc = check_dev(dev);
1987 if (rc < 0)
1988 return rc;
1989
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03001990 if ((fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
1991 (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)) {
Sri Deevie0d3baf2009-03-03 14:37:50 -03001992 rc = res_get(fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03001993
1994 if (unlikely(rc < 0))
1995 return rc;
1996
Hans Verkuil1f7e0732012-06-24 06:43:02 -03001997 if (mutex_lock_interruptible(&dev->lock))
1998 return -ERESTARTSYS;
1999 rc = videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002000 filp->f_flags & O_NONBLOCK);
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002001 mutex_unlock(&dev->lock);
2002 return rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002003 }
2004 return 0;
2005}
2006
2007/*
2008 * cx231xx_v4l2_poll()
2009 * will allocate buffers when called for the first time
2010 */
Al Viroc23e0cb2017-07-03 03:02:56 -04002011static __poll_t cx231xx_v4l2_poll(struct file *filp, poll_table *wait)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002012{
Al Viro01699432017-07-03 03:14:15 -04002013 __poll_t req_events = poll_requested_events(wait);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002014 struct cx231xx_fh *fh = filp->private_data;
2015 struct cx231xx *dev = fh->dev;
Al Viroc23e0cb2017-07-03 03:02:56 -04002016 __poll_t res = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002017 int rc;
2018
2019 rc = check_dev(dev);
2020 if (rc < 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002021 return EPOLLERR;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002022
Sri Deevie0d3baf2009-03-03 14:37:50 -03002023 rc = res_get(fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002024
2025 if (unlikely(rc < 0))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002026 return EPOLLERR;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002027
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03002028 if (v4l2_event_pending(&fh->fh))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002029 res |= EPOLLPRI;
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03002030 else
2031 poll_wait(filp, &fh->fh.wait, wait);
2032
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002033 if (!(req_events & (EPOLLIN | EPOLLRDNORM)))
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03002034 return res;
2035
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002036 if ((V4L2_BUF_TYPE_VIDEO_CAPTURE == fh->type) ||
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002037 (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type)) {
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002038 mutex_lock(&dev->lock);
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03002039 res |= videobuf_poll_stream(filp, &fh->vb_vidq, wait);
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002040 mutex_unlock(&dev->lock);
2041 return res;
2042 }
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002043 return res | EPOLLERR;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002044}
2045
2046/*
2047 * cx231xx_v4l2_mmap()
2048 */
2049static int cx231xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
2050{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002051 struct cx231xx_fh *fh = filp->private_data;
2052 struct cx231xx *dev = fh->dev;
2053 int rc;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002054
2055 rc = check_dev(dev);
2056 if (rc < 0)
2057 return rc;
2058
Sri Deevie0d3baf2009-03-03 14:37:50 -03002059 rc = res_get(fh);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002060
2061 if (unlikely(rc < 0))
2062 return rc;
2063
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002064 if (mutex_lock_interruptible(&dev->lock))
2065 return -ERESTARTSYS;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002066 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Hans Verkuil1f7e0732012-06-24 06:43:02 -03002067 mutex_unlock(&dev->lock);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002068
2069 cx231xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002070 (unsigned long)vma->vm_start,
2071 (unsigned long)vma->vm_end -
2072 (unsigned long)vma->vm_start, rc);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002073
2074 return rc;
2075}
2076
2077static const struct v4l2_file_operations cx231xx_v4l_fops = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002078 .owner = THIS_MODULE,
2079 .open = cx231xx_v4l2_open,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002080 .release = cx231xx_v4l2_close,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002081 .read = cx231xx_v4l2_read,
2082 .poll = cx231xx_v4l2_poll,
2083 .mmap = cx231xx_v4l2_mmap,
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03002084 .unlocked_ioctl = video_ioctl2,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002085};
2086
2087static const struct v4l2_ioctl_ops video_ioctl_ops = {
Hans Verkuilbc087342013-01-29 12:52:33 -03002088 .vidioc_querycap = cx231xx_querycap,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002089 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
2090 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
2091 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
2092 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
2093 .vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
2094 .vidioc_try_fmt_vbi_cap = vidioc_try_fmt_vbi_cap,
Hans Verkuil62647222013-02-09 06:41:11 -03002095 .vidioc_s_fmt_vbi_cap = vidioc_s_fmt_vbi_cap,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002096 .vidioc_cropcap = vidioc_cropcap,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002097 .vidioc_reqbufs = vidioc_reqbufs,
2098 .vidioc_querybuf = vidioc_querybuf,
2099 .vidioc_qbuf = vidioc_qbuf,
2100 .vidioc_dqbuf = vidioc_dqbuf,
2101 .vidioc_s_std = vidioc_s_std,
2102 .vidioc_g_std = vidioc_g_std,
Hans Verkuilb86d1542013-01-29 13:16:06 -03002103 .vidioc_enum_input = cx231xx_enum_input,
2104 .vidioc_g_input = cx231xx_g_input,
2105 .vidioc_s_input = cx231xx_s_input,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002106 .vidioc_streamon = vidioc_streamon,
2107 .vidioc_streamoff = vidioc_streamoff,
Hans Verkuilb86d1542013-01-29 13:16:06 -03002108 .vidioc_g_tuner = cx231xx_g_tuner,
2109 .vidioc_s_tuner = cx231xx_s_tuner,
2110 .vidioc_g_frequency = cx231xx_g_frequency,
2111 .vidioc_s_frequency = cx231xx_s_frequency,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002112#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil08fe9f72013-05-29 06:59:43 -03002113 .vidioc_g_chip_info = cx231xx_g_chip_info,
Hans Verkuilb86d1542013-01-29 13:16:06 -03002114 .vidioc_g_register = cx231xx_g_register,
2115 .vidioc_s_register = cx231xx_s_register,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002116#endif
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03002117 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
2118 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002119};
2120
2121static struct video_device cx231xx_vbi_template;
2122
2123static const struct video_device cx231xx_video_template = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002124 .fops = &cx231xx_v4l_fops,
Hans Verkuil60acf182015-03-09 13:34:13 -03002125 .release = video_device_release_empty,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002126 .ioctl_ops = &video_ioctl_ops,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002127 .tvnorms = V4L2_STD_ALL,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002128};
2129
2130static const struct v4l2_file_operations radio_fops = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002131 .owner = THIS_MODULE,
2132 .open = cx231xx_v4l2_open,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002133 .release = cx231xx_v4l2_close,
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03002134 .poll = v4l2_ctrl_poll,
Hans Verkuil1265f082012-09-17 09:26:46 -03002135 .unlocked_ioctl = video_ioctl2,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002136};
2137
2138static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Hans Verkuilbc087342013-01-29 12:52:33 -03002139 .vidioc_querycap = cx231xx_querycap,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002140 .vidioc_g_tuner = radio_g_tuner,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002141 .vidioc_s_tuner = radio_s_tuner,
Hans Verkuilb86d1542013-01-29 13:16:06 -03002142 .vidioc_g_frequency = cx231xx_g_frequency,
2143 .vidioc_s_frequency = cx231xx_s_frequency,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002144#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil08fe9f72013-05-29 06:59:43 -03002145 .vidioc_g_chip_info = cx231xx_g_chip_info,
Hans Verkuilb86d1542013-01-29 13:16:06 -03002146 .vidioc_g_register = cx231xx_g_register,
2147 .vidioc_s_register = cx231xx_s_register,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002148#endif
Hans Verkuil1d08a4f2012-09-17 07:31:04 -03002149 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
2150 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002151};
2152
2153static struct video_device cx231xx_radio_template = {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -03002154 .name = "cx231xx-radio",
2155 .fops = &radio_fops,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002156 .ioctl_ops = &radio_ioctl_ops,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002157};
2158
2159/******************************** usb interface ******************************/
2160
Hans Verkuil60acf182015-03-09 13:34:13 -03002161static void cx231xx_vdev_init(struct cx231xx *dev,
2162 struct video_device *vfd,
2163 const struct video_device *template,
2164 const char *type_name)
Sri Deevie0d3baf2009-03-03 14:37:50 -03002165{
Sri Deevie0d3baf2009-03-03 14:37:50 -03002166 *vfd = *template;
Sri Deevib1196122009-03-20 23:33:48 -03002167 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuil60acf182015-03-09 13:34:13 -03002168 vfd->release = video_device_release_empty;
Mauro Carvalho Chehab643800d2010-10-09 13:13:35 -03002169 vfd->lock = &dev->lock;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002170
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002171 snprintf(vfd->name, sizeof(vfd->name), "%s %s", dev->name, type_name);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002172
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002173 video_set_drvdata(vfd, dev);
Hans Verkuil06c46002012-09-13 06:17:47 -03002174 if (dev->tuner_type == TUNER_ABSENT) {
2175 v4l2_disable_ioctl(vfd, VIDIOC_G_FREQUENCY);
2176 v4l2_disable_ioctl(vfd, VIDIOC_S_FREQUENCY);
2177 v4l2_disable_ioctl(vfd, VIDIOC_G_TUNER);
2178 v4l2_disable_ioctl(vfd, VIDIOC_S_TUNER);
2179 }
Sri Deevie0d3baf2009-03-03 14:37:50 -03002180}
2181
2182int cx231xx_register_analog_devices(struct cx231xx *dev)
2183{
2184 int ret;
2185
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03002186 dev_info(dev->dev, "v4l2 driver version %s\n", CX231XX_VERSION);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002187
2188 /* set default norm */
Hans Verkuila25a70122012-09-17 08:30:07 -03002189 dev->norm = V4L2_STD_PAL;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002190 dev->width = norm_maxw(dev);
2191 dev->height = norm_maxh(dev);
2192 dev->interlaced = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002193
2194 /* Analog specific initialization */
2195 dev->format = &format[0];
Devin Heitmueller6e6a2ba2010-07-12 15:34:57 -03002196
2197 /* Set the initial input */
2198 video_mux(dev, dev->video_input);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002199
Laurent Pinchart8774bed2014-04-28 16:53:01 -03002200 call_all(dev, video, s_std, dev->norm);
Hans Verkuild61072a2013-01-29 10:50:54 -03002201
Hans Verkuild2370f82012-09-17 07:22:09 -03002202 v4l2_ctrl_handler_init(&dev->ctrl_handler, 10);
2203 v4l2_ctrl_handler_init(&dev->radio_ctrl_handler, 5);
2204
2205 if (dev->sd_cx25840) {
2206 v4l2_ctrl_add_handler(&dev->ctrl_handler,
2207 dev->sd_cx25840->ctrl_handler, NULL);
2208 v4l2_ctrl_add_handler(&dev->radio_ctrl_handler,
2209 dev->sd_cx25840->ctrl_handler,
2210 v4l2_ctrl_radio_filter);
2211 }
2212
2213 if (dev->ctrl_handler.error)
2214 return dev->ctrl_handler.error;
2215 if (dev->radio_ctrl_handler.error)
2216 return dev->radio_ctrl_handler.error;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002217
2218 /* enable vbi capturing */
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002219 /* write code here... */
Sri Deevie0d3baf2009-03-03 14:37:50 -03002220
2221 /* allocate and fill video video_device struct */
Hans Verkuil60acf182015-03-09 13:34:13 -03002222 cx231xx_vdev_init(dev, &dev->vdev, &cx231xx_video_template, "video");
Mauro Carvalho Chehabb6a40e72015-01-03 16:08:07 -03002223#if defined(CONFIG_MEDIA_CONTROLLER)
2224 dev->video_pad.flags = MEDIA_PAD_FL_SINK;
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -02002225 ret = media_entity_pads_init(&dev->vdev.entity, 1, &dev->video_pad);
Mauro Carvalho Chehabb6a40e72015-01-03 16:08:07 -03002226 if (ret < 0)
2227 dev_err(dev->dev, "failed to initialize video media entity!\n");
2228#endif
Hans Verkuil60acf182015-03-09 13:34:13 -03002229 dev->vdev.ctrl_handler = &dev->ctrl_handler;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002230 /* register v4l2 video video_device */
Hans Verkuil60acf182015-03-09 13:34:13 -03002231 ret = video_register_device(&dev->vdev, VFL_TYPE_GRABBER,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002232 video_nr[dev->devno]);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002233 if (ret) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03002234 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03002235 "unable to register video device (error=%i).\n",
Mauro Carvalho Chehabed0e3722014-11-01 08:59:03 -03002236 ret);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002237 return ret;
2238 }
2239
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03002240 dev_info(dev->dev, "Registered video device %s [v4l2]\n",
Hans Verkuil60acf182015-03-09 13:34:13 -03002241 video_device_node_name(&dev->vdev));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002242
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002243 /* Initialize VBI template */
Ezequiel Garcia3724dde2012-10-23 15:57:05 -03002244 cx231xx_vbi_template = cx231xx_video_template;
Mauro Carvalho Chehabcc1e6312018-09-10 16:20:42 -04002245 strscpy(cx231xx_vbi_template.name, "cx231xx-vbi",
2246 sizeof(cx231xx_vbi_template.name));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002247
2248 /* Allocate and fill vbi video_device struct */
Hans Verkuil60acf182015-03-09 13:34:13 -03002249 cx231xx_vdev_init(dev, &dev->vbi_dev, &cx231xx_vbi_template, "vbi");
Sri Deevie0d3baf2009-03-03 14:37:50 -03002250
Mauro Carvalho Chehabb6a40e72015-01-03 16:08:07 -03002251#if defined(CONFIG_MEDIA_CONTROLLER)
2252 dev->vbi_pad.flags = MEDIA_PAD_FL_SINK;
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -02002253 ret = media_entity_pads_init(&dev->vbi_dev.entity, 1, &dev->vbi_pad);
Mauro Carvalho Chehabb6a40e72015-01-03 16:08:07 -03002254 if (ret < 0)
2255 dev_err(dev->dev, "failed to initialize vbi media entity!\n");
2256#endif
Hans Verkuil60acf182015-03-09 13:34:13 -03002257 dev->vbi_dev.ctrl_handler = &dev->ctrl_handler;
Sri Deevie0d3baf2009-03-03 14:37:50 -03002258 /* register v4l2 vbi video_device */
Hans Verkuil60acf182015-03-09 13:34:13 -03002259 ret = video_register_device(&dev->vbi_dev, VFL_TYPE_VBI,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -03002260 vbi_nr[dev->devno]);
Sri Deevie0d3baf2009-03-03 14:37:50 -03002261 if (ret < 0) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03002262 dev_err(dev->dev, "unable to register vbi device\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -03002263 return ret;
2264 }
2265
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03002266 dev_info(dev->dev, "Registered VBI device %s\n",
Hans Verkuil60acf182015-03-09 13:34:13 -03002267 video_device_node_name(&dev->vbi_dev));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002268
2269 if (cx231xx_boards[dev->model].radio.type == CX231XX_RADIO) {
Hans Verkuil60acf182015-03-09 13:34:13 -03002270 cx231xx_vdev_init(dev, &dev->radio_dev,
2271 &cx231xx_radio_template, "radio");
2272 dev->radio_dev.ctrl_handler = &dev->radio_ctrl_handler;
2273 ret = video_register_device(&dev->radio_dev, VFL_TYPE_RADIO,
Sri Deevie0d3baf2009-03-03 14:37:50 -03002274 radio_nr[dev->devno]);
2275 if (ret < 0) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03002276 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -03002277 "can't register radio device\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -03002278 return ret;
2279 }
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -03002280 dev_info(dev->dev, "Registered radio device as %s\n",
Hans Verkuil60acf182015-03-09 13:34:13 -03002281 video_device_node_name(&dev->radio_dev));
Sri Deevie0d3baf2009-03-03 14:37:50 -03002282 }
2283
Sri Deevie0d3baf2009-03-03 14:37:50 -03002284 return 0;
2285}