3 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
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.
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.
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.
20 #include <linux/init.h>
21 #include <linux/list.h>
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/slab.h>
25 #include <linux/delay.h>
27 #include "saa7134-reg.h"
30 #include <media/saa6752hs.h>
31 #include <media/v4l2-common.h>
32 #include <media/v4l2-chip-ident.h>
34 /* ------------------------------------------------------------------ */
36 MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
37 MODULE_LICENSE("GPL");
39 static unsigned int empress_nr[] = {[0 ... (SAA7134_MAXBOARDS - 1)] = UNSET };
41 module_param_array(empress_nr, int, NULL, 0444);
42 MODULE_PARM_DESC(empress_nr,"ts device number");
44 static unsigned int debug;
45 module_param(debug, int, 0644);
46 MODULE_PARM_DESC(debug,"enable debug messages");
48 #define dprintk(fmt, arg...) if (debug) \
49 printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg)
51 /* ------------------------------------------------------------------ */
53 static void ts_reset_encoder(struct saa7134_dev* dev)
55 if (!dev->empress_started)
58 saa_writeb(SAA7134_SPECIAL_MODE, 0x00);
60 saa_writeb(SAA7134_SPECIAL_MODE, 0x01);
62 dev->empress_started = 0;
65 static int ts_init_encoder(struct saa7134_dev* dev)
67 u32 leading_null_bytes = 0;
69 /* If more cards start to need this, then this
70 should probably be added to the card definitions. */
72 case SAA7134_BOARD_BEHOLD_M6:
73 case SAA7134_BOARD_BEHOLD_M63:
74 case SAA7134_BOARD_BEHOLD_M6_EXTRA:
75 leading_null_bytes = 1;
78 ts_reset_encoder(dev);
79 saa_call_all(dev, core, init, leading_null_bytes);
80 dev->empress_started = 1;
84 /* ------------------------------------------------------------------ */
86 static int ts_open(struct file *file)
88 int minor = video_devdata(file)->minor;
89 struct saa7134_dev *dev;
93 list_for_each_entry(dev, &saa7134_devlist, devlist)
94 if (dev->empress_dev && dev->empress_dev->minor == minor)
100 dprintk("open minor=%d\n",minor);
102 if (!mutex_trylock(&dev->empress_tsq.vb_lock))
104 if (atomic_read(&dev->empress_users))
108 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
109 saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6));
111 atomic_inc(&dev->empress_users);
112 file->private_data = dev;
116 mutex_unlock(&dev->empress_tsq.vb_lock);
122 static int ts_release(struct file *file)
124 struct saa7134_dev *dev = file->private_data;
126 videobuf_stop(&dev->empress_tsq);
127 videobuf_mmap_free(&dev->empress_tsq);
129 /* stop the encoder */
130 ts_reset_encoder(dev);
133 saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
134 saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6));
136 atomic_dec(&dev->empress_users);
142 ts_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
144 struct saa7134_dev *dev = file->private_data;
146 if (!dev->empress_started)
147 ts_init_encoder(dev);
149 return videobuf_read_stream(&dev->empress_tsq,
150 data, count, ppos, 0,
151 file->f_flags & O_NONBLOCK);
155 ts_poll(struct file *file, struct poll_table_struct *wait)
157 struct saa7134_dev *dev = file->private_data;
159 return videobuf_poll_stream(file, &dev->empress_tsq, wait);
164 ts_mmap(struct file *file, struct vm_area_struct * vma)
166 struct saa7134_dev *dev = file->private_data;
168 return videobuf_mmap_mapper(&dev->empress_tsq, vma);
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.
177 static int empress_querycap(struct file *file, void *priv,
178 struct v4l2_capability *cap)
180 struct saa7134_dev *dev = file->private_data;
182 strcpy(cap->driver, "saa7134");
183 strlcpy(cap->card, saa7134_boards[dev->board].name,
185 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
186 cap->version = SAA7134_VERSION_CODE;
188 V4L2_CAP_VIDEO_CAPTURE |
194 static int empress_enum_input(struct file *file, void *priv,
195 struct v4l2_input *i)
200 i->type = V4L2_INPUT_TYPE_CAMERA;
201 strcpy(i->name, "CCIR656");
206 static int empress_g_input(struct file *file, void *priv, unsigned int *i)
212 static int empress_s_input(struct file *file, void *priv, unsigned int i)
220 static int empress_enum_fmt_vid_cap(struct file *file, void *priv,
221 struct v4l2_fmtdesc *f)
226 strlcpy(f->description, "MPEG TS", sizeof(f->description));
227 f->pixelformat = V4L2_PIX_FMT_MPEG;
232 static int empress_g_fmt_vid_cap(struct file *file, void *priv,
233 struct v4l2_format *f)
235 struct saa7134_dev *dev = file->private_data;
237 saa_call_all(dev, video, g_fmt, f);
239 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
240 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
245 static int empress_s_fmt_vid_cap(struct file *file, void *priv,
246 struct v4l2_format *f)
248 struct saa7134_dev *dev = file->private_data;
250 saa_call_all(dev, video, s_fmt, f);
252 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
253 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
258 static int empress_try_fmt_vid_cap(struct file *file, void *priv,
259 struct v4l2_format *f)
261 struct saa7134_dev *dev = file->private_data;
263 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
264 f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets;
269 static int empress_reqbufs(struct file *file, void *priv,
270 struct v4l2_requestbuffers *p)
272 struct saa7134_dev *dev = file->private_data;
274 return videobuf_reqbufs(&dev->empress_tsq, p);
277 static int empress_querybuf(struct file *file, void *priv,
278 struct v4l2_buffer *b)
280 struct saa7134_dev *dev = file->private_data;
282 return videobuf_querybuf(&dev->empress_tsq, b);
285 static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
287 struct saa7134_dev *dev = file->private_data;
289 return videobuf_qbuf(&dev->empress_tsq, b);
292 static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
294 struct saa7134_dev *dev = file->private_data;
296 return videobuf_dqbuf(&dev->empress_tsq, b,
297 file->f_flags & O_NONBLOCK);
300 static int empress_streamon(struct file *file, void *priv,
301 enum v4l2_buf_type type)
303 struct saa7134_dev *dev = file->private_data;
305 return videobuf_streamon(&dev->empress_tsq);
308 static int empress_streamoff(struct file *file, void *priv,
309 enum v4l2_buf_type type)
311 struct saa7134_dev *dev = file->private_data;
313 return videobuf_streamoff(&dev->empress_tsq);
316 static int empress_s_ext_ctrls(struct file *file, void *priv,
317 struct v4l2_ext_controls *ctrls)
319 struct saa7134_dev *dev = file->private_data;
322 /* count == 0 is abused in saa6752hs.c, so that special
323 case is handled here explicitly. */
324 if (ctrls->count == 0)
327 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
330 err = saa_call_empress(dev, core, s_ext_ctrls, ctrls);
331 ts_init_encoder(dev);
336 static int empress_g_ext_ctrls(struct file *file, void *priv,
337 struct v4l2_ext_controls *ctrls)
339 struct saa7134_dev *dev = file->private_data;
341 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
343 return saa_call_empress(dev, core, g_ext_ctrls, ctrls);
346 static int empress_g_ctrl(struct file *file, void *priv,
347 struct v4l2_control *c)
349 struct saa7134_dev *dev = file->private_data;
351 return saa7134_g_ctrl_internal(dev, NULL, c);
354 static int empress_s_ctrl(struct file *file, void *priv,
355 struct v4l2_control *c)
357 struct saa7134_dev *dev = file->private_data;
359 return saa7134_s_ctrl_internal(dev, NULL, c);
362 static int empress_queryctrl(struct file *file, void *priv,
363 struct v4l2_queryctrl *c)
365 /* Must be sorted from low to high control ID! */
366 static const u32 user_ctrls[] = {
372 V4L2_CID_AUDIO_VOLUME,
378 /* Must be sorted from low to high control ID! */
379 static const u32 mpeg_ctrls[] = {
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,
392 static const u32 *ctrl_classes[] = {
397 struct saa7134_dev *dev = file->private_data;
399 c->id = v4l2_ctrl_next(ctrl_classes, c->id);
402 if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS)
403 return v4l2_ctrl_query_fill(c, 0, 0, 0, 0);
404 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
405 return saa7134_queryctrl(file, priv, c);
406 return saa_call_empress(dev, core, queryctrl, c);
409 static int empress_querymenu(struct file *file, void *priv,
410 struct v4l2_querymenu *c)
412 struct saa7134_dev *dev = file->private_data;
414 if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
416 return saa_call_empress(dev, core, querymenu, c);
419 static int empress_g_chip_ident(struct file *file, void *fh,
420 struct v4l2_dbg_chip_ident *chip)
422 struct saa7134_dev *dev = file->private_data;
424 chip->ident = V4L2_IDENT_NONE;
426 if (chip->match.type == V4L2_CHIP_MATCH_I2C_DRIVER &&
427 !strcmp(chip->match.name, "saa6752hs"))
428 return saa_call_empress(dev, core, g_chip_ident, chip);
429 if (chip->match.type == V4L2_CHIP_MATCH_I2C_ADDR)
430 return saa_call_empress(dev, core, g_chip_ident, chip);
434 static int empress_s_std(struct file *file, void *priv, v4l2_std_id *id)
436 struct saa7134_dev *dev = file->private_data;
438 return saa7134_s_std_internal(dev, NULL, id);
441 static int empress_g_std(struct file *file, void *priv, v4l2_std_id *id)
443 struct saa7134_dev *dev = file->private_data;
445 *id = dev->tvnorm->id;
449 static const struct v4l2_file_operations ts_fops =
451 .owner = THIS_MODULE,
453 .release = ts_release,
457 .ioctl = video_ioctl2,
460 static const struct v4l2_ioctl_ops ts_ioctl_ops = {
461 .vidioc_querycap = empress_querycap,
462 .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap,
463 .vidioc_try_fmt_vid_cap = empress_try_fmt_vid_cap,
464 .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap,
465 .vidioc_g_fmt_vid_cap = empress_g_fmt_vid_cap,
466 .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,
477 .vidioc_queryctrl = empress_queryctrl,
478 .vidioc_querymenu = empress_querymenu,
479 .vidioc_g_ctrl = empress_g_ctrl,
480 .vidioc_s_ctrl = empress_s_ctrl,
481 .vidioc_g_chip_ident = empress_g_chip_ident,
482 .vidioc_s_std = empress_s_std,
483 .vidioc_g_std = empress_g_std,
486 /* ----------------------------------------------------------- */
488 static struct video_device saa7134_empress_template = {
489 .name = "saa7134-empress",
492 .ioctl_ops = &ts_ioctl_ops,
494 .tvnorms = SAA7134_NORMS,
495 .current_norm = V4L2_STD_PAL,
498 static void empress_signal_update(struct work_struct *work)
500 struct saa7134_dev* dev =
501 container_of(work, struct saa7134_dev, empress_workqueue);
504 dprintk("no video signal\n");
506 dprintk("video signal acquired\n");
510 static void empress_signal_change(struct saa7134_dev *dev)
512 schedule_work(&dev->empress_workqueue);
516 static int empress_init(struct saa7134_dev *dev)
520 dprintk("%s: %s\n",dev->name,__func__);
521 dev->empress_dev = video_device_alloc();
522 if (NULL == dev->empress_dev)
524 *(dev->empress_dev) = saa7134_empress_template;
525 dev->empress_dev->parent = &dev->pci->dev;
526 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);
531 INIT_WORK(&dev->empress_workqueue, empress_signal_update);
533 err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER,
534 empress_nr[dev->nr]);
536 printk(KERN_INFO "%s: can't register video device\n",
538 video_device_release(dev->empress_dev);
539 dev->empress_dev = NULL;
542 printk(KERN_INFO "%s: registered device video%d [mpeg]\n",
543 dev->name, dev->empress_dev->num);
545 videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops,
546 &dev->pci->dev, &dev->slock,
547 V4L2_BUF_TYPE_VIDEO_CAPTURE,
548 V4L2_FIELD_ALTERNATE,
549 sizeof(struct saa7134_buf),
552 empress_signal_update(&dev->empress_workqueue);
556 static int empress_fini(struct saa7134_dev *dev)
558 dprintk("%s: %s\n",dev->name,__func__);
560 if (NULL == dev->empress_dev)
562 flush_scheduled_work();
563 video_unregister_device(dev->empress_dev);
564 dev->empress_dev = NULL;
568 static 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,
575 static int __init empress_register(void)
577 return saa7134_ts_register(&empress_ops);
580 static void __exit empress_unregister(void)
582 saa7134_ts_unregister(&empress_ops);
585 module_init(empress_register);
586 module_exit(empress_unregister);
588 /* ----------------------------------------------------------- */