Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #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 Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 31 | #include <media/v4l2-common.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /* ------------------------------------------------------------------ */ |
| 34 | |
| 35 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |
| 36 | MODULE_LICENSE("GPL"); |
| 37 | |
| 38 | static unsigned int empress_nr[] = {[0 ... (SAA7134_MAXBOARDS - 1)] = UNSET }; |
Mauro Carvalho Chehab | 674434c | 2005-12-12 00:37:28 -0800 | [diff] [blame] | 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | module_param_array(empress_nr, int, NULL, 0444); |
| 41 | MODULE_PARM_DESC(empress_nr,"ts device number"); |
| 42 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 43 | static unsigned int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | module_param(debug, int, 0644); |
| 45 | MODULE_PARM_DESC(debug,"enable debug messages"); |
| 46 | |
| 47 | #define dprintk(fmt, arg...) if (debug) \ |
| 48 | printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg) |
| 49 | |
| 50 | /* ------------------------------------------------------------------ */ |
| 51 | |
| 52 | static void ts_reset_encoder(struct saa7134_dev* dev) |
| 53 | { |
| 54 | if (!dev->empress_started) |
| 55 | return; |
| 56 | |
| 57 | saa_writeb(SAA7134_SPECIAL_MODE, 0x00); |
| 58 | msleep(10); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 59 | saa_writeb(SAA7134_SPECIAL_MODE, 0x01); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | msleep(100); |
| 61 | dev->empress_started = 0; |
| 62 | } |
| 63 | |
| 64 | static int ts_init_encoder(struct saa7134_dev* dev) |
| 65 | { |
Hans Verkuil | 86b79d6 | 2006-06-18 16:40:10 -0300 | [diff] [blame] | 66 | struct v4l2_ext_controls ctrls = { V4L2_CTRL_CLASS_MPEG, 0 }; |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | ts_reset_encoder(dev); |
Hans Verkuil | 86b79d6 | 2006-06-18 16:40:10 -0300 | [diff] [blame] | 69 | saa7134_i2c_call_clients(dev, VIDIOC_S_EXT_CTRLS, &ctrls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | dev->empress_started = 1; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 71 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | /* ------------------------------------------------------------------ */ |
| 75 | |
| 76 | static int ts_open(struct inode *inode, struct file *file) |
| 77 | { |
| 78 | int minor = iminor(inode); |
Trent Piepho | 6d28e98 | 2007-10-10 05:37:42 -0300 | [diff] [blame] | 79 | struct saa7134_dev *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | int err; |
| 81 | |
Trent Piepho | 6d28e98 | 2007-10-10 05:37:42 -0300 | [diff] [blame] | 82 | list_for_each_entry(dev, &saa7134_devlist, devlist) |
| 83 | if (dev->empress_dev && dev->empress_dev->minor == minor) |
| 84 | goto found; |
| 85 | return -ENODEV; |
| 86 | found: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | dprintk("open minor=%d\n",minor); |
| 89 | err = -EBUSY; |
Mauro Carvalho Chehab | 64f9477 | 2008-01-31 13:57:53 -0300 | [diff] [blame] | 90 | if (!mutex_trylock(&dev->empress_tsq.vb_lock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | goto done; |
Hans Verkuil | 1052efe | 2008-07-26 09:01:24 -0300 | [diff] [blame^] | 92 | if (atomic_read(&dev->empress_users)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | goto done_up; |
| 94 | |
Rafael Bilski | b784e52 | 2007-06-20 05:37:27 -0300 | [diff] [blame] | 95 | /* Unmute audio */ |
| 96 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, |
| 97 | saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6)); |
| 98 | |
Hans Verkuil | 1052efe | 2008-07-26 09:01:24 -0300 | [diff] [blame^] | 99 | atomic_inc(&dev->empress_users); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | file->private_data = dev; |
| 101 | err = 0; |
| 102 | |
| 103 | done_up: |
Mauro Carvalho Chehab | 64f9477 | 2008-01-31 13:57:53 -0300 | [diff] [blame] | 104 | mutex_unlock(&dev->empress_tsq.vb_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | done: |
| 106 | return err; |
| 107 | } |
| 108 | |
| 109 | static int ts_release(struct inode *inode, struct file *file) |
| 110 | { |
| 111 | struct saa7134_dev *dev = file->private_data; |
| 112 | |
Brandon Philips | 053fcb6 | 2007-11-13 20:11:26 -0300 | [diff] [blame] | 113 | videobuf_stop(&dev->empress_tsq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | videobuf_mmap_free(&dev->empress_tsq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | /* stop the encoder */ |
| 117 | ts_reset_encoder(dev); |
| 118 | |
Rafael Bilski | b784e52 | 2007-06-20 05:37:27 -0300 | [diff] [blame] | 119 | /* Mute audio */ |
| 120 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, |
| 121 | saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6)); |
| 122 | |
Hans Verkuil | 1052efe | 2008-07-26 09:01:24 -0300 | [diff] [blame^] | 123 | atomic_dec(&dev->empress_users); |
Arjan van de Ven | a178987 | 2008-06-22 17:03:02 -0300 | [diff] [blame] | 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | static ssize_t |
| 129 | ts_read(struct file *file, char __user *data, size_t count, loff_t *ppos) |
| 130 | { |
| 131 | struct saa7134_dev *dev = file->private_data; |
| 132 | |
| 133 | if (!dev->empress_started) |
| 134 | ts_init_encoder(dev); |
| 135 | |
| 136 | return videobuf_read_stream(&dev->empress_tsq, |
| 137 | data, count, ppos, 0, |
| 138 | file->f_flags & O_NONBLOCK); |
| 139 | } |
| 140 | |
| 141 | static unsigned int |
| 142 | ts_poll(struct file *file, struct poll_table_struct *wait) |
| 143 | { |
| 144 | struct saa7134_dev *dev = file->private_data; |
| 145 | |
| 146 | return videobuf_poll_stream(file, &dev->empress_tsq, wait); |
| 147 | } |
| 148 | |
| 149 | |
| 150 | static int |
| 151 | ts_mmap(struct file *file, struct vm_area_struct * vma) |
| 152 | { |
| 153 | struct saa7134_dev *dev = file->private_data; |
| 154 | |
| 155 | return videobuf_mmap_mapper(&dev->empress_tsq, vma); |
| 156 | } |
| 157 | |
| 158 | /* |
| 159 | * This function is _not_ called directly, but from |
| 160 | * video_generic_ioctl (and maybe others). userspace |
| 161 | * copying is done already, arg is a kernel pointer. |
| 162 | */ |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 163 | |
| 164 | static int empress_querycap(struct file *file, void *priv, |
| 165 | struct v4l2_capability *cap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { |
Dmitri Belimov | 388748e | 2008-05-21 01:20:34 -0300 | [diff] [blame] | 167 | struct saa7134_dev *dev = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 169 | strcpy(cap->driver, "saa7134"); |
| 170 | strlcpy(cap->card, saa7134_boards[dev->board].name, |
| 171 | sizeof(cap->card)); |
| 172 | sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci)); |
| 173 | cap->version = SAA7134_VERSION_CODE; |
| 174 | cap->capabilities = |
| 175 | V4L2_CAP_VIDEO_CAPTURE | |
| 176 | V4L2_CAP_READWRITE | |
| 177 | V4L2_CAP_STREAMING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | return 0; |
| 179 | } |
| 180 | |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 181 | static int empress_enum_input(struct file *file, void *priv, |
| 182 | struct v4l2_input *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 184 | if (i->index != 0) |
| 185 | return -EINVAL; |
| 186 | |
| 187 | i->type = V4L2_INPUT_TYPE_CAMERA; |
| 188 | strcpy(i->name, "CCIR656"); |
| 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | static int empress_g_input(struct file *file, void *priv, unsigned int *i) |
| 194 | { |
| 195 | *i = 0; |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | static int empress_s_input(struct file *file, void *priv, unsigned int i) |
| 200 | { |
| 201 | if (i != 0) |
| 202 | return -EINVAL; |
| 203 | |
| 204 | return 0; |
| 205 | } |
| 206 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 207 | static int empress_enum_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 208 | struct v4l2_fmtdesc *f) |
| 209 | { |
| 210 | if (f->index != 0) |
| 211 | return -EINVAL; |
| 212 | |
| 213 | strlcpy(f->description, "MPEG TS", sizeof(f->description)); |
| 214 | f->pixelformat = V4L2_PIX_FMT_MPEG; |
| 215 | |
| 216 | return 0; |
| 217 | } |
| 218 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 219 | static int empress_g_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 220 | struct v4l2_format *f) |
| 221 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 222 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 223 | |
| 224 | saa7134_i2c_call_clients(dev, VIDIOC_G_FMT, f); |
| 225 | |
| 226 | f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG; |
| 227 | f->fmt.pix.sizeimage = TS_PACKET_SIZE * dev->ts.nr_packets; |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 232 | static int empress_s_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 233 | struct v4l2_format *f) |
| 234 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 235 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 236 | |
| 237 | saa7134_i2c_call_clients(dev, VIDIOC_S_FMT, f); |
| 238 | |
| 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 | |
| 245 | |
| 246 | static int empress_reqbufs(struct file *file, void *priv, |
| 247 | struct v4l2_requestbuffers *p) |
| 248 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 249 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 250 | |
| 251 | return videobuf_reqbufs(&dev->empress_tsq, p); |
| 252 | } |
| 253 | |
| 254 | static int empress_querybuf(struct file *file, void *priv, |
| 255 | struct v4l2_buffer *b) |
| 256 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 257 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 258 | |
| 259 | return videobuf_querybuf(&dev->empress_tsq, b); |
| 260 | } |
| 261 | |
| 262 | static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b) |
| 263 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 264 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 265 | |
| 266 | return videobuf_qbuf(&dev->empress_tsq, b); |
| 267 | } |
| 268 | |
| 269 | static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b) |
| 270 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 271 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 272 | |
| 273 | return videobuf_dqbuf(&dev->empress_tsq, b, |
| 274 | file->f_flags & O_NONBLOCK); |
| 275 | } |
| 276 | |
| 277 | static int empress_streamon(struct file *file, void *priv, |
| 278 | enum v4l2_buf_type type) |
| 279 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 280 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 281 | |
| 282 | return videobuf_streamon(&dev->empress_tsq); |
| 283 | } |
| 284 | |
| 285 | static int empress_streamoff(struct file *file, void *priv, |
| 286 | enum v4l2_buf_type type) |
| 287 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 288 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 289 | |
| 290 | return videobuf_streamoff(&dev->empress_tsq); |
| 291 | } |
| 292 | |
Hans Verkuil | 8b53b39 | 2008-06-27 21:18:15 -0300 | [diff] [blame] | 293 | static int saa7134_i2c_call_saa6752(struct saa7134_dev *dev, |
| 294 | unsigned int cmd, void *arg) |
| 295 | { |
| 296 | if (dev->mpeg_i2c_client == NULL) |
| 297 | return -EINVAL; |
| 298 | return dev->mpeg_i2c_client->driver->command(dev->mpeg_i2c_client, |
| 299 | cmd, arg); |
| 300 | } |
| 301 | |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 302 | static int empress_s_ext_ctrls(struct file *file, void *priv, |
| 303 | struct v4l2_ext_controls *ctrls) |
| 304 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 305 | struct saa7134_dev *dev = file->private_data; |
Hans Verkuil | 8b53b39 | 2008-06-27 21:18:15 -0300 | [diff] [blame] | 306 | int err; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 307 | |
| 308 | /* count == 0 is abused in saa6752hs.c, so that special |
| 309 | case is handled here explicitly. */ |
| 310 | if (ctrls->count == 0) |
| 311 | return 0; |
| 312 | |
| 313 | if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG) |
| 314 | return -EINVAL; |
| 315 | |
Hans Verkuil | 8b53b39 | 2008-06-27 21:18:15 -0300 | [diff] [blame] | 316 | err = saa7134_i2c_call_saa6752(dev, VIDIOC_S_EXT_CTRLS, ctrls); |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 317 | ts_init_encoder(dev); |
| 318 | |
Hans Verkuil | 8b53b39 | 2008-06-27 21:18:15 -0300 | [diff] [blame] | 319 | return err; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | static int empress_g_ext_ctrls(struct file *file, void *priv, |
| 323 | struct v4l2_ext_controls *ctrls) |
| 324 | { |
Dmitri Belimov | a14fe96 | 2008-06-10 14:19:31 -0300 | [diff] [blame] | 325 | struct saa7134_dev *dev = file->private_data; |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 326 | |
| 327 | if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG) |
| 328 | return -EINVAL; |
Hans Verkuil | 8b53b39 | 2008-06-27 21:18:15 -0300 | [diff] [blame] | 329 | return saa7134_i2c_call_saa6752(dev, VIDIOC_G_EXT_CTRLS, ctrls); |
| 330 | } |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 331 | |
Hans Verkuil | 8b53b39 | 2008-06-27 21:18:15 -0300 | [diff] [blame] | 332 | static int empress_queryctrl(struct file *file, void *priv, |
| 333 | struct v4l2_queryctrl *c) |
| 334 | { |
| 335 | static const u32 user_ctrls[] = { |
| 336 | V4L2_CID_USER_CLASS, |
| 337 | V4L2_CID_BRIGHTNESS, |
| 338 | V4L2_CID_CONTRAST, |
| 339 | V4L2_CID_SATURATION, |
| 340 | V4L2_CID_HUE, |
| 341 | V4L2_CID_AUDIO_VOLUME, |
| 342 | V4L2_CID_AUDIO_MUTE, |
| 343 | V4L2_CID_HFLIP, |
| 344 | 0 |
| 345 | }; |
| 346 | |
| 347 | static const u32 mpeg_ctrls[] = { |
| 348 | V4L2_CID_MPEG_CLASS, |
| 349 | V4L2_CID_MPEG_STREAM_TYPE, |
| 350 | V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ, |
| 351 | V4L2_CID_MPEG_AUDIO_ENCODING, |
| 352 | V4L2_CID_MPEG_AUDIO_L2_BITRATE, |
| 353 | V4L2_CID_MPEG_VIDEO_ENCODING, |
| 354 | V4L2_CID_MPEG_VIDEO_ASPECT, |
| 355 | V4L2_CID_MPEG_VIDEO_BITRATE_MODE, |
| 356 | V4L2_CID_MPEG_VIDEO_BITRATE, |
| 357 | V4L2_CID_MPEG_VIDEO_BITRATE_PEAK, |
| 358 | 0 |
| 359 | }; |
| 360 | static const u32 *ctrl_classes[] = { |
| 361 | user_ctrls, |
| 362 | mpeg_ctrls, |
| 363 | NULL |
| 364 | }; |
| 365 | struct saa7134_dev *dev = file->private_data; |
| 366 | |
| 367 | c->id = v4l2_ctrl_next(ctrl_classes, c->id); |
| 368 | if (c->id == 0) |
| 369 | return -EINVAL; |
| 370 | if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS) |
| 371 | return v4l2_ctrl_query_fill_std(c); |
| 372 | if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG) |
| 373 | return saa7134_queryctrl(file, priv, c); |
| 374 | return saa7134_i2c_call_saa6752(dev, VIDIOC_QUERYCTRL, c); |
| 375 | } |
| 376 | |
| 377 | static int empress_querymenu(struct file *file, void *priv, |
| 378 | struct v4l2_querymenu *c) |
| 379 | { |
| 380 | struct saa7134_dev *dev = file->private_data; |
| 381 | |
| 382 | if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG) |
| 383 | return -EINVAL; |
| 384 | return saa7134_i2c_call_saa6752(dev, VIDIOC_QUERYMENU, c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | |
Arjan van de Ven | fa027c2 | 2007-02-12 00:55:33 -0800 | [diff] [blame] | 387 | static const struct file_operations ts_fops = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
| 389 | .owner = THIS_MODULE, |
| 390 | .open = ts_open, |
| 391 | .release = ts_release, |
| 392 | .read = ts_read, |
| 393 | .poll = ts_poll, |
| 394 | .mmap = ts_mmap, |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 395 | .ioctl = video_ioctl2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | .llseek = no_llseek, |
| 397 | }; |
| 398 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 399 | static const struct v4l2_ioctl_ops ts_ioctl_ops = { |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 400 | .vidioc_querycap = empress_querycap, |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 401 | .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap, |
| 402 | .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap, |
| 403 | .vidioc_g_fmt_vid_cap = empress_g_fmt_vid_cap, |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 404 | .vidioc_reqbufs = empress_reqbufs, |
| 405 | .vidioc_querybuf = empress_querybuf, |
| 406 | .vidioc_qbuf = empress_qbuf, |
| 407 | .vidioc_dqbuf = empress_dqbuf, |
| 408 | .vidioc_streamon = empress_streamon, |
| 409 | .vidioc_streamoff = empress_streamoff, |
| 410 | .vidioc_s_ext_ctrls = empress_s_ext_ctrls, |
| 411 | .vidioc_g_ext_ctrls = empress_g_ext_ctrls, |
| 412 | .vidioc_enum_input = empress_enum_input, |
| 413 | .vidioc_g_input = empress_g_input, |
| 414 | .vidioc_s_input = empress_s_input, |
| 415 | |
Hans Verkuil | 8b53b39 | 2008-06-27 21:18:15 -0300 | [diff] [blame] | 416 | .vidioc_queryctrl = empress_queryctrl, |
| 417 | .vidioc_querymenu = empress_querymenu, |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 418 | .vidioc_g_ctrl = saa7134_g_ctrl, |
| 419 | .vidioc_s_ctrl = saa7134_s_ctrl, |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 420 | }; |
| 421 | |
| 422 | /* ----------------------------------------------------------- */ |
| 423 | |
| 424 | static struct video_device saa7134_empress_template = { |
| 425 | .name = "saa7134-empress", |
| 426 | .type = 0 /* FIXME */, |
| 427 | .type2 = 0 /* FIXME */, |
| 428 | .fops = &ts_fops, |
| 429 | .minor = -1, |
| 430 | .ioctl_ops = &ts_ioctl_ops, |
Mauro Carvalho Chehab | 2c10e8a | 2007-12-11 12:56:23 -0300 | [diff] [blame] | 431 | |
| 432 | .tvnorms = SAA7134_NORMS, |
| 433 | .current_norm = V4L2_STD_PAL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | }; |
| 435 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 436 | static void empress_signal_update(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 438 | struct saa7134_dev* dev = |
| 439 | container_of(work, struct saa7134_dev, empress_workqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | if (dev->nosignal) { |
| 442 | dprintk("no video signal\n"); |
| 443 | ts_reset_encoder(dev); |
| 444 | } else { |
| 445 | dprintk("video signal acquired\n"); |
Hans Verkuil | 1052efe | 2008-07-26 09:01:24 -0300 | [diff] [blame^] | 446 | if (atomic_read(&dev->empress_users)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | ts_init_encoder(dev); |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | static void empress_signal_change(struct saa7134_dev *dev) |
| 452 | { |
| 453 | schedule_work(&dev->empress_workqueue); |
| 454 | } |
| 455 | |
| 456 | |
| 457 | static int empress_init(struct saa7134_dev *dev) |
| 458 | { |
| 459 | int err; |
| 460 | |
Harvey Harrison | 5016381 | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 461 | dprintk("%s: %s\n",dev->name,__func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | dev->empress_dev = video_device_alloc(); |
| 463 | if (NULL == dev->empress_dev) |
| 464 | return -ENOMEM; |
| 465 | *(dev->empress_dev) = saa7134_empress_template; |
Hans Verkuil | 5e85e73 | 2008-07-20 06:31:39 -0300 | [diff] [blame] | 466 | dev->empress_dev->parent = &dev->pci->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | dev->empress_dev->release = video_device_release; |
| 468 | snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name), |
| 469 | "%s empress (%s)", dev->name, |
| 470 | saa7134_boards[dev->board].name); |
| 471 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 472 | INIT_WORK(&dev->empress_workqueue, empress_signal_update); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
| 474 | err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER, |
| 475 | empress_nr[dev->nr]); |
| 476 | if (err < 0) { |
| 477 | printk(KERN_INFO "%s: can't register video device\n", |
| 478 | dev->name); |
| 479 | video_device_release(dev->empress_dev); |
| 480 | dev->empress_dev = NULL; |
| 481 | return err; |
| 482 | } |
| 483 | printk(KERN_INFO "%s: registered device video%d [mpeg]\n", |
| 484 | dev->name,dev->empress_dev->minor & 0x1f); |
| 485 | |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 486 | videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops, |
| 487 | &dev->pci->dev, &dev->slock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | V4L2_BUF_TYPE_VIDEO_CAPTURE, |
| 489 | V4L2_FIELD_ALTERNATE, |
| 490 | sizeof(struct saa7134_buf), |
| 491 | dev); |
| 492 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 493 | empress_signal_update(&dev->empress_workqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | return 0; |
| 495 | } |
| 496 | |
| 497 | static int empress_fini(struct saa7134_dev *dev) |
| 498 | { |
Harvey Harrison | 5016381 | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 499 | dprintk("%s: %s\n",dev->name,__func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
| 501 | if (NULL == dev->empress_dev) |
| 502 | return 0; |
| 503 | flush_scheduled_work(); |
| 504 | video_unregister_device(dev->empress_dev); |
| 505 | dev->empress_dev = NULL; |
| 506 | return 0; |
| 507 | } |
| 508 | |
| 509 | static struct saa7134_mpeg_ops empress_ops = { |
| 510 | .type = SAA7134_MPEG_EMPRESS, |
| 511 | .init = empress_init, |
| 512 | .fini = empress_fini, |
| 513 | .signal_change = empress_signal_change, |
| 514 | }; |
| 515 | |
| 516 | static int __init empress_register(void) |
| 517 | { |
| 518 | return saa7134_ts_register(&empress_ops); |
| 519 | } |
| 520 | |
| 521 | static void __exit empress_unregister(void) |
| 522 | { |
| 523 | saa7134_ts_unregister(&empress_ops); |
| 524 | } |
| 525 | |
| 526 | module_init(empress_register); |
| 527 | module_exit(empress_unregister); |
| 528 | |
| 529 | /* ----------------------------------------------------------- */ |
| 530 | /* |
| 531 | * Local variables: |
| 532 | * c-basic-offset: 8 |
| 533 | * End: |
| 534 | */ |