1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Driver for the NXP SAA7164 PCIe bridge
5 * Copyright (c) 2010-2015 Steven Toth <stoth@kernellabs.com>
10 /* Take the encoder configuration from the port struct and
11 * flush it to the hardware.
13 static void saa7164_vbi_configure(struct saa7164_port
*port
)
15 struct saa7164_dev
*dev
= port
->dev
;
16 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
18 port
->vbi_params
.width
= port
->enc_port
->width
;
19 port
->vbi_params
.height
= port
->enc_port
->height
;
20 port
->vbi_params
.is_50hz
=
21 (port
->enc_port
->encodernorm
.id
& V4L2_STD_625_50
) != 0;
23 /* Set up the DIF (enable it) for analog mode by default */
24 saa7164_api_initialize_dif(port
);
25 dprintk(DBGLVL_VBI
, "%s() ends\n", __func__
);
28 static int saa7164_vbi_buffers_dealloc(struct saa7164_port
*port
)
30 struct list_head
*c
, *n
, *p
, *q
, *l
, *v
;
31 struct saa7164_dev
*dev
= port
->dev
;
32 struct saa7164_buffer
*buf
;
33 struct saa7164_user_buffer
*ubuf
;
35 /* Remove any allocated buffers */
36 mutex_lock(&port
->dmaqueue_lock
);
38 dprintk(DBGLVL_VBI
, "%s(port=%d) dmaqueue\n", __func__
, port
->nr
);
39 list_for_each_safe(c
, n
, &port
->dmaqueue
.list
) {
40 buf
= list_entry(c
, struct saa7164_buffer
, list
);
42 saa7164_buffer_dealloc(buf
);
45 dprintk(DBGLVL_VBI
, "%s(port=%d) used\n", __func__
, port
->nr
);
46 list_for_each_safe(p
, q
, &port
->list_buf_used
.list
) {
47 ubuf
= list_entry(p
, struct saa7164_user_buffer
, list
);
49 saa7164_buffer_dealloc_user(ubuf
);
52 dprintk(DBGLVL_VBI
, "%s(port=%d) free\n", __func__
, port
->nr
);
53 list_for_each_safe(l
, v
, &port
->list_buf_free
.list
) {
54 ubuf
= list_entry(l
, struct saa7164_user_buffer
, list
);
56 saa7164_buffer_dealloc_user(ubuf
);
59 mutex_unlock(&port
->dmaqueue_lock
);
60 dprintk(DBGLVL_VBI
, "%s(port=%d) done\n", __func__
, port
->nr
);
65 /* Dynamic buffer switch at vbi start time */
66 static int saa7164_vbi_buffers_alloc(struct saa7164_port
*port
)
68 struct saa7164_dev
*dev
= port
->dev
;
69 struct saa7164_buffer
*buf
;
70 struct saa7164_user_buffer
*ubuf
;
71 struct tmHWStreamParameters
*params
= &port
->hw_streamingparams
;
72 int result
= -ENODEV
, i
;
75 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
77 /* TODO: NTSC SPECIFIC */
78 /* Init and establish defaults */
79 params
->samplesperline
= 1440;
80 params
->numberoflines
= 12;
81 params
->numberoflines
= 18;
84 params
->numpagetables
= 2 +
85 ((params
->numberoflines
* params
->pitch
) / PAGE_SIZE
);
86 params
->bitspersample
= 8;
87 params
->linethreshold
= 0;
88 params
->pagetablelistvirt
= NULL
;
89 params
->pagetablelistphys
= NULL
;
90 params
->numpagetableentries
= port
->hwcfg
.buffercount
;
92 /* Allocate the PCI resources, buffers (hard) */
93 for (i
= 0; i
< port
->hwcfg
.buffercount
; i
++) {
94 buf
= saa7164_buffer_alloc(port
,
95 params
->numberoflines
*
99 printk(KERN_ERR
"%s() failed (errno = %d), unable to allocate buffer\n",
105 mutex_lock(&port
->dmaqueue_lock
);
106 list_add_tail(&buf
->list
, &port
->dmaqueue
.list
);
107 mutex_unlock(&port
->dmaqueue_lock
);
112 /* Allocate some kernel buffers for copying
115 len
= params
->numberoflines
* params
->pitch
;
117 if (vbi_buffers
< 16)
119 if (vbi_buffers
> 512)
122 for (i
= 0; i
< vbi_buffers
; i
++) {
124 ubuf
= saa7164_buffer_alloc_user(dev
, len
);
126 mutex_lock(&port
->dmaqueue_lock
);
127 list_add_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
128 mutex_unlock(&port
->dmaqueue_lock
);
140 static int saa7164_vbi_initialize(struct saa7164_port
*port
)
142 saa7164_vbi_configure(port
);
146 /* -- V4L2 --------------------------------------------------------- */
147 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id id
)
149 struct saa7164_vbi_fh
*fh
= file
->private_data
;
151 return saa7164_s_std(fh
->port
->enc_port
, id
);
154 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*id
)
156 struct saa7164_encoder_fh
*fh
= file
->private_data
;
158 return saa7164_g_std(fh
->port
->enc_port
, id
);
161 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
163 struct saa7164_vbi_fh
*fh
= file
->private_data
;
165 return saa7164_g_input(fh
->port
->enc_port
, i
);
168 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
170 struct saa7164_vbi_fh
*fh
= file
->private_data
;
172 return saa7164_s_input(fh
->port
->enc_port
, i
);
175 static int vidioc_g_frequency(struct file
*file
, void *priv
,
176 struct v4l2_frequency
*f
)
178 struct saa7164_vbi_fh
*fh
= file
->private_data
;
180 return saa7164_g_frequency(fh
->port
->enc_port
, f
);
183 static int vidioc_s_frequency(struct file
*file
, void *priv
,
184 const struct v4l2_frequency
*f
)
186 struct saa7164_vbi_fh
*fh
= file
->private_data
;
187 int ret
= saa7164_s_frequency(fh
->port
->enc_port
, f
);
190 saa7164_vbi_initialize(fh
->port
);
194 static int vidioc_querycap(struct file
*file
, void *priv
,
195 struct v4l2_capability
*cap
)
197 struct saa7164_vbi_fh
*fh
= file
->private_data
;
198 struct saa7164_port
*port
= fh
->port
;
199 struct saa7164_dev
*dev
= port
->dev
;
201 strscpy(cap
->driver
, dev
->name
, sizeof(cap
->driver
));
202 strscpy(cap
->card
, saa7164_boards
[dev
->board
].name
,
204 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_READWRITE
|
205 V4L2_CAP_TUNER
| V4L2_CAP_VBI_CAPTURE
|
206 V4L2_CAP_DEVICE_CAPS
;
210 static int saa7164_vbi_stop_port(struct saa7164_port
*port
)
212 struct saa7164_dev
*dev
= port
->dev
;
215 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_STOP
);
216 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
217 printk(KERN_ERR
"%s() stop transition failed, ret = 0x%x\n",
221 dprintk(DBGLVL_VBI
, "%s() Stopped\n", __func__
);
228 static int saa7164_vbi_acquire_port(struct saa7164_port
*port
)
230 struct saa7164_dev
*dev
= port
->dev
;
233 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_ACQUIRE
);
234 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
235 printk(KERN_ERR
"%s() acquire transition failed, ret = 0x%x\n",
239 dprintk(DBGLVL_VBI
, "%s() Acquired\n", __func__
);
246 static int saa7164_vbi_pause_port(struct saa7164_port
*port
)
248 struct saa7164_dev
*dev
= port
->dev
;
251 ret
= saa7164_api_transition_port(port
, SAA_DMASTATE_PAUSE
);
252 if ((ret
!= SAA_OK
) && (ret
!= SAA_ERR_ALREADY_STOPPED
)) {
253 printk(KERN_ERR
"%s() pause transition failed, ret = 0x%x\n",
257 dprintk(DBGLVL_VBI
, "%s() Paused\n", __func__
);
264 /* Firmware is very windows centric, meaning you have to transition
265 * the part through AVStream / KS Windows stages, forwards or backwards.
266 * States are: stopped, acquired (h/w), paused, started.
267 * We have to leave here will all of the soft buffers on the free list,
268 * else the cfg_post() func won't have soft buffers to correctly configure.
270 static int saa7164_vbi_stop_streaming(struct saa7164_port
*port
)
272 struct saa7164_dev
*dev
= port
->dev
;
273 struct saa7164_buffer
*buf
;
274 struct saa7164_user_buffer
*ubuf
;
275 struct list_head
*c
, *n
;
278 dprintk(DBGLVL_VBI
, "%s(port=%d)\n", __func__
, port
->nr
);
280 ret
= saa7164_vbi_pause_port(port
);
281 ret
= saa7164_vbi_acquire_port(port
);
282 ret
= saa7164_vbi_stop_port(port
);
284 dprintk(DBGLVL_VBI
, "%s(port=%d) Hardware stopped\n", __func__
,
287 /* Reset the state of any allocated buffer resources */
288 mutex_lock(&port
->dmaqueue_lock
);
290 /* Reset the hard and soft buffer state */
291 list_for_each_safe(c
, n
, &port
->dmaqueue
.list
) {
292 buf
= list_entry(c
, struct saa7164_buffer
, list
);
293 buf
->flags
= SAA7164_BUFFER_FREE
;
297 list_for_each_safe(c
, n
, &port
->list_buf_used
.list
) {
298 ubuf
= list_entry(c
, struct saa7164_user_buffer
, list
);
300 list_move_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
303 mutex_unlock(&port
->dmaqueue_lock
);
305 /* Free any allocated resources */
306 saa7164_vbi_buffers_dealloc(port
);
308 dprintk(DBGLVL_VBI
, "%s(port=%d) Released\n", __func__
, port
->nr
);
313 static int saa7164_vbi_start_streaming(struct saa7164_port
*port
)
315 struct saa7164_dev
*dev
= port
->dev
;
318 dprintk(DBGLVL_VBI
, "%s(port=%d)\n", __func__
, port
->nr
);
320 port
->done_first_interrupt
= 0;
322 /* allocate all of the PCIe DMA buffer resources on the fly,
323 * allowing switching between TS and PS payloads without
324 * requiring a complete driver reload.
326 saa7164_vbi_buffers_alloc(port
);
328 /* Configure the encoder with any cache values */
330 saa7164_api_set_encoder(port
);
331 saa7164_api_get_encoder(port
);
334 /* Place the empty buffers on the hardware */
335 saa7164_buffer_cfg_port(port
);
337 /* Negotiate format */
338 if (saa7164_api_set_vbi_format(port
) != SAA_OK
) {
339 printk(KERN_ERR
"%s() No supported VBI format\n", __func__
);
344 /* Acquire the hardware */
345 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_ACQUIRE
);
346 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
347 printk(KERN_ERR
"%s() acquire transition failed, res = 0x%x\n",
353 dprintk(DBGLVL_VBI
, "%s() Acquired\n", __func__
);
355 /* Pause the hardware */
356 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_PAUSE
);
357 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
358 printk(KERN_ERR
"%s() pause transition failed, res = 0x%x\n",
361 /* Stop the hardware, regardless */
362 result
= saa7164_vbi_stop_port(port
);
363 if (result
!= SAA_OK
) {
364 printk(KERN_ERR
"%s() pause/forced stop transition failed, res = 0x%x\n",
371 dprintk(DBGLVL_VBI
, "%s() Paused\n", __func__
);
373 /* Start the hardware */
374 result
= saa7164_api_transition_port(port
, SAA_DMASTATE_RUN
);
375 if ((result
!= SAA_OK
) && (result
!= SAA_ERR_ALREADY_STOPPED
)) {
376 printk(KERN_ERR
"%s() run transition failed, result = 0x%x\n",
379 /* Stop the hardware, regardless */
380 result
= saa7164_vbi_acquire_port(port
);
381 result
= saa7164_vbi_stop_port(port
);
382 if (result
!= SAA_OK
) {
383 printk(KERN_ERR
"%s() run/forced stop transition failed, res = 0x%x\n",
389 dprintk(DBGLVL_VBI
, "%s() Running\n", __func__
);
395 static int saa7164_vbi_fmt(struct file
*file
, void *priv
,
396 struct v4l2_format
*f
)
399 f
->fmt
.vbi
.samples_per_line
= 1440;
400 f
->fmt
.vbi
.sampling_rate
= 27000000;
401 f
->fmt
.vbi
.sample_format
= V4L2_PIX_FMT_GREY
;
402 f
->fmt
.vbi
.offset
= 0;
403 f
->fmt
.vbi
.flags
= 0;
404 f
->fmt
.vbi
.start
[0] = 10;
405 f
->fmt
.vbi
.count
[0] = 18;
406 f
->fmt
.vbi
.start
[1] = 263 + 10 + 1;
407 f
->fmt
.vbi
.count
[1] = 18;
408 memset(f
->fmt
.vbi
.reserved
, 0, sizeof(f
->fmt
.vbi
.reserved
));
412 static int fops_open(struct file
*file
)
414 struct saa7164_dev
*dev
;
415 struct saa7164_port
*port
;
416 struct saa7164_vbi_fh
*fh
;
418 port
= (struct saa7164_port
*)video_get_drvdata(video_devdata(file
));
424 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
426 /* allocate + initialize per filehandle data */
427 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
432 v4l2_fh_init(&fh
->fh
, video_devdata(file
));
433 v4l2_fh_add(&fh
->fh
);
434 file
->private_data
= fh
;
439 static int fops_release(struct file
*file
)
441 struct saa7164_vbi_fh
*fh
= file
->private_data
;
442 struct saa7164_port
*port
= fh
->port
;
443 struct saa7164_dev
*dev
= port
->dev
;
445 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
447 /* Shut device down on last close */
448 if (atomic_cmpxchg(&fh
->v4l_reading
, 1, 0) == 1) {
449 if (atomic_dec_return(&port
->v4l_reader_count
) == 0) {
450 /* stop vbi capture then cancel buffers */
451 saa7164_vbi_stop_streaming(port
);
455 v4l2_fh_del(&fh
->fh
);
456 v4l2_fh_exit(&fh
->fh
);
463 saa7164_user_buffer
*saa7164_vbi_next_buf(struct saa7164_port
*port
)
465 struct saa7164_user_buffer
*ubuf
= NULL
;
466 struct saa7164_dev
*dev
= port
->dev
;
469 mutex_lock(&port
->dmaqueue_lock
);
470 if (!list_empty(&port
->list_buf_used
.list
)) {
471 ubuf
= list_first_entry(&port
->list_buf_used
.list
,
472 struct saa7164_user_buffer
, list
);
475 crc
= crc32(0, ubuf
->data
, ubuf
->actual_size
);
476 if (crc
!= ubuf
->crc
) {
477 printk(KERN_ERR
"%s() ubuf %p crc became invalid, was 0x%x became 0x%x\n",
479 ubuf
, ubuf
->crc
, crc
);
484 mutex_unlock(&port
->dmaqueue_lock
);
486 dprintk(DBGLVL_VBI
, "%s() returns %p\n", __func__
, ubuf
);
491 static ssize_t
fops_read(struct file
*file
, char __user
*buffer
,
492 size_t count
, loff_t
*pos
)
494 struct saa7164_vbi_fh
*fh
= file
->private_data
;
495 struct saa7164_port
*port
= fh
->port
;
496 struct saa7164_user_buffer
*ubuf
= NULL
;
497 struct saa7164_dev
*dev
= port
->dev
;
502 port
->last_read_msecs_diff
= port
->last_read_msecs
;
503 port
->last_read_msecs
= jiffies_to_msecs(jiffies
);
504 port
->last_read_msecs_diff
= port
->last_read_msecs
-
505 port
->last_read_msecs_diff
;
507 saa7164_histogram_update(&port
->read_interval
,
508 port
->last_read_msecs_diff
);
511 printk(KERN_ERR
"%s() ESPIPE\n", __func__
);
515 if (atomic_cmpxchg(&fh
->v4l_reading
, 0, 1) == 0) {
516 if (atomic_inc_return(&port
->v4l_reader_count
) == 1) {
518 if (saa7164_vbi_initialize(port
) < 0) {
519 printk(KERN_ERR
"%s() EINVAL\n", __func__
);
523 saa7164_vbi_start_streaming(port
);
528 /* blocking wait for buffer */
529 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
530 if (wait_event_interruptible(port
->wait_read
,
531 saa7164_vbi_next_buf(port
))) {
532 printk(KERN_ERR
"%s() ERESTARTSYS\n", __func__
);
537 /* Pull the first buffer from the used list */
538 ubuf
= saa7164_vbi_next_buf(port
);
540 while ((count
> 0) && ubuf
) {
542 /* set remaining bytes to copy */
543 rem
= ubuf
->actual_size
- ubuf
->pos
;
544 cnt
= rem
> count
? count
: rem
;
546 p
= ubuf
->data
+ ubuf
->pos
;
549 "%s() count=%d cnt=%d rem=%d buf=%p buf->pos=%d\n",
550 __func__
, (int)count
, cnt
, rem
, ubuf
, ubuf
->pos
);
552 if (copy_to_user(buffer
, p
, cnt
)) {
553 printk(KERN_ERR
"%s() copy_to_user failed\n", __func__
);
555 printk(KERN_ERR
"%s() EFAULT\n", __func__
);
566 if (ubuf
->pos
> ubuf
->actual_size
)
567 printk(KERN_ERR
"read() pos > actual, huh?\n");
569 if (ubuf
->pos
== ubuf
->actual_size
) {
571 /* finished with current buffer, take next buffer */
573 /* Requeue the buffer on the free list */
576 mutex_lock(&port
->dmaqueue_lock
);
577 list_move_tail(&ubuf
->list
, &port
->list_buf_free
.list
);
578 mutex_unlock(&port
->dmaqueue_lock
);
581 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
582 if (wait_event_interruptible(port
->wait_read
,
583 saa7164_vbi_next_buf(port
))) {
587 ubuf
= saa7164_vbi_next_buf(port
);
592 printk(KERN_ERR
"%s() EAGAIN\n", __func__
);
599 static __poll_t
fops_poll(struct file
*file
, poll_table
*wait
)
601 struct saa7164_vbi_fh
*fh
= (struct saa7164_vbi_fh
*)file
->private_data
;
602 struct saa7164_port
*port
= fh
->port
;
605 port
->last_poll_msecs_diff
= port
->last_poll_msecs
;
606 port
->last_poll_msecs
= jiffies_to_msecs(jiffies
);
607 port
->last_poll_msecs_diff
= port
->last_poll_msecs
-
608 port
->last_poll_msecs_diff
;
610 saa7164_histogram_update(&port
->poll_interval
,
611 port
->last_poll_msecs_diff
);
613 if (!video_is_registered(port
->v4l_device
))
616 if (atomic_cmpxchg(&fh
->v4l_reading
, 0, 1) == 0) {
617 if (atomic_inc_return(&port
->v4l_reader_count
) == 1) {
618 if (saa7164_vbi_initialize(port
) < 0)
620 saa7164_vbi_start_streaming(port
);
625 /* blocking wait for buffer */
626 if ((file
->f_flags
& O_NONBLOCK
) == 0) {
627 if (wait_event_interruptible(port
->wait_read
,
628 saa7164_vbi_next_buf(port
))) {
633 /* Pull the first buffer from the used list */
634 if (!list_empty(&port
->list_buf_used
.list
))
635 mask
|= EPOLLIN
| EPOLLRDNORM
;
639 static const struct v4l2_file_operations vbi_fops
= {
640 .owner
= THIS_MODULE
,
642 .release
= fops_release
,
645 .unlocked_ioctl
= video_ioctl2
,
648 static const struct v4l2_ioctl_ops vbi_ioctl_ops
= {
649 .vidioc_s_std
= vidioc_s_std
,
650 .vidioc_g_std
= vidioc_g_std
,
651 .vidioc_enum_input
= saa7164_enum_input
,
652 .vidioc_g_input
= vidioc_g_input
,
653 .vidioc_s_input
= vidioc_s_input
,
654 .vidioc_g_tuner
= saa7164_g_tuner
,
655 .vidioc_s_tuner
= saa7164_s_tuner
,
656 .vidioc_g_frequency
= vidioc_g_frequency
,
657 .vidioc_s_frequency
= vidioc_s_frequency
,
658 .vidioc_querycap
= vidioc_querycap
,
659 .vidioc_g_fmt_vbi_cap
= saa7164_vbi_fmt
,
660 .vidioc_try_fmt_vbi_cap
= saa7164_vbi_fmt
,
661 .vidioc_s_fmt_vbi_cap
= saa7164_vbi_fmt
,
664 static struct video_device saa7164_vbi_template
= {
667 .ioctl_ops
= &vbi_ioctl_ops
,
669 .tvnorms
= SAA7164_NORMS
,
670 .device_caps
= V4L2_CAP_VBI_CAPTURE
| V4L2_CAP_READWRITE
|
674 static struct video_device
*saa7164_vbi_alloc(
675 struct saa7164_port
*port
,
677 struct video_device
*template,
680 struct video_device
*vfd
;
681 struct saa7164_dev
*dev
= port
->dev
;
683 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
685 vfd
= video_device_alloc();
690 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s (%s)", dev
->name
,
691 type
, saa7164_boards
[dev
->board
].name
);
693 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
694 vfd
->release
= video_device_release
;
698 int saa7164_vbi_register(struct saa7164_port
*port
)
700 struct saa7164_dev
*dev
= port
->dev
;
701 int result
= -ENODEV
;
703 dprintk(DBGLVL_VBI
, "%s()\n", __func__
);
705 BUG_ON(port
->type
!= SAA7164_MPEG_VBI
);
707 /* Sanity check that the PCI configuration space is active */
708 if (port
->hwcfg
.BARLocation
== 0) {
709 printk(KERN_ERR
"%s() failed (errno = %d), NO PCI configuration\n",
715 /* Establish VBI defaults here */
717 /* Allocate and register the video device node */
718 port
->v4l_device
= saa7164_vbi_alloc(port
,
719 dev
->pci
, &saa7164_vbi_template
, "vbi");
721 if (!port
->v4l_device
) {
722 printk(KERN_INFO
"%s: can't allocate vbi device\n",
728 port
->enc_port
= &dev
->ports
[port
->nr
- 2];
729 video_set_drvdata(port
->v4l_device
, port
);
730 result
= video_register_device(port
->v4l_device
,
733 printk(KERN_INFO
"%s: can't register vbi device\n",
735 /* TODO: We're going to leak here if we don't dealloc
736 The buffers above. The unreg function can't deal wit it.
741 printk(KERN_INFO
"%s: registered device vbi%d [vbi]\n",
742 dev
->name
, port
->v4l_device
->num
);
744 /* Configure the hardware defaults */
751 void saa7164_vbi_unregister(struct saa7164_port
*port
)
753 struct saa7164_dev
*dev
= port
->dev
;
755 dprintk(DBGLVL_VBI
, "%s(port=%d)\n", __func__
, port
->nr
);
757 BUG_ON(port
->type
!= SAA7164_MPEG_VBI
);
759 if (port
->v4l_device
) {
760 if (port
->v4l_device
->minor
!= -1)
761 video_unregister_device(port
->v4l_device
);
763 video_device_release(port
->v4l_device
);
765 port
->v4l_device
= NULL
;