2 * Driver for the NXP SAA7164 PCIe bridge
4 * Copyright (c) 2010-2015 Steven Toth <stoth@kernellabs.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #define ENCODER_MAX_BITRATE 6500000
25 #define ENCODER_MIN_BITRATE 1000000
26 #define ENCODER_DEF_BITRATE 5000000
29 * This is a dummy non-zero value for the sizeimage field of v4l2_pix_format.
30 * It is not actually used for anything since this driver does not support
31 * stream I/O, only read(), and because this driver produces an MPEG stream
32 * and not discrete frames. But the V4L2 spec doesn't allow for this value
33 * to be 0, so set it to 0x10000 instead.
35 * If we ever change this driver to support stream I/O, then this field
36 * will be the size of the streaming buffers.
38 #define SAA7164_SIZEIMAGE (0x10000)
40 static struct saa7164_tvnorm saa7164_tvnorms
[] = {
43 .id
= V4L2_STD_NTSC_M
,
46 .id
= V4L2_STD_NTSC_M_JP
,
50 /* Take the encoder configuration form the port struct and
51 * flush it to the hardware.
53 static void saa7164_encoder_configure(struct saa7164_port
*port
)
55 struct saa7164_dev
*dev
= port
->dev
;
56 dprintk(DBGLVL_ENC
, "%s()\n", __func__
);
58 port
->encoder_params
.width
= port
->width
;
59 port
->encoder_params
.height
= port
->height
;
60 port
->encoder_params
.is_50hz
=
61 (port
->encodernorm
.id
& V4L2_STD_625_50
) != 0;
63 /* Set up the DIF (enable it) for analog mode by default */
64 saa7164_api_initialize_dif(port
);
66 /* Configure the correct video standard */
67 saa7164_api_configure_dif(port
, port
->encodernorm
.id
);
69 /* Ensure the audio decoder is correct configured */
70 saa7164_api_set_audio_std(port
);
73 static int saa7164_encoder_buffers_dealloc(struct saa7164_port
*port
)
75 struct list_head
*c
, *n
, *p
, *q
, *l
, *v
;
76 struct saa7164_dev
*dev
= port
->dev
;
77 struct saa7164_buffer
*buf
;
78 struct saa7164_user_buffer
*ubuf
;
80 /* Remove any allocated buffers */
81 mutex_lock(&port
->dmaqueue_lock
);
83 dprintk(DBGLVL_ENC
, "%s(port=%d) dmaqueue\n", __func__
, port
->nr
);
84 list_for_each_safe(c
, n
, &port
->dmaqueue
.list
) {
85 buf
= list_entry(c
, struct saa7164_buffer
, list
);
87 saa7164_buffer_dealloc(buf
);
90 dprintk(DBGLVL_ENC
, "%s(port=%d) used\n", __func__
, port
->nr
);
91 list_for_each_safe(p
, q
, &port
->list_buf_used
.list
) {
92 ubuf
= list_entry(p
, struct saa7164_user_buffer
, list
);
94 saa7164_buffer_dealloc_user(ubuf
);
97 dprintk(DBGLVL_ENC
, "%s(port=%d) free\n", __func__
, port
->nr
);
98 list_for_each_safe(l
, v
, &port
->list_buf_free
.list
) {
99 ubuf
= list_entry(l
, struct saa7164_user_buffer
, list
);
101 saa7164_buffer_dealloc_user(ubuf
);
104 mutex_unlock(&port
->dmaqueue_lock
);
105 dprintk(DBGLVL_ENC
, "%s(port=%d) done\n", __func__
, port
->nr
);
110 /* Dynamic buffer switch at encoder start time */
111 static int saa7164_encoder_buffers_alloc(struct saa7164_port
*port
)
113 struct saa7164_dev
*dev
= port
->dev
;
114 struct saa7164_buffer
*buf
;
115 struct saa7164_user_buffer
*ubuf
;
116 struct tmHWStreamParameters
*params
= &port
->hw_streamingparams
;
117 int result
= -ENODEV
, i
;
120 dprintk(DBGLVL_ENC
, "%s()\n", __func__
);
122 if (port
->encoder_params
.stream_type
==
123 V4L2_MPEG_STREAM_TYPE_MPEG2_PS
) {
125 "%s() type=V4L2_MPEG_STREAM_TYPE_MPEG2_PS\n",
127 params
->samplesperline
= 128;
128 params
->numberoflines
= 256;
130 params
->numpagetables
= 2 +
131 ((SAA7164_PS_NUMBER_OF_LINES
* 128) / PAGE_SIZE
);
133 if (port
->encoder_params
.stream_type
==
134 V4L2_MPEG_STREAM_TYPE_MPEG2_TS
) {
136 "%s() type=V4L2_MPEG_STREAM_TYPE_MPEG2_TS\n",
138 params
->samplesperline
= 188;
139 params
->numberoflines
= 312;
141 params
->numpagetables
= 2 +
142 ((SAA7164_TS_NUMBER_OF_LINES
* 188) / PAGE_SIZE
);
146 /* Init and establish defaults */
147 params
->bitspersample
= 8;
148 params
->linethreshold
= 0;
149 params
->pagetablelistvirt
= NULL
;
150 params
->pagetablelistphys
= NULL
;
151 params
->numpagetableentries
= port
->hwcfg
.buffercount
;
153 /* Allocate the PCI resources, buffers (hard) */
154 for (i
= 0; i
< port
->hwcfg
.buffercount
; i
++) {
155 buf
= saa7164_buffer_alloc(port
,
156 params
->numberoflines
*
160 printk(KERN_ERR
"%s() failed (errno = %d), unable to allocate buffer\n",
166 mutex_lock(&port
->dmaqueue_lock
);
167 list_add_tail(&buf
->list
, &port
->dmaqueue
.list
);
168 mutex_unlock(&port
->dmaqueue_lock
);
173 /* Allocate some kernel buffers for copying
176 len
= params
->numberoflines
* params
->pitch
;
178 if (encoder_buffers
< 16)
179 encoder_buffers
= 16;
180 if (encoder_buffers
> 512)
181 encoder_buffers
= 512;
183 for (i
= 0; i
< encoder_buffers
; i
++) {
185 ubuf
= saa7164_buffer_alloc_user(dev
, len
);
187 mutex_lock(&port
->dmaqueue_lock
);
188 list_add_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
189 mutex_unlock(&port
->dmaqueue_lock
);
200 static int saa7164_encoder_initialize(struct saa7164_port
*port
)
202 saa7164_encoder_configure(port
);
206 /* -- V4L2 --------------------------------------------------------- */
207 int saa7164_s_std(struct saa7164_port
*port
, v4l2_std_id id
)
209 struct saa7164_dev
*dev
= port
->dev
;
212 dprintk(DBGLVL_ENC
, "%s(id=0x%x)\n", __func__
, (u32
)id
);
214 for (i
= 0; i
< ARRAY_SIZE(saa7164_tvnorms
); i
++) {
215 if (id
& saa7164_tvnorms
[i
].id
)
218 if (i
== ARRAY_SIZE(saa7164_tvnorms
))
221 port
->encodernorm
= saa7164_tvnorms
[i
];
224 /* Update the audio decoder while is not running in
227 saa7164_api_set_audio_std(port
);
229 dprintk(DBGLVL_ENC
, "%s(id=0x%x) OK\n", __func__
, (u32
)id
);
234 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id id
)
236 struct saa7164_encoder_fh
*fh
= file
->private_data
;
238 return saa7164_s_std(fh
->port
, id
);
241 int saa7164_g_std(struct saa7164_port
*port
, v4l2_std_id
*id
)
247 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*id
)
249 struct saa7164_encoder_fh
*fh
= file
->private_data
;
251 return saa7164_g_std(fh
->port
, id
);
254 int saa7164_enum_input(struct file
*file
, void *priv
, struct v4l2_input
*i
)
256 static const char * const inputs
[] = {
257 "tuner", "composite", "svideo", "aux",
258 "composite 2", "svideo 2", "aux 2"
265 strcpy(i
->name
, inputs
[i
->index
]);
268 i
->type
= V4L2_INPUT_TYPE_TUNER
;
270 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
272 for (n
= 0; n
< ARRAY_SIZE(saa7164_tvnorms
); n
++)
273 i
->std
|= saa7164_tvnorms
[n
].id
;
278 int saa7164_g_input(struct saa7164_port
*port
, unsigned int *i
)
280 struct saa7164_dev
*dev
= port
->dev
;
282 if (saa7164_api_get_videomux(port
) != SAA_OK
)
285 *i
= (port
->mux_input
- 1);
287 dprintk(DBGLVL_ENC
, "%s() input=%d\n", __func__
, *i
);
292 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
294 struct saa7164_encoder_fh
*fh
= file
->private_data
;
296 return saa7164_g_input(fh
->port
, i
);
299 int saa7164_s_input(struct saa7164_port
*port
, unsigned int i
)
301 struct saa7164_dev
*dev
= port
->dev
;
303 dprintk(DBGLVL_ENC
, "%s() input=%d\n", __func__
, i
);
308 port
->mux_input
= i
+ 1;
310 if (saa7164_api_set_videomux(port
) != SAA_OK
)
316 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
318 struct saa7164_encoder_fh
*fh
= file
->private_data
;
320 return saa7164_s_input(fh
->port
, i
);
323 int saa7164_g_tuner(struct file
*file
, void *priv
, struct v4l2_tuner
*t
)
325 struct saa7164_encoder_fh
*fh
= file
->private_data
;
326 struct saa7164_port
*port
= fh
->port
;
327 struct saa7164_dev
*dev
= port
->dev
;
332 strcpy(t
->name
, "tuner");
333 t
->capability
= V4L2_TUNER_CAP_NORM
| V4L2_TUNER_CAP_STEREO
;
334 t
->rangelow
= SAA7164_TV_MIN_FREQ
;
335 t
->rangehigh
= SAA7164_TV_MAX_FREQ
;
337 dprintk(DBGLVL_ENC
, "VIDIOC_G_TUNER: tuner type %d\n", t
->type
);
342 int saa7164_s_tuner(struct file
*file
, void *priv
,
343 const struct v4l2_tuner
*t
)
348 /* Update the A/V core */
352 int saa7164_g_frequency(struct saa7164_port
*port
, struct v4l2_frequency
*f
)
357 f
->frequency
= port
->freq
;
361 static int vidioc_g_frequency(struct file
*file
, void *priv
,
362 struct v4l2_frequency
*f
)
364 struct saa7164_encoder_fh
*fh
= file
->private_data
;
366 return saa7164_g_frequency(fh
->port
, f
);
369 int saa7164_s_frequency(struct saa7164_port
*port
,
370 const struct v4l2_frequency
*f
)
372 struct saa7164_dev
*dev
= port
->dev
;
373 struct saa7164_port
*tsport
;
374 struct dvb_frontend
*fe
;
376 /* TODO: Pull this for the std */
377 struct analog_parameters params
= {
378 .mode
= V4L2_TUNER_ANALOG_TV
,
379 .audmode
= V4L2_TUNER_MODE_STEREO
,
380 .std
= port
->encodernorm
.id
,
381 .frequency
= f
->frequency
384 /* Stop the encoder */
385 dprintk(DBGLVL_ENC
, "%s() frequency=%d tuner=%d\n", __func__
,
386 f
->frequency
, f
->tuner
);
391 port
->freq
= clamp(f
->frequency
,
392 SAA7164_TV_MIN_FREQ
, SAA7164_TV_MAX_FREQ
);
394 /* Update the hardware */
395 if (port
->nr
== SAA7164_PORT_ENC1
)
396 tsport
= &dev
->ports
[SAA7164_PORT_TS1
];
397 else if (port
->nr
== SAA7164_PORT_ENC2
)
398 tsport
= &dev
->ports
[SAA7164_PORT_TS2
];
402 fe
= tsport
->dvb
.frontend
;
404 if (fe
&& fe
->ops
.tuner_ops
.set_analog_params
)
405 fe
->ops
.tuner_ops
.set_analog_params(fe
, ¶ms
);
407 printk(KERN_ERR
"%s() No analog tuner, aborting\n", __func__
);
409 saa7164_encoder_initialize(port
);
414 static int vidioc_s_frequency(struct file
*file
, void *priv
,
415 const struct v4l2_frequency
*f
)
417 struct saa7164_encoder_fh
*fh
= file
->private_data
;
419 return saa7164_s_frequency(fh
->port
, f
);
422 static int saa7164_s_ctrl(struct v4l2_ctrl
*ctrl
)
424 struct saa7164_port
*port
=
425 container_of(ctrl
->handler
, struct saa7164_port
, ctrl_handler
);
426 struct saa7164_encoder_params
*params
= &port
->encoder_params
;
430 case V4L2_CID_BRIGHTNESS
:
431 port
->ctl_brightness
= ctrl
->val
;
432 saa7164_api_set_usercontrol(port
, PU_BRIGHTNESS_CONTROL
);
434 case V4L2_CID_CONTRAST
:
435 port
->ctl_contrast
= ctrl
->val
;
436 saa7164_api_set_usercontrol(port
, PU_CONTRAST_CONTROL
);
438 case V4L2_CID_SATURATION
:
439 port
->ctl_saturation
= ctrl
->val
;
440 saa7164_api_set_usercontrol(port
, PU_SATURATION_CONTROL
);
443 port
->ctl_hue
= ctrl
->val
;
444 saa7164_api_set_usercontrol(port
, PU_HUE_CONTROL
);
446 case V4L2_CID_SHARPNESS
:
447 port
->ctl_sharpness
= ctrl
->val
;
448 saa7164_api_set_usercontrol(port
, PU_SHARPNESS_CONTROL
);
450 case V4L2_CID_AUDIO_VOLUME
:
451 port
->ctl_volume
= ctrl
->val
;
452 saa7164_api_set_audio_volume(port
, port
->ctl_volume
);
454 case V4L2_CID_MPEG_VIDEO_BITRATE
:
455 params
->bitrate
= ctrl
->val
;
457 case V4L2_CID_MPEG_STREAM_TYPE
:
458 params
->stream_type
= ctrl
->val
;
460 case V4L2_CID_MPEG_AUDIO_MUTE
:
461 params
->ctl_mute
= ctrl
->val
;
462 ret
= saa7164_api_audio_mute(port
, params
->ctl_mute
);
464 printk(KERN_ERR
"%s() error, ret = 0x%x\n", __func__
,
469 case V4L2_CID_MPEG_VIDEO_ASPECT
:
470 params
->ctl_aspect
= ctrl
->val
;
471 ret
= saa7164_api_set_aspect_ratio(port
);
473 printk(KERN_ERR
"%s() error, ret = 0x%x\n", __func__
,
478 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE
:
479 params
->bitrate_mode
= ctrl
->val
;
481 case V4L2_CID_MPEG_VIDEO_B_FRAMES
:
482 params
->refdist
= ctrl
->val
;
484 case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK
:
485 params
->bitrate_peak
= ctrl
->val
;
487 case V4L2_CID_MPEG_VIDEO_GOP_SIZE
:
488 params
->gop_size
= ctrl
->val
;
497 static int vidioc_querycap(struct file
*file
, void *priv
,
498 struct v4l2_capability
*cap
)
500 struct saa7164_encoder_fh
*fh
= file
->private_data
;
501 struct saa7164_port
*port
= fh
->port
;
502 struct saa7164_dev
*dev
= port
->dev
;
504 strcpy(cap
->driver
, dev
->name
);
505 strlcpy(cap
->card
, saa7164_boards
[dev
->board
].name
,
507 sprintf(cap
->bus_info
, "PCI:%s", pci_name(dev
->pci
));
510 V4L2_CAP_VIDEO_CAPTURE
|
514 cap
->capabilities
= cap
->device_caps
|
515 V4L2_CAP_VBI_CAPTURE
|
516 V4L2_CAP_DEVICE_CAPS
;
521 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
522 struct v4l2_fmtdesc
*f
)
527 strlcpy(f
->description
, "MPEG", sizeof(f
->description
));
528 f
->pixelformat
= V4L2_PIX_FMT_MPEG
;
533 static int vidioc_fmt_vid_cap(struct file
*file
, void *priv
,
534 struct v4l2_format
*f
)
536 struct saa7164_encoder_fh
*fh
= file
->private_data
;
537 struct saa7164_port
*port
= fh
->port
;
539 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
540 f
->fmt
.pix
.bytesperline
= 0;
541 f
->fmt
.pix
.sizeimage
= SAA7164_SIZEIMAGE
;
542 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
543 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
544 f
->fmt
.pix
.width
= port
->width
;
545 f
->fmt
.pix
.height
= port
->height
;
549 static int saa7164_encoder_stop_port(struct saa7164_port
*port
)
551 struct saa7164_dev
*dev
= port
->dev
;
554 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_STOP
);
555 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
556 printk(KERN_ERR
"%s() stop transition failed, ret = 0x%x\n",
560 dprintk(DBGLVL_ENC
, "%s() Stopped\n", __func__
);
567 static int saa7164_encoder_acquire_port(struct saa7164_port
*port
)
569 struct saa7164_dev
*dev
= port
->dev
;
572 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_ACQUIRE
);
573 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
574 printk(KERN_ERR
"%s() acquire transition failed, ret = 0x%x\n",
578 dprintk(DBGLVL_ENC
, "%s() Acquired\n", __func__
);
585 static int saa7164_encoder_pause_port(struct saa7164_port
*port
)
587 struct saa7164_dev
*dev
= port
->dev
;
590 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_PAUSE
);
591 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
592 printk(KERN_ERR
"%s() pause transition failed, ret = 0x%x\n",
596 dprintk(DBGLVL_ENC
, "%s() Paused\n", __func__
);
603 /* Firmware is very windows centric, meaning you have to transition
604 * the part through AVStream / KS Windows stages, forwards or backwards.
605 * States are: stopped, acquired (h/w), paused, started.
606 * We have to leave here will all of the soft buffers on the free list,
607 * else the cfg_post() func won't have soft buffers to correctly configure.
609 static int saa7164_encoder_stop_streaming(struct saa7164_port
*port
)
611 struct saa7164_dev
*dev
= port
->dev
;
612 struct saa7164_buffer
*buf
;
613 struct saa7164_user_buffer
*ubuf
;
614 struct list_head
*c
, *n
;
617 dprintk(DBGLVL_ENC
, "%s(port=%d)\n", __func__
, port
->nr
);
619 ret
= saa7164_encoder_pause_port(port
);
620 ret
= saa7164_encoder_acquire_port(port
);
621 ret
= saa7164_encoder_stop_port(port
);
623 dprintk(DBGLVL_ENC
, "%s(port=%d) Hardware stopped\n", __func__
,
626 /* Reset the state of any allocated buffer resources */
627 mutex_lock(&port
->dmaqueue_lock
);
629 /* Reset the hard and soft buffer state */
630 list_for_each_safe(c
, n
, &port
->dmaqueue
.list
) {
631 buf
= list_entry(c
, struct saa7164_buffer
, list
);
632 buf
->flags
= SAA7164_BUFFER_FREE
;
636 list_for_each_safe(c
, n
, &port
->list_buf_used
.list
) {
637 ubuf
= list_entry(c
, struct saa7164_user_buffer
, list
);
639 list_move_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
642 mutex_unlock(&port
->dmaqueue_lock
);
644 /* Free any allocated resources */
645 saa7164_encoder_buffers_dealloc(port
);
647 dprintk(DBGLVL_ENC
, "%s(port=%d) Released\n", __func__
, port
->nr
);
652 static int saa7164_encoder_start_streaming(struct saa7164_port
*port
)
654 struct saa7164_dev
*dev
= port
->dev
;
657 dprintk(DBGLVL_ENC
, "%s(port=%d)\n", __func__
, port
->nr
);
659 port
->done_first_interrupt
= 0;
661 /* allocate all of the PCIe DMA buffer resources on the fly,
662 * allowing switching between TS and PS payloads without
663 * requiring a complete driver reload.
665 saa7164_encoder_buffers_alloc(port
);
667 /* Configure the encoder with any cache values */
668 saa7164_api_set_encoder(port
);
669 saa7164_api_get_encoder(port
);
671 /* Place the empty buffers on the hardware */
672 saa7164_buffer_cfg_port(port
);
674 /* Acquire the hardware */
675 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_ACQUIRE
);
676 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
677 printk(KERN_ERR
"%s() acquire transition failed, res = 0x%x\n",
680 /* Stop the hardware, regardless */
681 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_STOP
);
682 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
683 printk(KERN_ERR
"%s() acquire/forced stop transition failed, res = 0x%x\n",
689 dprintk(DBGLVL_ENC
, "%s() Acquired\n", __func__
);
691 /* Pause the hardware */
692 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_PAUSE
);
693 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
694 printk(KERN_ERR
"%s() pause transition failed, res = 0x%x\n",
697 /* Stop the hardware, regardless */
698 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_STOP
);
699 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
700 printk(KERN_ERR
"%s() pause/forced stop transition failed, res = 0x%x\n",
707 dprintk(DBGLVL_ENC
, "%s() Paused\n", __func__
);
709 /* Start the hardware */
710 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_RUN
);
711 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
712 printk(KERN_ERR
"%s() run transition failed, result = 0x%x\n",
715 /* Stop the hardware, regardless */
716 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_STOP
);
717 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
718 printk(KERN_ERR
"%s() run/forced stop transition failed, res = 0x%x\n",
724 dprintk(DBGLVL_ENC
, "%s() Running\n", __func__
);
730 static int fops_open(struct file
*file
)
732 struct saa7164_dev
*dev
;
733 struct saa7164_port
*port
;
734 struct saa7164_encoder_fh
*fh
;
736 port
= (struct saa7164_port
*)video_get_drvdata(video_devdata(file
));
742 dprintk(DBGLVL_ENC
, "%s()\n", __func__
);
744 /* allocate + initialize per filehandle data */
745 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
750 v4l2_fh_init(&fh
->fh
, video_devdata(file
));
751 v4l2_fh_add(&fh
->fh
);
752 file
->private_data
= fh
;
757 static int fops_release(struct file
*file
)
759 struct saa7164_encoder_fh
*fh
= file
->private_data
;
760 struct saa7164_port
*port
= fh
->port
;
761 struct saa7164_dev
*dev
= port
->dev
;
763 dprintk(DBGLVL_ENC
, "%s()\n", __func__
);
765 /* Shut device down on last close */
766 if (atomic_cmpxchg(&fh
->v4l_reading
, 1, 0) == 1) {
767 if (atomic_dec_return(&port
->v4l_reader_count
) == 0) {
768 /* stop mpeg capture then cancel buffers */
769 saa7164_encoder_stop_streaming(port
);
773 v4l2_fh_del(&fh
->fh
);
774 v4l2_fh_exit(&fh
->fh
);
781 saa7164_user_buffer
*saa7164_enc_next_buf(struct saa7164_port
*port
)
783 struct saa7164_user_buffer
*ubuf
= NULL
;
784 struct saa7164_dev
*dev
= port
->dev
;
787 mutex_lock(&port
->dmaqueue_lock
);
788 if (!list_empty(&port
->list_buf_used
.list
)) {
789 ubuf
= list_first_entry(&port
->list_buf_used
.list
,
790 struct saa7164_user_buffer
, list
);
793 crc
= crc32(0, ubuf
->data
, ubuf
->actual_size
);
794 if (crc
!= ubuf
->crc
) {
796 "%s() ubuf %p crc became invalid, was 0x%x became 0x%x\n",
798 ubuf
, ubuf
->crc
, crc
);
803 mutex_unlock(&port
->dmaqueue_lock
);
805 dprintk(DBGLVL_ENC
, "%s() returns %p\n", __func__
, ubuf
);
810 static ssize_t
fops_read(struct file
*file
, char __user
*buffer
,
811 size_t count
, loff_t
*pos
)
813 struct saa7164_encoder_fh
*fh
= file
->private_data
;
814 struct saa7164_port
*port
= fh
->port
;
815 struct saa7164_user_buffer
*ubuf
= NULL
;
816 struct saa7164_dev
*dev
= port
->dev
;
821 port
->last_read_msecs_diff
= port
->last_read_msecs
;
822 port
->last_read_msecs
= jiffies_to_msecs(jiffies
);
823 port
->last_read_msecs_diff
= port
->last_read_msecs
-
824 port
->last_read_msecs_diff
;
826 saa7164_histogram_update(&port
->read_interval
,
827 port
->last_read_msecs_diff
);
830 printk(KERN_ERR
"%s() ESPIPE\n", __func__
);
834 if (atomic_cmpxchg(&fh
->v4l_reading
, 0, 1) == 0) {
835 if (atomic_inc_return(&port
->v4l_reader_count
) == 1) {
837 if (saa7164_encoder_initialize(port
) < 0) {
838 printk(KERN_ERR
"%s() EINVAL\n", __func__
);
842 saa7164_encoder_start_streaming(port
);
847 /* blocking wait for buffer */
848 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
849 if (wait_event_interruptible(port
->wait_read
,
850 saa7164_enc_next_buf(port
))) {
851 printk(KERN_ERR
"%s() ERESTARTSYS\n", __func__
);
856 /* Pull the first buffer from the used list */
857 ubuf
= saa7164_enc_next_buf(port
);
859 while ((count
> 0) && ubuf
) {
861 /* set remaining bytes to copy */
862 rem
= ubuf
->actual_size
- ubuf
->pos
;
863 cnt
= rem
> count
? count
: rem
;
865 p
= ubuf
->data
+ ubuf
->pos
;
868 "%s() count=%d cnt=%d rem=%d buf=%p buf->pos=%d\n",
869 __func__
, (int)count
, cnt
, rem
, ubuf
, ubuf
->pos
);
871 if (copy_to_user(buffer
, p
, cnt
)) {
872 printk(KERN_ERR
"%s() copy_to_user failed\n", __func__
);
874 printk(KERN_ERR
"%s() EFAULT\n", __func__
);
885 if (ubuf
->pos
> ubuf
->actual_size
)
886 printk(KERN_ERR
"read() pos > actual, huh?\n");
888 if (ubuf
->pos
== ubuf
->actual_size
) {
890 /* finished with current buffer, take next buffer */
892 /* Requeue the buffer on the free list */
895 mutex_lock(&port
->dmaqueue_lock
);
896 list_move_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
897 mutex_unlock(&port
->dmaqueue_lock
);
900 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
901 if (wait_event_interruptible(port
->wait_read
,
902 saa7164_enc_next_buf(port
))) {
906 ubuf
= saa7164_enc_next_buf(port
);
916 static unsigned int fops_poll(struct file
*file
, poll_table
*wait
)
918 unsigned long req_events
= poll_requested_events(wait
);
919 struct saa7164_encoder_fh
*fh
=
920 (struct saa7164_encoder_fh
*)file
->private_data
;
921 struct saa7164_port
*port
= fh
->port
;
922 unsigned int mask
= v4l2_ctrl_poll(file
, wait
);
924 port
->last_poll_msecs_diff
= port
->last_poll_msecs
;
925 port
->last_poll_msecs
= jiffies_to_msecs(jiffies
);
926 port
->last_poll_msecs_diff
= port
->last_poll_msecs
-
927 port
->last_poll_msecs_diff
;
929 saa7164_histogram_update(&port
->poll_interval
,
930 port
->last_poll_msecs_diff
);
932 if (!(req_events
& (POLLIN
| POLLRDNORM
)))
935 if (atomic_cmpxchg(&fh
->v4l_reading
, 0, 1) == 0) {
936 if (atomic_inc_return(&port
->v4l_reader_count
) == 1) {
937 if (saa7164_encoder_initialize(port
) < 0)
938 return mask
| POLLERR
;
939 saa7164_encoder_start_streaming(port
);
944 /* Pull the first buffer from the used list */
945 if (!list_empty(&port
->list_buf_used
.list
))
946 mask
|= POLLIN
| POLLRDNORM
;
951 static const struct v4l2_ctrl_ops saa7164_ctrl_ops
= {
952 .s_ctrl
= saa7164_s_ctrl
,
955 static const struct v4l2_file_operations mpeg_fops
= {
956 .owner
= THIS_MODULE
,
958 .release
= fops_release
,
961 .unlocked_ioctl
= video_ioctl2
,
964 static const struct v4l2_ioctl_ops mpeg_ioctl_ops
= {
965 .vidioc_s_std
= vidioc_s_std
,
966 .vidioc_g_std
= vidioc_g_std
,
967 .vidioc_enum_input
= saa7164_enum_input
,
968 .vidioc_g_input
= vidioc_g_input
,
969 .vidioc_s_input
= vidioc_s_input
,
970 .vidioc_g_tuner
= saa7164_g_tuner
,
971 .vidioc_s_tuner
= saa7164_s_tuner
,
972 .vidioc_g_frequency
= vidioc_g_frequency
,
973 .vidioc_s_frequency
= vidioc_s_frequency
,
974 .vidioc_querycap
= vidioc_querycap
,
975 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
976 .vidioc_g_fmt_vid_cap
= vidioc_fmt_vid_cap
,
977 .vidioc_try_fmt_vid_cap
= vidioc_fmt_vid_cap
,
978 .vidioc_s_fmt_vid_cap
= vidioc_fmt_vid_cap
,
979 .vidioc_log_status
= v4l2_ctrl_log_status
,
980 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
981 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
984 static struct video_device saa7164_mpeg_template
= {
987 .ioctl_ops
= &mpeg_ioctl_ops
,
989 .tvnorms
= SAA7164_NORMS
,
992 static struct video_device
*saa7164_encoder_alloc(
993 struct saa7164_port
*port
,
995 struct video_device
*template,
998 struct video_device
*vfd
;
999 struct saa7164_dev
*dev
= port
->dev
;
1001 dprintk(DBGLVL_ENC
, "%s()\n", __func__
);
1003 vfd
= video_device_alloc();
1008 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s (%s)", dev
->name
,
1009 type
, saa7164_boards
[dev
->board
].name
);
1011 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
1012 vfd
->release
= video_device_release
;
1016 int saa7164_encoder_register(struct saa7164_port
*port
)
1018 struct saa7164_dev
*dev
= port
->dev
;
1019 struct v4l2_ctrl_handler
*hdl
= &port
->ctrl_handler
;
1020 int result
= -ENODEV
;
1022 dprintk(DBGLVL_ENC
, "%s()\n", __func__
);
1024 BUG_ON(port
->type
!= SAA7164_MPEG_ENCODER
);
1026 /* Sanity check that the PCI configuration space is active */
1027 if (port
->hwcfg
.BARLocation
== 0) {
1028 printk(KERN_ERR
"%s() failed (errno = %d), NO PCI configuration\n",
1034 /* Establish encoder defaults here */
1035 /* Set default TV standard */
1036 port
->encodernorm
= saa7164_tvnorms
[0];
1038 port
->mux_input
= 1; /* Composite */
1039 port
->video_format
= EU_VIDEO_FORMAT_MPEG_2
;
1040 port
->audio_format
= 0;
1041 port
->video_resolution
= 0;
1042 port
->freq
= SAA7164_TV_MIN_FREQ
;
1044 v4l2_ctrl_handler_init(hdl
, 14);
1045 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1046 V4L2_CID_BRIGHTNESS
, 0, 255, 1, 127);
1047 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1048 V4L2_CID_CONTRAST
, 0, 255, 1, 66);
1049 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1050 V4L2_CID_SATURATION
, 0, 255, 1, 62);
1051 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1052 V4L2_CID_HUE
, 0, 255, 1, 128);
1053 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1054 V4L2_CID_SHARPNESS
, 0x0, 0x0f, 1, 8);
1055 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1056 V4L2_CID_MPEG_AUDIO_MUTE
, 0x0, 0x01, 1, 0);
1057 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1058 V4L2_CID_AUDIO_VOLUME
, -83, 24, 1, 20);
1059 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1060 V4L2_CID_MPEG_VIDEO_BITRATE
,
1061 ENCODER_MIN_BITRATE
, ENCODER_MAX_BITRATE
,
1062 100000, ENCODER_DEF_BITRATE
);
1063 v4l2_ctrl_new_std_menu(hdl
, &saa7164_ctrl_ops
,
1064 V4L2_CID_MPEG_STREAM_TYPE
,
1065 V4L2_MPEG_STREAM_TYPE_MPEG2_TS
, 0,
1066 V4L2_MPEG_STREAM_TYPE_MPEG2_PS
);
1067 v4l2_ctrl_new_std_menu(hdl
, &saa7164_ctrl_ops
,
1068 V4L2_CID_MPEG_VIDEO_ASPECT
,
1069 V4L2_MPEG_VIDEO_ASPECT_221x100
, 0,
1070 V4L2_MPEG_VIDEO_ASPECT_4x3
);
1071 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1072 V4L2_CID_MPEG_VIDEO_GOP_SIZE
, 1, 255, 1, 15);
1073 v4l2_ctrl_new_std_menu(hdl
, &saa7164_ctrl_ops
,
1074 V4L2_CID_MPEG_VIDEO_BITRATE_MODE
,
1075 V4L2_MPEG_VIDEO_BITRATE_MODE_CBR
, 0,
1076 V4L2_MPEG_VIDEO_BITRATE_MODE_VBR
);
1077 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1078 V4L2_CID_MPEG_VIDEO_B_FRAMES
, 1, 3, 1, 1);
1079 v4l2_ctrl_new_std(hdl
, &saa7164_ctrl_ops
,
1080 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK
,
1081 ENCODER_MIN_BITRATE
, ENCODER_MAX_BITRATE
,
1082 100000, ENCODER_DEF_BITRATE
);
1084 result
= hdl
->error
;
1088 port
->std
= V4L2_STD_NTSC_M
;
1090 if (port
->encodernorm
.id
& V4L2_STD_525_60
)
1095 /* Allocate and register the video device node */
1096 port
->v4l_device
= saa7164_encoder_alloc(port
,
1097 dev
->pci
, &saa7164_mpeg_template
, "mpeg");
1099 if (!port
->v4l_device
) {
1100 printk(KERN_INFO
"%s: can't allocate mpeg device\n",
1106 port
->v4l_device
->ctrl_handler
= hdl
;
1107 v4l2_ctrl_handler_setup(hdl
);
1108 video_set_drvdata(port
->v4l_device
, port
);
1109 result
= video_register_device(port
->v4l_device
,
1110 VFL_TYPE_GRABBER
, -1);
1112 printk(KERN_INFO
"%s: can't register mpeg device\n",
1114 /* TODO: We're going to leak here if we don't dealloc
1115 The buffers above. The unreg function can't deal wit it.
1120 printk(KERN_INFO
"%s: registered device video%d [mpeg]\n",
1121 dev
->name
, port
->v4l_device
->num
);
1123 /* Configure the hardware defaults */
1124 saa7164_api_set_videomux(port
);
1125 saa7164_api_set_usercontrol(port
, PU_BRIGHTNESS_CONTROL
);
1126 saa7164_api_set_usercontrol(port
, PU_CONTRAST_CONTROL
);
1127 saa7164_api_set_usercontrol(port
, PU_HUE_CONTROL
);
1128 saa7164_api_set_usercontrol(port
, PU_SATURATION_CONTROL
);
1129 saa7164_api_set_usercontrol(port
, PU_SHARPNESS_CONTROL
);
1130 saa7164_api_audio_mute(port
, 0);
1131 saa7164_api_set_audio_volume(port
, 20);
1132 saa7164_api_set_aspect_ratio(port
);
1134 /* Disable audio standard detection, it's buggy */
1135 saa7164_api_set_audio_detection(port
, 0);
1137 saa7164_api_set_encoder(port
);
1138 saa7164_api_get_encoder(port
);
1145 void saa7164_encoder_unregister(struct saa7164_port
*port
)
1147 struct saa7164_dev
*dev
= port
->dev
;
1149 dprintk(DBGLVL_ENC
, "%s(port=%d)\n", __func__
, port
->nr
);
1151 BUG_ON(port
->type
!= SAA7164_MPEG_ENCODER
);
1153 if (port
->v4l_device
) {
1154 if (port
->v4l_device
->minor
!= -1)
1155 video_unregister_device(port
->v4l_device
);
1157 video_device_release(port
->v4l_device
);
1159 port
->v4l_device
= NULL
;
1161 v4l2_ctrl_handler_free(&port
->ctrl_handler
);
1163 dprintk(DBGLVL_ENC
, "%s(port=%d) done\n", __func__
, port
->nr
);