2 * Copyright (C) 2015 VanguardiaSur - www.vanguardiasur.com.ar
4 * Based on original driver by Krzysztof Ha?asa:
5 * Copyright (C) 2015 Industrial Research Institute for Automation
6 * and Measurements PIAP
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License
10 * as published by the Free Software Foundation.
14 #include <linux/init.h>
15 #include <linux/delay.h>
16 #include <linux/list.h>
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/slab.h>
20 #include <media/v4l2-common.h>
21 #include <media/v4l2-event.h>
22 #include <media/videobuf2-dma-contig.h>
23 #include <media/videobuf2-dma-sg.h>
24 #include <media/videobuf2-vmalloc.h>
26 #include "tw686x-regs.h"
28 #define TW686X_INPUTS_PER_CH 4
29 #define TW686X_VIDEO_WIDTH 720
30 #define TW686X_VIDEO_HEIGHT(id) ((id & V4L2_STD_525_60) ? 480 : 576)
31 #define TW686X_MAX_FPS(id) ((id & V4L2_STD_525_60) ? 30 : 25)
33 #define TW686X_MAX_SG_ENTRY_SIZE 4096
34 #define TW686X_MAX_SG_DESC_COUNT 256 /* PAL 720x576 needs 203 4-KB pages */
35 #define TW686X_SG_TABLE_SIZE (TW686X_MAX_SG_DESC_COUNT * sizeof(struct tw686x_sg_desc))
37 static const struct tw686x_format formats
[] = {
39 .fourcc
= V4L2_PIX_FMT_UYVY
,
43 .fourcc
= V4L2_PIX_FMT_RGB565
,
47 .fourcc
= V4L2_PIX_FMT_YUYV
,
53 static void tw686x_buf_done(struct tw686x_video_channel
*vc
,
56 struct tw686x_dma_desc
*desc
= &vc
->dma_descs
[pb
];
57 struct tw686x_dev
*dev
= vc
->dev
;
58 struct vb2_v4l2_buffer
*vb
;
59 struct vb2_buffer
*vb2_buf
;
61 if (vc
->curr_bufs
[pb
]) {
62 vb
= &vc
->curr_bufs
[pb
]->vb
;
64 vb
->field
= dev
->dma_ops
->field
;
65 vb
->sequence
= vc
->sequence
++;
66 vb2_buf
= &vb
->vb2_buf
;
68 if (dev
->dma_mode
== TW686X_DMA_MODE_MEMCPY
)
69 memcpy(vb2_plane_vaddr(vb2_buf
, 0), desc
->virt
,
71 vb2_buf
->timestamp
= ktime_get_ns();
72 vb2_buffer_done(vb2_buf
, VB2_BUF_STATE_DONE
);
79 * We can call this even when alloc_dma failed for the given channel
81 static void tw686x_memcpy_dma_free(struct tw686x_video_channel
*vc
,
84 struct tw686x_dma_desc
*desc
= &vc
->dma_descs
[pb
];
85 struct tw686x_dev
*dev
= vc
->dev
;
86 struct pci_dev
*pci_dev
;
89 /* Check device presence. Shouldn't really happen! */
90 spin_lock_irqsave(&dev
->lock
, flags
);
91 pci_dev
= dev
->pci_dev
;
92 spin_unlock_irqrestore(&dev
->lock
, flags
);
94 WARN(1, "trying to deallocate on missing device\n");
99 pci_free_consistent(dev
->pci_dev
, desc
->size
,
100 desc
->virt
, desc
->phys
);
105 static int tw686x_memcpy_dma_alloc(struct tw686x_video_channel
*vc
,
108 struct tw686x_dev
*dev
= vc
->dev
;
109 u32 reg
= pb
? VDMA_B_ADDR
[vc
->ch
] : VDMA_P_ADDR
[vc
->ch
];
113 WARN(vc
->dma_descs
[pb
].virt
,
114 "Allocating buffer but previous still here\n");
116 len
= (vc
->width
* vc
->height
* vc
->format
->depth
) >> 3;
117 virt
= pci_alloc_consistent(dev
->pci_dev
, len
,
118 &vc
->dma_descs
[pb
].phys
);
120 v4l2_err(&dev
->v4l2_dev
,
121 "dma%d: unable to allocate %s-buffer\n",
122 vc
->ch
, pb
? "B" : "P");
125 vc
->dma_descs
[pb
].size
= len
;
126 vc
->dma_descs
[pb
].virt
= virt
;
127 reg_write(dev
, reg
, vc
->dma_descs
[pb
].phys
);
132 static void tw686x_memcpy_buf_refill(struct tw686x_video_channel
*vc
,
135 struct tw686x_v4l2_buf
*buf
;
137 while (!list_empty(&vc
->vidq_queued
)) {
139 buf
= list_first_entry(&vc
->vidq_queued
,
140 struct tw686x_v4l2_buf
, list
);
141 list_del(&buf
->list
);
143 vc
->curr_bufs
[pb
] = buf
;
146 vc
->curr_bufs
[pb
] = NULL
;
149 static const struct tw686x_dma_ops memcpy_dma_ops
= {
150 .alloc
= tw686x_memcpy_dma_alloc
,
151 .free
= tw686x_memcpy_dma_free
,
152 .buf_refill
= tw686x_memcpy_buf_refill
,
153 .mem_ops
= &vb2_vmalloc_memops
,
154 .hw_dma_mode
= TW686X_FRAME_MODE
,
155 .field
= V4L2_FIELD_INTERLACED
,
158 static void tw686x_contig_buf_refill(struct tw686x_video_channel
*vc
,
161 struct tw686x_v4l2_buf
*buf
;
163 while (!list_empty(&vc
->vidq_queued
)) {
164 u32 reg
= pb
? VDMA_B_ADDR
[vc
->ch
] : VDMA_P_ADDR
[vc
->ch
];
167 buf
= list_first_entry(&vc
->vidq_queued
,
168 struct tw686x_v4l2_buf
, list
);
169 list_del(&buf
->list
);
171 phys
= vb2_dma_contig_plane_dma_addr(&buf
->vb
.vb2_buf
, 0);
172 reg_write(vc
->dev
, reg
, phys
);
174 buf
->vb
.vb2_buf
.state
= VB2_BUF_STATE_ACTIVE
;
175 vc
->curr_bufs
[pb
] = buf
;
178 vc
->curr_bufs
[pb
] = NULL
;
181 static const struct tw686x_dma_ops contig_dma_ops
= {
182 .buf_refill
= tw686x_contig_buf_refill
,
183 .mem_ops
= &vb2_dma_contig_memops
,
184 .hw_dma_mode
= TW686X_FRAME_MODE
,
185 .field
= V4L2_FIELD_INTERLACED
,
188 static int tw686x_sg_desc_fill(struct tw686x_sg_desc
*descs
,
189 struct tw686x_v4l2_buf
*buf
,
190 unsigned int buf_len
)
192 struct sg_table
*vbuf
= vb2_dma_sg_plane_desc(&buf
->vb
.vb2_buf
, 0);
193 unsigned int len
, entry_len
;
194 struct scatterlist
*sg
;
197 /* Clear the scatter-gather table */
198 memset(descs
, 0, TW686X_SG_TABLE_SIZE
);
201 for_each_sg(vbuf
->sgl
, sg
, vbuf
->nents
, i
) {
202 dma_addr_t phys
= sg_dma_address(sg
);
203 len
= sg_dma_len(sg
);
205 while (len
&& buf_len
) {
207 if (count
== TW686X_MAX_SG_DESC_COUNT
)
210 entry_len
= min_t(unsigned int, len
,
211 TW686X_MAX_SG_ENTRY_SIZE
);
212 entry_len
= min_t(unsigned int, entry_len
, buf_len
);
213 descs
[count
].phys
= cpu_to_le32(phys
);
214 descs
[count
++].flags_length
=
215 cpu_to_le32(BIT(30) | entry_len
);
218 buf_len
-= entry_len
;
228 static void tw686x_sg_buf_refill(struct tw686x_video_channel
*vc
,
231 struct tw686x_dev
*dev
= vc
->dev
;
232 struct tw686x_v4l2_buf
*buf
;
234 while (!list_empty(&vc
->vidq_queued
)) {
235 unsigned int buf_len
;
237 buf
= list_first_entry(&vc
->vidq_queued
,
238 struct tw686x_v4l2_buf
, list
);
239 list_del(&buf
->list
);
241 buf_len
= (vc
->width
* vc
->height
* vc
->format
->depth
) >> 3;
242 if (tw686x_sg_desc_fill(vc
->sg_descs
[pb
], buf
, buf_len
)) {
243 v4l2_err(&dev
->v4l2_dev
,
244 "dma%d: unable to fill %s-buffer\n",
245 vc
->ch
, pb
? "B" : "P");
246 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
250 buf
->vb
.vb2_buf
.state
= VB2_BUF_STATE_ACTIVE
;
251 vc
->curr_bufs
[pb
] = buf
;
255 vc
->curr_bufs
[pb
] = NULL
;
258 static void tw686x_sg_dma_free(struct tw686x_video_channel
*vc
,
261 struct tw686x_dma_desc
*desc
= &vc
->dma_descs
[pb
];
262 struct tw686x_dev
*dev
= vc
->dev
;
265 pci_free_consistent(dev
->pci_dev
, desc
->size
,
266 desc
->virt
, desc
->phys
);
270 vc
->sg_descs
[pb
] = NULL
;
273 static int tw686x_sg_dma_alloc(struct tw686x_video_channel
*vc
,
276 struct tw686x_dma_desc
*desc
= &vc
->dma_descs
[pb
];
277 struct tw686x_dev
*dev
= vc
->dev
;
278 u32 reg
= pb
? DMA_PAGE_TABLE1_ADDR
[vc
->ch
] :
279 DMA_PAGE_TABLE0_ADDR
[vc
->ch
];
284 virt
= pci_alloc_consistent(dev
->pci_dev
, desc
->size
,
287 v4l2_err(&dev
->v4l2_dev
,
288 "dma%d: unable to allocate %s-buffer\n",
289 vc
->ch
, pb
? "B" : "P");
293 reg_write(dev
, reg
, desc
->phys
);
295 virt
= dev
->video_channels
[0].dma_descs
[pb
].virt
+
296 vc
->ch
* TW686X_SG_TABLE_SIZE
;
299 vc
->sg_descs
[pb
] = virt
;
303 static int tw686x_sg_setup(struct tw686x_dev
*dev
)
305 unsigned int sg_table_size
, pb
, ch
, channels
;
307 if (is_second_gen(dev
)) {
309 * TW6865/TW6869: each channel needs a pair of
310 * P-B descriptor tables.
312 channels
= max_channels(dev
);
313 sg_table_size
= TW686X_SG_TABLE_SIZE
;
316 * TW6864/TW6868: we need to allocate a pair of
317 * P-B descriptor tables, common for all channels.
318 * Each table will be bigger than 4 KB.
321 sg_table_size
= max_channels(dev
) * TW686X_SG_TABLE_SIZE
;
324 for (ch
= 0; ch
< channels
; ch
++) {
325 struct tw686x_video_channel
*vc
= &dev
->video_channels
[ch
];
327 for (pb
= 0; pb
< 2; pb
++)
328 vc
->dma_descs
[pb
].size
= sg_table_size
;
334 static const struct tw686x_dma_ops sg_dma_ops
= {
335 .setup
= tw686x_sg_setup
,
336 .alloc
= tw686x_sg_dma_alloc
,
337 .free
= tw686x_sg_dma_free
,
338 .buf_refill
= tw686x_sg_buf_refill
,
339 .mem_ops
= &vb2_dma_sg_memops
,
340 .hw_dma_mode
= TW686X_SG_MODE
,
341 .field
= V4L2_FIELD_SEQ_TB
,
344 static const unsigned int fps_map
[15] = {
346 * bit 31 enables selecting the field control register
347 * bits 0-29 are a bitmask with fields that will be output.
348 * For NTSC (and PAL-M, PAL-60), all 30 bits are used.
349 * For other PAL standards, only the first 25 bits are used.
351 0x00000000, /* output all fields */
352 0x80000006, /* 2 fps (60Hz), 2 fps (50Hz) */
353 0x80018006, /* 4 fps (60Hz), 4 fps (50Hz) */
354 0x80618006, /* 6 fps (60Hz), 6 fps (50Hz) */
355 0x81818186, /* 8 fps (60Hz), 8 fps (50Hz) */
356 0x86186186, /* 10 fps (60Hz), 8 fps (50Hz) */
357 0x86619866, /* 12 fps (60Hz), 10 fps (50Hz) */
358 0x86666666, /* 14 fps (60Hz), 12 fps (50Hz) */
359 0x9999999e, /* 16 fps (60Hz), 14 fps (50Hz) */
360 0x99e6799e, /* 18 fps (60Hz), 16 fps (50Hz) */
361 0x9e79e79e, /* 20 fps (60Hz), 16 fps (50Hz) */
362 0x9e7e7e7e, /* 22 fps (60Hz), 18 fps (50Hz) */
363 0x9fe7f9fe, /* 24 fps (60Hz), 20 fps (50Hz) */
364 0x9ffe7ffe, /* 26 fps (60Hz), 22 fps (50Hz) */
365 0x9ffffffe, /* 28 fps (60Hz), 24 fps (50Hz) */
368 static unsigned int tw686x_real_fps(unsigned int index
, unsigned int max_fps
)
372 if (!index
|| index
>= ARRAY_SIZE(fps_map
))
375 mask
= GENMASK(max_fps
- 1, 0);
376 return hweight_long(fps_map
[index
] & mask
);
379 static unsigned int tw686x_fps_idx(unsigned int fps
, unsigned int max_fps
)
381 unsigned int idx
, real_fps
;
385 idx
= (12 + 15 * fps
) / max_fps
;
387 /* Minimal possible framerate is 2 frames per second */
391 /* Check if the difference is bigger than abs(1) and adjust */
392 real_fps
= tw686x_real_fps(idx
, max_fps
);
393 delta
= real_fps
- fps
;
406 static void tw686x_set_framerate(struct tw686x_video_channel
*vc
,
411 i
= tw686x_fps_idx(fps
, TW686X_MAX_FPS(vc
->video_standard
));
412 reg_write(vc
->dev
, VIDEO_FIELD_CTRL
[vc
->ch
], fps_map
[i
]);
413 vc
->fps
= tw686x_real_fps(i
, TW686X_MAX_FPS(vc
->video_standard
));
416 static const struct tw686x_format
*format_by_fourcc(unsigned int fourcc
)
420 for (cnt
= 0; cnt
< ARRAY_SIZE(formats
); cnt
++)
421 if (formats
[cnt
].fourcc
== fourcc
)
422 return &formats
[cnt
];
426 static int tw686x_queue_setup(struct vb2_queue
*vq
,
427 unsigned int *nbuffers
, unsigned int *nplanes
,
428 unsigned int sizes
[], struct device
*alloc_devs
[])
430 struct tw686x_video_channel
*vc
= vb2_get_drv_priv(vq
);
431 unsigned int szimage
=
432 (vc
->width
* vc
->height
* vc
->format
->depth
) >> 3;
435 * Let's request at least three buffers: two for the
436 * DMA engine and one for userspace.
438 if (vq
->num_buffers
+ *nbuffers
< 3)
439 *nbuffers
= 3 - vq
->num_buffers
;
442 if (*nplanes
!= 1 || sizes
[0] < szimage
)
452 static void tw686x_buf_queue(struct vb2_buffer
*vb
)
454 struct tw686x_video_channel
*vc
= vb2_get_drv_priv(vb
->vb2_queue
);
455 struct tw686x_dev
*dev
= vc
->dev
;
456 struct pci_dev
*pci_dev
;
458 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
459 struct tw686x_v4l2_buf
*buf
=
460 container_of(vbuf
, struct tw686x_v4l2_buf
, vb
);
462 /* Check device presence */
463 spin_lock_irqsave(&dev
->lock
, flags
);
464 pci_dev
= dev
->pci_dev
;
465 spin_unlock_irqrestore(&dev
->lock
, flags
);
467 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
471 spin_lock_irqsave(&vc
->qlock
, flags
);
472 list_add_tail(&buf
->list
, &vc
->vidq_queued
);
473 spin_unlock_irqrestore(&vc
->qlock
, flags
);
476 static void tw686x_clear_queue(struct tw686x_video_channel
*vc
,
477 enum vb2_buffer_state state
)
481 while (!list_empty(&vc
->vidq_queued
)) {
482 struct tw686x_v4l2_buf
*buf
;
484 buf
= list_first_entry(&vc
->vidq_queued
,
485 struct tw686x_v4l2_buf
, list
);
486 list_del(&buf
->list
);
487 vb2_buffer_done(&buf
->vb
.vb2_buf
, state
);
490 for (pb
= 0; pb
< 2; pb
++) {
491 if (vc
->curr_bufs
[pb
])
492 vb2_buffer_done(&vc
->curr_bufs
[pb
]->vb
.vb2_buf
, state
);
493 vc
->curr_bufs
[pb
] = NULL
;
497 static int tw686x_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
499 struct tw686x_video_channel
*vc
= vb2_get_drv_priv(vq
);
500 struct tw686x_dev
*dev
= vc
->dev
;
501 struct pci_dev
*pci_dev
;
505 /* Check device presence */
506 spin_lock_irqsave(&dev
->lock
, flags
);
507 pci_dev
= dev
->pci_dev
;
508 spin_unlock_irqrestore(&dev
->lock
, flags
);
511 goto err_clear_queue
;
514 spin_lock_irqsave(&vc
->qlock
, flags
);
517 if (dev
->dma_mode
== TW686X_DMA_MODE_MEMCPY
&&
518 (!vc
->dma_descs
[0].virt
|| !vc
->dma_descs
[1].virt
)) {
519 spin_unlock_irqrestore(&vc
->qlock
, flags
);
520 v4l2_err(&dev
->v4l2_dev
,
521 "video%d: refusing to start without DMA buffers\n",
524 goto err_clear_queue
;
527 for (pb
= 0; pb
< 2; pb
++)
528 dev
->dma_ops
->buf_refill(vc
, pb
);
529 spin_unlock_irqrestore(&vc
->qlock
, flags
);
534 spin_lock_irqsave(&dev
->lock
, flags
);
535 tw686x_enable_channel(dev
, vc
->ch
);
536 spin_unlock_irqrestore(&dev
->lock
, flags
);
538 mod_timer(&dev
->dma_delay_timer
, jiffies
+ msecs_to_jiffies(100));
543 spin_lock_irqsave(&vc
->qlock
, flags
);
544 tw686x_clear_queue(vc
, VB2_BUF_STATE_QUEUED
);
545 spin_unlock_irqrestore(&vc
->qlock
, flags
);
549 static void tw686x_stop_streaming(struct vb2_queue
*vq
)
551 struct tw686x_video_channel
*vc
= vb2_get_drv_priv(vq
);
552 struct tw686x_dev
*dev
= vc
->dev
;
553 struct pci_dev
*pci_dev
;
556 /* Check device presence */
557 spin_lock_irqsave(&dev
->lock
, flags
);
558 pci_dev
= dev
->pci_dev
;
559 spin_unlock_irqrestore(&dev
->lock
, flags
);
561 tw686x_disable_channel(dev
, vc
->ch
);
563 spin_lock_irqsave(&vc
->qlock
, flags
);
564 tw686x_clear_queue(vc
, VB2_BUF_STATE_ERROR
);
565 spin_unlock_irqrestore(&vc
->qlock
, flags
);
568 static int tw686x_buf_prepare(struct vb2_buffer
*vb
)
570 struct tw686x_video_channel
*vc
= vb2_get_drv_priv(vb
->vb2_queue
);
572 (vc
->width
* vc
->height
* vc
->format
->depth
) >> 3;
574 if (vb2_plane_size(vb
, 0) < size
)
576 vb2_set_plane_payload(vb
, 0, size
);
580 static const struct vb2_ops tw686x_video_qops
= {
581 .queue_setup
= tw686x_queue_setup
,
582 .buf_queue
= tw686x_buf_queue
,
583 .buf_prepare
= tw686x_buf_prepare
,
584 .start_streaming
= tw686x_start_streaming
,
585 .stop_streaming
= tw686x_stop_streaming
,
586 .wait_prepare
= vb2_ops_wait_prepare
,
587 .wait_finish
= vb2_ops_wait_finish
,
590 static int tw686x_s_ctrl(struct v4l2_ctrl
*ctrl
)
592 struct tw686x_video_channel
*vc
;
593 struct tw686x_dev
*dev
;
596 vc
= container_of(ctrl
->handler
, struct tw686x_video_channel
,
602 case V4L2_CID_BRIGHTNESS
:
603 reg_write(dev
, BRIGHT
[ch
], ctrl
->val
& 0xff);
606 case V4L2_CID_CONTRAST
:
607 reg_write(dev
, CONTRAST
[ch
], ctrl
->val
);
610 case V4L2_CID_SATURATION
:
611 reg_write(dev
, SAT_U
[ch
], ctrl
->val
);
612 reg_write(dev
, SAT_V
[ch
], ctrl
->val
);
616 reg_write(dev
, HUE
[ch
], ctrl
->val
& 0xff);
623 static const struct v4l2_ctrl_ops ctrl_ops
= {
624 .s_ctrl
= tw686x_s_ctrl
,
627 static int tw686x_g_fmt_vid_cap(struct file
*file
, void *priv
,
628 struct v4l2_format
*f
)
630 struct tw686x_video_channel
*vc
= video_drvdata(file
);
631 struct tw686x_dev
*dev
= vc
->dev
;
633 f
->fmt
.pix
.width
= vc
->width
;
634 f
->fmt
.pix
.height
= vc
->height
;
635 f
->fmt
.pix
.field
= dev
->dma_ops
->field
;
636 f
->fmt
.pix
.pixelformat
= vc
->format
->fourcc
;
637 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
638 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* vc
->format
->depth
) / 8;
639 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
643 static int tw686x_try_fmt_vid_cap(struct file
*file
, void *priv
,
644 struct v4l2_format
*f
)
646 struct tw686x_video_channel
*vc
= video_drvdata(file
);
647 struct tw686x_dev
*dev
= vc
->dev
;
648 unsigned int video_height
= TW686X_VIDEO_HEIGHT(vc
->video_standard
);
649 const struct tw686x_format
*format
;
651 format
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
653 format
= &formats
[0];
654 f
->fmt
.pix
.pixelformat
= format
->fourcc
;
657 if (f
->fmt
.pix
.width
<= TW686X_VIDEO_WIDTH
/ 2)
658 f
->fmt
.pix
.width
= TW686X_VIDEO_WIDTH
/ 2;
660 f
->fmt
.pix
.width
= TW686X_VIDEO_WIDTH
;
662 if (f
->fmt
.pix
.height
<= video_height
/ 2)
663 f
->fmt
.pix
.height
= video_height
/ 2;
665 f
->fmt
.pix
.height
= video_height
;
667 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* format
->depth
) / 8;
668 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
669 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
670 f
->fmt
.pix
.field
= dev
->dma_ops
->field
;
675 static int tw686x_set_format(struct tw686x_video_channel
*vc
,
676 unsigned int pixelformat
, unsigned int width
,
677 unsigned int height
, bool realloc
)
679 struct tw686x_dev
*dev
= vc
->dev
;
680 u32 val
, dma_width
, dma_height
, dma_line_width
;
683 vc
->format
= format_by_fourcc(pixelformat
);
687 /* We need new DMA buffers if the framesize has changed */
688 if (dev
->dma_ops
->alloc
&& realloc
) {
689 for (pb
= 0; pb
< 2; pb
++)
690 dev
->dma_ops
->free(vc
, pb
);
692 for (pb
= 0; pb
< 2; pb
++) {
693 err
= dev
->dma_ops
->alloc(vc
, pb
);
696 dev
->dma_ops
->free(vc
, 0);
702 val
= reg_read(vc
->dev
, VDMA_CHANNEL_CONFIG
[vc
->ch
]);
704 if (vc
->width
<= TW686X_VIDEO_WIDTH
/ 2)
709 if (vc
->height
<= TW686X_VIDEO_HEIGHT(vc
->video_standard
) / 2)
716 /* Program the DMA scatter-gather */
717 if (dev
->dma_mode
== TW686X_DMA_MODE_SG
) {
718 u32 start_idx
, end_idx
;
720 start_idx
= is_second_gen(dev
) ?
721 0 : vc
->ch
* TW686X_MAX_SG_DESC_COUNT
;
722 end_idx
= start_idx
+ TW686X_MAX_SG_DESC_COUNT
- 1;
724 val
|= (end_idx
<< 10) | start_idx
;
728 val
|= vc
->format
->mode
<< 20;
729 reg_write(vc
->dev
, VDMA_CHANNEL_CONFIG
[vc
->ch
], val
);
731 /* Program the DMA frame size */
732 dma_width
= (vc
->width
* 2) & 0x7ff;
733 dma_height
= vc
->height
/ 2;
734 dma_line_width
= (vc
->width
* 2) & 0x7ff;
735 val
= (dma_height
<< 22) | (dma_line_width
<< 11) | dma_width
;
736 reg_write(vc
->dev
, VDMA_WHP
[vc
->ch
], val
);
740 static int tw686x_s_fmt_vid_cap(struct file
*file
, void *priv
,
741 struct v4l2_format
*f
)
743 struct tw686x_video_channel
*vc
= video_drvdata(file
);
748 if (vb2_is_busy(&vc
->vidq
))
751 area
= vc
->width
* vc
->height
;
752 err
= tw686x_try_fmt_vid_cap(file
, priv
, f
);
756 realloc
= area
!= (f
->fmt
.pix
.width
* f
->fmt
.pix
.height
);
757 return tw686x_set_format(vc
, f
->fmt
.pix
.pixelformat
,
758 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
,
762 static int tw686x_querycap(struct file
*file
, void *priv
,
763 struct v4l2_capability
*cap
)
765 struct tw686x_video_channel
*vc
= video_drvdata(file
);
766 struct tw686x_dev
*dev
= vc
->dev
;
768 strlcpy(cap
->driver
, "tw686x", sizeof(cap
->driver
));
769 strlcpy(cap
->card
, dev
->name
, sizeof(cap
->card
));
770 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
),
771 "PCI:%s", pci_name(dev
->pci_dev
));
772 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
|
774 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
778 static int tw686x_set_standard(struct tw686x_video_channel
*vc
, v4l2_std_id id
)
782 if (id
& V4L2_STD_NTSC
)
784 else if (id
& V4L2_STD_PAL
)
786 else if (id
& V4L2_STD_SECAM
)
788 else if (id
& V4L2_STD_NTSC_443
)
790 else if (id
& V4L2_STD_PAL_M
)
792 else if (id
& V4L2_STD_PAL_Nc
)
794 else if (id
& V4L2_STD_PAL_60
)
799 vc
->video_standard
= id
;
800 reg_write(vc
->dev
, SDT
[vc
->ch
], val
);
802 val
= reg_read(vc
->dev
, VIDEO_CONTROL1
);
803 if (id
& V4L2_STD_525_60
)
804 val
&= ~(1 << (SYS_MODE_DMA_SHIFT
+ vc
->ch
));
806 val
|= (1 << (SYS_MODE_DMA_SHIFT
+ vc
->ch
));
807 reg_write(vc
->dev
, VIDEO_CONTROL1
, val
);
812 static int tw686x_s_std(struct file
*file
, void *priv
, v4l2_std_id id
)
814 struct tw686x_video_channel
*vc
= video_drvdata(file
);
815 struct v4l2_format f
;
818 if (vc
->video_standard
== id
)
821 if (vb2_is_busy(&vc
->vidq
))
824 ret
= tw686x_set_standard(vc
, id
);
828 * Adjust format after V4L2_STD_525_60/V4L2_STD_625_50 change,
829 * calling g_fmt and s_fmt will sanitize the height
830 * according to the standard.
832 tw686x_g_fmt_vid_cap(file
, priv
, &f
);
833 tw686x_s_fmt_vid_cap(file
, priv
, &f
);
836 * Frame decimation depends on the chosen standard,
837 * so reset it to the current value.
839 tw686x_set_framerate(vc
, vc
->fps
);
843 static int tw686x_querystd(struct file
*file
, void *priv
, v4l2_std_id
*std
)
845 struct tw686x_video_channel
*vc
= video_drvdata(file
);
846 struct tw686x_dev
*dev
= vc
->dev
;
847 unsigned int old_std
, detected_std
= 0;
850 if (vb2_is_streaming(&vc
->vidq
))
853 /* Enable and start standard detection */
854 old_std
= reg_read(dev
, SDT
[vc
->ch
]);
855 reg_write(dev
, SDT
[vc
->ch
], 0x7);
856 reg_write(dev
, SDT_EN
[vc
->ch
], 0xff);
858 end
= jiffies
+ msecs_to_jiffies(500);
859 while (time_is_after_jiffies(end
)) {
861 detected_std
= reg_read(dev
, SDT
[vc
->ch
]);
862 if (!(detected_std
& BIT(7)))
866 reg_write(dev
, SDT
[vc
->ch
], old_std
);
868 /* Exit if still busy */
869 if (detected_std
& BIT(7))
872 detected_std
= (detected_std
>> 4) & 0x7;
873 switch (detected_std
) {
874 case TW686X_STD_NTSC_M
:
875 *std
&= V4L2_STD_NTSC
;
877 case TW686X_STD_NTSC_443
:
878 *std
&= V4L2_STD_NTSC_443
;
880 case TW686X_STD_PAL_M
:
881 *std
&= V4L2_STD_PAL_M
;
883 case TW686X_STD_PAL_60
:
884 *std
&= V4L2_STD_PAL_60
;
887 *std
&= V4L2_STD_PAL
;
889 case TW686X_STD_PAL_CN
:
890 *std
&= V4L2_STD_PAL_Nc
;
892 case TW686X_STD_SECAM
:
893 *std
&= V4L2_STD_SECAM
;
901 static int tw686x_g_std(struct file
*file
, void *priv
, v4l2_std_id
*id
)
903 struct tw686x_video_channel
*vc
= video_drvdata(file
);
905 *id
= vc
->video_standard
;
909 static int tw686x_enum_framesizes(struct file
*file
, void *priv
,
910 struct v4l2_frmsizeenum
*fsize
)
912 struct tw686x_video_channel
*vc
= video_drvdata(file
);
916 fsize
->type
= V4L2_FRMSIZE_TYPE_STEPWISE
;
917 fsize
->stepwise
.max_width
= TW686X_VIDEO_WIDTH
;
918 fsize
->stepwise
.min_width
= fsize
->stepwise
.max_width
/ 2;
919 fsize
->stepwise
.step_width
= fsize
->stepwise
.min_width
;
920 fsize
->stepwise
.max_height
= TW686X_VIDEO_HEIGHT(vc
->video_standard
);
921 fsize
->stepwise
.min_height
= fsize
->stepwise
.max_height
/ 2;
922 fsize
->stepwise
.step_height
= fsize
->stepwise
.min_height
;
926 static int tw686x_enum_frameintervals(struct file
*file
, void *priv
,
927 struct v4l2_frmivalenum
*ival
)
929 struct tw686x_video_channel
*vc
= video_drvdata(file
);
930 int max_fps
= TW686X_MAX_FPS(vc
->video_standard
);
931 int max_rates
= DIV_ROUND_UP(max_fps
, 2);
933 if (ival
->index
>= max_rates
)
936 ival
->type
= V4L2_FRMIVAL_TYPE_DISCRETE
;
937 ival
->discrete
.numerator
= 1;
938 if (ival
->index
< (max_rates
- 1))
939 ival
->discrete
.denominator
= (ival
->index
+ 1) * 2;
941 ival
->discrete
.denominator
= max_fps
;
945 static int tw686x_g_parm(struct file
*file
, void *priv
,
946 struct v4l2_streamparm
*sp
)
948 struct tw686x_video_channel
*vc
= video_drvdata(file
);
949 struct v4l2_captureparm
*cp
= &sp
->parm
.capture
;
951 if (sp
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
953 sp
->parm
.capture
.readbuffers
= 3;
955 cp
->capability
= V4L2_CAP_TIMEPERFRAME
;
956 cp
->timeperframe
.numerator
= 1;
957 cp
->timeperframe
.denominator
= vc
->fps
;
961 static int tw686x_s_parm(struct file
*file
, void *priv
,
962 struct v4l2_streamparm
*sp
)
964 struct tw686x_video_channel
*vc
= video_drvdata(file
);
965 struct v4l2_captureparm
*cp
= &sp
->parm
.capture
;
966 unsigned int denominator
= cp
->timeperframe
.denominator
;
967 unsigned int numerator
= cp
->timeperframe
.numerator
;
970 if (vb2_is_busy(&vc
->vidq
))
973 fps
= (!numerator
|| !denominator
) ? 0 : denominator
/ numerator
;
975 tw686x_set_framerate(vc
, fps
);
976 return tw686x_g_parm(file
, priv
, sp
);
979 static int tw686x_enum_fmt_vid_cap(struct file
*file
, void *priv
,
980 struct v4l2_fmtdesc
*f
)
982 if (f
->index
>= ARRAY_SIZE(formats
))
984 f
->pixelformat
= formats
[f
->index
].fourcc
;
988 static void tw686x_set_input(struct tw686x_video_channel
*vc
, unsigned int i
)
994 val
= reg_read(vc
->dev
, VDMA_CHANNEL_CONFIG
[vc
->ch
]);
997 reg_write(vc
->dev
, VDMA_CHANNEL_CONFIG
[vc
->ch
], val
);
1000 static int tw686x_s_input(struct file
*file
, void *priv
, unsigned int i
)
1002 struct tw686x_video_channel
*vc
= video_drvdata(file
);
1004 if (i
>= TW686X_INPUTS_PER_CH
)
1009 * Not sure we are able to support on the fly input change
1011 if (vb2_is_busy(&vc
->vidq
))
1014 tw686x_set_input(vc
, i
);
1018 static int tw686x_g_input(struct file
*file
, void *priv
, unsigned int *i
)
1020 struct tw686x_video_channel
*vc
= video_drvdata(file
);
1026 static int tw686x_enum_input(struct file
*file
, void *priv
,
1027 struct v4l2_input
*i
)
1029 struct tw686x_video_channel
*vc
= video_drvdata(file
);
1030 unsigned int vidstat
;
1032 if (i
->index
>= TW686X_INPUTS_PER_CH
)
1035 snprintf(i
->name
, sizeof(i
->name
), "Composite%d", i
->index
);
1036 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
1037 i
->std
= vc
->device
->tvnorms
;
1038 i
->capabilities
= V4L2_IN_CAP_STD
;
1040 vidstat
= reg_read(vc
->dev
, VIDSTAT
[vc
->ch
]);
1042 if (vidstat
& TW686X_VIDSTAT_VDLOSS
)
1043 i
->status
|= V4L2_IN_ST_NO_SIGNAL
;
1044 if (!(vidstat
& TW686X_VIDSTAT_HLOCK
))
1045 i
->status
|= V4L2_IN_ST_NO_H_LOCK
;
1050 static const struct v4l2_file_operations tw686x_video_fops
= {
1051 .owner
= THIS_MODULE
,
1052 .open
= v4l2_fh_open
,
1053 .unlocked_ioctl
= video_ioctl2
,
1054 .release
= vb2_fop_release
,
1055 .poll
= vb2_fop_poll
,
1056 .read
= vb2_fop_read
,
1057 .mmap
= vb2_fop_mmap
,
1060 static const struct v4l2_ioctl_ops tw686x_video_ioctl_ops
= {
1061 .vidioc_querycap
= tw686x_querycap
,
1062 .vidioc_g_fmt_vid_cap
= tw686x_g_fmt_vid_cap
,
1063 .vidioc_s_fmt_vid_cap
= tw686x_s_fmt_vid_cap
,
1064 .vidioc_enum_fmt_vid_cap
= tw686x_enum_fmt_vid_cap
,
1065 .vidioc_try_fmt_vid_cap
= tw686x_try_fmt_vid_cap
,
1067 .vidioc_querystd
= tw686x_querystd
,
1068 .vidioc_g_std
= tw686x_g_std
,
1069 .vidioc_s_std
= tw686x_s_std
,
1071 .vidioc_g_parm
= tw686x_g_parm
,
1072 .vidioc_s_parm
= tw686x_s_parm
,
1073 .vidioc_enum_framesizes
= tw686x_enum_framesizes
,
1074 .vidioc_enum_frameintervals
= tw686x_enum_frameintervals
,
1076 .vidioc_enum_input
= tw686x_enum_input
,
1077 .vidioc_g_input
= tw686x_g_input
,
1078 .vidioc_s_input
= tw686x_s_input
,
1080 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
1081 .vidioc_querybuf
= vb2_ioctl_querybuf
,
1082 .vidioc_qbuf
= vb2_ioctl_qbuf
,
1083 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
1084 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
1085 .vidioc_streamon
= vb2_ioctl_streamon
,
1086 .vidioc_streamoff
= vb2_ioctl_streamoff
,
1087 .vidioc_prepare_buf
= vb2_ioctl_prepare_buf
,
1089 .vidioc_log_status
= v4l2_ctrl_log_status
,
1090 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1091 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1094 void tw686x_video_irq(struct tw686x_dev
*dev
, unsigned long requests
,
1095 unsigned int pb_status
, unsigned int fifo_status
,
1096 unsigned int *reset_ch
)
1098 struct tw686x_video_channel
*vc
;
1099 unsigned long flags
;
1100 unsigned int ch
, pb
;
1102 for_each_set_bit(ch
, &requests
, max_channels(dev
)) {
1103 vc
= &dev
->video_channels
[ch
];
1106 * This can either be a blue frame (with signal-lost bit set)
1107 * or a good frame (with signal-lost bit clear). If we have just
1108 * got signal, then this channel needs resetting.
1110 if (vc
->no_signal
&& !(fifo_status
& BIT(ch
))) {
1111 v4l2_printk(KERN_DEBUG
, &dev
->v4l2_dev
,
1112 "video%d: signal recovered\n", vc
->num
);
1113 vc
->no_signal
= false;
1114 *reset_ch
|= BIT(ch
);
1118 vc
->no_signal
= !!(fifo_status
& BIT(ch
));
1120 /* Check FIFO errors only if there's signal */
1121 if (!vc
->no_signal
) {
1122 u32 fifo_ov
, fifo_bad
;
1124 fifo_ov
= (fifo_status
>> 24) & BIT(ch
);
1125 fifo_bad
= (fifo_status
>> 16) & BIT(ch
);
1126 if (fifo_ov
|| fifo_bad
) {
1127 /* Mark this channel for reset */
1128 v4l2_printk(KERN_DEBUG
, &dev
->v4l2_dev
,
1129 "video%d: FIFO error\n", vc
->num
);
1130 *reset_ch
|= BIT(ch
);
1136 pb
= !!(pb_status
& BIT(ch
));
1138 /* Mark this channel for reset */
1139 v4l2_printk(KERN_DEBUG
, &dev
->v4l2_dev
,
1140 "video%d: unexpected p-b buffer!\n",
1142 *reset_ch
|= BIT(ch
);
1147 spin_lock_irqsave(&vc
->qlock
, flags
);
1148 tw686x_buf_done(vc
, pb
);
1149 dev
->dma_ops
->buf_refill(vc
, pb
);
1150 spin_unlock_irqrestore(&vc
->qlock
, flags
);
1154 void tw686x_video_free(struct tw686x_dev
*dev
)
1156 unsigned int ch
, pb
;
1158 for (ch
= 0; ch
< max_channels(dev
); ch
++) {
1159 struct tw686x_video_channel
*vc
= &dev
->video_channels
[ch
];
1161 video_unregister_device(vc
->device
);
1163 if (dev
->dma_ops
->free
)
1164 for (pb
= 0; pb
< 2; pb
++)
1165 dev
->dma_ops
->free(vc
, pb
);
1169 int tw686x_video_init(struct tw686x_dev
*dev
)
1171 unsigned int ch
, val
;
1174 if (dev
->dma_mode
== TW686X_DMA_MODE_MEMCPY
)
1175 dev
->dma_ops
= &memcpy_dma_ops
;
1176 else if (dev
->dma_mode
== TW686X_DMA_MODE_CONTIG
)
1177 dev
->dma_ops
= &contig_dma_ops
;
1178 else if (dev
->dma_mode
== TW686X_DMA_MODE_SG
)
1179 dev
->dma_ops
= &sg_dma_ops
;
1183 err
= v4l2_device_register(&dev
->pci_dev
->dev
, &dev
->v4l2_dev
);
1187 if (dev
->dma_ops
->setup
) {
1188 err
= dev
->dma_ops
->setup(dev
);
1193 for (ch
= 0; ch
< max_channels(dev
); ch
++) {
1194 struct tw686x_video_channel
*vc
= &dev
->video_channels
[ch
];
1195 struct video_device
*vdev
;
1197 mutex_init(&vc
->vb_mutex
);
1198 spin_lock_init(&vc
->qlock
);
1199 INIT_LIST_HEAD(&vc
->vidq_queued
);
1204 /* default settings */
1205 err
= tw686x_set_standard(vc
, V4L2_STD_NTSC
);
1209 err
= tw686x_set_format(vc
, formats
[0].fourcc
,
1211 TW686X_VIDEO_HEIGHT(vc
->video_standard
),
1216 tw686x_set_input(vc
, 0);
1217 tw686x_set_framerate(vc
, 30);
1218 reg_write(dev
, VDELAY_LO
[ch
], 0x14);
1219 reg_write(dev
, HACTIVE_LO
[ch
], 0xd0);
1220 reg_write(dev
, VIDEO_SIZE
[ch
], 0);
1222 vc
->vidq
.io_modes
= VB2_READ
| VB2_MMAP
| VB2_DMABUF
;
1223 vc
->vidq
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1224 vc
->vidq
.drv_priv
= vc
;
1225 vc
->vidq
.buf_struct_size
= sizeof(struct tw686x_v4l2_buf
);
1226 vc
->vidq
.ops
= &tw686x_video_qops
;
1227 vc
->vidq
.mem_ops
= dev
->dma_ops
->mem_ops
;
1228 vc
->vidq
.timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
1229 vc
->vidq
.min_buffers_needed
= 2;
1230 vc
->vidq
.lock
= &vc
->vb_mutex
;
1231 vc
->vidq
.gfp_flags
= GFP_DMA32
;
1232 vc
->vidq
.dev
= &dev
->pci_dev
->dev
;
1234 err
= vb2_queue_init(&vc
->vidq
);
1236 v4l2_err(&dev
->v4l2_dev
,
1237 "dma%d: cannot init vb2 queue\n", ch
);
1241 err
= v4l2_ctrl_handler_init(&vc
->ctrl_handler
, 4);
1243 v4l2_err(&dev
->v4l2_dev
,
1244 "dma%d: cannot init ctrl handler\n", ch
);
1247 v4l2_ctrl_new_std(&vc
->ctrl_handler
, &ctrl_ops
,
1248 V4L2_CID_BRIGHTNESS
, -128, 127, 1, 0);
1249 v4l2_ctrl_new_std(&vc
->ctrl_handler
, &ctrl_ops
,
1250 V4L2_CID_CONTRAST
, 0, 255, 1, 100);
1251 v4l2_ctrl_new_std(&vc
->ctrl_handler
, &ctrl_ops
,
1252 V4L2_CID_SATURATION
, 0, 255, 1, 128);
1253 v4l2_ctrl_new_std(&vc
->ctrl_handler
, &ctrl_ops
,
1254 V4L2_CID_HUE
, -128, 127, 1, 0);
1255 err
= vc
->ctrl_handler
.error
;
1259 err
= v4l2_ctrl_handler_setup(&vc
->ctrl_handler
);
1263 vdev
= video_device_alloc();
1265 v4l2_err(&dev
->v4l2_dev
,
1266 "dma%d: unable to allocate device\n", ch
);
1271 snprintf(vdev
->name
, sizeof(vdev
->name
), "%s video", dev
->name
);
1272 vdev
->fops
= &tw686x_video_fops
;
1273 vdev
->ioctl_ops
= &tw686x_video_ioctl_ops
;
1274 vdev
->release
= video_device_release
;
1275 vdev
->v4l2_dev
= &dev
->v4l2_dev
;
1276 vdev
->queue
= &vc
->vidq
;
1277 vdev
->tvnorms
= V4L2_STD_525_60
| V4L2_STD_625_50
;
1279 vdev
->lock
= &vc
->vb_mutex
;
1280 vdev
->ctrl_handler
= &vc
->ctrl_handler
;
1282 video_set_drvdata(vdev
, vc
);
1284 err
= video_register_device(vdev
, VFL_TYPE_GRABBER
, -1);
1287 vc
->num
= vdev
->num
;
1290 val
= TW686X_DEF_PHASE_REF
;
1291 for (ch
= 0; ch
< max_channels(dev
); ch
++)
1292 val
|= dev
->dma_ops
->hw_dma_mode
<< (16 + ch
* 2);
1293 reg_write(dev
, PHASE_REF
, val
);
1295 reg_write(dev
, MISC2
[0], 0xe7);
1296 reg_write(dev
, VCTRL1
[0], 0xcc);
1297 reg_write(dev
, LOOP
[0], 0xa5);
1298 if (max_channels(dev
) > 4) {
1299 reg_write(dev
, VCTRL1
[1], 0xcc);
1300 reg_write(dev
, LOOP
[1], 0xa5);
1301 reg_write(dev
, MISC2
[1], 0xe7);
1306 tw686x_video_free(dev
);