blob: 6b8459c7728e472c1d927a2a066e7cc77fcebd2a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20#include <linux/init.h>
21#include <linux/list.h>
22#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/delay.h>
25
26#include "saa7134-reg.h"
27#include "saa7134.h"
28
29#include <media/saa6752hs.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020030#include <media/v4l2-common.h>
Hans Verkuile281db582008-08-08 12:43:59 -030031#include <media/v4l2-chip-ident.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* ------------------------------------------------------------------ */
34
35MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
36MODULE_LICENSE("GPL");
37
38static unsigned int empress_nr[] = {[0 ... (SAA7134_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040module_param_array(empress_nr, int, NULL, 0444);
41MODULE_PARM_DESC(empress_nr,"ts device number");
42
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030043static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044module_param(debug, int, 0644);
45MODULE_PARM_DESC(debug,"enable debug messages");
46
47#define dprintk(fmt, arg...) if (debug) \
48 printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg)
49
50/* ------------------------------------------------------------------ */
51
52static void ts_reset_encoder(struct saa7134_dev* dev)
53{
54 if (!dev->empress_started)
55 return;
56
57 saa_writeb(SAA7134_SPECIAL_MODE, 0x00);
58 msleep(10);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080059 saa_writeb(SAA7134_SPECIAL_MODE, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 msleep(100);
61 dev->empress_started = 0;
62}
63
64static int ts_init_encoder(struct saa7134_dev* dev)
65{
Dmitry Belimovf03813e2008-08-26 13:44:40 -030066 u32 leading_null_bytes = 0;
Hans Verkuil86b79d662006-06-18 16:40:10 -030067
Dmitry Belimovf03813e2008-08-26 13:44:40 -030068 /* If more cards start to need this, then this
69 should probably be added to the card definitions. */
70 switch (dev->board) {
71 case SAA7134_BOARD_BEHOLD_M6:
72 case SAA7134_BOARD_BEHOLD_M63:
73 case SAA7134_BOARD_BEHOLD_M6_EXTRA:
74 leading_null_bytes = 1;
75 break;
76 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 ts_reset_encoder(dev);
Hans Verkuilfac69862009-01-17 12:17:14 -030078 saa_call_all(dev, core, init, leading_null_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 dev->empress_started = 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83/* ------------------------------------------------------------------ */
84
Hans Verkuilbec43662008-12-30 06:58:20 -030085static int ts_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Laurent Pinchart50462eb2009-12-10 11:47:13 -020087 struct video_device *vdev = video_devdata(file);
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -020088 struct saa7134_dev *dev = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int err;
90
Laurent Pinchart50462eb2009-12-10 11:47:13 -020091 dprintk("open dev=%s\n", video_device_node_name(vdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 err = -EBUSY;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -030093 if (!mutex_trylock(&dev->empress_tsq.vb_lock))
Hans Verkuil7415c762010-01-29 06:51:08 -030094 return err;
Hans Verkuil1052efe2008-07-26 09:01:24 -030095 if (atomic_read(&dev->empress_users))
Hans Verkuil7415c762010-01-29 06:51:08 -030096 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Rafael Bilskib784e522007-06-20 05:37:27 -030098 /* Unmute audio */
99 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
100 saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6));
101
Hans Verkuil1052efe2008-07-26 09:01:24 -0300102 atomic_inc(&dev->empress_users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 file->private_data = dev;
104 err = 0;
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106done:
Hans Verkuil7415c762010-01-29 06:51:08 -0300107 mutex_unlock(&dev->empress_tsq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return err;
109}
110
Hans Verkuilbec43662008-12-30 06:58:20 -0300111static int ts_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 struct saa7134_dev *dev = file->private_data;
114
Brandon Philips053fcb62007-11-13 20:11:26 -0300115 videobuf_stop(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 videobuf_mmap_free(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 /* stop the encoder */
119 ts_reset_encoder(dev);
120
Rafael Bilskib784e522007-06-20 05:37:27 -0300121 /* Mute audio */
122 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
123 saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6));
124
Hans Verkuil1052efe2008-07-26 09:01:24 -0300125 atomic_dec(&dev->empress_users);
Arjan van de Vena1789872008-06-22 17:03:02 -0300126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return 0;
128}
129
130static ssize_t
131ts_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
132{
133 struct saa7134_dev *dev = file->private_data;
134
135 if (!dev->empress_started)
136 ts_init_encoder(dev);
137
138 return videobuf_read_stream(&dev->empress_tsq,
139 data, count, ppos, 0,
140 file->f_flags & O_NONBLOCK);
141}
142
143static unsigned int
144ts_poll(struct file *file, struct poll_table_struct *wait)
145{
146 struct saa7134_dev *dev = file->private_data;
147
148 return videobuf_poll_stream(file, &dev->empress_tsq, wait);
149}
150
151
152static int
153ts_mmap(struct file *file, struct vm_area_struct * vma)
154{
155 struct saa7134_dev *dev = file->private_data;
156
157 return videobuf_mmap_mapper(&dev->empress_tsq, vma);
158}
159
160/*
161 * This function is _not_ called directly, but from
162 * video_generic_ioctl (and maybe others). userspace
163 * copying is done already, arg is a kernel pointer.
164 */
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300165
166static int empress_querycap(struct file *file, void *priv,
167 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Dmitri Belimov388748e2008-05-21 01:20:34 -0300169 struct saa7134_dev *dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300171 strcpy(cap->driver, "saa7134");
172 strlcpy(cap->card, saa7134_boards[dev->board].name,
173 sizeof(cap->card));
174 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
175 cap->version = SAA7134_VERSION_CODE;
176 cap->capabilities =
177 V4L2_CAP_VIDEO_CAPTURE |
178 V4L2_CAP_READWRITE |
179 V4L2_CAP_STREAMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return 0;
181}
182
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300183static int empress_enum_input(struct file *file, void *priv,
184 struct v4l2_input *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300186 if (i->index != 0)
187 return -EINVAL;
188
189 i->type = V4L2_INPUT_TYPE_CAMERA;
190 strcpy(i->name, "CCIR656");
191
192 return 0;
193}
194
195static int empress_g_input(struct file *file, void *priv, unsigned int *i)
196{
197 *i = 0;
198 return 0;
199}
200
201static int empress_s_input(struct file *file, void *priv, unsigned int i)
202{
203 if (i != 0)
204 return -EINVAL;
205
206 return 0;
207}
208
Hans Verkuil78b526a2008-05-28 12:16:41 -0300209static int empress_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300210 struct v4l2_fmtdesc *f)
211{
212 if (f->index != 0)
213 return -EINVAL;
214
215 strlcpy(f->description, "MPEG TS", sizeof(f->description));
216 f->pixelformat = V4L2_PIX_FMT_MPEG;
217
218 return 0;
219}
220
Hans Verkuil78b526a2008-05-28 12:16:41 -0300221static int empress_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300222 struct v4l2_format *f)
223{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300224 struct saa7134_dev *dev = file->private_data;
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300225 struct v4l2_mbus_framefmt mbus_fmt;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300226
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300227 saa_call_all(dev, video, g_mbus_fmt, &mbus_fmt);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300228
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300229 v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300230 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
231 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
232
233 return 0;
234}
235
Hans Verkuil78b526a2008-05-28 12:16:41 -0300236static int empress_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300237 struct v4l2_format *f)
238{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300239 struct saa7134_dev *dev = file->private_data;
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300240 struct v4l2_mbus_framefmt mbus_fmt;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300241
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300242 v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED);
243 saa_call_all(dev, video, s_mbus_fmt, &mbus_fmt);
244 v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300245
246 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
247 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
248
249 return 0;
250}
251
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300252static int empress_try_fmt_vid_cap(struct file *file, void *priv,
253 struct v4l2_format *f)
254{
255 struct saa7134_dev *dev = file->private_data;
256
257 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
258 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
259
260 return 0;
261}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300262
263static int empress_reqbufs(struct file *file, void *priv,
264 struct v4l2_requestbuffers *p)
265{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300266 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300267
268 return videobuf_reqbufs(&dev->empress_tsq, p);
269}
270
271static int empress_querybuf(struct file *file, void *priv,
272 struct v4l2_buffer *b)
273{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300274 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300275
276 return videobuf_querybuf(&dev->empress_tsq, b);
277}
278
279static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
280{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300281 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300282
283 return videobuf_qbuf(&dev->empress_tsq, b);
284}
285
286static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
287{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300288 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300289
290 return videobuf_dqbuf(&dev->empress_tsq, b,
291 file->f_flags & O_NONBLOCK);
292}
293
294static int empress_streamon(struct file *file, void *priv,
295 enum v4l2_buf_type type)
296{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300297 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300298
299 return videobuf_streamon(&dev->empress_tsq);
300}
301
302static int empress_streamoff(struct file *file, void *priv,
303 enum v4l2_buf_type type)
304{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300305 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300306
307 return videobuf_streamoff(&dev->empress_tsq);
308}
309
310static int empress_s_ext_ctrls(struct file *file, void *priv,
311 struct v4l2_ext_controls *ctrls)
312{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300313 struct saa7134_dev *dev = file->private_data;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300314 int err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300315
316 /* count == 0 is abused in saa6752hs.c, so that special
317 case is handled here explicitly. */
318 if (ctrls->count == 0)
319 return 0;
320
321 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
322 return -EINVAL;
323
Hans Verkuilfac69862009-01-17 12:17:14 -0300324 err = saa_call_empress(dev, core, s_ext_ctrls, ctrls);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300325 ts_init_encoder(dev);
326
Hans Verkuil8b53b392008-06-27 21:18:15 -0300327 return err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300328}
329
330static int empress_g_ext_ctrls(struct file *file, void *priv,
331 struct v4l2_ext_controls *ctrls)
332{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300333 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300334
335 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
336 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300337 return saa_call_empress(dev, core, g_ext_ctrls, ctrls);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300338}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300339
Hans Verkuil531d83a2008-07-26 09:04:06 -0300340static int empress_g_ctrl(struct file *file, void *priv,
341 struct v4l2_control *c)
342{
343 struct saa7134_dev *dev = file->private_data;
344
345 return saa7134_g_ctrl_internal(dev, NULL, c);
346}
347
348static int empress_s_ctrl(struct file *file, void *priv,
349 struct v4l2_control *c)
350{
351 struct saa7134_dev *dev = file->private_data;
352
353 return saa7134_s_ctrl_internal(dev, NULL, c);
354}
355
Hans Verkuil8b53b392008-06-27 21:18:15 -0300356static int empress_queryctrl(struct file *file, void *priv,
357 struct v4l2_queryctrl *c)
358{
Hans Verkuil2ba58892009-02-13 10:57:48 -0300359 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300360 static const u32 user_ctrls[] = {
361 V4L2_CID_USER_CLASS,
362 V4L2_CID_BRIGHTNESS,
363 V4L2_CID_CONTRAST,
364 V4L2_CID_SATURATION,
365 V4L2_CID_HUE,
366 V4L2_CID_AUDIO_VOLUME,
367 V4L2_CID_AUDIO_MUTE,
368 V4L2_CID_HFLIP,
369 0
370 };
371
Hans Verkuil2ba58892009-02-13 10:57:48 -0300372 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300373 static const u32 mpeg_ctrls[] = {
374 V4L2_CID_MPEG_CLASS,
375 V4L2_CID_MPEG_STREAM_TYPE,
376 V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
377 V4L2_CID_MPEG_AUDIO_ENCODING,
378 V4L2_CID_MPEG_AUDIO_L2_BITRATE,
379 V4L2_CID_MPEG_VIDEO_ENCODING,
380 V4L2_CID_MPEG_VIDEO_ASPECT,
381 V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
382 V4L2_CID_MPEG_VIDEO_BITRATE,
383 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
384 0
385 };
386 static const u32 *ctrl_classes[] = {
387 user_ctrls,
388 mpeg_ctrls,
389 NULL
390 };
391 struct saa7134_dev *dev = file->private_data;
392
393 c->id = v4l2_ctrl_next(ctrl_classes, c->id);
394 if (c->id == 0)
395 return -EINVAL;
396 if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS)
Hans Verkuil10afbef2009-02-21 18:47:24 -0300397 return v4l2_ctrl_query_fill(c, 0, 0, 0, 0);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300398 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
399 return saa7134_queryctrl(file, priv, c);
Hans Verkuilfac69862009-01-17 12:17:14 -0300400 return saa_call_empress(dev, core, queryctrl, c);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300401}
402
403static int empress_querymenu(struct file *file, void *priv,
404 struct v4l2_querymenu *c)
405{
406 struct saa7134_dev *dev = file->private_data;
407
408 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
409 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300410 return saa_call_empress(dev, core, querymenu, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Hans Verkuile281db582008-08-08 12:43:59 -0300413static int empress_g_chip_ident(struct file *file, void *fh,
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300414 struct v4l2_dbg_chip_ident *chip)
Hans Verkuile281db582008-08-08 12:43:59 -0300415{
416 struct saa7134_dev *dev = file->private_data;
417
418 chip->ident = V4L2_IDENT_NONE;
419 chip->revision = 0;
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300420 if (chip->match.type == V4L2_CHIP_MATCH_I2C_DRIVER &&
421 !strcmp(chip->match.name, "saa6752hs"))
Hans Verkuilfac69862009-01-17 12:17:14 -0300422 return saa_call_empress(dev, core, g_chip_ident, chip);
Hans Verkuil195784b2009-03-28 09:27:02 -0300423 if (chip->match.type == V4L2_CHIP_MATCH_I2C_ADDR)
Hans Verkuilfac69862009-01-17 12:17:14 -0300424 return saa_call_empress(dev, core, g_chip_ident, chip);
Hans Verkuile281db582008-08-08 12:43:59 -0300425 return -EINVAL;
426}
427
Hans Verkuil9afb7372008-09-06 06:34:44 -0300428static int empress_s_std(struct file *file, void *priv, v4l2_std_id *id)
429{
430 struct saa7134_dev *dev = file->private_data;
431
432 return saa7134_s_std_internal(dev, NULL, id);
433}
434
435static int empress_g_std(struct file *file, void *priv, v4l2_std_id *id)
436{
437 struct saa7134_dev *dev = file->private_data;
438
439 *id = dev->tvnorm->id;
440 return 0;
441}
Hans Verkuile281db582008-08-08 12:43:59 -0300442
Hans Verkuilbec43662008-12-30 06:58:20 -0300443static const struct v4l2_file_operations ts_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 .owner = THIS_MODULE,
446 .open = ts_open,
447 .release = ts_release,
448 .read = ts_read,
449 .poll = ts_poll,
450 .mmap = ts_mmap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300451 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452};
453
Hans Verkuila3998102008-07-21 02:57:38 -0300454static const struct v4l2_ioctl_ops ts_ioctl_ops = {
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300455 .vidioc_querycap = empress_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300456 .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap,
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300457 .vidioc_try_fmt_vid_cap = empress_try_fmt_vid_cap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300458 .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap,
459 .vidioc_g_fmt_vid_cap = empress_g_fmt_vid_cap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300460 .vidioc_reqbufs = empress_reqbufs,
461 .vidioc_querybuf = empress_querybuf,
462 .vidioc_qbuf = empress_qbuf,
463 .vidioc_dqbuf = empress_dqbuf,
464 .vidioc_streamon = empress_streamon,
465 .vidioc_streamoff = empress_streamoff,
466 .vidioc_s_ext_ctrls = empress_s_ext_ctrls,
467 .vidioc_g_ext_ctrls = empress_g_ext_ctrls,
468 .vidioc_enum_input = empress_enum_input,
469 .vidioc_g_input = empress_g_input,
470 .vidioc_s_input = empress_s_input,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300471 .vidioc_queryctrl = empress_queryctrl,
472 .vidioc_querymenu = empress_querymenu,
Hans Verkuil531d83a2008-07-26 09:04:06 -0300473 .vidioc_g_ctrl = empress_g_ctrl,
474 .vidioc_s_ctrl = empress_s_ctrl,
Hans Verkuile281db582008-08-08 12:43:59 -0300475 .vidioc_g_chip_ident = empress_g_chip_ident,
Hans Verkuil9afb7372008-09-06 06:34:44 -0300476 .vidioc_s_std = empress_s_std,
477 .vidioc_g_std = empress_g_std,
Hans Verkuila3998102008-07-21 02:57:38 -0300478};
479
480/* ----------------------------------------------------------- */
481
482static struct video_device saa7134_empress_template = {
483 .name = "saa7134-empress",
Hans Verkuila3998102008-07-21 02:57:38 -0300484 .fops = &ts_fops,
Hans Verkuila3998102008-07-21 02:57:38 -0300485 .ioctl_ops = &ts_ioctl_ops,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300486
487 .tvnorms = SAA7134_NORMS,
488 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489};
490
David Howellsc4028952006-11-22 14:57:56 +0000491static void empress_signal_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
David Howellsc4028952006-11-22 14:57:56 +0000493 struct saa7134_dev* dev =
494 container_of(work, struct saa7134_dev, empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (dev->nosignal) {
497 dprintk("no video signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 } else {
499 dprintk("video signal acquired\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501}
502
503static void empress_signal_change(struct saa7134_dev *dev)
504{
505 schedule_work(&dev->empress_workqueue);
506}
507
508
509static int empress_init(struct saa7134_dev *dev)
510{
511 int err;
512
Harvey Harrison50163812008-04-08 23:20:00 -0300513 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 dev->empress_dev = video_device_alloc();
515 if (NULL == dev->empress_dev)
516 return -ENOMEM;
517 *(dev->empress_dev) = saa7134_empress_template;
Hans Verkuil5e85e732008-07-20 06:31:39 -0300518 dev->empress_dev->parent = &dev->pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 dev->empress_dev->release = video_device_release;
520 snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name),
521 "%s empress (%s)", dev->name,
522 saa7134_boards[dev->board].name);
523
David Howellsc4028952006-11-22 14:57:56 +0000524 INIT_WORK(&dev->empress_workqueue, empress_signal_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200526 video_set_drvdata(dev->empress_dev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER,
528 empress_nr[dev->nr]);
529 if (err < 0) {
530 printk(KERN_INFO "%s: can't register video device\n",
531 dev->name);
532 video_device_release(dev->empress_dev);
533 dev->empress_dev = NULL;
534 return err;
535 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -0300536 printk(KERN_INFO "%s: registered device %s [mpeg]\n",
537 dev->name, video_device_node_name(dev->empress_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300539 videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops,
540 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 V4L2_BUF_TYPE_VIDEO_CAPTURE,
542 V4L2_FIELD_ALTERNATE,
543 sizeof(struct saa7134_buf),
Hans Verkuil08bff032010-09-20 17:39:46 -0300544 dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
David Howellsc4028952006-11-22 14:57:56 +0000546 empress_signal_update(&dev->empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return 0;
548}
549
550static int empress_fini(struct saa7134_dev *dev)
551{
Harvey Harrison50163812008-04-08 23:20:00 -0300552 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 if (NULL == dev->empress_dev)
555 return 0;
Tejun Heo8c717782010-12-24 16:14:20 +0100556 flush_work_sync(&dev->empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 video_unregister_device(dev->empress_dev);
558 dev->empress_dev = NULL;
559 return 0;
560}
561
562static struct saa7134_mpeg_ops empress_ops = {
563 .type = SAA7134_MPEG_EMPRESS,
564 .init = empress_init,
565 .fini = empress_fini,
566 .signal_change = empress_signal_change,
567};
568
569static int __init empress_register(void)
570{
571 return saa7134_ts_register(&empress_ops);
572}
573
574static void __exit empress_unregister(void)
575{
576 saa7134_ts_unregister(&empress_ops);
577}
578
579module_init(empress_register);
580module_exit(empress_unregister);
581
582/* ----------------------------------------------------------- */
583/*
584 * Local variables:
585 * c-basic-offset: 8
586 * End:
587 */