2 * Copyright (C) 2010 Bluecherry, LLC www.bluecherrydvr.com
3 * Copyright (C) 2010 Ben Collins <bcollins@bluecherry.net>
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/kthread.h>
23 #include <linux/freezer.h>
24 #include <media/v4l2-ioctl.h>
25 #include <media/v4l2-common.h>
26 #include <media/videobuf-dma-sg.h>
30 #define SOLO_HW_BPL 2048
31 #define SOLO_DISP_PIX_FIELD V4L2_FIELD_INTERLACED
33 /* Image size is two fields, SOLO_HW_BPL is one horizontal line */
34 #define solo_vlines(__solo) (__solo->video_vsize * 2)
35 #define solo_image_size(__solo) (solo_bytesperline(__solo) * \
37 #define solo_bytesperline(__solo) (__solo->video_hsize * 2)
39 #define MIN_VID_BUFFERS 4
41 /* Simple file handle */
42 struct solo_filehandle
{
43 struct solo_dev
*solo_dev
;
44 struct videobuf_queue vidq
;
45 struct task_struct
*kthread
;
48 struct list_head vidq_active
;
49 struct p2m_desc desc
[SOLO_NR_P2M_DESC
];
53 unsigned video_nr
= -1;
54 module_param(video_nr
, uint
, 0644);
55 MODULE_PARM_DESC(video_nr
, "videoX start number, -1 is autodetect (default)");
57 static void erase_on(struct solo_dev
*solo_dev
)
59 solo_reg_write(solo_dev
, SOLO_VO_DISP_ERASE
, SOLO_VO_DISP_ERASE_ON
);
60 solo_dev
->erasing
= 1;
61 solo_dev
->frame_blank
= 0;
64 static int erase_off(struct solo_dev
*solo_dev
)
66 if (!solo_dev
->erasing
)
69 /* First time around, assert erase off */
70 if (!solo_dev
->frame_blank
)
71 solo_reg_write(solo_dev
, SOLO_VO_DISP_ERASE
, 0);
72 /* Keep the erasing flag on for 8 frames minimum */
73 if (solo_dev
->frame_blank
++ >= 8)
74 solo_dev
->erasing
= 0;
79 void solo_video_in_isr(struct solo_dev
*solo_dev
)
81 solo_reg_write(solo_dev
, SOLO_IRQ_STAT
, SOLO_IRQ_VIDEO_IN
);
82 wake_up_interruptible(&solo_dev
->disp_thread_wait
);
85 static void solo_win_setup(struct solo_dev
*solo_dev
, u8 ch
,
86 int sx
, int sy
, int ex
, int ey
, int scale
)
88 if (ch
>= solo_dev
->nr_chans
)
91 /* Here, we just keep window/channel the same */
92 solo_reg_write(solo_dev
, SOLO_VI_WIN_CTRL0(ch
),
93 SOLO_VI_WIN_CHANNEL(ch
) |
96 SOLO_VI_WIN_SCALE(scale
));
98 solo_reg_write(solo_dev
, SOLO_VI_WIN_CTRL1(ch
),
103 static int solo_v4l2_ch_ext_4up(struct solo_dev
*solo_dev
, u8 idx
, int on
)
107 if (ch
>= solo_dev
->nr_chans
)
112 for (i
= ch
; i
< ch
+ 4; i
++)
113 solo_win_setup(solo_dev
, i
, solo_dev
->video_hsize
,
114 solo_vlines(solo_dev
),
115 solo_dev
->video_hsize
,
116 solo_vlines(solo_dev
), 0);
121 solo_win_setup(solo_dev
, ch
, 0, 0, solo_dev
->video_hsize
/ 2,
122 solo_vlines(solo_dev
) / 2, 3);
123 solo_win_setup(solo_dev
, ch
+ 1, solo_dev
->video_hsize
/ 2, 0,
124 solo_dev
->video_hsize
, solo_vlines(solo_dev
) / 2, 3);
126 solo_win_setup(solo_dev
, ch
+ 2, 0, solo_vlines(solo_dev
) / 2,
127 solo_dev
->video_hsize
/ 2, solo_vlines(solo_dev
), 3);
128 solo_win_setup(solo_dev
, ch
+ 3, solo_dev
->video_hsize
/ 2,
129 solo_vlines(solo_dev
) / 2, solo_dev
->video_hsize
,
130 solo_vlines(solo_dev
), 3);
135 static int solo_v4l2_ch_ext_16up(struct solo_dev
*solo_dev
, int on
)
137 int sy
, ysize
, hsize
, i
;
140 for (i
= 0; i
< 16; i
++)
141 solo_win_setup(solo_dev
, i
, solo_dev
->video_hsize
,
142 solo_vlines(solo_dev
),
143 solo_dev
->video_hsize
,
144 solo_vlines(solo_dev
), 0);
148 ysize
= solo_vlines(solo_dev
) / 4;
149 hsize
= solo_dev
->video_hsize
/ 4;
151 for (sy
= 0, i
= 0; i
< 4; i
++, sy
+= ysize
) {
152 solo_win_setup(solo_dev
, i
* 4, 0, sy
, hsize
,
154 solo_win_setup(solo_dev
, (i
* 4) + 1, hsize
, sy
,
155 hsize
* 2, sy
+ ysize
, 5);
156 solo_win_setup(solo_dev
, (i
* 4) + 2, hsize
* 2, sy
,
157 hsize
* 3, sy
+ ysize
, 5);
158 solo_win_setup(solo_dev
, (i
* 4) + 3, hsize
* 3, sy
,
159 solo_dev
->video_hsize
, sy
+ ysize
, 5);
165 static int solo_v4l2_ch(struct solo_dev
*solo_dev
, u8 ch
, int on
)
169 if (ch
< solo_dev
->nr_chans
) {
170 solo_win_setup(solo_dev
, ch
, on
? 0 : solo_dev
->video_hsize
,
171 on
? 0 : solo_vlines(solo_dev
),
172 solo_dev
->video_hsize
, solo_vlines(solo_dev
),
177 if (ch
>= solo_dev
->nr_chans
+ solo_dev
->nr_ext
)
180 ext_ch
= ch
- solo_dev
->nr_chans
;
184 return solo_v4l2_ch_ext_4up(solo_dev
, ext_ch
, on
);
186 /* Remaining case is 16up for 16-port */
187 return solo_v4l2_ch_ext_16up(solo_dev
, on
);
190 static int solo_v4l2_set_ch(struct solo_dev
*solo_dev
, u8 ch
)
192 if (ch
>= solo_dev
->nr_chans
+ solo_dev
->nr_ext
)
197 solo_v4l2_ch(solo_dev
, solo_dev
->cur_disp_ch
, 0);
198 solo_v4l2_ch(solo_dev
, ch
, 1);
200 solo_dev
->cur_disp_ch
= ch
;
205 static void disp_reset_desc(struct solo_filehandle
*fh
)
207 /* We use desc mode, which ignores desc 0 */
208 memset(fh
->desc
, 0, sizeof(*fh
->desc
));
212 static int disp_flush_descs(struct solo_filehandle
*fh
)
219 ret
= solo_p2m_dma_desc(fh
->solo_dev
, SOLO_P2M_DMA_ID_DISP
,
220 fh
->desc
, fh
->desc_idx
);
226 static int disp_push_desc(struct solo_filehandle
*fh
, dma_addr_t dma_addr
,
227 u32 ext_addr
, int size
, int repeat
, int ext_size
)
229 if (fh
->desc_idx
>= SOLO_NR_P2M_DESC
) {
230 int ret
= disp_flush_descs(fh
);
235 solo_p2m_push_desc(&fh
->desc
[fh
->desc_idx
], 0, dma_addr
, ext_addr
,
236 size
, repeat
, ext_size
);
242 static void solo_fillbuf(struct solo_filehandle
*fh
,
243 struct videobuf_buffer
*vb
)
245 struct solo_dev
*solo_dev
= fh
->solo_dev
;
246 struct videobuf_dmabuf
*vbuf
;
247 unsigned int fdma_addr
;
250 struct scatterlist
*sg
;
254 vbuf
= videobuf_to_dma(vb
);
258 if (erase_off(solo_dev
)) {
261 /* Just blit to the entire sg list, ignoring size */
262 for_each_sg(vbuf
->sglist
, sg
, vbuf
->sglen
, i
) {
263 void *p
= sg_virt(sg
);
264 size_t len
= sg_dma_len(sg
);
266 for (i
= 0; i
< len
; i
+= 2) {
268 ((u8
*)p
)[i
+ 1] = 0x00;
278 sg_dma
= sg_dma_address(sg
);
279 sg_size_left
= sg_dma_len(sg
);
281 fdma_addr
= SOLO_DISP_EXT_ADDR
+ (fh
->old_write
*
282 (SOLO_HW_BPL
* solo_vlines(solo_dev
)));
284 for (i
= 0; i
< solo_vlines(solo_dev
); i
++) {
285 int line_len
= solo_bytesperline(solo_dev
);
292 sg_dma
= sg_dma_address(sg
);
293 sg_size_left
= sg_dma_len(sg
);
296 /* No room for an entire line, so chunk it up */
297 if (sg_size_left
< line_len
) {
298 int this_addr
= fdma_addr
;
300 while (line_len
> 0) {
307 sg_dma
= sg_dma_address(sg
);
308 sg_size_left
= sg_dma_len(sg
);
311 this_write
= min(sg_size_left
, line_len
);
313 if (disp_push_desc(fh
, sg_dma
, this_addr
,
317 line_len
-= this_write
;
318 sg_size_left
-= this_write
;
319 sg_dma
+= this_write
;
320 this_addr
+= this_write
;
323 fdma_addr
+= SOLO_HW_BPL
;
327 /* Shove as many lines into a repeating descriptor as possible */
328 lines
= min(sg_size_left
/ line_len
,
329 solo_vlines(solo_dev
) - i
);
331 if (disp_push_desc(fh
, sg_dma
, fdma_addr
, line_len
,
332 lines
- 1, SOLO_HW_BPL
))
336 fdma_addr
+= SOLO_HW_BPL
* lines
;
337 sg_dma
+= lines
* line_len
;
338 sg_size_left
-= lines
* line_len
;
341 error
= disp_flush_descs(fh
);
345 vb
->state
= VIDEOBUF_ERROR
;
347 vb
->size
= solo_vlines(solo_dev
) * solo_bytesperline(solo_dev
);
348 vb
->state
= VIDEOBUF_DONE
;
350 do_gettimeofday(&vb
->ts
);
358 static void solo_thread_try(struct solo_filehandle
*fh
)
360 struct videobuf_buffer
*vb
;
361 unsigned int cur_write
;
364 spin_lock(&fh
->slock
);
366 if (list_empty(&fh
->vidq_active
))
369 vb
= list_first_entry(&fh
->vidq_active
, struct videobuf_buffer
,
372 if (!waitqueue_active(&vb
->done
))
375 cur_write
= SOLO_VI_STATUS0_PAGE(solo_reg_read(fh
->solo_dev
,
377 if (cur_write
== fh
->old_write
)
380 fh
->old_write
= cur_write
;
381 list_del(&vb
->queue
);
383 spin_unlock(&fh
->slock
);
385 solo_fillbuf(fh
, vb
);
388 assert_spin_locked(&fh
->slock
);
389 spin_unlock(&fh
->slock
);
392 static int solo_thread(void *data
)
394 struct solo_filehandle
*fh
= data
;
395 struct solo_dev
*solo_dev
= fh
->solo_dev
;
396 DECLARE_WAITQUEUE(wait
, current
);
399 add_wait_queue(&solo_dev
->disp_thread_wait
, &wait
);
402 long timeout
= schedule_timeout_interruptible(HZ
);
403 if (timeout
== -ERESTARTSYS
|| kthread_should_stop())
409 remove_wait_queue(&solo_dev
->disp_thread_wait
, &wait
);
414 static int solo_start_thread(struct solo_filehandle
*fh
)
416 fh
->kthread
= kthread_run(solo_thread
, fh
, SOLO6X10_NAME
"_disp");
418 if (IS_ERR(fh
->kthread
))
419 return PTR_ERR(fh
->kthread
);
424 static void solo_stop_thread(struct solo_filehandle
*fh
)
427 kthread_stop(fh
->kthread
);
432 static int solo_buf_setup(struct videobuf_queue
*vq
, unsigned int *count
,
435 struct solo_filehandle
*fh
= vq
->priv_data
;
436 struct solo_dev
*solo_dev
= fh
->solo_dev
;
438 *size
= solo_image_size(solo_dev
);
440 if (*count
< MIN_VID_BUFFERS
)
441 *count
= MIN_VID_BUFFERS
;
446 static int solo_buf_prepare(struct videobuf_queue
*vq
,
447 struct videobuf_buffer
*vb
, enum v4l2_field field
)
449 struct solo_filehandle
*fh
= vq
->priv_data
;
450 struct solo_dev
*solo_dev
= fh
->solo_dev
;
452 vb
->size
= solo_image_size(solo_dev
);
453 if (vb
->baddr
!= 0 && vb
->bsize
< vb
->size
)
456 /* XXX: These properties only change when queue is idle */
457 vb
->width
= solo_dev
->video_hsize
;
458 vb
->height
= solo_vlines(solo_dev
);
459 vb
->bytesperline
= solo_bytesperline(solo_dev
);
462 if (vb
->state
== VIDEOBUF_NEEDS_INIT
) {
463 int rc
= videobuf_iolock(vq
, vb
, NULL
);
465 struct videobuf_dmabuf
*dma
= videobuf_to_dma(vb
);
466 videobuf_dma_unmap(vq
->dev
, dma
);
467 videobuf_dma_free(dma
);
468 vb
->state
= VIDEOBUF_NEEDS_INIT
;
472 vb
->state
= VIDEOBUF_PREPARED
;
477 static void solo_buf_queue(struct videobuf_queue
*vq
,
478 struct videobuf_buffer
*vb
)
480 struct solo_filehandle
*fh
= vq
->priv_data
;
481 struct solo_dev
*solo_dev
= fh
->solo_dev
;
483 vb
->state
= VIDEOBUF_QUEUED
;
484 list_add_tail(&vb
->queue
, &fh
->vidq_active
);
485 wake_up_interruptible(&solo_dev
->disp_thread_wait
);
488 static void solo_buf_release(struct videobuf_queue
*vq
,
489 struct videobuf_buffer
*vb
)
491 struct videobuf_dmabuf
*dma
= videobuf_to_dma(vb
);
493 videobuf_dma_unmap(vq
->dev
, dma
);
494 videobuf_dma_free(dma
);
495 vb
->state
= VIDEOBUF_NEEDS_INIT
;
498 static struct videobuf_queue_ops solo_video_qops
= {
499 .buf_setup
= solo_buf_setup
,
500 .buf_prepare
= solo_buf_prepare
,
501 .buf_queue
= solo_buf_queue
,
502 .buf_release
= solo_buf_release
,
505 static unsigned int solo_v4l2_poll(struct file
*file
,
506 struct poll_table_struct
*wait
)
508 struct solo_filehandle
*fh
= file
->private_data
;
510 return videobuf_poll_stream(file
, &fh
->vidq
, wait
);
513 static int solo_v4l2_mmap(struct file
*file
, struct vm_area_struct
*vma
)
515 struct solo_filehandle
*fh
= file
->private_data
;
517 return videobuf_mmap_mapper(&fh
->vidq
, vma
);
520 static int solo_v4l2_open(struct file
*file
)
522 struct solo_dev
*solo_dev
= video_drvdata(file
);
523 struct solo_filehandle
*fh
;
526 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
530 spin_lock_init(&fh
->slock
);
531 INIT_LIST_HEAD(&fh
->vidq_active
);
532 fh
->solo_dev
= solo_dev
;
533 file
->private_data
= fh
;
535 ret
= solo_start_thread(fh
);
541 videobuf_queue_sg_init(&fh
->vidq
, &solo_video_qops
,
542 &solo_dev
->pdev
->dev
, &fh
->slock
,
543 V4L2_BUF_TYPE_VIDEO_CAPTURE
,
545 sizeof(struct videobuf_buffer
), fh
, NULL
);
550 static ssize_t
solo_v4l2_read(struct file
*file
, char __user
*data
,
551 size_t count
, loff_t
*ppos
)
553 struct solo_filehandle
*fh
= file
->private_data
;
555 return videobuf_read_stream(&fh
->vidq
, data
, count
, ppos
, 0,
556 file
->f_flags
& O_NONBLOCK
);
559 static int solo_v4l2_release(struct file
*file
)
561 struct solo_filehandle
*fh
= file
->private_data
;
563 videobuf_stop(&fh
->vidq
);
564 videobuf_mmap_free(&fh
->vidq
);
565 solo_stop_thread(fh
);
571 static int solo_querycap(struct file
*file
, void *priv
,
572 struct v4l2_capability
*cap
)
574 struct solo_filehandle
*fh
= priv
;
575 struct solo_dev
*solo_dev
= fh
->solo_dev
;
577 strcpy(cap
->driver
, SOLO6X10_NAME
);
578 strcpy(cap
->card
, "Softlogic 6x10");
579 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
), "PCI %s",
580 pci_name(solo_dev
->pdev
));
581 cap
->version
= SOLO6X10_VER_NUM
;
582 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
|
588 static int solo_enum_ext_input(struct solo_dev
*solo_dev
,
589 struct v4l2_input
*input
)
591 static const char *dispnames_1
[] = { "4UP" };
592 static const char *dispnames_2
[] = { "4UP-1", "4UP-2" };
593 static const char *dispnames_5
[] = {
594 "4UP-1", "4UP-2", "4UP-3", "4UP-4", "16UP"
596 const char **dispnames
;
598 if (input
->index
>= (solo_dev
->nr_chans
+ solo_dev
->nr_ext
))
601 if (solo_dev
->nr_ext
== 5)
602 dispnames
= dispnames_5
;
603 else if (solo_dev
->nr_ext
== 2)
604 dispnames
= dispnames_2
;
606 dispnames
= dispnames_1
;
608 snprintf(input
->name
, sizeof(input
->name
), "Multi %s",
609 dispnames
[input
->index
- solo_dev
->nr_chans
]);
614 static int solo_enum_input(struct file
*file
, void *priv
,
615 struct v4l2_input
*input
)
617 struct solo_filehandle
*fh
= priv
;
618 struct solo_dev
*solo_dev
= fh
->solo_dev
;
620 if (input
->index
>= solo_dev
->nr_chans
) {
621 int ret
= solo_enum_ext_input(solo_dev
, input
);
625 snprintf(input
->name
, sizeof(input
->name
), "Camera %d",
628 /* We can only check this for normal inputs */
629 if (!tw28_get_video_status(solo_dev
, input
->index
))
630 input
->status
= V4L2_IN_ST_NO_SIGNAL
;
633 input
->type
= V4L2_INPUT_TYPE_CAMERA
;
635 if (solo_dev
->video_type
== SOLO_VO_FMT_TYPE_NTSC
)
636 input
->std
= V4L2_STD_NTSC_M
;
638 input
->std
= V4L2_STD_PAL_B
;
643 static int solo_set_input(struct file
*file
, void *priv
, unsigned int index
)
645 struct solo_filehandle
*fh
= priv
;
647 return solo_v4l2_set_ch(fh
->solo_dev
, index
);
650 static int solo_get_input(struct file
*file
, void *priv
, unsigned int *index
)
652 struct solo_filehandle
*fh
= priv
;
654 *index
= fh
->solo_dev
->cur_disp_ch
;
659 static int solo_enum_fmt_cap(struct file
*file
, void *priv
,
660 struct v4l2_fmtdesc
*f
)
665 f
->pixelformat
= V4L2_PIX_FMT_UYVY
;
666 strlcpy(f
->description
, "UYUV 4:2:2 Packed", sizeof(f
->description
));
671 static int solo_try_fmt_cap(struct file
*file
, void *priv
,
672 struct v4l2_format
*f
)
674 struct solo_filehandle
*fh
= priv
;
675 struct solo_dev
*solo_dev
= fh
->solo_dev
;
676 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
677 int image_size
= solo_image_size(solo_dev
);
679 /* Check supported sizes */
680 if (pix
->width
!= solo_dev
->video_hsize
)
681 pix
->width
= solo_dev
->video_hsize
;
682 if (pix
->height
!= solo_vlines(solo_dev
))
683 pix
->height
= solo_vlines(solo_dev
);
684 if (pix
->sizeimage
!= image_size
)
685 pix
->sizeimage
= image_size
;
688 if (pix
->field
== V4L2_FIELD_ANY
)
689 pix
->field
= SOLO_DISP_PIX_FIELD
;
691 if (pix
->pixelformat
!= V4L2_PIX_FMT_UYVY
||
692 pix
->field
!= SOLO_DISP_PIX_FIELD
||
693 pix
->colorspace
!= V4L2_COLORSPACE_SMPTE170M
)
699 static int solo_set_fmt_cap(struct file
*file
, void *priv
,
700 struct v4l2_format
*f
)
702 struct solo_filehandle
*fh
= priv
;
704 if (videobuf_queue_is_busy(&fh
->vidq
))
707 /* For right now, if it doesn't match our running config,
709 return solo_try_fmt_cap(file
, priv
, f
);
712 static int solo_get_fmt_cap(struct file
*file
, void *priv
,
713 struct v4l2_format
*f
)
715 struct solo_filehandle
*fh
= priv
;
716 struct solo_dev
*solo_dev
= fh
->solo_dev
;
717 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
719 pix
->width
= solo_dev
->video_hsize
;
720 pix
->height
= solo_vlines(solo_dev
);
721 pix
->pixelformat
= V4L2_PIX_FMT_UYVY
;
722 pix
->field
= SOLO_DISP_PIX_FIELD
;
723 pix
->sizeimage
= solo_image_size(solo_dev
);
724 pix
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
725 pix
->bytesperline
= solo_bytesperline(solo_dev
);
730 static int solo_reqbufs(struct file
*file
, void *priv
,
731 struct v4l2_requestbuffers
*req
)
733 struct solo_filehandle
*fh
= priv
;
735 return videobuf_reqbufs(&fh
->vidq
, req
);
738 static int solo_querybuf(struct file
*file
, void *priv
, struct v4l2_buffer
*buf
)
740 struct solo_filehandle
*fh
= priv
;
742 return videobuf_querybuf(&fh
->vidq
, buf
);
745 static int solo_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*buf
)
747 struct solo_filehandle
*fh
= priv
;
749 return videobuf_qbuf(&fh
->vidq
, buf
);
752 static int solo_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*buf
)
754 struct solo_filehandle
*fh
= priv
;
756 return videobuf_dqbuf(&fh
->vidq
, buf
, file
->f_flags
& O_NONBLOCK
);
759 static int solo_streamon(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
761 struct solo_filehandle
*fh
= priv
;
763 if (i
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
766 return videobuf_streamon(&fh
->vidq
);
769 static int solo_streamoff(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
771 struct solo_filehandle
*fh
= priv
;
773 if (i
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
776 return videobuf_streamoff(&fh
->vidq
);
779 static int solo_s_std(struct file
*file
, void *priv
, v4l2_std_id
*i
)
784 static const u32 solo_motion_ctrls
[] = {
785 V4L2_CID_MOTION_TRACE
,
789 static const u32
*solo_ctrl_classes
[] = {
794 static int solo_disp_queryctrl(struct file
*file
, void *priv
,
795 struct v4l2_queryctrl
*qc
)
797 qc
->id
= v4l2_ctrl_next(solo_ctrl_classes
, qc
->id
);
803 case V4L2_CID_MOTION_TRACE
:
804 qc
->type
= V4L2_CTRL_TYPE_BOOLEAN
;
806 qc
->maximum
= qc
->step
= 1;
807 qc
->default_value
= 0;
808 strlcpy(qc
->name
, "Motion Detection Trace", sizeof(qc
->name
));
811 case V4L2_CID_MOTION_TRACE
:
812 return v4l2_ctrl_query_fill(qc
, 0, 1, 1, 0);
818 static int solo_disp_g_ctrl(struct file
*file
, void *priv
,
819 struct v4l2_control
*ctrl
)
821 struct solo_filehandle
*fh
= priv
;
822 struct solo_dev
*solo_dev
= fh
->solo_dev
;
825 case V4L2_CID_MOTION_TRACE
:
826 ctrl
->value
= solo_reg_read(solo_dev
, SOLO_VI_MOTION_BAR
)
833 static int solo_disp_s_ctrl(struct file
*file
, void *priv
,
834 struct v4l2_control
*ctrl
)
836 struct solo_filehandle
*fh
= priv
;
837 struct solo_dev
*solo_dev
= fh
->solo_dev
;
840 case V4L2_CID_MOTION_TRACE
:
842 solo_reg_write(solo_dev
, SOLO_VI_MOTION_BORDER
,
843 SOLO_VI_MOTION_Y_ADD
|
844 SOLO_VI_MOTION_Y_VALUE(0x20) |
845 SOLO_VI_MOTION_CB_VALUE(0x10) |
846 SOLO_VI_MOTION_CR_VALUE(0x10));
847 solo_reg_write(solo_dev
, SOLO_VI_MOTION_BAR
,
848 SOLO_VI_MOTION_CR_ADD
|
849 SOLO_VI_MOTION_Y_VALUE(0x10) |
850 SOLO_VI_MOTION_CB_VALUE(0x80) |
851 SOLO_VI_MOTION_CR_VALUE(0x10));
853 solo_reg_write(solo_dev
, SOLO_VI_MOTION_BORDER
, 0);
854 solo_reg_write(solo_dev
, SOLO_VI_MOTION_BAR
, 0);
861 static const struct v4l2_file_operations solo_v4l2_fops
= {
862 .owner
= THIS_MODULE
,
863 .open
= solo_v4l2_open
,
864 .release
= solo_v4l2_release
,
865 .read
= solo_v4l2_read
,
866 .poll
= solo_v4l2_poll
,
867 .mmap
= solo_v4l2_mmap
,
868 .ioctl
= video_ioctl2
,
871 static const struct v4l2_ioctl_ops solo_v4l2_ioctl_ops
= {
872 .vidioc_querycap
= solo_querycap
,
873 .vidioc_s_std
= solo_s_std
,
874 /* Input callbacks */
875 .vidioc_enum_input
= solo_enum_input
,
876 .vidioc_s_input
= solo_set_input
,
877 .vidioc_g_input
= solo_get_input
,
878 /* Video capture format callbacks */
879 .vidioc_enum_fmt_vid_cap
= solo_enum_fmt_cap
,
880 .vidioc_try_fmt_vid_cap
= solo_try_fmt_cap
,
881 .vidioc_s_fmt_vid_cap
= solo_set_fmt_cap
,
882 .vidioc_g_fmt_vid_cap
= solo_get_fmt_cap
,
884 .vidioc_reqbufs
= solo_reqbufs
,
885 .vidioc_querybuf
= solo_querybuf
,
886 .vidioc_qbuf
= solo_qbuf
,
887 .vidioc_dqbuf
= solo_dqbuf
,
888 .vidioc_streamon
= solo_streamon
,
889 .vidioc_streamoff
= solo_streamoff
,
891 .vidioc_queryctrl
= solo_disp_queryctrl
,
892 .vidioc_g_ctrl
= solo_disp_g_ctrl
,
893 .vidioc_s_ctrl
= solo_disp_s_ctrl
,
896 static struct video_device solo_v4l2_template
= {
897 .name
= SOLO6X10_NAME
,
898 .fops
= &solo_v4l2_fops
,
899 .ioctl_ops
= &solo_v4l2_ioctl_ops
,
901 .release
= video_device_release
,
903 .tvnorms
= V4L2_STD_NTSC_M
| V4L2_STD_PAL_B
,
904 .current_norm
= V4L2_STD_NTSC_M
,
907 int solo_v4l2_init(struct solo_dev
*solo_dev
)
912 init_waitqueue_head(&solo_dev
->disp_thread_wait
);
914 solo_dev
->vfd
= video_device_alloc();
918 *solo_dev
->vfd
= solo_v4l2_template
;
919 solo_dev
->vfd
->parent
= &solo_dev
->pdev
->dev
;
921 ret
= video_register_device(solo_dev
->vfd
, VFL_TYPE_GRABBER
, video_nr
);
923 video_device_release(solo_dev
->vfd
);
924 solo_dev
->vfd
= NULL
;
928 video_set_drvdata(solo_dev
->vfd
, solo_dev
);
930 snprintf(solo_dev
->vfd
->name
, sizeof(solo_dev
->vfd
->name
), "%s (%i)",
931 SOLO6X10_NAME
, solo_dev
->vfd
->num
);
936 dev_info(&solo_dev
->pdev
->dev
, "Display as /dev/video%d with "
937 "%d inputs (%d extended)\n", solo_dev
->vfd
->num
,
938 solo_dev
->nr_chans
, solo_dev
->nr_ext
);
940 /* Cycle all the channels and clear */
941 for (i
= 0; i
< solo_dev
->nr_chans
; i
++) {
942 solo_v4l2_set_ch(solo_dev
, i
);
943 while (erase_off(solo_dev
))
947 /* Set the default display channel */
948 solo_v4l2_set_ch(solo_dev
, 0);
949 while (erase_off(solo_dev
))
952 solo_irq_on(solo_dev
, SOLO_IRQ_VIDEO_IN
);
957 void solo_v4l2_exit(struct solo_dev
*solo_dev
)
959 solo_irq_off(solo_dev
, SOLO_IRQ_VIDEO_IN
);
961 video_unregister_device(solo_dev
->vfd
);
962 solo_dev
->vfd
= NULL
;