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 /* Take the encoder configuration from the port struct and
25 * flush it to the hardware.
27 static void saa7164_vbi_configure(struct saa7164_port
*port
)
29 struct saa7164_dev
*dev
= port
->dev
;
30 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
32 port
->vbi_params
.width
= port
->enc_port
->width
;
33 port
->vbi_params
.height
= port
->enc_port
->height
;
34 port
->vbi_params
.is_50hz
=
35 (port
->enc_port
->encodernorm
.id
& V4L2_STD_625_50
) != 0;
37 /* Set up the DIF (enable it) for analog mode by default */
38 saa7164_api_initialize_dif(port
);
39 dprintk(DBGLVL_VBI
, "%s() ends\n", __func__
);
42 static int saa7164_vbi_buffers_dealloc(struct saa7164_port
*port
)
44 struct list_head
*c
, *n
, *p
, *q
, *l
, *v
;
45 struct saa7164_dev
*dev
= port
->dev
;
46 struct saa7164_buffer
*buf
;
47 struct saa7164_user_buffer
*ubuf
;
49 /* Remove any allocated buffers */
50 mutex_lock(&port
->dmaqueue_lock
);
52 dprintk(DBGLVL_VBI
, "%s(port=%d) dmaqueue\n", __func__
, port
->nr
);
53 list_for_each_safe(c
, n
, &port
->dmaqueue
.list
) {
54 buf
= list_entry(c
, struct saa7164_buffer
, list
);
56 saa7164_buffer_dealloc(buf
);
59 dprintk(DBGLVL_VBI
, "%s(port=%d) used\n", __func__
, port
->nr
);
60 list_for_each_safe(p
, q
, &port
->list_buf_used
.list
) {
61 ubuf
= list_entry(p
, struct saa7164_user_buffer
, list
);
63 saa7164_buffer_dealloc_user(ubuf
);
66 dprintk(DBGLVL_VBI
, "%s(port=%d) free\n", __func__
, port
->nr
);
67 list_for_each_safe(l
, v
, &port
->list_buf_free
.list
) {
68 ubuf
= list_entry(l
, struct saa7164_user_buffer
, list
);
70 saa7164_buffer_dealloc_user(ubuf
);
73 mutex_unlock(&port
->dmaqueue_lock
);
74 dprintk(DBGLVL_VBI
, "%s(port=%d) done\n", __func__
, port
->nr
);
79 /* Dynamic buffer switch at vbi start time */
80 static int saa7164_vbi_buffers_alloc(struct saa7164_port
*port
)
82 struct saa7164_dev
*dev
= port
->dev
;
83 struct saa7164_buffer
*buf
;
84 struct saa7164_user_buffer
*ubuf
;
85 struct tmHWStreamParameters
*params
= &port
->hw_streamingparams
;
86 int result
= -ENODEV
, i
;
89 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
91 /* TODO: NTSC SPECIFIC */
92 /* Init and establish defaults */
93 params
->samplesperline
= 1440;
94 params
->numberoflines
= 12;
95 params
->numberoflines
= 18;
98 params
->numpagetables
= 2 +
99 ((params
->numberoflines
* params
->pitch
) / PAGE_SIZE
);
100 params
->bitspersample
= 8;
101 params
->linethreshold
= 0;
102 params
->pagetablelistvirt
= NULL
;
103 params
->pagetablelistphys
= NULL
;
104 params
->numpagetableentries
= port
->hwcfg
.buffercount
;
106 /* Allocate the PCI resources, buffers (hard) */
107 for (i
= 0; i
< port
->hwcfg
.buffercount
; i
++) {
108 buf
= saa7164_buffer_alloc(port
,
109 params
->numberoflines
*
113 printk(KERN_ERR
"%s() failed (errno = %d), unable to allocate buffer\n",
119 mutex_lock(&port
->dmaqueue_lock
);
120 list_add_tail(&buf
->list
, &port
->dmaqueue
.list
);
121 mutex_unlock(&port
->dmaqueue_lock
);
126 /* Allocate some kernel buffers for copying
129 len
= params
->numberoflines
* params
->pitch
;
131 if (vbi_buffers
< 16)
133 if (vbi_buffers
> 512)
136 for (i
= 0; i
< vbi_buffers
; i
++) {
138 ubuf
= saa7164_buffer_alloc_user(dev
, len
);
140 mutex_lock(&port
->dmaqueue_lock
);
141 list_add_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
142 mutex_unlock(&port
->dmaqueue_lock
);
154 static int saa7164_vbi_initialize(struct saa7164_port
*port
)
156 saa7164_vbi_configure(port
);
160 /* -- V4L2 --------------------------------------------------------- */
161 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id id
)
163 struct saa7164_vbi_fh
*fh
= file
->private_data
;
165 return saa7164_s_std(fh
->port
->enc_port
, id
);
168 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*id
)
170 struct saa7164_encoder_fh
*fh
= file
->private_data
;
172 return saa7164_g_std(fh
->port
->enc_port
, id
);
175 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
177 struct saa7164_vbi_fh
*fh
= file
->private_data
;
179 return saa7164_g_input(fh
->port
->enc_port
, i
);
182 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
184 struct saa7164_vbi_fh
*fh
= file
->private_data
;
186 return saa7164_s_input(fh
->port
->enc_port
, i
);
189 static int vidioc_g_frequency(struct file
*file
, void *priv
,
190 struct v4l2_frequency
*f
)
192 struct saa7164_vbi_fh
*fh
= file
->private_data
;
194 return saa7164_g_frequency(fh
->port
->enc_port
, f
);
197 static int vidioc_s_frequency(struct file
*file
, void *priv
,
198 const struct v4l2_frequency
*f
)
200 struct saa7164_vbi_fh
*fh
= file
->private_data
;
201 int ret
= saa7164_s_frequency(fh
->port
->enc_port
, f
);
204 saa7164_vbi_initialize(fh
->port
);
208 static int vidioc_querycap(struct file
*file
, void *priv
,
209 struct v4l2_capability
*cap
)
211 struct saa7164_vbi_fh
*fh
= file
->private_data
;
212 struct saa7164_port
*port
= fh
->port
;
213 struct saa7164_dev
*dev
= port
->dev
;
215 strcpy(cap
->driver
, dev
->name
);
216 strlcpy(cap
->card
, saa7164_boards
[dev
->board
].name
,
218 sprintf(cap
->bus_info
, "PCI:%s", pci_name(dev
->pci
));
221 V4L2_CAP_VBI_CAPTURE
|
225 cap
->capabilities
= cap
->device_caps
|
226 V4L2_CAP_VIDEO_CAPTURE
|
227 V4L2_CAP_DEVICE_CAPS
;
232 static int saa7164_vbi_stop_port(struct saa7164_port
*port
)
234 struct saa7164_dev
*dev
= port
->dev
;
237 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_STOP
);
238 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
239 printk(KERN_ERR
"%s() stop transition failed, ret = 0x%x\n",
243 dprintk(DBGLVL_VBI
, "%s() Stopped\n", __func__
);
250 static int saa7164_vbi_acquire_port(struct saa7164_port
*port
)
252 struct saa7164_dev
*dev
= port
->dev
;
255 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_ACQUIRE
);
256 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
257 printk(KERN_ERR
"%s() acquire transition failed, ret = 0x%x\n",
261 dprintk(DBGLVL_VBI
, "%s() Acquired\n", __func__
);
268 static int saa7164_vbi_pause_port(struct saa7164_port
*port
)
270 struct saa7164_dev
*dev
= port
->dev
;
273 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_PAUSE
);
274 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
275 printk(KERN_ERR
"%s() pause transition failed, ret = 0x%x\n",
279 dprintk(DBGLVL_VBI
, "%s() Paused\n", __func__
);
286 /* Firmware is very windows centric, meaning you have to transition
287 * the part through AVStream / KS Windows stages, forwards or backwards.
288 * States are: stopped, acquired (h/w), paused, started.
289 * We have to leave here will all of the soft buffers on the free list,
290 * else the cfg_post() func won't have soft buffers to correctly configure.
292 static int saa7164_vbi_stop_streaming(struct saa7164_port
*port
)
294 struct saa7164_dev
*dev
= port
->dev
;
295 struct saa7164_buffer
*buf
;
296 struct saa7164_user_buffer
*ubuf
;
297 struct list_head
*c
, *n
;
300 dprintk(DBGLVL_VBI
, "%s(port=%d)\n", __func__
, port
->nr
);
302 ret
= saa7164_vbi_pause_port(port
);
303 ret
= saa7164_vbi_acquire_port(port
);
304 ret
= saa7164_vbi_stop_port(port
);
306 dprintk(DBGLVL_VBI
, "%s(port=%d) Hardware stopped\n", __func__
,
309 /* Reset the state of any allocated buffer resources */
310 mutex_lock(&port
->dmaqueue_lock
);
312 /* Reset the hard and soft buffer state */
313 list_for_each_safe(c
, n
, &port
->dmaqueue
.list
) {
314 buf
= list_entry(c
, struct saa7164_buffer
, list
);
315 buf
->flags
= SAA7164_BUFFER_FREE
;
319 list_for_each_safe(c
, n
, &port
->list_buf_used
.list
) {
320 ubuf
= list_entry(c
, struct saa7164_user_buffer
, list
);
322 list_move_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
325 mutex_unlock(&port
->dmaqueue_lock
);
327 /* Free any allocated resources */
328 saa7164_vbi_buffers_dealloc(port
);
330 dprintk(DBGLVL_VBI
, "%s(port=%d) Released\n", __func__
, port
->nr
);
335 static int saa7164_vbi_start_streaming(struct saa7164_port
*port
)
337 struct saa7164_dev
*dev
= port
->dev
;
340 dprintk(DBGLVL_VBI
, "%s(port=%d)\n", __func__
, port
->nr
);
342 port
->done_first_interrupt
= 0;
344 /* allocate all of the PCIe DMA buffer resources on the fly,
345 * allowing switching between TS and PS payloads without
346 * requiring a complete driver reload.
348 saa7164_vbi_buffers_alloc(port
);
350 /* Configure the encoder with any cache values */
352 saa7164_api_set_encoder(port
);
353 saa7164_api_get_encoder(port
);
356 /* Place the empty buffers on the hardware */
357 saa7164_buffer_cfg_port(port
);
359 /* Negotiate format */
360 if (saa7164_api_set_vbi_format(port
) != SAA_OK
) {
361 printk(KERN_ERR
"%s() No supported VBI format\n", __func__
);
366 /* Acquire the hardware */
367 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_ACQUIRE
);
368 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
369 printk(KERN_ERR
"%s() acquire transition failed, res = 0x%x\n",
375 dprintk(DBGLVL_VBI
, "%s() Acquired\n", __func__
);
377 /* Pause the hardware */
378 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_PAUSE
);
379 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
380 printk(KERN_ERR
"%s() pause transition failed, res = 0x%x\n",
383 /* Stop the hardware, regardless */
384 result
= saa7164_vbi_stop_port(port
);
385 if (result
!= SAA_OK
) {
386 printk(KERN_ERR
"%s() pause/forced stop transition failed, res = 0x%x\n",
393 dprintk(DBGLVL_VBI
, "%s() Paused\n", __func__
);
395 /* Start the hardware */
396 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_RUN
);
397 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
398 printk(KERN_ERR
"%s() run transition failed, result = 0x%x\n",
401 /* Stop the hardware, regardless */
402 result
= saa7164_vbi_acquire_port(port
);
403 result
= saa7164_vbi_stop_port(port
);
404 if (result
!= SAA_OK
) {
405 printk(KERN_ERR
"%s() run/forced stop transition failed, res = 0x%x\n",
411 dprintk(DBGLVL_VBI
, "%s() Running\n", __func__
);
417 static int saa7164_vbi_fmt(struct file
*file
, void *priv
,
418 struct v4l2_format
*f
)
421 f
->fmt
.vbi
.samples_per_line
= 1440;
422 f
->fmt
.vbi
.sampling_rate
= 27000000;
423 f
->fmt
.vbi
.sample_format
= V4L2_PIX_FMT_GREY
;
424 f
->fmt
.vbi
.offset
= 0;
425 f
->fmt
.vbi
.flags
= 0;
426 f
->fmt
.vbi
.start
[0] = 10;
427 f
->fmt
.vbi
.count
[0] = 18;
428 f
->fmt
.vbi
.start
[1] = 263 + 10 + 1;
429 f
->fmt
.vbi
.count
[1] = 18;
430 memset(f
->fmt
.vbi
.reserved
, 0, sizeof(f
->fmt
.vbi
.reserved
));
434 static int fops_open(struct file
*file
)
436 struct saa7164_dev
*dev
;
437 struct saa7164_port
*port
;
438 struct saa7164_vbi_fh
*fh
;
440 port
= (struct saa7164_port
*)video_get_drvdata(video_devdata(file
));
446 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
448 /* allocate + initialize per filehandle data */
449 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
454 v4l2_fh_init(&fh
->fh
, video_devdata(file
));
455 v4l2_fh_add(&fh
->fh
);
456 file
->private_data
= fh
;
461 static int fops_release(struct file
*file
)
463 struct saa7164_vbi_fh
*fh
= file
->private_data
;
464 struct saa7164_port
*port
= fh
->port
;
465 struct saa7164_dev
*dev
= port
->dev
;
467 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
469 /* Shut device down on last close */
470 if (atomic_cmpxchg(&fh
->v4l_reading
, 1, 0) == 1) {
471 if (atomic_dec_return(&port
->v4l_reader_count
) == 0) {
472 /* stop vbi capture then cancel buffers */
473 saa7164_vbi_stop_streaming(port
);
477 v4l2_fh_del(&fh
->fh
);
478 v4l2_fh_exit(&fh
->fh
);
485 saa7164_user_buffer
*saa7164_vbi_next_buf(struct saa7164_port
*port
)
487 struct saa7164_user_buffer
*ubuf
= NULL
;
488 struct saa7164_dev
*dev
= port
->dev
;
491 mutex_lock(&port
->dmaqueue_lock
);
492 if (!list_empty(&port
->list_buf_used
.list
)) {
493 ubuf
= list_first_entry(&port
->list_buf_used
.list
,
494 struct saa7164_user_buffer
, list
);
497 crc
= crc32(0, ubuf
->data
, ubuf
->actual_size
);
498 if (crc
!= ubuf
->crc
) {
499 printk(KERN_ERR
"%s() ubuf %p crc became invalid, was 0x%x became 0x%x\n",
501 ubuf
, ubuf
->crc
, crc
);
506 mutex_unlock(&port
->dmaqueue_lock
);
508 dprintk(DBGLVL_VBI
, "%s() returns %p\n", __func__
, ubuf
);
513 static ssize_t
fops_read(struct file
*file
, char __user
*buffer
,
514 size_t count
, loff_t
*pos
)
516 struct saa7164_vbi_fh
*fh
= file
->private_data
;
517 struct saa7164_port
*port
= fh
->port
;
518 struct saa7164_user_buffer
*ubuf
= NULL
;
519 struct saa7164_dev
*dev
= port
->dev
;
524 port
->last_read_msecs_diff
= port
->last_read_msecs
;
525 port
->last_read_msecs
= jiffies_to_msecs(jiffies
);
526 port
->last_read_msecs_diff
= port
->last_read_msecs
-
527 port
->last_read_msecs_diff
;
529 saa7164_histogram_update(&port
->read_interval
,
530 port
->last_read_msecs_diff
);
533 printk(KERN_ERR
"%s() ESPIPE\n", __func__
);
537 if (atomic_cmpxchg(&fh
->v4l_reading
, 0, 1) == 0) {
538 if (atomic_inc_return(&port
->v4l_reader_count
) == 1) {
540 if (saa7164_vbi_initialize(port
) < 0) {
541 printk(KERN_ERR
"%s() EINVAL\n", __func__
);
545 saa7164_vbi_start_streaming(port
);
550 /* blocking wait for buffer */
551 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
552 if (wait_event_interruptible(port
->wait_read
,
553 saa7164_vbi_next_buf(port
))) {
554 printk(KERN_ERR
"%s() ERESTARTSYS\n", __func__
);
559 /* Pull the first buffer from the used list */
560 ubuf
= saa7164_vbi_next_buf(port
);
562 while ((count
> 0) && ubuf
) {
564 /* set remaining bytes to copy */
565 rem
= ubuf
->actual_size
- ubuf
->pos
;
566 cnt
= rem
> count
? count
: rem
;
568 p
= ubuf
->data
+ ubuf
->pos
;
571 "%s() count=%d cnt=%d rem=%d buf=%p buf->pos=%d\n",
572 __func__
, (int)count
, cnt
, rem
, ubuf
, ubuf
->pos
);
574 if (copy_to_user(buffer
, p
, cnt
)) {
575 printk(KERN_ERR
"%s() copy_to_user failed\n", __func__
);
577 printk(KERN_ERR
"%s() EFAULT\n", __func__
);
588 if (ubuf
->pos
> ubuf
->actual_size
)
589 printk(KERN_ERR
"read() pos > actual, huh?\n");
591 if (ubuf
->pos
== ubuf
->actual_size
) {
593 /* finished with current buffer, take next buffer */
595 /* Requeue the buffer on the free list */
598 mutex_lock(&port
->dmaqueue_lock
);
599 list_move_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
600 mutex_unlock(&port
->dmaqueue_lock
);
603 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
604 if (wait_event_interruptible(port
->wait_read
,
605 saa7164_vbi_next_buf(port
))) {
609 ubuf
= saa7164_vbi_next_buf(port
);
614 printk(KERN_ERR
"%s() EAGAIN\n", __func__
);
621 static unsigned int fops_poll(struct file
*file
, poll_table
*wait
)
623 struct saa7164_vbi_fh
*fh
= (struct saa7164_vbi_fh
*)file
->private_data
;
624 struct saa7164_port
*port
= fh
->port
;
625 unsigned int mask
= 0;
627 port
->last_poll_msecs_diff
= port
->last_poll_msecs
;
628 port
->last_poll_msecs
= jiffies_to_msecs(jiffies
);
629 port
->last_poll_msecs_diff
= port
->last_poll_msecs
-
630 port
->last_poll_msecs_diff
;
632 saa7164_histogram_update(&port
->poll_interval
,
633 port
->last_poll_msecs_diff
);
635 if (!video_is_registered(port
->v4l_device
))
638 if (atomic_cmpxchg(&fh
->v4l_reading
, 0, 1) == 0) {
639 if (atomic_inc_return(&port
->v4l_reader_count
) == 1) {
640 if (saa7164_vbi_initialize(port
) < 0)
642 saa7164_vbi_start_streaming(port
);
647 /* blocking wait for buffer */
648 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
649 if (wait_event_interruptible(port
->wait_read
,
650 saa7164_vbi_next_buf(port
))) {
655 /* Pull the first buffer from the used list */
656 if (!list_empty(&port
->list_buf_used
.list
))
657 mask
|= POLLIN
| POLLRDNORM
;
661 static const struct v4l2_file_operations vbi_fops
= {
662 .owner
= THIS_MODULE
,
664 .release
= fops_release
,
667 .unlocked_ioctl
= video_ioctl2
,
670 static const struct v4l2_ioctl_ops vbi_ioctl_ops
= {
671 .vidioc_s_std
= vidioc_s_std
,
672 .vidioc_g_std
= vidioc_g_std
,
673 .vidioc_enum_input
= saa7164_enum_input
,
674 .vidioc_g_input
= vidioc_g_input
,
675 .vidioc_s_input
= vidioc_s_input
,
676 .vidioc_g_tuner
= saa7164_g_tuner
,
677 .vidioc_s_tuner
= saa7164_s_tuner
,
678 .vidioc_g_frequency
= vidioc_g_frequency
,
679 .vidioc_s_frequency
= vidioc_s_frequency
,
680 .vidioc_querycap
= vidioc_querycap
,
681 .vidioc_g_fmt_vbi_cap
= saa7164_vbi_fmt
,
682 .vidioc_try_fmt_vbi_cap
= saa7164_vbi_fmt
,
683 .vidioc_s_fmt_vbi_cap
= saa7164_vbi_fmt
,
686 static struct video_device saa7164_vbi_template
= {
689 .ioctl_ops
= &vbi_ioctl_ops
,
691 .tvnorms
= SAA7164_NORMS
,
694 static struct video_device
*saa7164_vbi_alloc(
695 struct saa7164_port
*port
,
697 struct video_device
*template,
700 struct video_device
*vfd
;
701 struct saa7164_dev
*dev
= port
->dev
;
703 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
705 vfd
= video_device_alloc();
710 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s (%s)", dev
->name
,
711 type
, saa7164_boards
[dev
->board
].name
);
713 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
714 vfd
->release
= video_device_release
;
718 int saa7164_vbi_register(struct saa7164_port
*port
)
720 struct saa7164_dev
*dev
= port
->dev
;
721 int result
= -ENODEV
;
723 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
725 if (port
->type
!= SAA7164_MPEG_VBI
)
728 /* Sanity check that the PCI configuration space is active */
729 if (port
->hwcfg
.BARLocation
== 0) {
730 printk(KERN_ERR
"%s() failed (errno = %d), NO PCI configuration\n",
736 /* Establish VBI defaults here */
738 /* Allocate and register the video device node */
739 port
->v4l_device
= saa7164_vbi_alloc(port
,
740 dev
->pci
, &saa7164_vbi_template
, "vbi");
742 if (!port
->v4l_device
) {
743 printk(KERN_INFO
"%s: can't allocate vbi device\n",
749 port
->enc_port
= &dev
->ports
[port
->nr
- 2];
750 video_set_drvdata(port
->v4l_device
, port
);
751 result
= video_register_device(port
->v4l_device
,
754 printk(KERN_INFO
"%s: can't register vbi device\n",
756 /* TODO: We're going to leak here if we don't dealloc
757 The buffers above. The unreg function can't deal wit it.
762 printk(KERN_INFO
"%s: registered device vbi%d [vbi]\n",
763 dev
->name
, port
->v4l_device
->num
);
765 /* Configure the hardware defaults */
772 void saa7164_vbi_unregister(struct saa7164_port
*port
)
774 struct saa7164_dev
*dev
= port
->dev
;
776 dprintk(DBGLVL_VBI
, "%s(port=%d)\n", __func__
, port
->nr
);
778 if (port
->type
!= SAA7164_MPEG_VBI
)
781 if (port
->v4l_device
) {
782 if (port
->v4l_device
->minor
!= -1)
783 video_unregister_device(port
->v4l_device
);
785 video_device_release(port
->v4l_device
);
787 port
->v4l_device
= NULL
;