saa7134-empress.c 14.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 *
 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/init.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/kernel.h>
A
Alexey Dobriyan 已提交
24
#include <linux/smp_lock.h>
L
Linus Torvalds 已提交
25 26 27 28 29 30
#include <linux/delay.h>

#include "saa7134-reg.h"
#include "saa7134.h"

#include <media/saa6752hs.h>
31
#include <media/v4l2-common.h>
32
#include <media/v4l2-chip-ident.h>
L
Linus Torvalds 已提交
33 34 35 36 37 38 39

/* ------------------------------------------------------------------ */

MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
MODULE_LICENSE("GPL");

static unsigned int empress_nr[] = {[0 ... (SAA7134_MAXBOARDS - 1)] = UNSET };
40

L
Linus Torvalds 已提交
41 42 43
module_param_array(empress_nr, int, NULL, 0444);
MODULE_PARM_DESC(empress_nr,"ts device number");

44
static unsigned int debug;
L
Linus Torvalds 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
module_param(debug, int, 0644);
MODULE_PARM_DESC(debug,"enable debug messages");

#define dprintk(fmt, arg...)	if (debug)			\
	printk(KERN_DEBUG "%s/empress: " fmt, dev->name , ## arg)

/* ------------------------------------------------------------------ */

static void ts_reset_encoder(struct saa7134_dev* dev)
{
	if (!dev->empress_started)
		return;

	saa_writeb(SAA7134_SPECIAL_MODE, 0x00);
	msleep(10);
60
	saa_writeb(SAA7134_SPECIAL_MODE, 0x01);
L
Linus Torvalds 已提交
61 62 63 64 65 66
	msleep(100);
	dev->empress_started = 0;
}

static int ts_init_encoder(struct saa7134_dev* dev)
{
67
	u32 leading_null_bytes = 0;
68

69 70 71 72 73 74 75 76 77
	/* If more cards start to need this, then this
	   should probably be added to the card definitions. */
	switch (dev->board) {
	case SAA7134_BOARD_BEHOLD_M6:
	case SAA7134_BOARD_BEHOLD_M63:
	case SAA7134_BOARD_BEHOLD_M6_EXTRA:
		leading_null_bytes = 1;
		break;
	}
L
Linus Torvalds 已提交
78
	ts_reset_encoder(dev);
79
	saa_call_all(dev, core, init, leading_null_bytes);
L
Linus Torvalds 已提交
80
	dev->empress_started = 1;
81
	return 0;
L
Linus Torvalds 已提交
82 83 84 85
}

/* ------------------------------------------------------------------ */

86
static int ts_open(struct file *file)
L
Linus Torvalds 已提交
87
{
88
	struct video_device *vdev = video_devdata(file);
89
	struct saa7134_dev *dev = video_drvdata(file);
L
Linus Torvalds 已提交
90 91
	int err;

92
	dprintk("open dev=%s\n", video_device_node_name(vdev));
L
Linus Torvalds 已提交
93
	err = -EBUSY;
94
	if (!mutex_trylock(&dev->empress_tsq.vb_lock))
95
		return err;
96
	if (atomic_read(&dev->empress_users))
97
		goto done;
L
Linus Torvalds 已提交
98

99 100 101 102
	/* Unmute audio */
	saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
		saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6));

103
	atomic_inc(&dev->empress_users);
L
Linus Torvalds 已提交
104 105 106 107
	file->private_data = dev;
	err = 0;

done:
108
	mutex_unlock(&dev->empress_tsq.vb_lock);
L
Linus Torvalds 已提交
109 110 111
	return err;
}

112
static int ts_release(struct file *file)
L
Linus Torvalds 已提交
113 114 115
{
	struct saa7134_dev *dev = file->private_data;

116
	videobuf_stop(&dev->empress_tsq);
L
Linus Torvalds 已提交
117 118 119 120 121
	videobuf_mmap_free(&dev->empress_tsq);

	/* stop the encoder */
	ts_reset_encoder(dev);

122 123 124 125
	/* Mute audio */
	saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
		saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6));

126
	atomic_dec(&dev->empress_users);
127

L
Linus Torvalds 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
	return 0;
}

static ssize_t
ts_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
{
	struct saa7134_dev *dev = file->private_data;

	if (!dev->empress_started)
		ts_init_encoder(dev);

	return videobuf_read_stream(&dev->empress_tsq,
				    data, count, ppos, 0,
				    file->f_flags & O_NONBLOCK);
}

