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/delay.h>
26 #include "saa7134-reg.h"
29 #include <media/saa6752hs.h>
30 #include <media/v4l2-common.h>
31 #include <media/v4l2-chip-ident.h>
33 /* ------------------------------------------------------------------ */
35 MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
36 MODULE_LICENSE("GPL");
38 static unsigned int empress_nr
[] = {[0 ... (SAA7134_MAXBOARDS
- 1)] = UNSET
};
40 module_param_array(empress_nr
, int, NULL
, 0444);
41 MODULE_PARM_DESC(empress_nr
,"ts device number");
43 static unsigned int debug
;
44 module_param(debug
, int, 0644);
45 MODULE_PARM_DESC(debug
,"enable debug messages");
47 #define dprintk(fmt, arg...) if (debug) \
48 printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg)
50 /* ------------------------------------------------------------------ */
52 static void ts_reset_encoder(struct saa7134_dev
* dev
)
54 if (!dev
->empress_started
)
57 saa_writeb(SAA7134_SPECIAL_MODE
, 0x00);
59 saa_writeb(SAA7134_SPECIAL_MODE
, 0x01);
61 dev
->empress_started
= 0;
64 static int ts_init_encoder(struct saa7134_dev
* dev
)
66 u32 leading_null_bytes
= 0;
68 /* If more cards start to need this, then this
69 should probably be added to the card definitions. */
71 case SAA7134_BOARD_BEHOLD_M6
:
72 case SAA7134_BOARD_BEHOLD_M63
:
73 case SAA7134_BOARD_BEHOLD_M6_EXTRA
:
74 leading_null_bytes
= 1;
77 ts_reset_encoder(dev
);
78 saa_call_all(dev
, core
, init
, leading_null_bytes
);
79 dev
->empress_started
= 1;
83 /* ------------------------------------------------------------------ */
85 static int ts_open(struct file
*file
)
87 struct video_device
*vdev
= video_devdata(file
);
88 struct saa7134_dev
*dev
= video_drvdata(file
);
91 dprintk("open dev=%s\n", video_device_node_name(vdev
));
93 if (!mutex_trylock(&dev
->empress_tsq
.vb_lock
))
95 if (atomic_read(&dev
->empress_users
))
99 saa_writeb(SAA7134_AUDIO_MUTE_CTRL
,
100 saa_readb(SAA7134_AUDIO_MUTE_CTRL
) & ~(1 << 6));
102 atomic_inc(&dev
->empress_users
);
103 file
->private_data
= dev
;
107 mutex_unlock(&dev
->empress_tsq
.vb_lock
);
111 static int ts_release(struct file
*file
)
113 struct saa7134_dev
*dev
= file
->private_data
;
115 videobuf_stop(&dev
->empress_tsq
);
116 videobuf_mmap_free(&dev
->empress_tsq
);
118 /* stop the encoder */
119 ts_reset_encoder(dev
);
122 saa_writeb(SAA7134_AUDIO_MUTE_CTRL
,
123 saa_readb(SAA7134_AUDIO_MUTE_CTRL
) | (1 << 6));
125 atomic_dec(&dev
->empress_users
);
131 ts_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*ppos
)
133 struct saa7134_dev
*dev
= file
->private_data
;
135 if (!dev
->empress_started
)
136 ts_init_encoder(dev
);
138 return videobuf_read_stream(&dev
->empress_tsq
,
139 data
, count
, ppos
, 0,
140 file
->f_flags
& O_NONBLOCK
);
144 ts_poll(struct file
*file
, struct poll_table_struct
*wait
)
146 struct saa7134_dev
*dev
= file
->private_data
;
148 return videobuf_poll_stream(file
, &dev
->empress_tsq
, wait
);
153 ts_mmap(struct file
*file
, struct vm_area_struct
* vma
)
155 struct saa7134_dev
*dev
= file
->private_data
;
157 return videobuf_mmap_mapper(&dev
->empress_tsq
, vma
);
161 * This function is _not_ called directly, but from
162 * video_generic_ioctl (and maybe others). userspace
163 * copying is done already, arg is a kernel pointer.
166 static int empress_querycap(struct file
*file
, void *priv
,
167 struct v4l2_capability
*cap
)
169 struct saa7134_dev
*dev
= file
->private_data
;
171 strcpy(cap
->driver
, "saa7134");
172 strlcpy(cap
->card
, saa7134_boards
[dev
->board
].name
,
174 sprintf(cap
->bus_info
, "PCI:%s", pci_name(dev
->pci
));
176 V4L2_CAP_VIDEO_CAPTURE
|
182 static int empress_enum_input(struct file
*file
, void *priv
,
183 struct v4l2_input
*i
)
188 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
189 strcpy(i
->name
, "CCIR656");
194 static int empress_g_input(struct file
*file
, void *priv
, unsigned int *i
)
200 static int empress_s_input(struct file
*file
, void *priv
, unsigned int i
)
208 static int empress_enum_fmt_vid_cap(struct file
*file
, void *priv
,
209 struct v4l2_fmtdesc
*f
)
214 strlcpy(f
->description
, "MPEG TS", sizeof(f
->description
));
215 f
->pixelformat
= V4L2_PIX_FMT_MPEG
;
220 static int empress_g_fmt_vid_cap(struct file
*file
, void *priv
,
221 struct v4l2_format
*f
)
223 struct saa7134_dev
*dev
= file
->private_data
;
224 struct v4l2_mbus_framefmt mbus_fmt
;
226 saa_call_all(dev
, video
, g_mbus_fmt
, &mbus_fmt
);
228 v4l2_fill_pix_format(&f
->fmt
.pix
, &mbus_fmt
);
229 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
230 f
->fmt
.pix
.sizeimage
= TS_PACKET_SIZE
* dev
->ts
.nr_packets
;
235 static int empress_s_fmt_vid_cap(struct file
*file
, void *priv
,
236 struct v4l2_format
*f
)
238 struct saa7134_dev
*dev
= file
->private_data
;
239 struct v4l2_mbus_framefmt mbus_fmt
;
241 v4l2_fill_mbus_format(&mbus_fmt
, &f
->fmt
.pix
, V4L2_MBUS_FMT_FIXED
);
242 saa_call_all(dev
, video
, s_mbus_fmt
, &mbus_fmt
);
243 v4l2_fill_pix_format(&f
->fmt
.pix
, &mbus_fmt
);
245 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
246 f
->fmt
.pix
.sizeimage
= TS_PACKET_SIZE
* dev
->ts
.nr_packets
;
251 static int empress_try_fmt_vid_cap(struct file
*file
, void *priv
,
252 struct v4l2_format
*f
)
254 struct saa7134_dev
*dev
= file
->private_data
;
256 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
257 f
->fmt
.pix
.sizeimage
= TS_PACKET_SIZE
* dev
->ts
.nr_packets
;
262 static int empress_reqbufs(struct file
*file
, void *priv
,
263 struct v4l2_requestbuffers
*p
)
265 struct saa7134_dev
*dev
= file
->private_data
;
267 return videobuf_reqbufs(&dev
->empress_tsq
, p
);
270 static int empress_querybuf(struct file
*file
, void *priv
,
271 struct v4l2_buffer
*b
)
273 struct saa7134_dev
*dev
= file
->private_data
;
275 return videobuf_querybuf(&dev
->empress_tsq
, b
);
278 static int empress_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
280 struct saa7134_dev
*dev
= file
->private_data
;
282 return videobuf_qbuf(&dev
->empress_tsq
, b
);
285 static int empress_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
287 struct saa7134_dev
*dev
= file
->private_data
;
289 return videobuf_dqbuf(&dev
->empress_tsq
, b
,
290 file
->f_flags
& O_NONBLOCK
);
293 static int empress_streamon(struct file
*file
, void *priv
,
294 enum v4l2_buf_type type
)
296 struct saa7134_dev
*dev
= file
->private_data
;
298 return videobuf_streamon(&dev
->empress_tsq
);
301 static int empress_streamoff(struct file
*file
, void *priv
,
302 enum v4l2_buf_type type
)
304 struct saa7134_dev
*dev
= file
->private_data
;
306 return videobuf_streamoff(&dev
->empress_tsq
);
309 static int empress_s_ext_ctrls(struct file
*file
, void *priv
,
310 struct v4l2_ext_controls
*ctrls
)
312 struct saa7134_dev
*dev
= file
->private_data
;
315 /* count == 0 is abused in saa6752hs.c, so that special
316 case is handled here explicitly. */
317 if (ctrls
->count
== 0)
320 if (ctrls
->ctrl_class
!= V4L2_CTRL_CLASS_MPEG
)
323 err
= saa_call_empress(dev
, core
, s_ext_ctrls
, ctrls
);
324 ts_init_encoder(dev
);
329 static int empress_g_ext_ctrls(struct file
*file
, void *priv
,
330 struct v4l2_ext_controls
*ctrls
)
332 struct saa7134_dev
*dev
= file
->private_data
;
334 if (ctrls
->ctrl_class
!= V4L2_CTRL_CLASS_MPEG
)
336 return saa_call_empress(dev
, core
, g_ext_ctrls
, ctrls
);
339 static int empress_g_ctrl(struct file
*file
, void *priv
,
340 struct v4l2_control
*c
)
342 struct saa7134_dev
*dev
= file
->private_data
;
344 return saa7134_g_ctrl_internal(dev
, NULL
, c
);
347 static int empress_s_ctrl(struct file
*file
, void *priv
,
348 struct v4l2_control
*c
)
350 struct saa7134_dev
*dev
= file
->private_data
;
352 return saa7134_s_ctrl_internal(dev
, NULL
, c
);
355 static int empress_queryctrl(struct file
*file
, void *priv
,
356 struct v4l2_queryctrl
*c
)
358 /* Must be sorted from low to high control ID! */
359 static const u32 user_ctrls
[] = {
365 V4L2_CID_AUDIO_VOLUME
,
371 /* Must be sorted from low to high control ID! */
372 static const u32 mpeg_ctrls
[] = {
374 V4L2_CID_MPEG_STREAM_TYPE
,
375 V4L2_CID_MPEG_STREAM_PID_PMT
,
376 V4L2_CID_MPEG_STREAM_PID_AUDIO
,
377 V4L2_CID_MPEG_STREAM_PID_VIDEO
,
378 V4L2_CID_MPEG_STREAM_PID_PCR
,
379 V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ
,
380 V4L2_CID_MPEG_AUDIO_ENCODING
,
381 V4L2_CID_MPEG_AUDIO_L2_BITRATE
,
382 V4L2_CID_MPEG_VIDEO_ENCODING
,
383 V4L2_CID_MPEG_VIDEO_ASPECT
,
384 V4L2_CID_MPEG_VIDEO_BITRATE_MODE
,
385 V4L2_CID_MPEG_VIDEO_BITRATE
,
386 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK
,
389 static const u32
*ctrl_classes
[] = {
394 struct saa7134_dev
*dev
= file
->private_data
;
396 c
->id
= v4l2_ctrl_next(ctrl_classes
, c
->id
);
399 if (c
->id
== V4L2_CID_USER_CLASS
|| c
->id
== V4L2_CID_MPEG_CLASS
)
400 return v4l2_ctrl_query_fill(c
, 0, 0, 0, 0);
401 if (V4L2_CTRL_ID2CLASS(c
->id
) != V4L2_CTRL_CLASS_MPEG
)
402 return saa7134_queryctrl(file
, priv
, c
);
403 return saa_call_empress(dev
, core
, queryctrl
, c
);
406 static int empress_querymenu(struct file
*file
, void *priv
,
407 struct v4l2_querymenu
*c
)
409 struct saa7134_dev
*dev
= file
->private_data
;
411 if (V4L2_CTRL_ID2CLASS(c
->id
) != V4L2_CTRL_CLASS_MPEG
)
413 return saa_call_empress(dev
, core
, querymenu
, c
);
416 static int empress_g_chip_ident(struct file
*file
, void *fh
,
417 struct v4l2_dbg_chip_ident
*chip
)
419 struct saa7134_dev
*dev
= file
->private_data
;
421 chip
->ident
= V4L2_IDENT_NONE
;
423 if (chip
->match
.type
== V4L2_CHIP_MATCH_I2C_DRIVER
&&
424 !strcmp(chip
->match
.name
, "saa6752hs"))
425 return saa_call_empress(dev
, core
, g_chip_ident
, chip
);
426 if (chip
->match
.type
== V4L2_CHIP_MATCH_I2C_ADDR
)
427 return saa_call_empress(dev
, core
, g_chip_ident
, chip
);
431 static int empress_s_std(struct file
*file
, void *priv
, v4l2_std_id
*id
)
433 struct saa7134_dev
*dev
= file
->private_data
;
435 return saa7134_s_std_internal(dev
, NULL
, id
);
438 static int empress_g_std(struct file
*file
, void *priv
, v4l2_std_id
*id
)
440 struct saa7134_dev
*dev
= file
->private_data
;
442 *id
= dev
->tvnorm
->id
;
446 static const struct v4l2_file_operations ts_fops
=
448 .owner
= THIS_MODULE
,
450 .release
= ts_release
,
454 .ioctl
= video_ioctl2
,
457 static const struct v4l2_ioctl_ops ts_ioctl_ops
= {
458 .vidioc_querycap
= empress_querycap
,
459 .vidioc_enum_fmt_vid_cap
= empress_enum_fmt_vid_cap
,
460 .vidioc_try_fmt_vid_cap
= empress_try_fmt_vid_cap
,
461 .vidioc_s_fmt_vid_cap
= empress_s_fmt_vid_cap
,
462 .vidioc_g_fmt_vid_cap
= empress_g_fmt_vid_cap
,
463 .vidioc_reqbufs
= empress_reqbufs
,
464 .vidioc_querybuf
= empress_querybuf
,
465 .vidioc_qbuf
= empress_qbuf
,
466 .vidioc_dqbuf
= empress_dqbuf
,
467 .vidioc_streamon
= empress_streamon
,
468 .vidioc_streamoff
= empress_streamoff
,
469 .vidioc_s_ext_ctrls
= empress_s_ext_ctrls
,
470 .vidioc_g_ext_ctrls
= empress_g_ext_ctrls
,
471 .vidioc_enum_input
= empress_enum_input
,
472 .vidioc_g_input
= empress_g_input
,
473 .vidioc_s_input
= empress_s_input
,
474 .vidioc_queryctrl
= empress_queryctrl
,
475 .vidioc_querymenu
= empress_querymenu
,
476 .vidioc_g_ctrl
= empress_g_ctrl
,
477 .vidioc_s_ctrl
= empress_s_ctrl
,
478 .vidioc_g_chip_ident
= empress_g_chip_ident
,
479 .vidioc_s_std
= empress_s_std
,
480 .vidioc_g_std
= empress_g_std
,
483 /* ----------------------------------------------------------- */
485 static struct video_device saa7134_empress_template
= {
486 .name
= "saa7134-empress",
488 .ioctl_ops
= &ts_ioctl_ops
,
490 .tvnorms
= SAA7134_NORMS
,
491 .current_norm
= V4L2_STD_PAL
,
494 static void empress_signal_update(struct work_struct
*work
)
496 struct saa7134_dev
* dev
=
497 container_of(work
, struct saa7134_dev
, empress_workqueue
);
500 dprintk("no video signal\n");
502 dprintk("video signal acquired\n");
506 static void empress_signal_change(struct saa7134_dev
*dev
)
508 schedule_work(&dev
->empress_workqueue
);
512 static int empress_init(struct saa7134_dev
*dev
)
516 dprintk("%s: %s\n",dev
->name
,__func__
);
517 dev
->empress_dev
= video_device_alloc();
518 if (NULL
== dev
->empress_dev
)
520 *(dev
->empress_dev
) = saa7134_empress_template
;
521 dev
->empress_dev
->parent
= &dev
->pci
->dev
;
522 dev
->empress_dev
->release
= video_device_release
;
523 snprintf(dev
->empress_dev
->name
, sizeof(dev
->empress_dev
->name
),
524 "%s empress (%s)", dev
->name
,
525 saa7134_boards
[dev
->board
].name
);
527 INIT_WORK(&dev
->empress_workqueue
, empress_signal_update
);
529 video_set_drvdata(dev
->empress_dev
, dev
);
530 err
= video_register_device(dev
->empress_dev
,VFL_TYPE_GRABBER
,
531 empress_nr
[dev
->nr
]);
533 printk(KERN_INFO
"%s: can't register video device\n",
535 video_device_release(dev
->empress_dev
);
536 dev
->empress_dev
= NULL
;
539 printk(KERN_INFO
"%s: registered device %s [mpeg]\n",
540 dev
->name
, video_device_node_name(dev
->empress_dev
));
542 videobuf_queue_sg_init(&dev
->empress_tsq
, &saa7134_ts_qops
,
543 &dev
->pci
->dev
, &dev
->slock
,
544 V4L2_BUF_TYPE_VIDEO_CAPTURE
,
545 V4L2_FIELD_ALTERNATE
,
546 sizeof(struct saa7134_buf
),
549 empress_signal_update(&dev
->empress_workqueue
);
553 static int empress_fini(struct saa7134_dev
*dev
)
555 dprintk("%s: %s\n",dev
->name
,__func__
);
557 if (NULL
== dev
->empress_dev
)
559 flush_work_sync(&dev
->empress_workqueue
);
560 video_unregister_device(dev
->empress_dev
);
561 dev
->empress_dev
= NULL
;
565 static struct saa7134_mpeg_ops empress_ops
= {
566 .type
= SAA7134_MPEG_EMPRESS
,
567 .init
= empress_init
,
568 .fini
= empress_fini
,
569 .signal_change
= empress_signal_change
,
572 static int __init
empress_register(void)
574 return saa7134_ts_register(&empress_ops
);
577 static void __exit
empress_unregister(void)
579 saa7134_ts_unregister(&empress_ops
);
582 module_init(empress_register
);
583 module_exit(empress_unregister
);
585 /* ----------------------------------------------------------- */