blob: ee5bff02a92cb098a669c2f8204e24da90659bf5 [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>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040025#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/delay.h>
27
28#include "saa7134-reg.h"
29#include "saa7134.h"
30
31#include <media/saa6752hs.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020032#include <media/v4l2-common.h>
Hans Verkuile281db582008-08-08 12:43:59 -030033#include <media/v4l2-chip-ident.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* ------------------------------------------------------------------ */
36
37MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
38MODULE_LICENSE("GPL");
39
40static unsigned int empress_nr[] = {[0 ... (SAA7134_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042module_param_array(empress_nr, int, NULL, 0444);
43MODULE_PARM_DESC(empress_nr,"ts device number");
44
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030045static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046module_param(debug, int, 0644);
47MODULE_PARM_DESC(debug,"enable debug messages");
48
49#define dprintk(fmt, arg...) if (debug) \
50 printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg)
51
52/* ------------------------------------------------------------------ */
53
54static void ts_reset_encoder(struct saa7134_dev* dev)
55{
56 if (!dev->empress_started)
57 return;
58
59 saa_writeb(SAA7134_SPECIAL_MODE, 0x00);
60 msleep(10);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080061 saa_writeb(SAA7134_SPECIAL_MODE, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 msleep(100);
63 dev->empress_started = 0;
64}
65
66static int ts_init_encoder(struct saa7134_dev* dev)
67{
Dmitry Belimovf03813e2008-08-26 13:44:40 -030068 u32 leading_null_bytes = 0;
Hans Verkuil86b79d62006-06-18 16:40:10 -030069
Dmitry Belimovf03813e2008-08-26 13:44:40 -030070 /* If more cards start to need this, then this
71 should probably be added to the card definitions. */
72 switch (dev->board) {
73 case SAA7134_BOARD_BEHOLD_M6:
74 case SAA7134_BOARD_BEHOLD_M63:
75 case SAA7134_BOARD_BEHOLD_M6_EXTRA:
76 leading_null_bytes = 1;
77 break;
78 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 ts_reset_encoder(dev);
Hans Verkuilfac69862009-01-17 12:17:14 -030080 saa_call_all(dev, core, init, leading_null_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 dev->empress_started = 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080082 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85/* ------------------------------------------------------------------ */
86
Hans Verkuilbec43662008-12-30 06:58:20 -030087static int ts_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Laurent Pinchart50462eb2009-12-10 11:47:13 -020089 struct video_device *vdev = video_devdata(file);
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -020090 struct saa7134_dev *dev = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int err;
92
Laurent Pinchart50462eb2009-12-10 11:47:13 -020093 dprintk("open dev=%s\n", video_device_node_name(vdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 err = -EBUSY;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -030095 if (!mutex_trylock(&dev->empress_tsq.vb_lock))
Hans Verkuil7415c762010-01-29 06:51:08 -030096 return err;
Hans Verkuil1052efe2008-07-26 09:01:24 -030097 if (atomic_read(&dev->empress_users))
Hans Verkuil7415c762010-01-29 06:51:08 -030098 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Rafael Bilskib784e522007-06-20 05:37:27 -0300100 /* Unmute audio */
101 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
102 saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6));
103
Hans Verkuil1052efe2008-07-26 09:01:24 -0300104 atomic_inc(&dev->empress_users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 file->private_data = dev;
106 err = 0;
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108done:
Hans Verkuil7415c762010-01-29 06:51:08 -0300109 mutex_unlock(&dev->empress_tsq.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return err;
111}
112
Hans Verkuilbec43662008-12-30 06:58:20 -0300113static int ts_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
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
Hans Verkuilfac69862009-01-17 12:17:14 -0300228 saa_call_all(dev, video, g_fmt, f);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300229
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
Hans Verkuilfac69862009-01-17 12:17:14 -0300241 saa_call_all(dev, video, s_fmt, f);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300242
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
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300249static int empress_try_fmt_vid_cap(struct file *file, void *priv,
250 struct v4l2_format *f)
251{
252 struct saa7134_dev *dev = file->private_data;
253
254 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
255 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
256
257 return 0;
258}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300259
260static int empress_reqbufs(struct file *file, void *priv,
261 struct v4l2_requestbuffers *p)
262{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300263 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300264
265 return videobuf_reqbufs(&dev->empress_tsq, p);
266}
267
268static int empress_querybuf(struct file *file, void *priv,
269 struct v4l2_buffer *b)
270{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300271 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300272
273 return videobuf_querybuf(&dev->empress_tsq, b);
274}
275
276static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
277{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300278 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300279
280 return videobuf_qbuf(&dev->empress_tsq, b);
281}
282
283static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
284{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300285 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300286
287 return videobuf_dqbuf(&dev->empress_tsq, b,
288 file->f_flags & O_NONBLOCK);
289}
290
291static int empress_streamon(struct file *file, void *priv,
292 enum v4l2_buf_type type)
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_streamon(&dev->empress_tsq);
297}
298
299static int empress_streamoff(struct file *file, void *priv,
300 enum v4l2_buf_type type)
301{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300302 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300303
304 return videobuf_streamoff(&dev->empress_tsq);
305}
306
307static int empress_s_ext_ctrls(struct file *file, void *priv,
308 struct v4l2_ext_controls *ctrls)
309{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300310 struct saa7134_dev *dev = file->private_data;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300311 int err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300312
313 /* count == 0 is abused in saa6752hs.c, so that special
314 case is handled here explicitly. */
315 if (ctrls->count == 0)
316 return 0;
317
318 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
319 return -EINVAL;
320
Hans Verkuilfac69862009-01-17 12:17:14 -0300321 err = saa_call_empress(dev, core, s_ext_ctrls, ctrls);
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300322 ts_init_encoder(dev);
323
Hans Verkuil8b53b392008-06-27 21:18:15 -0300324 return err;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300325}
326
327static int empress_g_ext_ctrls(struct file *file, void *priv,
328 struct v4l2_ext_controls *ctrls)
329{
Dmitri Belimova14fe962008-06-10 14:19:31 -0300330 struct saa7134_dev *dev = file->private_data;
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300331
332 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
333 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300334 return saa_call_empress(dev, core, g_ext_ctrls, ctrls);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300335}
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300336
Hans Verkuil531d83a2008-07-26 09:04:06 -0300337static int empress_g_ctrl(struct file *file, void *priv,
338 struct v4l2_control *c)
339{
340 struct saa7134_dev *dev = file->private_data;
341
342 return saa7134_g_ctrl_internal(dev, NULL, c);
343}
344
345static int empress_s_ctrl(struct file *file, void *priv,
346 struct v4l2_control *c)
347{
348 struct saa7134_dev *dev = file->private_data;
349
350 return saa7134_s_ctrl_internal(dev, NULL, c);
351}
352
Hans Verkuil8b53b392008-06-27 21:18:15 -0300353static int empress_queryctrl(struct file *file, void *priv,
354 struct v4l2_queryctrl *c)
355{
Hans Verkuil2ba58892009-02-13 10:57:48 -0300356 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300357 static const u32 user_ctrls[] = {
358 V4L2_CID_USER_CLASS,
359 V4L2_CID_BRIGHTNESS,
360 V4L2_CID_CONTRAST,
361 V4L2_CID_SATURATION,
362 V4L2_CID_HUE,
363 V4L2_CID_AUDIO_VOLUME,
364 V4L2_CID_AUDIO_MUTE,
365 V4L2_CID_HFLIP,
366 0
367 };
368
Hans Verkuil2ba58892009-02-13 10:57:48 -0300369 /* Must be sorted from low to high control ID! */
Hans Verkuil8b53b392008-06-27 21:18:15 -0300370 static const u32 mpeg_ctrls[] = {
371 V4L2_CID_MPEG_CLASS,
372 V4L2_CID_MPEG_STREAM_TYPE,
373 V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
374 V4L2_CID_MPEG_AUDIO_ENCODING,
375 V4L2_CID_MPEG_AUDIO_L2_BITRATE,
376 V4L2_CID_MPEG_VIDEO_ENCODING,
377 V4L2_CID_MPEG_VIDEO_ASPECT,
378 V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
379 V4L2_CID_MPEG_VIDEO_BITRATE,
380 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
381 0
382 };
383 static const u32 *ctrl_classes[] = {
384 user_ctrls,
385 mpeg_ctrls,
386 NULL
387 };
388 struct saa7134_dev *dev = file->private_data;
389
390 c->id = v4l2_ctrl_next(ctrl_classes, c->id);
391 if (c->id == 0)
392 return -EINVAL;
393 if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS)
Hans Verkuil10afbef2009-02-21 18:47:24 -0300394 return v4l2_ctrl_query_fill(c, 0, 0, 0, 0);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300395 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
396 return saa7134_queryctrl(file, priv, c);
Hans Verkuilfac69862009-01-17 12:17:14 -0300397 return saa_call_empress(dev, core, queryctrl, c);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300398}
399
400static int empress_querymenu(struct file *file, void *priv,
401 struct v4l2_querymenu *c)
402{
403 struct saa7134_dev *dev = file->private_data;
404
405 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
406 return -EINVAL;
Hans Verkuilfac69862009-01-17 12:17:14 -0300407 return saa_call_empress(dev, core, querymenu, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Hans Verkuile281db582008-08-08 12:43:59 -0300410static int empress_g_chip_ident(struct file *file, void *fh,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300411 struct v4l2_dbg_chip_ident *chip)
Hans Verkuile281db582008-08-08 12:43:59 -0300412{
413 struct saa7134_dev *dev = file->private_data;
414
415 chip->ident = V4L2_IDENT_NONE;
416 chip->revision = 0;
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300417 if (chip->match.type == V4L2_CHIP_MATCH_I2C_DRIVER &&
418 !strcmp(chip->match.name, "saa6752hs"))
Hans Verkuilfac69862009-01-17 12:17:14 -0300419 return saa_call_empress(dev, core, g_chip_ident, chip);
Hans Verkuil195784b2009-03-28 09:27:02 -0300420 if (chip->match.type == V4L2_CHIP_MATCH_I2C_ADDR)
Hans Verkuilfac69862009-01-17 12:17:14 -0300421 return saa_call_empress(dev, core, g_chip_ident, chip);
Hans Verkuile281db582008-08-08 12:43:59 -0300422 return -EINVAL;
423}
424
Hans Verkuil9afb7372008-09-06 06:34:44 -0300425static int empress_s_std(struct file *file, void *priv, v4l2_std_id *id)
426{
427 struct saa7134_dev *dev = file->private_data;
428
429 return saa7134_s_std_internal(dev, NULL, id);
430}
431
432static int empress_g_std(struct file *file, void *priv, v4l2_std_id *id)
433{
434 struct saa7134_dev *dev = file->private_data;
435
436 *id = dev->tvnorm->id;
437 return 0;
438}
Hans Verkuile281db582008-08-08 12:43:59 -0300439
Hans Verkuilbec43662008-12-30 06:58:20 -0300440static const struct v4l2_file_operations ts_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 .owner = THIS_MODULE,
443 .open = ts_open,
444 .release = ts_release,
445 .read = ts_read,
446 .poll = ts_poll,
447 .mmap = ts_mmap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300448 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449};
450
Hans Verkuila3998102008-07-21 02:57:38 -0300451static const struct v4l2_ioctl_ops ts_ioctl_ops = {
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300452 .vidioc_querycap = empress_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300453 .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap,
Dmitri Belimov6b6b7542009-05-28 01:58:57 -0300454 .vidioc_try_fmt_vid_cap = empress_try_fmt_vid_cap,
Hans Verkuil78b526a2008-05-28 12:16:41 -0300455 .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap,
456 .vidioc_g_fmt_vid_cap = empress_g_fmt_vid_cap,
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -0300457 .vidioc_reqbufs = empress_reqbufs,
458 .vidioc_querybuf = empress_querybuf,
459 .vidioc_qbuf = empress_qbuf,
460 .vidioc_dqbuf = empress_dqbuf,
461 .vidioc_streamon = empress_streamon,
462 .vidioc_streamoff = empress_streamoff,
463 .vidioc_s_ext_ctrls = empress_s_ext_ctrls,
464 .vidioc_g_ext_ctrls = empress_g_ext_ctrls,
465 .vidioc_enum_input = empress_enum_input,
466 .vidioc_g_input = empress_g_input,
467 .vidioc_s_input = empress_s_input,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300468 .vidioc_queryctrl = empress_queryctrl,
469 .vidioc_querymenu = empress_querymenu,
Hans Verkuil531d83a2008-07-26 09:04:06 -0300470 .vidioc_g_ctrl = empress_g_ctrl,
471 .vidioc_s_ctrl = empress_s_ctrl,
Hans Verkuile281db582008-08-08 12:43:59 -0300472 .vidioc_g_chip_ident = empress_g_chip_ident,
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,
485 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486};
487
David Howellsc4028952006-11-22 14:57:56 +0000488static void empress_signal_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
David Howellsc4028952006-11-22 14:57:56 +0000490 struct saa7134_dev* dev =
491 container_of(work, struct saa7134_dev, empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 if (dev->nosignal) {
494 dprintk("no video signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 } else {
496 dprintk("video signal acquired\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498}
499
500static void empress_signal_change(struct saa7134_dev *dev)
501{
502 schedule_work(&dev->empress_workqueue);
503}
504
505
506static int empress_init(struct saa7134_dev *dev)
507{
508 int err;
509
Harvey Harrison50163812008-04-08 23:20:00 -0300510 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 dev->empress_dev = video_device_alloc();
512 if (NULL == dev->empress_dev)
513 return -ENOMEM;
514 *(dev->empress_dev) = saa7134_empress_template;
Hans Verkuil5e85e732008-07-20 06:31:39 -0300515 dev->empress_dev->parent = &dev->pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 dev->empress_dev->release = video_device_release;
517 snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name),
518 "%s empress (%s)", dev->name,
519 saa7134_boards[dev->board].name);
520
David Howellsc4028952006-11-22 14:57:56 +0000521 INIT_WORK(&dev->empress_workqueue, empress_signal_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200523 video_set_drvdata(dev->empress_dev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER,
525 empress_nr[dev->nr]);
526 if (err < 0) {
527 printk(KERN_INFO "%s: can't register video device\n",
528 dev->name);
529 video_device_release(dev->empress_dev);
530 dev->empress_dev = NULL;
531 return err;
532 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -0300533 printk(KERN_INFO "%s: registered device %s [mpeg]\n",
534 dev->name, video_device_node_name(dev->empress_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300536 videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops,
537 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 V4L2_BUF_TYPE_VIDEO_CAPTURE,
539 V4L2_FIELD_ALTERNATE,
540 sizeof(struct saa7134_buf),
541 dev);
542
David Howellsc4028952006-11-22 14:57:56 +0000543 empress_signal_update(&dev->empress_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return 0;
545}
546
547static int empress_fini(struct saa7134_dev *dev)
548{
Harvey Harrison50163812008-04-08 23:20:00 -0300549 dprintk("%s: %s\n",dev->name,__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if (NULL == dev->empress_dev)
552 return 0;
553 flush_scheduled_work();
554 video_unregister_device(dev->empress_dev);
555 dev->empress_dev = NULL;
556 return 0;
557}
558
559static struct saa7134_mpeg_ops empress_ops = {
560 .type = SAA7134_MPEG_EMPRESS,
561 .init = empress_init,
562 .fini = empress_fini,
563 .signal_change = empress_signal_change,
564};
565
566static int __init empress_register(void)
567{
568 return saa7134_ts_register(&empress_ops);
569}
570
571static void __exit empress_unregister(void)
572{
573 saa7134_ts_unregister(&empress_ops);
574}
575
576module_init(empress_register);
577module_exit(empress_unregister);
578
579/* ----------------------------------------------------------- */
580/*
581 * Local variables:
582 * c-basic-offset: 8
583 * End:
584 */