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>
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
= 0;
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 struct v4l2_ext_controls ctrls
= { V4L2_CTRL_CLASS_MPEG
, 0 };
68 ts_reset_encoder(dev
);
69 saa7134_i2c_call_clients(dev
, VIDIOC_S_EXT_CTRLS
, &ctrls
);
70 dev
->empress_started
= 1;
74 /* ------------------------------------------------------------------ */
76 static int ts_open(struct inode
*inode
, struct file
*file
)
78 int minor
= iminor(inode
);
79 struct saa7134_dev
*dev
;
82 list_for_each_entry(dev
, &saa7134_devlist
, devlist
)
83 if (dev
->empress_dev
&& dev
->empress_dev
->minor
== minor
)
88 dprintk("open minor=%d\n",minor
);
90 if (!mutex_trylock(&dev
->empress_tsq
.lock
))
92 if (dev
->empress_users
)
96 saa_writeb(SAA7134_AUDIO_MUTE_CTRL
,
97 saa_readb(SAA7134_AUDIO_MUTE_CTRL
) & ~(1 << 6));
100 file
->private_data
= dev
;
104 mutex_unlock(&dev
->empress_tsq
.lock
);
109 static int ts_release(struct inode
*inode
, struct file
*file
)
111 struct saa7134_dev
*dev
= file
->private_data
;
113 if (dev
->empress_tsq
.streaming
)
114 videobuf_streamoff(&dev
->empress_tsq
);
115 mutex_lock(&dev
->empress_tsq
.lock
);
116 if (dev
->empress_tsq
.reading
)
117 videobuf_read_stop(&dev
->empress_tsq
);
118 videobuf_mmap_free(&dev
->empress_tsq
);
119 dev
->empress_users
--;
121 /* stop the encoder */
122 ts_reset_encoder(dev
);
125 saa_writeb(SAA7134_AUDIO_MUTE_CTRL
,
126 saa_readb(SAA7134_AUDIO_MUTE_CTRL
) | (1 << 6));
128 mutex_unlock(&dev
->empress_tsq
.lock
);
133 ts_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*ppos
)
135 struct saa7134_dev
*dev
= file
->private_data
;
137 if (!dev
->empress_started
)
138 ts_init_encoder(dev
);
140 return videobuf_read_stream(&dev
->empress_tsq
,
141 data
, count
, ppos
, 0,
142 file
->f_flags
& O_NONBLOCK
);
146 ts_poll(struct file
*file
, struct poll_table_struct
*wait
)
148 struct saa7134_dev
*dev
= file
->private_data
;
150 return videobuf_poll_stream(file
, &dev
->empress_tsq
, wait
);
155 ts_mmap(struct file
*file
, struct vm_area_struct
* vma
)
157 struct saa7134_dev
*dev
= file
->private_data
;
159 return videobuf_mmap_mapper(&dev
->empress_tsq
, vma
);
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.
167 static int ts_do_ioctl(struct inode
*inode
, struct file
*file
,
168 unsigned int cmd
, void *arg
)
170 struct saa7134_dev
*dev
= file
->private_data
;
171 struct v4l2_ext_controls
*ctrls
= arg
;
174 v4l_print_ioctl(dev
->name
,cmd
);
176 case VIDIOC_QUERYCAP
:
178 struct v4l2_capability
*cap
= arg
;
180 memset(cap
,0,sizeof(*cap
));
181 strcpy(cap
->driver
, "saa7134");
182 strlcpy(cap
->card
, saa7134_boards
[dev
->board
].name
,
184 sprintf(cap
->bus_info
,"PCI:%s",pci_name(dev
->pci
));
185 cap
->version
= SAA7134_VERSION_CODE
;
187 V4L2_CAP_VIDEO_CAPTURE
|
193 /* --- input switching --------------------------------------- */
194 case VIDIOC_ENUMINPUT
:
196 struct v4l2_input
*i
= arg
;
200 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
201 strcpy(i
->name
,"CCIR656");
218 /* --- capture ioctls ---------------------------------------- */
220 case VIDIOC_ENUM_FMT
:
222 struct v4l2_fmtdesc
*f
= arg
;
229 memset(f
,0,sizeof(*f
));
231 strlcpy(f
->description
, "MPEG TS", sizeof(f
->description
));
232 f
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
233 f
->pixelformat
= V4L2_PIX_FMT_MPEG
;
239 struct v4l2_format
*f
= arg
;
241 memset(f
,0,sizeof(*f
));
242 f
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
244 saa7134_i2c_call_clients(dev
, cmd
, arg
);
245 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
246 f
->fmt
.pix
.sizeimage
= TS_PACKET_SIZE
* dev
->ts
.nr_packets
;
252 struct v4l2_format
*f
= arg
;
254 if (f
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
257 saa7134_i2c_call_clients(dev
, cmd
, arg
);
258 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
259 f
->fmt
.pix
.sizeimage
= TS_PACKET_SIZE
* dev
->ts
.nr_packets
;
264 return videobuf_reqbufs(&dev
->empress_tsq
,arg
);
266 case VIDIOC_QUERYBUF
:
267 return videobuf_querybuf(&dev
->empress_tsq
,arg
);
270 return videobuf_qbuf(&dev
->empress_tsq
,arg
);
273 return videobuf_dqbuf(&dev
->empress_tsq
,arg
,
274 file
->f_flags
& O_NONBLOCK
);
276 case VIDIOC_STREAMON
:
277 return videobuf_streamon(&dev
->empress_tsq
);
279 case VIDIOC_STREAMOFF
:
280 return videobuf_streamoff(&dev
->empress_tsq
);
282 case VIDIOC_QUERYCTRL
:
285 return saa7134_common_ioctl(dev
, cmd
, arg
);
287 case VIDIOC_S_EXT_CTRLS
:
288 /* count == 0 is abused in saa6752hs.c, so that special
289 case is handled here explicitly. */
290 if (ctrls
->count
== 0)
292 if (ctrls
->ctrl_class
!= V4L2_CTRL_CLASS_MPEG
)
294 saa7134_i2c_call_clients(dev
, VIDIOC_S_EXT_CTRLS
, arg
);
295 ts_init_encoder(dev
);
297 case VIDIOC_G_EXT_CTRLS
:
298 if (ctrls
->ctrl_class
!= V4L2_CTRL_CLASS_MPEG
)
300 saa7134_i2c_call_clients(dev
, VIDIOC_G_EXT_CTRLS
, arg
);
309 static int ts_ioctl(struct inode
*inode
, struct file
*file
,
310 unsigned int cmd
, unsigned long arg
)
312 return video_usercopy(inode
, file
, cmd
, arg
, ts_do_ioctl
);
315 static const struct file_operations ts_fops
=
317 .owner
= THIS_MODULE
,
319 .release
= ts_release
,
327 /* ----------------------------------------------------------- */
329 static struct video_device saa7134_empress_template
=
331 .name
= "saa7134-empress",
332 .type
= 0 /* FIXME */,
333 .type2
= 0 /* FIXME */,
338 static void empress_signal_update(struct work_struct
*work
)
340 struct saa7134_dev
* dev
=
341 container_of(work
, struct saa7134_dev
, empress_workqueue
);
344 dprintk("no video signal\n");
345 ts_reset_encoder(dev
);
347 dprintk("video signal acquired\n");
348 if (dev
->empress_users
)
349 ts_init_encoder(dev
);
353 static void empress_signal_change(struct saa7134_dev
*dev
)
355 schedule_work(&dev
->empress_workqueue
);
359 static int empress_init(struct saa7134_dev
*dev
)
363 dprintk("%s: %s\n",dev
->name
,__FUNCTION__
);
364 dev
->empress_dev
= video_device_alloc();
365 if (NULL
== dev
->empress_dev
)
367 *(dev
->empress_dev
) = saa7134_empress_template
;
368 dev
->empress_dev
->dev
= &dev
->pci
->dev
;
369 dev
->empress_dev
->release
= video_device_release
;
370 snprintf(dev
->empress_dev
->name
, sizeof(dev
->empress_dev
->name
),
371 "%s empress (%s)", dev
->name
,
372 saa7134_boards
[dev
->board
].name
);
374 INIT_WORK(&dev
->empress_workqueue
, empress_signal_update
);
376 err
= video_register_device(dev
->empress_dev
,VFL_TYPE_GRABBER
,
377 empress_nr
[dev
->nr
]);
379 printk(KERN_INFO
"%s: can't register video device\n",
381 video_device_release(dev
->empress_dev
);
382 dev
->empress_dev
= NULL
;
385 printk(KERN_INFO
"%s: registered device video%d [mpeg]\n",
386 dev
->name
,dev
->empress_dev
->minor
& 0x1f);
388 videobuf_queue_pci_init(&dev
->empress_tsq
, &saa7134_ts_qops
,
389 dev
->pci
, &dev
->slock
,
390 V4L2_BUF_TYPE_VIDEO_CAPTURE
,
391 V4L2_FIELD_ALTERNATE
,
392 sizeof(struct saa7134_buf
),
395 empress_signal_update(&dev
->empress_workqueue
);
399 static int empress_fini(struct saa7134_dev
*dev
)
401 dprintk("%s: %s\n",dev
->name
,__FUNCTION__
);
403 if (NULL
== dev
->empress_dev
)
405 flush_scheduled_work();
406 video_unregister_device(dev
->empress_dev
);
407 dev
->empress_dev
= NULL
;
411 static struct saa7134_mpeg_ops empress_ops
= {
412 .type
= SAA7134_MPEG_EMPRESS
,
413 .init
= empress_init
,
414 .fini
= empress_fini
,
415 .signal_change
= empress_signal_change
,
418 static int __init
empress_register(void)
420 return saa7134_ts_register(&empress_ops
);
423 static void __exit
empress_unregister(void)
425 saa7134_ts_unregister(&empress_ops
);
428 module_init(empress_register
);
429 module_exit(empress_unregister
);
431 /* ----------------------------------------------------------- */