static unsigned int
ts_poll(struct file *file, struct poll_table_struct *wait)
{
	struct saa7134_dev *dev = file->private_data;

	return videobuf_poll_stream(file, &dev->empress_tsq, wait);
}


static int
ts_mmap(struct file *file, struct vm_area_struct * vma)
{
	struct saa7134_dev *dev = file->private_data;

	return videobuf_mmap_mapper(&dev->empress_tsq, vma);
}

/*
 * This function is _not_ called directly, but from
 * video_generic_ioctl (and maybe others).  userspace
 * copying is done already, arg is a kernel pointer.
 */
166 167 168

static int empress_querycap(struct file *file, void  *priv,
					struct v4l2_capability *cap)
L
Linus Torvalds 已提交
169
{
D
Dmitri Belimov 已提交
170
	struct saa7134_dev *dev = file->private_data;
171 172 173 174 175 176 177 178 179 180 181 182

	strcpy(cap->driver, "saa7134");
	strlcpy(cap->card, saa7134_boards[dev->board].name,
		sizeof(cap->card));
	sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
	cap->version = SAA7134_VERSION_CODE;
	cap->capabilities =
		V4L2_CAP_VIDEO_CAPTURE |
		V4L2_CAP_READWRITE |
		V4L2_CAP_STREAMING;
	return 0;
}
L
Linus Torvalds 已提交
183

184 185 186 187 188
static int empress_enum_input(struct file *file, void *priv,
					struct v4l2_input *i)
{
	if (i->index != 0)
		return -EINVAL;
L
Linus Torvalds 已提交
189

190 191
	i->type = V4L2_INPUT_TYPE_CAMERA;
	strcpy(i->name, "CCIR656");
L
Linus Torvalds 已提交
192

193 194
	return 0;
}
L
Linus Torvalds 已提交
195

196 197 198 199 200
static int empress_g_input(struct file *file, void *priv, unsigned int *i)
{
	*i = 0;
	return 0;
}
L
Linus Torvalds 已提交
201

202 203 204 205
static int empress_s_input(struct file *file, void *priv, unsigned int i)
{
	if (i != 0)
		return -EINVAL;
L
Linus Torvalds 已提交
206

207 208
	return 0;
}
L
Linus Torvalds 已提交
209

210
static int empress_enum_fmt_vid_cap(struct file *file, void  *priv,
211 212 213 214
					struct v4l2_fmtdesc *f)
{
	if (f->index != 0)
		return -EINVAL;
L
Linus Torvalds 已提交
215

216 217
	strlcpy(f->description, "MPEG TS", sizeof(f->description));
	f->pixelformat = V4L2_PIX_FMT_MPEG;
L
Linus Torvalds 已提交
218

219 220
	return 0;
}
L
Linus Torvalds 已提交
221

222
static int empress_g_fmt_vid_cap(struct file *file, void *priv,
223 224
				struct v4l2_format *f)
{
225
	struct saa7134_dev *dev = file->private_data;
226
	struct v4l2_mbus_framefmt mbus_fmt;
L
Linus Torvalds 已提交
227

228
	saa_call_all(dev, video, g_mbus_fmt, &mbus_fmt);
L
Linus Torvalds 已提交
229

230
	v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
231 232
	f->fmt.pix.pixelformat  = V4L2_PIX_FMT_MPEG;
	f->fmt.pix.sizeimage    = TS_PACKET_SIZE * dev->ts.nr_packets;
L
Linus Torvalds 已提交
233

234 235
	return 0;
}
L
Linus Torvalds 已提交
236

237
static int empress_s_fmt_vid_cap(struct file *file, void *priv,
238 239
				struct v4l2_format *f)
{
240
	struct saa7134_dev *dev = file->private_data;
241
	struct v4l2_mbus_framefmt mbus_fmt;
L
Linus Torvalds 已提交
242

243 244 245
	v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED);
	saa_call_all(dev, video, s_mbus_fmt, &mbus_fmt);
	v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
L
Linus Torvalds 已提交
246

247 248
	f->fmt.pix.pixelformat  = V4L2_PIX_FMT_MPEG;
	f->fmt.pix.sizeimage    = TS_PACKET_SIZE * dev->ts.nr_packets;
L
Linus Torvalds 已提交
249

250 251 252
	return 0;
}

