blob: add1757f89303851afa45f49d5c6975641efde9b [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{
Dmitry Belimovf03813e2008-08-26 13:44:40 -030067 u32 leading_null_bytes = 0;
Hans Verkuil86b79d62006-06-18 16:40:10 -030068
Dmitry Belimovf03813e2008-08-26 13:44:40 -030069 /* If more cards start to need this, then this
70 should probably be added to the card definitions. */
71 switch (dev->board) {
72 case SAA7134_BOARD_BEHOLD_M6:
73 case SAA7134_BOARD_BEHOLD_M63:
74 case SAA7134_BOARD_BEHOLD_M6_EXTRA:
75 leading_null_bytes = 1;
76 break;
77 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 ts_reset_encoder(dev);
Hans Verkuilfac69862009-01-17 12:17:14 -030079 saa_call_all(dev, core, init, leading_null_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 dev->empress_started = 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84/* ------------------------------------------------------------------ */
85
Hans Verkuilbec43662008-12-30 06:58:20 -030086static int ts_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Hans Verkuilbec43662008-12-30 06:58:20 -030088 int minor = video_devdata(file)->minor;
Trent Piepho6d28e982007-10-10 05:37:42 -030089 struct saa7134_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int err;
91
Hans Verkuild56dc612008-07-30 08:43:36 -030092 lock_kernel();
Trent Piepho6d28e982007-10-10 05:37:42 -030093 list_for_each_entry(dev, &saa7134_devlist, devlist)
94 if (dev->empress_dev && dev->empress_dev->minor == minor)
95 goto found;
Hans Verkuild56dc612008-07-30 08:43:36 -030096 unlock_kernel();
Trent Piepho6d28e982007-10-10 05:37:42 -030097 return -ENODEV;
98 found:
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 dprintk("open minor=%d\n",minor);
101 err = -EBUSY;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -0300102 if (!mutex_trylock(&dev->empress_tsq.vb_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 goto done;
Hans Verkuil1052efe2008-07-26 09:01:24 -0300104 if (atomic_read(&dev->empress_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 goto done_up;
106
Rafael Bilskib784e522007-06-20 05:37:27 -0300107 /* Unmute audio */
108 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
109 saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6));
110
Hans Verkuil1052efe2008-07-26 09:01:24 -0300111 atomic_inc(&dev->empress_users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 file->private_data = dev;
113 err = 0;
114
115done_up:
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -0300116 mutex_unlock(&dev->empress_tsq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117done:
Hans Verkuild56dc612008-07-30 08:43:36 -0300118 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return err;
120}
121
Hans Verkuilbec43662008-12-30 06:58:20 -0300122static int ts_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct saa7134_dev *dev = file->private_data;
125
Brandon Philips053fcb62007-11-13 20:11:26 -0300126 videobuf_stop(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 videobuf_mmap_free(&dev->empress_tsq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* stop the encoder */
130 ts_reset_encoder(dev);
131
Rafael Bilskib784e522007-06-20 05:37:27 -0300132 /* Mute audio */
133 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
134 saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6));
135
Hans Verkuil1052efe2008-07-26 09:01:24 -0300136 atomic_dec(&dev->empress_users);
Arjan van de Vena1789872008-06-22 17:03:02 -0300137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return 0;
139}
140
141static ssize_t
142ts_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
143{
144 struct saa7134_dev *dev = file->private_data;
145
146 if (!dev->empress_started)
147 ts_init_encoder(dev);
148
149 return videobuf_read_stream(&dev->empress_tsq,
150 data, count, ppos, 0,
151 file->f_flags & O_NONBLOCK);
152}
153
154static unsigned int
155ts_poll(struct file *file, struct poll_table_struct *wait)
156{
157 struct saa7134_dev *dev = file->private_data;
158
159 return videobuf_poll_stream(file, &dev->empress_tsq, wait);
160}
161
162
163static int
164ts_mmap(struct file *file, struct vm_area_struct * vma)
165{
166 struct saa7134_dev *dev = file->private_data;
167
168 return videobuf_mmap_mapper(&dev->empress_tsq, vma);
169}
170
171/*
172 * This function is _not_ called directly, but from
173 * video_generic_ioctl (and maybe others). userspace
174 * copying is done already, arg is a kernel pointer.
175 */
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300176
177static int empress_querycap(struct file *file, void *priv,
178 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Dmitri Belimov388748e2008-05-21 01:20:34 -0300180 struct saa7134_dev *dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300182 strcpy(cap->driver, "saa7134");
183 strlcpy(cap->card, saa7134_boards[dev->board].name,
184 sizeof(cap->card));
185 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
186 cap->version = SAA7134_VERSION_CODE;
187 cap->capabilities =
188 V4L2_CAP_VIDEO_CAPTURE |
189 V4L2_CAP_READWRITE |
190 V4L2_CAP_STREAMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return 0;
192}
193
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300194static int empress_enum_input(struct file *file, void *priv,
195 struct v4l2_input *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300197 if (i->index != 0)
198 return -EINVAL;
199
200 i->type = V4L2_INPUT_TYPE_CAMERA;
201 strcpy(i->name, "CCIR656");
202
203 return 0;
204}
205
206static int empress_g_input(struct file *file, void *priv, unsigned int *i)
207{
208 *i = 0;
209 return 0;
210}
211
212static int empress_s_input(struct file *file, void *priv, unsigned int i)
213{
214 if (i != 0)
215 return -EINVAL;
216
217 return 0;
218}
219
Hans Verkuil78b526a2008-05-28 12:16:41 -0300220static int empress_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300221 struct v4l2_fmtdesc *f)
222{
223 if (f->index != 0)
224 return -EINVAL;
225
226 strlcpy(f->description, "MPEG TS", sizeof(f->description));
227 f->pixelformat = V4L2_PIX_FMT_MPEG;
228
229 return 0;
230}
231
Hans Verkuil78b526a2008-05-28 12:16:41 -0300232static int empress_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300233 struct v4l2_format *f)
234{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300235 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300236
Hans Verkuilfac69862009-01-17 12:17:14 -0300237 saa_call_all(dev, video, g_fmt, f);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300238
239 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
240 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
241
242 return 0;
243}
244
Hans Verkuil78b526a2008-05-28 12:16:41 -0300245static int empress_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300246 struct v4l2_format *f)
247{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300248 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300249
Hans Verkuilfac69862009-01-17 12:17:14 -0300250 saa_call_all(dev, video, s_fmt, f);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300251
252 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
253 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
254
255 return 0;
256}
257
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300258static int empress_try_fmt_vid_cap(struct file *file, void *priv,
259 struct v4l2_format *f)
260{
261 struct saa7134_dev *dev = file->private_data;
262
263 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
264 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
265
266 return 0;
267}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300268
269static int empress_reqbufs(struct file *file, void *priv,
270 struct v4l2_requestbuffers *p)
271{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300272 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300273
274 return videobuf_reqbufs(&dev->empress_tsq, p);
275}
276
277static int empress_querybuf(struct file *file, void *priv,
278 struct v4l2_buffer *b)
279{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300280 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300281
282 return videobuf_querybuf(&dev->empress_tsq, b);
283}
284
285static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
286{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300287 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300288
289 return videobuf_qbuf(&dev->empress_tsq, b);
290}
291
292static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
293{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300294 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300295
296 return videobuf_dqbuf(&dev->empress_tsq, b,
297 file->f_flags & O_NONBLOCK);
298}
299
300static int empress_streamon(struct file *file, void *priv,
301 enum v4l2_buf_type type)
302{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300303 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300304
305 return videobuf_streamon(&dev->empress_tsq);
306}
307
308static int empress_streamoff(struct file *file, void *priv,
309 enum v4l2_buf_type type)
310{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300311 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300312
313 return videobuf_streamoff(&dev->empress_tsq);
314}
315
316static int empress_s_ext_ctrls(struct file *file, void *priv,
317 struct v4l2_ext_controls *ctrls)
318{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300319 struct saa7134_dev *dev = file->private_data;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300320 int err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300321
322 /* count == 0 is abused in saa6752hs.c, so that special
323 case is handled here explicitly. */
324 if (ctrls->count == 0)
325 return 0;
326
327 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
328 return -EINVAL;
329
Hans Verkuilfac69862009-01-17 12:17:14 -0300330 err = saa_call_empress(dev, core, s_ext_ctrls, ctrls);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300331 ts_init_encoder(dev);
332
Hans Verkuil8b53b392008-06-27 21:18:15 -0300333 return err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300334}
335
336static int empress_g_ext_ctrls(struct file *file, void *priv,
337 struct v4l2_ext_controls *ctrls)
338{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300339 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300340
341 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
342 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300343 return saa_call_empress(dev, core, g_ext_ctrls, ctrls);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300344}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300345
Hans Verkuil531d83a2008-07-26 09:04:06 -0300346static int empress_g_ctrl(struct file *file, void *priv,
347 struct v4l2_control *c)
348{
349 struct saa7134_dev *dev = file->private_data;
350
351 return saa7134_g_ctrl_internal(dev, NULL, c);
352}
353
354static int empress_s_ctrl(struct file *file, void *priv,
355 struct v4l2_control *c)
356{
357 struct saa7134_dev *dev = file->private_data;
358
359 return saa7134_s_ctrl_internal(dev, NULL, c);
360}
361
Hans Verkuil8b53b392008-06-27 21:18:15 -0300362static int empress_queryctrl(struct file *file, void *priv,
363 struct v4l2_queryctrl *c)
364{
Hans Verkuil2ba58892009-02-13 10:57:48 -0300365 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300366 static const u32 user_ctrls[] = {
367 V4L2_CID_USER_CLASS,
368 V4L2_CID_BRIGHTNESS,
369 V4L2_CID_CONTRAST,
370 V4L2_CID_SATURATION,
371 V4L2_CID_HUE,
372 V4L2_CID_AUDIO_VOLUME,
373 V4L2_CID_AUDIO_MUTE,
374 V4L2_CID_HFLIP,
375 0
376 };
377
Hans Verkuil2ba58892009-02-13 10:57:48 -0300378 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300379 static const u32 mpeg_ctrls[] = {
380 V4L2_CID_MPEG_CLASS,
381 V4L2_CID_MPEG_STREAM_TYPE,
382 V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
383 V4L2_CID_MPEG_AUDIO_ENCODING,
384 V4L2_CID_MPEG_AUDIO_L2_BITRATE,
385 V4L2_CID_MPEG_VIDEO_ENCODING,
386 V4L2_CID_MPEG_VIDEO_ASPECT,
387 V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
388 V4L2_CID_MPEG_VIDEO_BITRATE,
389 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
390 0
391 };
392 static const u32 *ctrl_classes[] = {
393 user_ctrls,
394 mpeg_ctrls,
395 NULL
396 };
397 struct saa7134_dev *dev = file->private_data;
398
399 c->id = v4l2_ctrl_next(ctrl_classes, c->id);
400 if (c->id == 0)
401 return -EINVAL;
402 if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS)
Hans Verkuil10afbef2009-02-21 18:47:24 -0300403 return v4l2_ctrl_query_fill(c, 0, 0, 0, 0);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300404 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
405 return saa7134_queryctrl(file, priv, c);
Hans Verkuilfac69862009-01-17 12:17:14 -0300406 return saa_call_empress(dev, core, queryctrl, c);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300407}
408
409static int empress_querymenu(struct file *file, void *priv,
410 struct v4l2_querymenu *c)
411{
412 struct saa7134_dev *dev = file->private_data;
413
414 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
415 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300416 return saa_call_empress(dev, core, querymenu, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Hans Verkuile281db582008-08-08 12:43:59 -0300419static int empress_g_chip_ident(struct file *file, void *fh,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300420 struct v4l2_dbg_chip_ident *chip)
Hans Verkuile281db582008-08-08 12:43:59 -0300421{
422 struct saa7134_dev *dev = file->private_data;
423
424 chip->ident = V4L2_IDENT_NONE;
425 chip->revision = 0;
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300426 if (chip->match.type == V4L2_CHIP_MATCH_I2C_DRIVER &&
427 !strcmp(chip->match.name, "saa6752hs"))
Hans Verkuilfac69862009-01-17 12:17:14 -0300428 return saa_call_empress(dev, core, g_chip_ident, chip);
Hans Verkuil195784b2009-03-28 09:27:02 -0300429 if (chip->match.type == V4L2_CHIP_MATCH_I2C_ADDR)
Hans Verkuilfac69862009-01-17 12:17:14 -0300430 return saa_call_empress(dev, core, g_chip_ident, chip);
Hans Verkuile281db582008-08-08 12:43:59 -0300431 return -EINVAL;
432}
433
Hans Verkuil9afb7372008-09-06 06:34:44 -0300434static int empress_s_std(struct file *file, void *priv, v4l2_std_id *id)
435{
436 struct saa7134_dev *dev = file->private_data;
437
438 return saa7134_s_std_internal(dev, NULL, id);
439}
440
441static int empress_g_std(struct file *file, void *priv, v4l2_std_id *id)
442{
443 struct saa7134_dev *dev = file->private_data;
444
445 *id = dev->tvnorm->id;
446 return 0;
447}
Hans Verkuile281db582008-08-08 12:43:59 -0300448
Hans Verkuilbec43662008-12-30 06:58:20 -0300449static const struct v4l2_file_operations ts_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 .owner = THIS_MODULE,
452 .open = ts_open,
453 .release = ts_release,
454 .read = ts_read,
455 .poll = ts_poll,
456 .mmap = ts_mmap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300457 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458};
459
Hans Verkuila3998102008-07-21 02:57:38 -0300460static const struct v4l2_ioctl_ops ts_ioctl_ops = {
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300461 .vidioc_querycap = empress_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300462 .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap,
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300463 .vidioc_try_fmt_vid_cap = empress_try_fmt_vid_cap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300464 .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap,
465 .vidioc_g_fmt_vid_cap = empress_g_fmt_vid_cap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300466 .vidioc_reqbufs = empress_reqbufs,
467 .vidioc_querybuf = empress_querybuf,
468 .vidioc_qbuf = empress_qbuf,
469 .vidioc_dqbuf = empress_dqbuf,
470 .vidioc_streamon = empress_streamon,
471 .vidioc_streamoff = empress_streamoff,
472 .vidioc_s_ext_ctrls = empress_s_ext_ctrls,
473 .vidioc_g_ext_ctrls = empress_g_ext_ctrls,
474 .vidioc_enum_input = empress_enum_input,
475 .vidioc_g_input = empress_g_input,
476 .vidioc_s_input = empress_s_input,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300477 .vidioc_queryctrl = empress_queryctrl,
478 .vidioc_querymenu = empress_querymenu,
Hans Verkuil531d83a2008-07-26 09:04:06 -0300479 .vidioc_g_ctrl = empress_g_ctrl,
480 .vidioc_s_ctrl = empress_s_ctrl,
Hans Verkuile281db582008-08-08 12:43:59 -0300481 .vidioc_g_chip_ident = empress_g_chip_ident,
Hans Verkuil9afb7372008-09-06 06:34:44 -0300482 .vidioc_s_std = empress_s_std,
483 .vidioc_g_std = empress_g_std,
Hans Verkuila3998102008-07-21 02:57:38 -0300484};
485
486/* ----------------------------------------------------------- */
487
488static struct video_device saa7134_empress_template = {
489 .name = "saa7134-empress",
Hans Verkuila3998102008-07-21 02:57:38 -0300490 .fops = &ts_fops,
491 .minor = -1,
492 .ioctl_ops = &ts_ioctl_ops,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300493
494 .tvnorms = SAA7134_NORMS,
495 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496};
497
David Howellsc4028952006-11-22 14:57:56 +0000498static void empress_signal_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
David Howellsc4028952006-11-22 14:57:56 +0000500 struct saa7134_dev* dev =
501 container_of(work, struct saa7134_dev, empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (dev->nosignal) {
504 dprintk("no video signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 } else {
506 dprintk("video signal acquired\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508}
509
510static void empress_signal_change(struct saa7134_dev *dev)
511{
512 schedule_work(&dev->empress_workqueue);
513}
514
515
516static int empress_init(struct saa7134_dev *dev)
517{
518 int err;
519
Harvey Harrison50163812008-04-08 23:20:00 -0300520 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 dev->empress_dev = video_device_alloc();
522 if (NULL == dev->empress_dev)
523 return -ENOMEM;
524 *(dev->empress_dev) = saa7134_empress_template;
Hans Verkuil5e85e732008-07-20 06:31:39 -0300525 dev->empress_dev->parent = &dev->pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 dev->empress_dev->release = video_device_release;
527 snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name),
528 "%s empress (%s)", dev->name,
529 saa7134_boards[dev->board].name);
530
David Howellsc4028952006-11-22 14:57:56 +0000531 INIT_WORK(&dev->empress_workqueue, empress_signal_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER,
534 empress_nr[dev->nr]);
535 if (err < 0) {
536 printk(KERN_INFO "%s: can't register video device\n",
537 dev->name);
538 video_device_release(dev->empress_dev);
539 dev->empress_dev = NULL;
540 return err;
541 }
542 printk(KERN_INFO "%s: registered device video%d [mpeg]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -0300543 dev->name, dev->empress_dev->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300545 videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops,
546 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 V4L2_BUF_TYPE_VIDEO_CAPTURE,
548 V4L2_FIELD_ALTERNATE,
549 sizeof(struct saa7134_buf),
550 dev);
551
David Howellsc4028952006-11-22 14:57:56 +0000552 empress_signal_update(&dev->empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return 0;
554}
555
556static int empress_fini(struct saa7134_dev *dev)
557{
Harvey Harrison50163812008-04-08 23:20:00 -0300558 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (NULL == dev->empress_dev)
561 return 0;
562 flush_scheduled_work();
563 video_unregister_device(dev->empress_dev);
564 dev->empress_dev = NULL;
565 return 0;
566}
567
568static struct saa7134_mpeg_ops empress_ops = {
569 .type = SAA7134_MPEG_EMPRESS,
570 .init = empress_init,
571 .fini = empress_fini,
572 .signal_change = empress_signal_change,
573};
574
575static int __init empress_register(void)
576{
577 return saa7134_ts_register(&empress_ops);
578}
579
580static void __exit empress_unregister(void)
581{
582 saa7134_ts_unregister(&empress_ops);
583}
584
585module_init(empress_register);
586module_exit(empress_unregister);
587
588/* ----------------------------------------------------------- */
589/*
590 * Local variables:
591 * c-basic-offset: 8
592 * End:
593 */