blob: 3022eb2a792503bc065863d6209c38a9d30d5014 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/* ------------------------------------------------------------------ */
33
34MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
35MODULE_LICENSE("GPL");
36
37static unsigned int empress_nr[] = {[0 ... (SAA7134_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039module_param_array(empress_nr, int, NULL, 0444);
40MODULE_PARM_DESC(empress_nr,"ts device number");
41
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030042static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043module_param(debug, int, 0644);
44MODULE_PARM_DESC(debug,"enable debug messages");
45
46#define dprintk(fmt, arg...) if (debug) \
47 printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg)
48
49/* ------------------------------------------------------------------ */
50
51static void ts_reset_encoder(struct saa7134_dev* dev)
52{
53 if (!dev->empress_started)
54 return;
55
56 saa_writeb(SAA7134_SPECIAL_MODE, 0x00);
57 msleep(10);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080058 saa_writeb(SAA7134_SPECIAL_MODE, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 msleep(100);
60 dev->empress_started = 0;
61}
62
63static int ts_init_encoder(struct saa7134_dev* dev)
64{
Dmitry Belimovf03813e2008-08-26 13:44:40 -030065 u32 leading_null_bytes = 0;
Hans Verkuil86b79d62006-06-18 16:40:10 -030066
Dmitry Belimovf03813e2008-08-26 13:44:40 -030067 /* If more cards start to need this, then this
68 should probably be added to the card definitions. */
69 switch (dev->board) {
70 case SAA7134_BOARD_BEHOLD_M6:
71 case SAA7134_BOARD_BEHOLD_M63:
72 case SAA7134_BOARD_BEHOLD_M6_EXTRA:
73 leading_null_bytes = 1;
74 break;
75 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 ts_reset_encoder(dev);
Hans Verkuilfac69862009-01-17 12:17:14 -030077 saa_call_all(dev, core, init, leading_null_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 dev->empress_started = 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82/* ------------------------------------------------------------------ */
83
Hans Verkuilbec43662008-12-30 06:58:20 -030084static int ts_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Laurent Pinchart50462eb2009-12-10 11:47:13 -020086 struct video_device *vdev = video_devdata(file);
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -020087 struct saa7134_dev *dev = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int err;
89
Laurent Pinchart50462eb2009-12-10 11:47:13 -020090 dprintk("open dev=%s\n", video_device_node_name(vdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 err = -EBUSY;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -030092 if (!mutex_trylock(&dev->empress_tsq.vb_lock))
Hans Verkuil7415c762010-01-29 06:51:08 -030093 return err;
Hans Verkuil1052efe2008-07-26 09:01:24 -030094 if (atomic_read(&dev->empress_users))
Hans Verkuil7415c762010-01-29 06:51:08 -030095 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Rafael Bilskib784e522007-06-20 05:37:27 -030097 /* Unmute audio */
98 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
99 saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6));
100
Hans Verkuil1052efe2008-07-26 09:01:24 -0300101 atomic_inc(&dev->empress_users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 file->private_data = dev;
103 err = 0;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105done:
Hans Verkuil7415c762010-01-29 06:51:08 -0300106 mutex_unlock(&dev->empress_tsq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return err;
108}
109
Hans Verkuilbec43662008-12-30 06:58:20 -0300110static int ts_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 struct saa7134_dev *dev = file->private_data;
113
Brandon Philips053fcb62007-11-13 20:11:26 -0300114 videobuf_stop(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 videobuf_mmap_free(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* stop the encoder */
118 ts_reset_encoder(dev);
119
Rafael Bilskib784e522007-06-20 05:37:27 -0300120 /* Mute audio */
121 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
122 saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6));
123
Hans Verkuil1052efe2008-07-26 09:01:24 -0300124 atomic_dec(&dev->empress_users);
Arjan van de Vena1789872008-06-22 17:03:02 -0300125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return 0;
127}
128
129static ssize_t
130ts_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
131{
132 struct saa7134_dev *dev = file->private_data;
133
134 if (!dev->empress_started)
135 ts_init_encoder(dev);
136
137 return videobuf_read_stream(&dev->empress_tsq,
138 data, count, ppos, 0,
139 file->f_flags & O_NONBLOCK);
140}
141
142static unsigned int
143ts_poll(struct file *file, struct poll_table_struct *wait)
144{
145 struct saa7134_dev *dev = file->private_data;
146
147 return videobuf_poll_stream(file, &dev->empress_tsq, wait);
148}
149
150
151static int
152ts_mmap(struct file *file, struct vm_area_struct * vma)
153{
154 struct saa7134_dev *dev = file->private_data;
155
156 return videobuf_mmap_mapper(&dev->empress_tsq, vma);
157}
158
159/*
160 * This function is _not_ called directly, but from
161 * video_generic_ioctl (and maybe others). userspace
162 * copying is done already, arg is a kernel pointer.
163 */
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300164
165static int empress_querycap(struct file *file, void *priv,
166 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Dmitri Belimov388748e2008-05-21 01:20:34 -0300168 struct saa7134_dev *dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300170 strcpy(cap->driver, "saa7134");
171 strlcpy(cap->card, saa7134_boards[dev->board].name,
172 sizeof(cap->card));
173 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300174 cap->capabilities =
175 V4L2_CAP_VIDEO_CAPTURE |
176 V4L2_CAP_READWRITE |
177 V4L2_CAP_STREAMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return 0;
179}
180
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300181static int empress_enum_input(struct file *file, void *priv,
182 struct v4l2_input *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300184 if (i->index != 0)
185 return -EINVAL;
186
187 i->type = V4L2_INPUT_TYPE_CAMERA;
188 strcpy(i->name, "CCIR656");
189
190 return 0;
191}
192
193static int empress_g_input(struct file *file, void *priv, unsigned int *i)
194{
195 *i = 0;
196 return 0;
197}
198
199static int empress_s_input(struct file *file, void *priv, unsigned int i)
200{
201 if (i != 0)
202 return -EINVAL;
203
204 return 0;
205}
206
Hans Verkuil78b526a2008-05-28 12:16:41 -0300207static int empress_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300208 struct v4l2_fmtdesc *f)
209{
210 if (f->index != 0)
211 return -EINVAL;
212
213 strlcpy(f->description, "MPEG TS", sizeof(f->description));
214 f->pixelformat = V4L2_PIX_FMT_MPEG;
Hans Verkuilcabc6502013-06-01 10:02:38 -0300215 f->flags = V4L2_FMT_FLAG_COMPRESSED;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300216 return 0;
217}
218
Hans Verkuil78b526a2008-05-28 12:16:41 -0300219static int empress_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300220 struct v4l2_format *f)
221{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300222 struct saa7134_dev *dev = file->private_data;
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300223 struct v4l2_mbus_framefmt mbus_fmt;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300224
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300225 saa_call_all(dev, video, g_mbus_fmt, &mbus_fmt);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300226
Hans Verkuil31bf95f2010-05-09 09:41:41 -0300227 v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300228 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
229 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
Hans Verkuilcabc6502013-06-01 10:02:38 -0300230 f->fmt.pix.bytesperline = 0;
231 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300232
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;
Hans Verkuilcabc6502013-06-01 10:02:38 -0300248 f->fmt.pix.bytesperline = 0;
249 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300250
251 return 0;
252}
253
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300254static int empress_try_fmt_vid_cap(struct file *file, void *priv,
255 struct v4l2_format *f)
256{
257 struct saa7134_dev *dev = file->private_data;
Hans Verkuilcabc6502013-06-01 10:02:38 -0300258 struct v4l2_mbus_framefmt mbus_fmt;
259
260 v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED);
261 saa_call_all(dev, video, try_mbus_fmt, &mbus_fmt);
262 v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300263
264 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
265 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
Hans Verkuilcabc6502013-06-01 10:02:38 -0300266 f->fmt.pix.bytesperline = 0;
267 f->fmt.pix.priv = 0;
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300268
269 return 0;
270}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300271
272static int empress_reqbufs(struct file *file, void *priv,
273 struct v4l2_requestbuffers *p)
274{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300275 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300276
277 return videobuf_reqbufs(&dev->empress_tsq, p);
278}
279
280static int empress_querybuf(struct file *file, void *priv,
281 struct v4l2_buffer *b)
282{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300283 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300284
285 return videobuf_querybuf(&dev->empress_tsq, b);
286}
287
288static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
289{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300290 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300291
292 return videobuf_qbuf(&dev->empress_tsq, b);
293}
294
295static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
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_dqbuf(&dev->empress_tsq, b,
300 file->f_flags & O_NONBLOCK);
301}
302
303static int empress_streamon(struct file *file, void *priv,
304 enum v4l2_buf_type type)
305{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300306 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300307
308 return videobuf_streamon(&dev->empress_tsq);
309}
310
311static int empress_streamoff(struct file *file, void *priv,
312 enum v4l2_buf_type type)
313{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300314 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300315
316 return videobuf_streamoff(&dev->empress_tsq);
317}
318
319static int empress_s_ext_ctrls(struct file *file, void *priv,
320 struct v4l2_ext_controls *ctrls)
321{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300322 struct saa7134_dev *dev = file->private_data;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300323 int err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300324
325 /* count == 0 is abused in saa6752hs.c, so that special
326 case is handled here explicitly. */
327 if (ctrls->count == 0)
328 return 0;
329
330 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
331 return -EINVAL;
332
Hans Verkuilfac69862009-01-17 12:17:14 -0300333 err = saa_call_empress(dev, core, s_ext_ctrls, ctrls);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300334 ts_init_encoder(dev);
335
Hans Verkuil8b53b392008-06-27 21:18:15 -0300336 return err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300337}
338
339static int empress_g_ext_ctrls(struct file *file, void *priv,
340 struct v4l2_ext_controls *ctrls)
341{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300342 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300343
344 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
345 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300346 return saa_call_empress(dev, core, g_ext_ctrls, ctrls);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300347}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300348
Hans Verkuil531d83a2008-07-26 09:04:06 -0300349static int empress_g_ctrl(struct file *file, void *priv,
350 struct v4l2_control *c)
351{
352 struct saa7134_dev *dev = file->private_data;
353
354 return saa7134_g_ctrl_internal(dev, NULL, c);
355}
356
357static int empress_s_ctrl(struct file *file, void *priv,
358 struct v4l2_control *c)
359{
360 struct saa7134_dev *dev = file->private_data;
361
362 return saa7134_s_ctrl_internal(dev, NULL, c);
363}
364
Hans Verkuil8b53b392008-06-27 21:18:15 -0300365static int empress_queryctrl(struct file *file, void *priv,
366 struct v4l2_queryctrl *c)
367{
Hans Verkuil2ba58892009-02-13 10:57:48 -0300368 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300369 static const u32 user_ctrls[] = {
370 V4L2_CID_USER_CLASS,
371 V4L2_CID_BRIGHTNESS,
372 V4L2_CID_CONTRAST,
373 V4L2_CID_SATURATION,
374 V4L2_CID_HUE,
375 V4L2_CID_AUDIO_VOLUME,
376 V4L2_CID_AUDIO_MUTE,
377 V4L2_CID_HFLIP,
378 0
379 };
380
Hans Verkuil2ba58892009-02-13 10:57:48 -0300381 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300382 static const u32 mpeg_ctrls[] = {
383 V4L2_CID_MPEG_CLASS,
384 V4L2_CID_MPEG_STREAM_TYPE,
Hans Verkuild6304442011-02-07 04:37:38 -0300385 V4L2_CID_MPEG_STREAM_PID_PMT,
386 V4L2_CID_MPEG_STREAM_PID_AUDIO,
387 V4L2_CID_MPEG_STREAM_PID_VIDEO,
388 V4L2_CID_MPEG_STREAM_PID_PCR,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300389 V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
390 V4L2_CID_MPEG_AUDIO_ENCODING,
391 V4L2_CID_MPEG_AUDIO_L2_BITRATE,
392 V4L2_CID_MPEG_VIDEO_ENCODING,
393 V4L2_CID_MPEG_VIDEO_ASPECT,
394 V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
395 V4L2_CID_MPEG_VIDEO_BITRATE,
396 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
397 0
398 };
399 static const u32 *ctrl_classes[] = {
400 user_ctrls,
401 mpeg_ctrls,
402 NULL
403 };
404 struct saa7134_dev *dev = file->private_data;
405
406 c->id = v4l2_ctrl_next(ctrl_classes, c->id);
407 if (c->id == 0)
408 return -EINVAL;
409 if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS)
Hans Verkuil10afbef2009-02-21 18:47:24 -0300410 return v4l2_ctrl_query_fill(c, 0, 0, 0, 0);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300411 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
412 return saa7134_queryctrl(file, priv, c);
Hans Verkuilfac69862009-01-17 12:17:14 -0300413 return saa_call_empress(dev, core, queryctrl, c);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300414}
415
416static int empress_querymenu(struct file *file, void *priv,
417 struct v4l2_querymenu *c)
418{
419 struct saa7134_dev *dev = file->private_data;
420
421 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
422 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300423 return saa_call_empress(dev, core, querymenu, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Hans Verkuil314527a2013-03-15 06:10:40 -0300426static int empress_s_std(struct file *file, void *priv, v4l2_std_id id)
Hans Verkuil9afb7372008-09-06 06:34:44 -0300427{
428 struct saa7134_dev *dev = file->private_data;
429
430 return saa7134_s_std_internal(dev, NULL, id);
431}
432
433static int empress_g_std(struct file *file, void *priv, v4l2_std_id *id)
434{
435 struct saa7134_dev *dev = file->private_data;
436
437 *id = dev->tvnorm->id;
438 return 0;
439}
Hans Verkuile281db582008-08-08 12:43:59 -0300440
Hans Verkuilbec43662008-12-30 06:58:20 -0300441static const struct v4l2_file_operations ts_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 .owner = THIS_MODULE,
444 .open = ts_open,
445 .release = ts_release,
446 .read = ts_read,
447 .poll = ts_poll,
448 .mmap = ts_mmap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300449 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450};
451
Hans Verkuila3998102008-07-21 02:57:38 -0300452static const struct v4l2_ioctl_ops ts_ioctl_ops = {
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300453 .vidioc_querycap = empress_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300454 .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap,
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300455 .vidioc_try_fmt_vid_cap = empress_try_fmt_vid_cap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300456 .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap,
457 .vidioc_g_fmt_vid_cap = empress_g_fmt_vid_cap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300458 .vidioc_reqbufs = empress_reqbufs,
459 .vidioc_querybuf = empress_querybuf,
460 .vidioc_qbuf = empress_qbuf,
461 .vidioc_dqbuf = empress_dqbuf,
462 .vidioc_streamon = empress_streamon,
463 .vidioc_streamoff = empress_streamoff,
464 .vidioc_s_ext_ctrls = empress_s_ext_ctrls,
465 .vidioc_g_ext_ctrls = empress_g_ext_ctrls,
466 .vidioc_enum_input = empress_enum_input,
467 .vidioc_g_input = empress_g_input,
468 .vidioc_s_input = empress_s_input,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300469 .vidioc_queryctrl = empress_queryctrl,
470 .vidioc_querymenu = empress_querymenu,
Hans Verkuil531d83a2008-07-26 09:04:06 -0300471 .vidioc_g_ctrl = empress_g_ctrl,
472 .vidioc_s_ctrl = empress_s_ctrl,
Hans Verkuil9afb7372008-09-06 06:34:44 -0300473 .vidioc_s_std = empress_s_std,
474 .vidioc_g_std = empress_g_std,
Hans Verkuila3998102008-07-21 02:57:38 -0300475};
476
477/* ----------------------------------------------------------- */
478
479static struct video_device saa7134_empress_template = {
480 .name = "saa7134-empress",
Hans Verkuila3998102008-07-21 02:57:38 -0300481 .fops = &ts_fops,
Hans Verkuila3998102008-07-21 02:57:38 -0300482 .ioctl_ops = &ts_ioctl_ops,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300483
484 .tvnorms = SAA7134_NORMS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485};
486
David Howellsc4028952006-11-22 14:57:56 +0000487static void empress_signal_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
David Howellsc4028952006-11-22 14:57:56 +0000489 struct saa7134_dev* dev =
490 container_of(work, struct saa7134_dev, empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (dev->nosignal) {
493 dprintk("no video signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else {
495 dprintk("video signal acquired\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497}
498
499static void empress_signal_change(struct saa7134_dev *dev)
500{
501 schedule_work(&dev->empress_workqueue);
502}
503
504
505static int empress_init(struct saa7134_dev *dev)
506{
507 int err;
508
Harvey Harrison50163812008-04-08 23:20:00 -0300509 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 dev->empress_dev = video_device_alloc();
511 if (NULL == dev->empress_dev)
512 return -ENOMEM;
513 *(dev->empress_dev) = saa7134_empress_template;
Hans Verkuild481c582013-06-20 10:57:10 -0300514 dev->empress_dev->v4l2_dev = &dev->v4l2_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 dev->empress_dev->release = video_device_release;
516 snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name),
517 "%s empress (%s)", dev->name,
518 saa7134_boards[dev->board].name);
519
David Howellsc4028952006-11-22 14:57:56 +0000520 INIT_WORK(&dev->empress_workqueue, empress_signal_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200522 video_set_drvdata(dev->empress_dev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER,
524 empress_nr[dev->nr]);
525 if (err < 0) {
526 printk(KERN_INFO "%s: can't register video device\n",
527 dev->name);
528 video_device_release(dev->empress_dev);
529 dev->empress_dev = NULL;
530 return err;
531 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -0300532 printk(KERN_INFO "%s: registered device %s [mpeg]\n",
533 dev->name, video_device_node_name(dev->empress_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300535 videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops,
536 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 V4L2_BUF_TYPE_VIDEO_CAPTURE,
538 V4L2_FIELD_ALTERNATE,
539 sizeof(struct saa7134_buf),
Hans Verkuil08bff032010-09-20 17:39:46 -0300540 dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
David Howellsc4028952006-11-22 14:57:56 +0000542 empress_signal_update(&dev->empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return 0;
544}
545
546static int empress_fini(struct saa7134_dev *dev)
547{
Harvey Harrison50163812008-04-08 23:20:00 -0300548 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if (NULL == dev->empress_dev)
551 return 0;
Tejun Heo43829732012-08-20 14:51:24 -0700552 flush_work(&dev->empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 video_unregister_device(dev->empress_dev);
554 dev->empress_dev = NULL;
555 return 0;
556}
557
558static struct saa7134_mpeg_ops empress_ops = {
559 .type = SAA7134_MPEG_EMPRESS,
560 .init = empress_init,
561 .fini = empress_fini,
562 .signal_change = empress_signal_change,
563};
564
565static int __init empress_register(void)
566{
567 return saa7134_ts_register(&empress_ops);
568}
569
570static void __exit empress_unregister(void)
571{
572 saa7134_ts_unregister(&empress_ops);
573}
574
575module_init(empress_register);
576module_exit(empress_unregister);
577
578/* ----------------------------------------------------------- */
579/*
580 * Local variables:
581 * c-basic-offset: 8
582 * End:
583 */