253 254 255 256 257 258 259 260 261 262
static int empress_try_fmt_vid_cap(struct file *file, void *priv,
				struct v4l2_format *f)
{
	struct saa7134_dev *dev = file->private_data;

	f->fmt.pix.pixelformat  = V4L2_PIX_FMT_MPEG;
	f->fmt.pix.sizeimage    = TS_PACKET_SIZE * dev->ts.nr_packets;

	return 0;
}
263 264 265 266

static int empress_reqbufs(struct file *file, void *priv,
					struct v4l2_requestbuffers *p)
{
267
	struct saa7134_dev *dev = file->private_data;
268 269 270 271 272 273 274

	return videobuf_reqbufs(&dev->empress_tsq, p);
}

static int empress_querybuf(struct file *file, void *priv,
					struct v4l2_buffer *b)
{
275
	struct saa7134_dev *dev = file->private_data;
276 277 278 279 280 281

	return videobuf_querybuf(&dev->empress_tsq, b);
}

static int empress_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
{
282
	struct saa7134_dev *dev = file->private_data;
283 284 285 286 287 288

	return videobuf_qbuf(&dev->empress_tsq, b);
}

static int empress_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
{
289
	struct saa7134_dev *dev = file->private_data;
290 291 292 293 294 295 296 297

	return videobuf_dqbuf(&dev->empress_tsq, b,
				file->f_flags & O_NONBLOCK);
}

static int empress_streamon(struct file *file, void *priv,
					enum v4l2_buf_type type)
{
298
	struct saa7134_dev *dev = file->private_data;
299 300 301 302 303 304 305

	return videobuf_streamon(&dev->empress_tsq);
}

static int empress_streamoff(struct file *file, void *priv,
					enum v4l2_buf_type type)
{
306
	struct saa7134_dev *dev = file->private_data;
307 308 309 310 311 312 313

	return videobuf_streamoff(&dev->empress_tsq);
}

static int empress_s_ext_ctrls(struct file *file, void *priv,
			       struct v4l2_ext_controls *ctrls)
{
314
	struct saa7134_dev *dev = file->private_data;
315
	int err;
316 317 318 319

	/* count == 0 is abused in saa6752hs.c, so that special
		case is handled here explicitly. */
	if (ctrls->count == 0)
320
		return 0;
L
Linus Torvalds 已提交
321

322 323 324
	if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
		return -EINVAL;

325
	err = saa_call_empress(dev, core, s_ext_ctrls, ctrls);
326 327
	ts_init_encoder(dev);

328
	return err;
L
Linus Torvalds 已提交
329 330
}

331 332
static int empress_g_ext_ctrls(struct file *file, void *priv,
			       struct v4l2_ext_controls *ctrls)
L
Linus Torvalds 已提交
333
{
334
	struct saa7134_dev *dev = file->private_data;
335 336 337

	if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
		return -EINVAL;
338
	return saa_call_empress(dev, core, g_ext_ctrls, ctrls);
339
}
340

341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
static int empress_g_ctrl(struct file *file, void *priv,
					struct v4l2_control *c)
{
	struct saa7134_dev *dev = file->private_data;

	return saa7134_g_ctrl_internal(dev, NULL, c);
}

static int empress_s_ctrl(struct file *file, void *priv,
					struct v4l2_control *c)
{
	struct saa7134_dev *dev = file->private_data;

	return saa7134_s_ctrl_internal(dev, NULL, c);
}

357 358 359
static int empress_queryctrl(struct file *file, void *priv,
					struct v4l2_queryctrl *c)
{
360
	/* Must be sorted from low to high control ID! */
361 362 363 364 365 366 367 368 369 370 371 372
	static const u32 user_ctrls[] = {
		V4L2_CID_USER_CLASS,
		V4L2_CID_BRIGHTNESS,
		V4L2_CID_CONTRAST,
		V4L2_CID_SATURATION,
		V4L2_CID_HUE,
		V4L2_CID_AUDIO_VOLUME,
		V4L2_CID_AUDIO_MUTE,
		V4L2_CID_HFLIP,
		0
	};

373
	/* Must be sorted from low to high control ID! */
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
	static const u32 mpeg_ctrls[] = {
		V4L2_CID_MPEG_CLASS,
		V4L2_CID_MPEG_STREAM_TYPE,
		V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
		V4L2_CID_MPEG_AUDIO_ENCODING,
		V4L2_CID_MPEG_AUDIO_L2_BITRATE,
		V4L2_CID_MPEG_VIDEO_ENCODING,
		V4L2_CID_MPEG_VIDEO_ASPECT,
		V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
		V4L2_CID_MPEG_VIDEO_BITRATE,
		V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
		0
	};
	static const u32 *ctrl_classes[] = {
		user_ctrls,
		mpeg_ctrls,
		NULL
	};
	struct saa7134_dev *dev = file->private_data;

