blob: f5a186a13db22d437910c67b7ee385fb7520104b [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>
24#include <linux/slab.h>
25#include <linux/delay.h>
26
27#include "saa7134-reg.h"
28#include "saa7134.h"
29
30#include <media/saa6752hs.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020031#include <media/v4l2-common.h>
Hans Verkuile281db582008-08-08 12:43:59 -030032#include <media/v4l2-chip-ident.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/* ------------------------------------------------------------------ */
35
36MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
37MODULE_LICENSE("GPL");
38
39static unsigned int empress_nr[] = {[0 ... (SAA7134_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041module_param_array(empress_nr, int, NULL, 0444);
42MODULE_PARM_DESC(empress_nr,"ts device number");
43
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030044static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045module_param(debug, int, 0644);
46MODULE_PARM_DESC(debug,"enable debug messages");
47
48#define dprintk(fmt, arg...) if (debug) \
49 printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg)
50
51/* ------------------------------------------------------------------ */
52
53static void ts_reset_encoder(struct saa7134_dev* dev)
54{
55 if (!dev->empress_started)
56 return;
57
58 saa_writeb(SAA7134_SPECIAL_MODE, 0x00);
59 msleep(10);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080060 saa_writeb(SAA7134_SPECIAL_MODE, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 msleep(100);
62 dev->empress_started = 0;
63}
64
65static int ts_init_encoder(struct saa7134_dev* dev)
66{
Hans Verkuil86b79d662006-06-18 16:40:10 -030067 struct v4l2_ext_controls ctrls = { V4L2_CTRL_CLASS_MPEG, 0 };
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 ts_reset_encoder(dev);
Hans Verkuil86b79d662006-06-18 16:40:10 -030070 saa7134_i2c_call_clients(dev, VIDIOC_S_EXT_CTRLS, &ctrls);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 dev->empress_started = 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080072 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75/* ------------------------------------------------------------------ */
76
77static int ts_open(struct inode *inode, struct file *file)
78{
79 int minor = iminor(inode);
Trent Piepho6d28e982007-10-10 05:37:42 -030080 struct saa7134_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int err;
82
Hans Verkuild56dc612008-07-30 08:43:36 -030083 lock_kernel();
Trent Piepho6d28e982007-10-10 05:37:42 -030084 list_for_each_entry(dev, &saa7134_devlist, devlist)
85 if (dev->empress_dev && dev->empress_dev->minor == minor)
86 goto found;
Hans Verkuild56dc612008-07-30 08:43:36 -030087 unlock_kernel();
Trent Piepho6d28e982007-10-10 05:37:42 -030088 return -ENODEV;
89 found:
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 dprintk("open minor=%d\n",minor);
92 err = -EBUSY;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -030093 if (!mutex_trylock(&dev->empress_tsq.vb_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 goto done;
Hans Verkuil1052efe2008-07-26 09:01:24 -030095 if (atomic_read(&dev->empress_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 goto done_up;
97
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
106done_up:
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -0300107 mutex_unlock(&dev->empress_tsq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108done:
Hans Verkuild56dc612008-07-30 08:43:36 -0300109 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return err;
111}
112
113static int ts_release(struct inode *inode, struct file *file)
114{
115 struct saa7134_dev *dev = file->private_data;
116
Brandon Philips053fcb62007-11-13 20:11:26 -0300117 videobuf_stop(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 videobuf_mmap_free(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 /* stop the encoder */
121 ts_reset_encoder(dev);
122
Rafael Bilskib784e522007-06-20 05:37:27 -0300123 /* Mute audio */
124 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
125 saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6));
126
Hans Verkuil1052efe2008-07-26 09:01:24 -0300127 atomic_dec(&dev->empress_users);
Arjan van de Vena1789872008-06-22 17:03:02 -0300128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return 0;
130}
131
132static ssize_t
133ts_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
134{
135 struct saa7134_dev *dev = file->private_data;
136
137 if (!dev->empress_started)
138 ts_init_encoder(dev);
139
140 return videobuf_read_stream(&dev->empress_tsq,
141 data, count, ppos, 0,
142 file->f_flags & O_NONBLOCK);
143}
144
145static unsigned int
146ts_poll(struct file *file, struct poll_table_struct *wait)
147{
148 struct saa7134_dev *dev = file->private_data;
149
150 return videobuf_poll_stream(file, &dev->empress_tsq, wait);
151}
152
153
154static int
155ts_mmap(struct file *file, struct vm_area_struct * vma)
156{
157 struct saa7134_dev *dev = file->private_data;
158
159 return videobuf_mmap_mapper(&dev->empress_tsq, vma);
160}
161
162/*
163 * This function is _not_ called directly, but from
164 * video_generic_ioctl (and maybe others). userspace
165 * copying is done already, arg is a kernel pointer.
166 */
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300167
168static int empress_querycap(struct file *file, void *priv,
169 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Dmitri Belimov388748e2008-05-21 01:20:34 -0300171 struct saa7134_dev *dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300173 strcpy(cap->driver, "saa7134");
174 strlcpy(cap->card, saa7134_boards[dev->board].name,
175 sizeof(cap->card));
176 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
177 cap->version = SAA7134_VERSION_CODE;
178 cap->capabilities =
179 V4L2_CAP_VIDEO_CAPTURE |
180 V4L2_CAP_READWRITE |
181 V4L2_CAP_STREAMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return 0;
183}
184
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300185static int empress_enum_input(struct file *file, void *priv,
186 struct v4l2_input *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300188 if (i->index != 0)
189 return -EINVAL;
190
191 i->type = V4L2_INPUT_TYPE_CAMERA;
192 strcpy(i->name, "CCIR656");
193
194 return 0;
195}
196
197static int empress_g_input(struct file *file, void *priv, unsigned int *i)
198{
199 *i = 0;
200 return 0;
201}
202
203static int empress_s_input(struct file *file, void *priv, unsigned int i)
204{
205 if (i != 0)
206 return -EINVAL;
207
208 return 0;
209}
210
Hans Verkuil78b526a2008-05-28 12:16:41 -0300211static int empress_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300212 struct v4l2_fmtdesc *f)
213{
214 if (f->index != 0)
215 return -EINVAL;
216
217 strlcpy(f->description, "MPEG TS", sizeof(f->description));
218 f->pixelformat = V4L2_PIX_FMT_MPEG;
219
220 return 0;
221}
222
Hans Verkuil78b526a2008-05-28 12:16:41 -0300223static int empress_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300224 struct v4l2_format *f)
225{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300226 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300227
228 saa7134_i2c_call_clients(dev, VIDIOC_G_FMT, f);
229
230 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;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300240
241 saa7134_i2c_call_clients(dev, VIDIOC_S_FMT, f);
242
243 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
244 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
245
246 return 0;
247}
248
249
250static int empress_reqbufs(struct file *file, void *priv,
251 struct v4l2_requestbuffers *p)
252{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300253 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300254
255 return videobuf_reqbufs(&dev->empress_tsq, p);
256}
257
258static int empress_querybuf(struct file *file, void *priv,
259 struct v4l2_buffer *b)
260{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300261 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300262
263 return videobuf_querybuf(&dev->empress_tsq, b);
264}
265
266static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
267{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300268 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300269
270 return videobuf_qbuf(&dev->empress_tsq, b);
271}
272
273static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
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_dqbuf(&dev->empress_tsq, b,
278 file->f_flags & O_NONBLOCK);
279}
280
281static int empress_streamon(struct file *file, void *priv,
282 enum v4l2_buf_type type)
283{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300284 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300285
286 return videobuf_streamon(&dev->empress_tsq);
287}
288
289static int empress_streamoff(struct file *file, void *priv,
290 enum v4l2_buf_type type)
291{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300292 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300293
294 return videobuf_streamoff(&dev->empress_tsq);
295}
296
Hans Verkuil8b53b392008-06-27 21:18:15 -0300297static int saa7134_i2c_call_saa6752(struct saa7134_dev *dev,
298 unsigned int cmd, void *arg)
299{
300 if (dev->mpeg_i2c_client == NULL)
301 return -EINVAL;
302 return dev->mpeg_i2c_client->driver->command(dev->mpeg_i2c_client,
303 cmd, arg);
304}
305
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300306static int empress_s_ext_ctrls(struct file *file, void *priv,
307 struct v4l2_ext_controls *ctrls)
308{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300309 struct saa7134_dev *dev = file->private_data;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300310 int err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300311
312 /* count == 0 is abused in saa6752hs.c, so that special
313 case is handled here explicitly. */
314 if (ctrls->count == 0)
315 return 0;
316
317 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
318 return -EINVAL;
319
Hans Verkuil8b53b392008-06-27 21:18:15 -0300320 err = saa7134_i2c_call_saa6752(dev, VIDIOC_S_EXT_CTRLS, ctrls);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300321 ts_init_encoder(dev);
322
Hans Verkuil8b53b392008-06-27 21:18:15 -0300323 return err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300324}
325
326static int empress_g_ext_ctrls(struct file *file, void *priv,
327 struct v4l2_ext_controls *ctrls)
328{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300329 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300330
331 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
332 return -EINVAL;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300333 return saa7134_i2c_call_saa6752(dev, VIDIOC_G_EXT_CTRLS, ctrls);
334}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300335
Hans Verkuil531d83a2008-07-26 09:04:06 -0300336static int empress_g_ctrl(struct file *file, void *priv,
337 struct v4l2_control *c)
338{
339 struct saa7134_dev *dev = file->private_data;
340
341 return saa7134_g_ctrl_internal(dev, NULL, c);
342}
343
344static int empress_s_ctrl(struct file *file, void *priv,
345 struct v4l2_control *c)
346{
347 struct saa7134_dev *dev = file->private_data;
348
349 return saa7134_s_ctrl_internal(dev, NULL, c);
350}
351
Hans Verkuil8b53b392008-06-27 21:18:15 -0300352static int empress_queryctrl(struct file *file, void *priv,
353 struct v4l2_queryctrl *c)
354{
355 static const u32 user_ctrls[] = {
356 V4L2_CID_USER_CLASS,
357 V4L2_CID_BRIGHTNESS,
358 V4L2_CID_CONTRAST,
359 V4L2_CID_SATURATION,
360 V4L2_CID_HUE,
361 V4L2_CID_AUDIO_VOLUME,
362 V4L2_CID_AUDIO_MUTE,
363 V4L2_CID_HFLIP,
364 0
365 };
366
367 static const u32 mpeg_ctrls[] = {
368 V4L2_CID_MPEG_CLASS,
369 V4L2_CID_MPEG_STREAM_TYPE,
370 V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
371 V4L2_CID_MPEG_AUDIO_ENCODING,
372 V4L2_CID_MPEG_AUDIO_L2_BITRATE,
373 V4L2_CID_MPEG_VIDEO_ENCODING,
374 V4L2_CID_MPEG_VIDEO_ASPECT,
375 V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
376 V4L2_CID_MPEG_VIDEO_BITRATE,
377 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
378 0
379 };
380 static const u32 *ctrl_classes[] = {
381 user_ctrls,
382 mpeg_ctrls,
383 NULL
384 };
385 struct saa7134_dev *dev = file->private_data;
386
387 c->id = v4l2_ctrl_next(ctrl_classes, c->id);
388 if (c->id == 0)
389 return -EINVAL;
390 if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS)
391 return v4l2_ctrl_query_fill_std(c);
392 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
393 return saa7134_queryctrl(file, priv, c);
394 return saa7134_i2c_call_saa6752(dev, VIDIOC_QUERYCTRL, c);
395}
396
397static int empress_querymenu(struct file *file, void *priv,
398 struct v4l2_querymenu *c)
399{
400 struct saa7134_dev *dev = file->private_data;
401
402 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
403 return -EINVAL;
404 return saa7134_i2c_call_saa6752(dev, VIDIOC_QUERYMENU, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Hans Verkuile281db582008-08-08 12:43:59 -0300407static int empress_g_chip_ident(struct file *file, void *fh,
408 struct v4l2_chip_ident *chip)
409{
410 struct saa7134_dev *dev = file->private_data;
411
412 chip->ident = V4L2_IDENT_NONE;
413 chip->revision = 0;
414 if (dev->mpeg_i2c_client == NULL)
415 return -EINVAL;
416 if (chip->match_type == V4L2_CHIP_MATCH_I2C_DRIVER &&
417 chip->match_chip == I2C_DRIVERID_SAA6752HS)
418 return saa7134_i2c_call_saa6752(dev, VIDIOC_G_CHIP_IDENT, chip);
419 if (chip->match_type == V4L2_CHIP_MATCH_I2C_ADDR &&
420 chip->match_chip == dev->mpeg_i2c_client->addr)
421 return saa7134_i2c_call_saa6752(dev, VIDIOC_G_CHIP_IDENT, chip);
422 return -EINVAL;
423}
424
425
Arjan van de Venfa027c22007-02-12 00:55:33 -0800426static const struct file_operations ts_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 .owner = THIS_MODULE,
429 .open = ts_open,
430 .release = ts_release,
431 .read = ts_read,
432 .poll = ts_poll,
433 .mmap = ts_mmap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300434 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 .llseek = no_llseek,
436};
437
Hans Verkuila3998102008-07-21 02:57:38 -0300438static const struct v4l2_ioctl_ops ts_ioctl_ops = {
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300439 .vidioc_querycap = empress_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300440 .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap,
441 .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap,
442 .vidioc_g_fmt_vid_cap = empress_g_fmt_vid_cap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300443 .vidioc_reqbufs = empress_reqbufs,
444 .vidioc_querybuf = empress_querybuf,
445 .vidioc_qbuf = empress_qbuf,
446 .vidioc_dqbuf = empress_dqbuf,
447 .vidioc_streamon = empress_streamon,
448 .vidioc_streamoff = empress_streamoff,
449 .vidioc_s_ext_ctrls = empress_s_ext_ctrls,
450 .vidioc_g_ext_ctrls = empress_g_ext_ctrls,
451 .vidioc_enum_input = empress_enum_input,
452 .vidioc_g_input = empress_g_input,
453 .vidioc_s_input = empress_s_input,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300454 .vidioc_queryctrl = empress_queryctrl,
455 .vidioc_querymenu = empress_querymenu,
Hans Verkuil531d83a2008-07-26 09:04:06 -0300456 .vidioc_g_ctrl = empress_g_ctrl,
457 .vidioc_s_ctrl = empress_s_ctrl,
Hans Verkuile281db582008-08-08 12:43:59 -0300458 .vidioc_g_chip_ident = empress_g_chip_ident,
Hans Verkuila3998102008-07-21 02:57:38 -0300459};
460
461/* ----------------------------------------------------------- */
462
463static struct video_device saa7134_empress_template = {
464 .name = "saa7134-empress",
Hans Verkuila3998102008-07-21 02:57:38 -0300465 .fops = &ts_fops,
466 .minor = -1,
467 .ioctl_ops = &ts_ioctl_ops,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300468
469 .tvnorms = SAA7134_NORMS,
470 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471};
472
David Howellsc4028952006-11-22 14:57:56 +0000473static void empress_signal_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
David Howellsc4028952006-11-22 14:57:56 +0000475 struct saa7134_dev* dev =
476 container_of(work, struct saa7134_dev, empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (dev->nosignal) {
479 dprintk("no video signal\n");
480 ts_reset_encoder(dev);
481 } else {
482 dprintk("video signal acquired\n");
Hans Verkuil1052efe2008-07-26 09:01:24 -0300483 if (atomic_read(&dev->empress_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 ts_init_encoder(dev);
485 }
486}
487
488static void empress_signal_change(struct saa7134_dev *dev)
489{
490 schedule_work(&dev->empress_workqueue);
491}
492
493
494static int empress_init(struct saa7134_dev *dev)
495{
496 int err;
497
Harvey Harrison50163812008-04-08 23:20:00 -0300498 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 dev->empress_dev = video_device_alloc();
500 if (NULL == dev->empress_dev)
501 return -ENOMEM;
502 *(dev->empress_dev) = saa7134_empress_template;
Hans Verkuil5e85e732008-07-20 06:31:39 -0300503 dev->empress_dev->parent = &dev->pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 dev->empress_dev->release = video_device_release;
505 snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name),
506 "%s empress (%s)", dev->name,
507 saa7134_boards[dev->board].name);
508
David Howellsc4028952006-11-22 14:57:56 +0000509 INIT_WORK(&dev->empress_workqueue, empress_signal_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER,
512 empress_nr[dev->nr]);
513 if (err < 0) {
514 printk(KERN_INFO "%s: can't register video device\n",
515 dev->name);
516 video_device_release(dev->empress_dev);
517 dev->empress_dev = NULL;
518 return err;
519 }
520 printk(KERN_INFO "%s: registered device video%d [mpeg]\n",
521 dev->name,dev->empress_dev->minor & 0x1f);
522
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300523 videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops,
524 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 V4L2_BUF_TYPE_VIDEO_CAPTURE,
526 V4L2_FIELD_ALTERNATE,
527 sizeof(struct saa7134_buf),
528 dev);
529
David Howellsc4028952006-11-22 14:57:56 +0000530 empress_signal_update(&dev->empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return 0;
532}
533
534static int empress_fini(struct saa7134_dev *dev)
535{
Harvey Harrison50163812008-04-08 23:20:00 -0300536 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 if (NULL == dev->empress_dev)
539 return 0;
540 flush_scheduled_work();
541 video_unregister_device(dev->empress_dev);
542 dev->empress_dev = NULL;
543 return 0;
544}
545
546static struct saa7134_mpeg_ops empress_ops = {
547 .type = SAA7134_MPEG_EMPRESS,
548 .init = empress_init,
549 .fini = empress_fini,
550 .signal_change = empress_signal_change,
551};
552
553static int __init empress_register(void)
554{
555 return saa7134_ts_register(&empress_ops);
556}
557
558static void __exit empress_unregister(void)
559{
560 saa7134_ts_unregister(&empress_ops);
561}
562
563module_init(empress_register);
564module_exit(empress_unregister);
565
566/* ----------------------------------------------------------- */
567/*
568 * Local variables:
569 * c-basic-offset: 8
570 * End:
571 */