	c->id = v4l2_ctrl_next(ctrl_classes, c->id);
	if (c->id == 0)
		return -EINVAL;
	if (c->id == V4L2_CID_USER_CLASS || c->id == V4L2_CID_MPEG_CLASS)
398
		return v4l2_ctrl_query_fill(c, 0, 0, 0, 0);
399 400
	if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
		return saa7134_queryctrl(file, priv, c);
401
	return saa_call_empress(dev, core, queryctrl, c);
402 403 404 405 406 407 408 409 410
}

static int empress_querymenu(struct file *file, void *priv,
					struct v4l2_querymenu *c)
{
	struct saa7134_dev *dev = file->private_data;

	if (V4L2_CTRL_ID2CLASS(c->id) != V4L2_CTRL_CLASS_MPEG)
		return -EINVAL;
411
	return saa_call_empress(dev, core, querymenu, c);
L
Linus Torvalds 已提交
412 413
}

414
static int empress_g_chip_ident(struct file *file, void *fh,
415
	       struct v4l2_dbg_chip_ident *chip)
416 417 418 419 420
{
	struct saa7134_dev *dev = file->private_data;

	chip->ident = V4L2_IDENT_NONE;
	chip->revision = 0;
421 422
	if (chip->match.type == V4L2_CHIP_MATCH_I2C_DRIVER &&
	    !strcmp(chip->match.name, "saa6752hs"))
423
		return saa_call_empress(dev, core, g_chip_ident, chip);
424
	if (chip->match.type == V4L2_CHIP_MATCH_I2C_ADDR)
425
		return saa_call_empress(dev, core, g_chip_ident, chip);
426 427 428
	return -EINVAL;
}

429 430 431 432 433 434 435 436 437 438 439 440 441 442
static int empress_s_std(struct file *file, void *priv, v4l2_std_id *id)
{
	struct saa7134_dev *dev = file->private_data;

	return saa7134_s_std_internal(dev, NULL, id);
}

static int empress_g_std(struct file *file, void *priv, v4l2_std_id *id)
{
	struct saa7134_dev *dev = file->private_data;

	*id = dev->tvnorm->id;
	return 0;
}
443

444
static const struct v4l2_file_operations ts_fops =
L
Linus Torvalds 已提交
445 446 447 448 449 450 451
{
	.owner	  = THIS_MODULE,
	.open	  = ts_open,
	.release  = ts_release,
	.read	  = ts_read,
	.poll	  = ts_poll,
	.mmap	  = ts_mmap,
452
	.ioctl	  = video_ioctl2,
L
Linus Torvalds 已提交
453 454
};

455
static const struct v4l2_ioctl_ops ts_ioctl_ops = {
456
	.vidioc_querycap		= empress_querycap,
457
	.vidioc_enum_fmt_vid_cap	= empress_enum_fmt_vid_cap,
458
	.vidioc_try_fmt_vid_cap		= empress_try_fmt_vid_cap,
459 460
	.vidioc_s_fmt_vid_cap		= empress_s_fmt_vid_cap,
	.vidioc_g_fmt_vid_cap		= empress_g_fmt_vid_cap,
461 462 463 464 465 466 467 468 469 470 471
	.vidioc_reqbufs			= empress_reqbufs,
	.vidioc_querybuf		= empress_querybuf,
	.vidioc_qbuf			= empress_qbuf,
	.vidioc_dqbuf			= empress_dqbuf,
	.vidioc_streamon		= empress_streamon,
	.vidioc_streamoff		= empress_streamoff,
	.vidioc_s_ext_ctrls		= empress_s_ext_ctrls,
	.vidioc_g_ext_ctrls		= empress_g_ext_ctrls,
	.vidioc_enum_input		= empress_enum_input,
	.vidioc_g_input			= empress_g_input,
	.vidioc_s_input			= empress_s_input,
472 473
	.vidioc_queryctrl		= empress_queryctrl,
	.vidioc_querymenu		= empress_querymenu,
474 475
	.vidioc_g_ctrl			= empress_g_ctrl,
	.vidioc_s_ctrl			= empress_s_ctrl,
476
	.vidioc_g_chip_ident 		= empress_g_chip_ident,
477 478
	.vidioc_s_std			= empress_s_std,
	.vidioc_g_std			= empress_g_std,
479 480 481 482 483 484 485 486
};

/* ----------------------------------------------------------- */

static struct video_device saa7134_empress_template = {
	.name          = "saa7134-empress",
	.fops          = &ts_fops,
	.ioctl_ops     = &ts_ioctl_ops,
487 488 489

	.tvnorms			= SAA7134_NORMS,
	.current_norm			= V4L2_STD_PAL,
L
Linus Torvalds 已提交
490 491
};

D
David Howells 已提交
492
static void empress_signal_update(struct work_struct *work)
L
Linus Torvalds 已提交
493
{
D
David Howells 已提交
494 495
	struct saa7134_dev* dev =
		container_of(work, struct saa7134_dev, empress_workqueue);
L
Linus Torvalds 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513

	if (dev->nosignal) {
		dprintk("no video signal\n");
	} else {
		dprintk("video signal acquired\n");
	}
}

static void empress_signal_change(struct saa7134_dev *dev)
{
	schedule_work(&dev->empress_workqueue);
}


static int empress_init(struct saa7134_dev *dev)
{
	int err;

514
	dprintk("%s: %s\n",dev->name,__func__);
L
Linus Torvalds 已提交
515 516 517 518
	dev->empress_dev = video_device_alloc();
	if (NULL == dev->empress_dev)
		return -ENOMEM;
	*(dev->empress_dev) = saa7134_empress_template;
519
	dev->empress_dev->parent  = &dev->pci->dev;
L
Linus Torvalds 已提交
520 521 522 523 524
	dev->empress_dev->release = video_device_release;
	snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name),
		 "%s empress (%s)", dev->name,
		 saa7134_boards[dev->board].name);

D
David Howells 已提交
525
	INIT_WORK(&dev->empress_workqueue, empress_signal_update);
L
Linus Torvalds 已提交
526

527
	video_set_drvdata(dev->empress_dev, dev);
L
Linus Torvalds 已提交
528 529 530 531 532 533 534 535 536
	err = video_register_device(dev->empress_dev,VFL_TYPE_GRABBER,
				    empress_nr[dev->nr]);
	if (err < 0) {
		printk(KERN_INFO "%s: can't register video device\n",
		       dev->name);
		video_device_release(dev->empress_dev);
		dev->empress_dev = NULL;
		return err;
	}
537 538
	printk(KERN_INFO "%s: registered device %s [mpeg]\n",
	       dev->name, video_device_node_name(dev->empress_dev));
L
Linus Torvalds 已提交
539

540 541
	videobuf_queue_sg_init(&dev->empress_tsq, &saa7134_ts_qops,
			    &dev->pci->dev, &dev->slock,
L
Linus Torvalds 已提交
542 543 544 545 546
			    V4L2_BUF_TYPE_VIDEO_CAPTURE,
			    V4L2_FIELD_ALTERNATE,
			    sizeof(struct saa7134_buf),
			    dev);

D
David Howells 已提交
547
	empress_signal_update(&dev->empress_workqueue);
L
Linus Torvalds 已提交
548 549 550 551 552
	return 0;
}

static int empress_fini(struct saa7134_dev *dev)
{
553
	dprintk("%s: %s\n",dev->name,__func__);
L
Linus Torvalds 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588

	if (NULL == dev->empress_dev)
		return 0;
	flush_scheduled_work();
	video_unregister_device(dev->empress_dev);
	dev->empress_dev = NULL;
	return 0;
}

static struct saa7134_mpeg_ops empress_ops = {
	.type          = SAA7134_MPEG_EMPRESS,
	.init          = empress_init,
	.fini          = empress_fini,
	.signal_change = empress_signal_change,
};

static int __init empress_register(void)
{
	return saa7134_ts_register(&empress_ops);
}

static void __exit empress_unregister(void)
{
	saa7134_ts_unregister(&empress_ops);
}

module_init(empress_register);
module_exit(empress_unregister);

/* ----------------------------------------------------------- */
/*
 * Local variables:
 * c-basic-offset: 8
 * End:
 */