blob: 63ae8a61f6030d20fe2d67aad87f2cd0583d0942 [file] [log] [blame]
Ben Collinsfaa4fd22010-06-17 13:27:26 -04001/*
Hans Verkuildcae5da2013-03-25 05:35:17 -03002 * Copyright (C) 2010-2013 Bluecherry, LLC <http://www.bluecherrydvr.com>
3 *
4 * Original author:
5 * Ben Collins <bcollins@ubuntu.com>
6 *
7 * Additional work by:
8 * John Brooks <john.brooks@bluecherry.net>
Ben Collinsfaa4fd22010-06-17 13:27:26 -04009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Ben Collinsfaa4fd22010-06-17 13:27:26 -040019 */
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/kthread.h>
24#include <linux/freezer.h>
Hans Verkuildcae5da2013-03-25 05:35:17 -030025
Ben Collinsfaa4fd22010-06-17 13:27:26 -040026#include <media/v4l2-ioctl.h>
27#include <media/v4l2-common.h>
Hans Verkuil94160492013-03-12 18:47:03 -030028#include <media/v4l2-event.h>
Hans Verkuila4056c2f2013-03-15 12:11:17 -030029#include <media/videobuf2-dma-contig.h>
Hans Verkuildcae5da2013-03-25 05:35:17 -030030
Krzysztof Hałasaae69b222011-02-11 13:36:27 +010031#include "solo6x10.h"
Hans Verkuildad7fab2013-03-25 05:42:46 -030032#include "solo6x10-tw28.h"
Ben Collinsfaa4fd22010-06-17 13:27:26 -040033
Hans Verkuildcae5da2013-03-25 05:35:17 -030034/* Image size is two fields, SOLO_HW_BPL is one horizontal line in hardware */
35#define SOLO_HW_BPL 2048
Ben Collinsfaa4fd22010-06-17 13:27:26 -040036#define solo_vlines(__solo) (__solo->video_vsize * 2)
37#define solo_image_size(__solo) (solo_bytesperline(__solo) * \
38 solo_vlines(__solo))
39#define solo_bytesperline(__solo) (__solo->video_hsize * 2)
40
Hans Verkuildcae5da2013-03-25 05:35:17 -030041#define MIN_VID_BUFFERS 2
Ben Collinsfaa4fd22010-06-17 13:27:26 -040042
Hans Verkuildcae5da2013-03-25 05:35:17 -030043static inline void erase_on(struct solo_dev *solo_dev)
Ben Collinsfaa4fd22010-06-17 13:27:26 -040044{
45 solo_reg_write(solo_dev, SOLO_VO_DISP_ERASE, SOLO_VO_DISP_ERASE_ON);
46 solo_dev->erasing = 1;
47 solo_dev->frame_blank = 0;
48}
49
Hans Verkuildcae5da2013-03-25 05:35:17 -030050static inline int erase_off(struct solo_dev *solo_dev)
Ben Collinsfaa4fd22010-06-17 13:27:26 -040051{
52 if (!solo_dev->erasing)
53 return 0;
54
55 /* First time around, assert erase off */
56 if (!solo_dev->frame_blank)
57 solo_reg_write(solo_dev, SOLO_VO_DISP_ERASE, 0);
58 /* Keep the erasing flag on for 8 frames minimum */
59 if (solo_dev->frame_blank++ >= 8)
60 solo_dev->erasing = 0;
61
62 return 1;
63}
64
Krzysztof Hałasadecebab2011-02-11 13:38:20 +010065void solo_video_in_isr(struct solo_dev *solo_dev)
Ben Collinsfaa4fd22010-06-17 13:27:26 -040066{
Hans Verkuildcae5da2013-03-25 05:35:17 -030067 wake_up_interruptible_all(&solo_dev->disp_thread_wait);
Ben Collinsfaa4fd22010-06-17 13:27:26 -040068}
69
Krzysztof Hałasadecebab2011-02-11 13:38:20 +010070static void solo_win_setup(struct solo_dev *solo_dev, u8 ch,
Ben Collinsfaa4fd22010-06-17 13:27:26 -040071 int sx, int sy, int ex, int ey, int scale)
72{
73 if (ch >= solo_dev->nr_chans)
74 return;
75
76 /* Here, we just keep window/channel the same */
77 solo_reg_write(solo_dev, SOLO_VI_WIN_CTRL0(ch),
78 SOLO_VI_WIN_CHANNEL(ch) |
79 SOLO_VI_WIN_SX(sx) |
80 SOLO_VI_WIN_EX(ex) |
81 SOLO_VI_WIN_SCALE(scale));
82
Ben Collinsf62de9b2010-11-04 22:51:17 -040083 solo_reg_write(solo_dev, SOLO_VI_WIN_CTRL1(ch),
Ben Collinsfaa4fd22010-06-17 13:27:26 -040084 SOLO_VI_WIN_SY(sy) |
85 SOLO_VI_WIN_EY(ey));
86}
87
Krzysztof Hałasadecebab2011-02-11 13:38:20 +010088static int solo_v4l2_ch_ext_4up(struct solo_dev *solo_dev, u8 idx, int on)
Ben Collinsfaa4fd22010-06-17 13:27:26 -040089{
90 u8 ch = idx * 4;
91
92 if (ch >= solo_dev->nr_chans)
93 return -EINVAL;
94
95 if (!on) {
96 u8 i;
Hans Verkuil1c6f3db2014-07-17 20:40:22 -030097
Ben Collinsfaa4fd22010-06-17 13:27:26 -040098 for (i = ch; i < ch + 4; i++)
99 solo_win_setup(solo_dev, i, solo_dev->video_hsize,
100 solo_vlines(solo_dev),
101 solo_dev->video_hsize,
102 solo_vlines(solo_dev), 0);
103 return 0;
104 }
105
106 /* Row 1 */
107 solo_win_setup(solo_dev, ch, 0, 0, solo_dev->video_hsize / 2,
108 solo_vlines(solo_dev) / 2, 3);
109 solo_win_setup(solo_dev, ch + 1, solo_dev->video_hsize / 2, 0,
110 solo_dev->video_hsize, solo_vlines(solo_dev) / 2, 3);
111 /* Row 2 */
112 solo_win_setup(solo_dev, ch + 2, 0, solo_vlines(solo_dev) / 2,
113 solo_dev->video_hsize / 2, solo_vlines(solo_dev), 3);
114 solo_win_setup(solo_dev, ch + 3, solo_dev->video_hsize / 2,
115 solo_vlines(solo_dev) / 2, solo_dev->video_hsize,
116 solo_vlines(solo_dev), 3);
117
118 return 0;
119}
120
Krzysztof Hałasadecebab2011-02-11 13:38:20 +0100121static int solo_v4l2_ch_ext_16up(struct solo_dev *solo_dev, int on)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400122{
123 int sy, ysize, hsize, i;
124
125 if (!on) {
126 for (i = 0; i < 16; i++)
127 solo_win_setup(solo_dev, i, solo_dev->video_hsize,
128 solo_vlines(solo_dev),
129 solo_dev->video_hsize,
130 solo_vlines(solo_dev), 0);
131 return 0;
132 }
133
134 ysize = solo_vlines(solo_dev) / 4;
135 hsize = solo_dev->video_hsize / 4;
136
137 for (sy = 0, i = 0; i < 4; i++, sy += ysize) {
138 solo_win_setup(solo_dev, i * 4, 0, sy, hsize,
139 sy + ysize, 5);
140 solo_win_setup(solo_dev, (i * 4) + 1, hsize, sy,
141 hsize * 2, sy + ysize, 5);
142 solo_win_setup(solo_dev, (i * 4) + 2, hsize * 2, sy,
143 hsize * 3, sy + ysize, 5);
144 solo_win_setup(solo_dev, (i * 4) + 3, hsize * 3, sy,
145 solo_dev->video_hsize, sy + ysize, 5);
146 }
147
148 return 0;
149}
150
Krzysztof Hałasadecebab2011-02-11 13:38:20 +0100151static int solo_v4l2_ch(struct solo_dev *solo_dev, u8 ch, int on)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400152{
153 u8 ext_ch;
154
155 if (ch < solo_dev->nr_chans) {
156 solo_win_setup(solo_dev, ch, on ? 0 : solo_dev->video_hsize,
157 on ? 0 : solo_vlines(solo_dev),
158 solo_dev->video_hsize, solo_vlines(solo_dev),
159 on ? 1 : 0);
160 return 0;
161 }
162
163 if (ch >= solo_dev->nr_chans + solo_dev->nr_ext)
164 return -EINVAL;
165
166 ext_ch = ch - solo_dev->nr_chans;
167
168 /* 4up's first */
169 if (ext_ch < 4)
170 return solo_v4l2_ch_ext_4up(solo_dev, ext_ch, on);
171
172 /* Remaining case is 16up for 16-port */
173 return solo_v4l2_ch_ext_16up(solo_dev, on);
174}
175
Krzysztof Hałasadecebab2011-02-11 13:38:20 +0100176static int solo_v4l2_set_ch(struct solo_dev *solo_dev, u8 ch)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400177{
178 if (ch >= solo_dev->nr_chans + solo_dev->nr_ext)
179 return -EINVAL;
180
181 erase_on(solo_dev);
182
183 solo_v4l2_ch(solo_dev, solo_dev->cur_disp_ch, 0);
184 solo_v4l2_ch(solo_dev, ch, 1);
185
186 solo_dev->cur_disp_ch = ch;
187
188 return 0;
189}
190
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300191static void solo_fillbuf(struct solo_dev *solo_dev,
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300192 struct vb2_buffer *vb)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400193{
Hans Verkuildcae5da2013-03-25 05:35:17 -0300194 dma_addr_t vbuf;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400195 unsigned int fdma_addr;
Hans Verkuildcae5da2013-03-25 05:35:17 -0300196 int error = -1;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400197 int i;
198
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300199 vbuf = vb2_dma_contig_plane_dma_addr(vb, 0);
facugaichafabbe62010-11-10 10:39:33 -0300200 if (!vbuf)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400201 goto finish_buf;
202
203 if (erase_off(solo_dev)) {
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300204 void *p = vb2_plane_vaddr(vb, 0);
Hans Verkuildcae5da2013-03-25 05:35:17 -0300205 int image_size = solo_image_size(solo_dev);
Hans Verkuil1c6f3db2014-07-17 20:40:22 -0300206
Hans Verkuildcae5da2013-03-25 05:35:17 -0300207 for (i = 0; i < image_size; i += 2) {
208 ((u8 *)p)[i] = 0x80;
209 ((u8 *)p)[i + 1] = 0x00;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400210 }
211 error = 0;
Hans Verkuildcae5da2013-03-25 05:35:17 -0300212 } else {
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300213 fdma_addr = SOLO_DISP_EXT_ADDR + (solo_dev->old_write *
Hans Verkuildcae5da2013-03-25 05:35:17 -0300214 (SOLO_HW_BPL * solo_vlines(solo_dev)));
215
216 error = solo_p2m_dma_t(solo_dev, 0, vbuf, fdma_addr,
217 solo_bytesperline(solo_dev),
218 solo_vlines(solo_dev), SOLO_HW_BPL);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400219 }
220
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400221finish_buf:
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300222 if (!error) {
223 vb2_set_plane_payload(vb, 0,
224 solo_vlines(solo_dev) * solo_bytesperline(solo_dev));
Hans Verkuil15513c12013-03-15 13:16:49 -0300225 vb->v4l2_buf.sequence = solo_dev->sequence++;
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300226 v4l2_get_timestamp(&vb->v4l2_buf.timestamp);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400227 }
228
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300229 vb2_buffer_done(vb, error ? VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400230}
231
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300232static void solo_thread_try(struct solo_dev *solo_dev)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400233{
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300234 struct solo_vb2_buf *vb;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400235
Hans Verkuildcae5da2013-03-25 05:35:17 -0300236 /* Only "break" from this loop if slock is held, otherwise
237 * just return. */
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400238 for (;;) {
Hans Verkuildcae5da2013-03-25 05:35:17 -0300239 unsigned int cur_write;
240
241 cur_write = SOLO_VI_STATUS0_PAGE(
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300242 solo_reg_read(solo_dev, SOLO_VI_STATUS0));
243 if (cur_write == solo_dev->old_write)
Hans Verkuildcae5da2013-03-25 05:35:17 -0300244 return;
245
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300246 spin_lock(&solo_dev->slock);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400247
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300248 if (list_empty(&solo_dev->vidq_active))
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400249 break;
250
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300251 vb = list_first_entry(&solo_dev->vidq_active, struct solo_vb2_buf,
252 list);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400253
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300254 solo_dev->old_write = cur_write;
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300255 list_del(&vb->list);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400256
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300257 spin_unlock(&solo_dev->slock);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400258
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300259 solo_fillbuf(solo_dev, &vb->vb);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400260 }
261
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300262 assert_spin_locked(&solo_dev->slock);
263 spin_unlock(&solo_dev->slock);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400264}
265
266static int solo_thread(void *data)
267{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300268 struct solo_dev *solo_dev = data;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400269 DECLARE_WAITQUEUE(wait, current);
270
271 set_freezable();
272 add_wait_queue(&solo_dev->disp_thread_wait, &wait);
273
274 for (;;) {
275 long timeout = schedule_timeout_interruptible(HZ);
Hans Verkuil1c6f3db2014-07-17 20:40:22 -0300276
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400277 if (timeout == -ERESTARTSYS || kthread_should_stop())
278 break;
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300279 solo_thread_try(solo_dev);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400280 try_to_freeze();
281 }
282
283 remove_wait_queue(&solo_dev->disp_thread_wait, &wait);
284
Ben Collinsf62de9b2010-11-04 22:51:17 -0400285 return 0;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400286}
287
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300288static int solo_start_thread(struct solo_dev *solo_dev)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400289{
Hans Verkuildcae5da2013-03-25 05:35:17 -0300290 int ret = 0;
291
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300292 solo_dev->kthread = kthread_run(solo_thread, solo_dev, SOLO6X10_NAME "_disp");
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400293
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300294 if (IS_ERR(solo_dev->kthread)) {
295 ret = PTR_ERR(solo_dev->kthread);
296 solo_dev->kthread = NULL;
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300297 return ret;
Hans Verkuildcae5da2013-03-25 05:35:17 -0300298 }
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300299 solo_irq_on(solo_dev, SOLO_IRQ_VIDEO_IN);
Hans Verkuildcae5da2013-03-25 05:35:17 -0300300
301 return ret;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400302}
303
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300304static void solo_stop_thread(struct solo_dev *solo_dev)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400305{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300306 if (!solo_dev->kthread)
Hans Verkuildcae5da2013-03-25 05:35:17 -0300307 return;
308
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300309 solo_irq_off(solo_dev, SOLO_IRQ_VIDEO_IN);
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300310 kthread_stop(solo_dev->kthread);
311 solo_dev->kthread = NULL;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400312}
313
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300314static int solo_queue_setup(struct vb2_queue *q, const struct v4l2_format *fmt,
315 unsigned int *num_buffers, unsigned int *num_planes,
316 unsigned int sizes[], void *alloc_ctxs[])
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400317{
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300318 struct solo_dev *solo_dev = vb2_get_drv_priv(q);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400319
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300320 sizes[0] = solo_image_size(solo_dev);
321 alloc_ctxs[0] = solo_dev->alloc_ctx;
322 *num_planes = 1;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400323
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300324 if (*num_buffers < MIN_VID_BUFFERS)
325 *num_buffers = MIN_VID_BUFFERS;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400326
Ben Collinsf62de9b2010-11-04 22:51:17 -0400327 return 0;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400328}
329
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300330static int solo_start_streaming(struct vb2_queue *q, unsigned int count)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400331{
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300332 struct solo_dev *solo_dev = vb2_get_drv_priv(q);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400333
Hans Verkuil15513c12013-03-15 13:16:49 -0300334 solo_dev->sequence = 0;
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300335 return solo_start_thread(solo_dev);
336}
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400337
Hans Verkuile37559b2014-04-17 02:47:21 -0300338static void solo_stop_streaming(struct vb2_queue *q)
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300339{
340 struct solo_dev *solo_dev = vb2_get_drv_priv(q);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400341
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300342 solo_stop_thread(solo_dev);
343 INIT_LIST_HEAD(&solo_dev->vidq_active);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400344}
345
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300346static void solo_buf_queue(struct vb2_buffer *vb)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400347{
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300348 struct vb2_queue *vq = vb->vb2_queue;
349 struct solo_dev *solo_dev = vb2_get_drv_priv(vq);
350 struct solo_vb2_buf *solo_vb =
351 container_of(vb, struct solo_vb2_buf, vb);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400352
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300353 spin_lock(&solo_dev->slock);
354 list_add_tail(&solo_vb->list, &solo_dev->vidq_active);
355 spin_unlock(&solo_dev->slock);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400356 wake_up_interruptible(&solo_dev->disp_thread_wait);
357}
358
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300359static const struct vb2_ops solo_video_qops = {
360 .queue_setup = solo_queue_setup,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400361 .buf_queue = solo_buf_queue,
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300362 .start_streaming = solo_start_streaming,
363 .stop_streaming = solo_stop_streaming,
364 .wait_prepare = vb2_ops_wait_prepare,
365 .wait_finish = vb2_ops_wait_finish,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400366};
367
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400368static int solo_querycap(struct file *file, void *priv,
369 struct v4l2_capability *cap)
370{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300371 struct solo_dev *solo_dev = video_drvdata(file);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400372
Krzysztof Hałasadecebab2011-02-11 13:38:20 +0100373 strcpy(cap->driver, SOLO6X10_NAME);
374 strcpy(cap->card, "Softlogic 6x10");
Hans Verkuil20c5f492013-03-12 18:03:20 -0300375 snprintf(cap->bus_info, sizeof(cap->bus_info), "PCI:%s",
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400376 pci_name(solo_dev->pdev));
Hans Verkuil20c5f492013-03-12 18:03:20 -0300377 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE |
378 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
379 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400380 return 0;
381}
382
Krzysztof Hałasadecebab2011-02-11 13:38:20 +0100383static int solo_enum_ext_input(struct solo_dev *solo_dev,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400384 struct v4l2_input *input)
385{
Hans Verkuildcae5da2013-03-25 05:35:17 -0300386 static const char * const dispnames_1[] = { "4UP" };
387 static const char * const dispnames_2[] = { "4UP-1", "4UP-2" };
388 static const char * const dispnames_5[] = {
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400389 "4UP-1", "4UP-2", "4UP-3", "4UP-4", "16UP"
390 };
Hans Verkuildcae5da2013-03-25 05:35:17 -0300391 const char * const *dispnames;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400392
393 if (input->index >= (solo_dev->nr_chans + solo_dev->nr_ext))
394 return -EINVAL;
395
396 if (solo_dev->nr_ext == 5)
397 dispnames = dispnames_5;
398 else if (solo_dev->nr_ext == 2)
399 dispnames = dispnames_2;
400 else
401 dispnames = dispnames_1;
402
403 snprintf(input->name, sizeof(input->name), "Multi %s",
404 dispnames[input->index - solo_dev->nr_chans]);
405
406 return 0;
407}
408
409static int solo_enum_input(struct file *file, void *priv,
410 struct v4l2_input *input)
411{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300412 struct solo_dev *solo_dev = video_drvdata(file);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400413
414 if (input->index >= solo_dev->nr_chans) {
415 int ret = solo_enum_ext_input(solo_dev, input);
Hans Verkuil1c6f3db2014-07-17 20:40:22 -0300416
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400417 if (ret < 0)
418 return ret;
419 } else {
420 snprintf(input->name, sizeof(input->name), "Camera %d",
421 input->index + 1);
422
423 /* We can only check this for normal inputs */
424 if (!tw28_get_video_status(solo_dev, input->index))
425 input->status = V4L2_IN_ST_NO_SIGNAL;
426 }
427
428 input->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300429 input->std = solo_dev->vfd->tvnorms;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400430 return 0;
431}
432
433static int solo_set_input(struct file *file, void *priv, unsigned int index)
434{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300435 struct solo_dev *solo_dev = video_drvdata(file);
436 int ret = solo_v4l2_set_ch(solo_dev, index);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400437
Hans Verkuildcae5da2013-03-25 05:35:17 -0300438 if (!ret) {
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300439 while (erase_off(solo_dev))
Hans Verkuildcae5da2013-03-25 05:35:17 -0300440 /* Do nothing */;
441 }
442
443 return ret;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400444}
445
446static int solo_get_input(struct file *file, void *priv, unsigned int *index)
447{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300448 struct solo_dev *solo_dev = video_drvdata(file);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400449
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300450 *index = solo_dev->cur_disp_ch;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400451
452 return 0;
453}
454
455static int solo_enum_fmt_cap(struct file *file, void *priv,
456 struct v4l2_fmtdesc *f)
457{
458 if (f->index)
459 return -EINVAL;
460
461 f->pixelformat = V4L2_PIX_FMT_UYVY;
462 strlcpy(f->description, "UYUV 4:2:2 Packed", sizeof(f->description));
463
464 return 0;
465}
466
467static int solo_try_fmt_cap(struct file *file, void *priv,
468 struct v4l2_format *f)
469{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300470 struct solo_dev *solo_dev = video_drvdata(file);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400471 struct v4l2_pix_format *pix = &f->fmt.pix;
472 int image_size = solo_image_size(solo_dev);
473
Hans Verkuil016afda2013-03-12 18:43:21 -0300474 if (pix->pixelformat != V4L2_PIX_FMT_UYVY)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400475 return -EINVAL;
476
Hans Verkuil016afda2013-03-12 18:43:21 -0300477 pix->width = solo_dev->video_hsize;
478 pix->height = solo_vlines(solo_dev);
479 pix->sizeimage = image_size;
480 pix->field = V4L2_FIELD_INTERLACED;
481 pix->pixelformat = V4L2_PIX_FMT_UYVY;
482 pix->colorspace = V4L2_COLORSPACE_SMPTE170M;
483 pix->priv = 0;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400484 return 0;
485}
486
487static int solo_set_fmt_cap(struct file *file, void *priv,
488 struct v4l2_format *f)
489{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300490 struct solo_dev *solo_dev = video_drvdata(file);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400491
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300492 if (vb2_is_busy(&solo_dev->vidq))
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400493 return -EBUSY;
494
495 /* For right now, if it doesn't match our running config,
496 * then fail */
497 return solo_try_fmt_cap(file, priv, f);
498}
499
500static int solo_get_fmt_cap(struct file *file, void *priv,
501 struct v4l2_format *f)
502{
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300503 struct solo_dev *solo_dev = video_drvdata(file);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400504 struct v4l2_pix_format *pix = &f->fmt.pix;
505
506 pix->width = solo_dev->video_hsize;
507 pix->height = solo_vlines(solo_dev);
508 pix->pixelformat = V4L2_PIX_FMT_UYVY;
Hans Verkuil016afda2013-03-12 18:43:21 -0300509 pix->field = V4L2_FIELD_INTERLACED;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400510 pix->sizeimage = solo_image_size(solo_dev);
511 pix->colorspace = V4L2_COLORSPACE_SMPTE170M;
512 pix->bytesperline = solo_bytesperline(solo_dev);
Hans Verkuil016afda2013-03-12 18:43:21 -0300513 pix->priv = 0;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400514
515 return 0;
516}
517
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300518static int solo_g_std(struct file *file, void *priv, v4l2_std_id *i)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400519{
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300520 struct solo_dev *solo_dev = video_drvdata(file);
521
522 if (solo_dev->video_type == SOLO_VO_FMT_TYPE_NTSC)
523 *i = V4L2_STD_NTSC_M;
524 else
525 *i = V4L2_STD_PAL;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400526 return 0;
527}
528
Hans Verkuil429df502014-01-13 06:58:12 -0300529int solo_set_video_type(struct solo_dev *solo_dev, bool is_50hz)
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300530{
531 int i;
532
533 /* Make sure all video nodes are idle */
534 if (vb2_is_busy(&solo_dev->vidq))
535 return -EBUSY;
536 for (i = 0; i < solo_dev->nr_chans; i++)
537 if (vb2_is_busy(&solo_dev->v4l2_enc[i]->vidq))
538 return -EBUSY;
Hans Verkuil429df502014-01-13 06:58:12 -0300539 solo_dev->video_type = is_50hz ? SOLO_VO_FMT_TYPE_PAL :
540 SOLO_VO_FMT_TYPE_NTSC;
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300541 /* Reconfigure for the new standard */
542 solo_disp_init(solo_dev);
543 solo_enc_init(solo_dev);
544 solo_tw28_init(solo_dev);
545 for (i = 0; i < solo_dev->nr_chans; i++)
546 solo_update_mode(solo_dev->v4l2_enc[i]);
547 return solo_v4l2_set_ch(solo_dev, solo_dev->cur_disp_ch);
548}
549
550static int solo_s_std(struct file *file, void *priv, v4l2_std_id std)
551{
552 struct solo_dev *solo_dev = video_drvdata(file);
553
Hans Verkuil429df502014-01-13 06:58:12 -0300554 return solo_set_video_type(solo_dev, std & V4L2_STD_625_50);
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300555}
556
Hans Verkuilc813bd32013-03-25 05:38:14 -0300557static int solo_s_ctrl(struct v4l2_ctrl *ctrl)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400558{
Hans Verkuilc813bd32013-03-25 05:38:14 -0300559 struct solo_dev *solo_dev =
560 container_of(ctrl->handler, struct solo_dev, disp_hdl);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400561
562 switch (ctrl->id) {
563 case V4L2_CID_MOTION_TRACE:
Hans Verkuilc813bd32013-03-25 05:38:14 -0300564 if (ctrl->val) {
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400565 solo_reg_write(solo_dev, SOLO_VI_MOTION_BORDER,
566 SOLO_VI_MOTION_Y_ADD |
567 SOLO_VI_MOTION_Y_VALUE(0x20) |
568 SOLO_VI_MOTION_CB_VALUE(0x10) |
569 SOLO_VI_MOTION_CR_VALUE(0x10));
570 solo_reg_write(solo_dev, SOLO_VI_MOTION_BAR,
571 SOLO_VI_MOTION_CR_ADD |
572 SOLO_VI_MOTION_Y_VALUE(0x10) |
573 SOLO_VI_MOTION_CB_VALUE(0x80) |
574 SOLO_VI_MOTION_CR_VALUE(0x10));
575 } else {
576 solo_reg_write(solo_dev, SOLO_VI_MOTION_BORDER, 0);
577 solo_reg_write(solo_dev, SOLO_VI_MOTION_BAR, 0);
578 }
579 return 0;
Hans Verkuilc813bd32013-03-25 05:38:14 -0300580 default:
581 break;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400582 }
583 return -EINVAL;
584}
585
586static const struct v4l2_file_operations solo_v4l2_fops = {
587 .owner = THIS_MODULE,
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300588 .open = v4l2_fh_open,
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300589 .release = vb2_fop_release,
590 .read = vb2_fop_read,
591 .poll = vb2_fop_poll,
592 .mmap = vb2_fop_mmap,
593 .unlocked_ioctl = video_ioctl2,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400594};
595
596static const struct v4l2_ioctl_ops solo_v4l2_ioctl_ops = {
597 .vidioc_querycap = solo_querycap,
598 .vidioc_s_std = solo_s_std,
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300599 .vidioc_g_std = solo_g_std,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400600 /* Input callbacks */
601 .vidioc_enum_input = solo_enum_input,
602 .vidioc_s_input = solo_set_input,
603 .vidioc_g_input = solo_get_input,
604 /* Video capture format callbacks */
605 .vidioc_enum_fmt_vid_cap = solo_enum_fmt_cap,
606 .vidioc_try_fmt_vid_cap = solo_try_fmt_cap,
607 .vidioc_s_fmt_vid_cap = solo_set_fmt_cap,
608 .vidioc_g_fmt_vid_cap = solo_get_fmt_cap,
609 /* Streaming I/O */
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300610 .vidioc_reqbufs = vb2_ioctl_reqbufs,
611 .vidioc_querybuf = vb2_ioctl_querybuf,
612 .vidioc_qbuf = vb2_ioctl_qbuf,
613 .vidioc_dqbuf = vb2_ioctl_dqbuf,
614 .vidioc_streamon = vb2_ioctl_streamon,
615 .vidioc_streamoff = vb2_ioctl_streamoff,
Hans Verkuil94160492013-03-12 18:47:03 -0300616 /* Logging and events */
617 .vidioc_log_status = v4l2_ctrl_log_status,
618 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
619 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400620};
621
622static struct video_device solo_v4l2_template = {
Krzysztof Hałasadecebab2011-02-11 13:38:20 +0100623 .name = SOLO6X10_NAME,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400624 .fops = &solo_v4l2_fops,
625 .ioctl_ops = &solo_v4l2_ioctl_ops,
626 .minor = -1,
627 .release = video_device_release,
Hans Verkuil4c211ed2013-03-15 12:53:17 -0300628 .tvnorms = V4L2_STD_NTSC_M | V4L2_STD_PAL,
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400629};
630
Hans Verkuilc813bd32013-03-25 05:38:14 -0300631static const struct v4l2_ctrl_ops solo_ctrl_ops = {
632 .s_ctrl = solo_s_ctrl,
633};
634
635static const struct v4l2_ctrl_config solo_motion_trace_ctrl = {
636 .ops = &solo_ctrl_ops,
637 .id = V4L2_CID_MOTION_TRACE,
638 .name = "Motion Detection Trace",
639 .type = V4L2_CTRL_TYPE_BOOLEAN,
640 .max = 1,
641 .step = 1,
642};
643
Hans Verkuildcae5da2013-03-25 05:35:17 -0300644int solo_v4l2_init(struct solo_dev *solo_dev, unsigned nr)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400645{
646 int ret;
647 int i;
648
649 init_waitqueue_head(&solo_dev->disp_thread_wait);
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300650 spin_lock_init(&solo_dev->slock);
651 mutex_init(&solo_dev->lock);
652 INIT_LIST_HEAD(&solo_dev->vidq_active);
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400653
654 solo_dev->vfd = video_device_alloc();
655 if (!solo_dev->vfd)
656 return -ENOMEM;
657
658 *solo_dev->vfd = solo_v4l2_template;
Hans Verkuild9ebd622013-03-25 05:36:44 -0300659 solo_dev->vfd->v4l2_dev = &solo_dev->v4l2_dev;
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300660 solo_dev->vfd->queue = &solo_dev->vidq;
661 solo_dev->vfd->lock = &solo_dev->lock;
Hans Verkuilc813bd32013-03-25 05:38:14 -0300662 v4l2_ctrl_handler_init(&solo_dev->disp_hdl, 1);
663 v4l2_ctrl_new_custom(&solo_dev->disp_hdl, &solo_motion_trace_ctrl, NULL);
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300664 if (solo_dev->disp_hdl.error) {
665 ret = solo_dev->disp_hdl.error;
666 goto fail;
667 }
Hans Verkuilc813bd32013-03-25 05:38:14 -0300668 solo_dev->vfd->ctrl_handler = &solo_dev->disp_hdl;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400669
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400670 video_set_drvdata(solo_dev->vfd, solo_dev);
671
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300672 solo_dev->vidq.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
673 solo_dev->vidq.io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
674 solo_dev->vidq.ops = &solo_video_qops;
675 solo_dev->vidq.mem_ops = &vb2_dma_contig_memops;
676 solo_dev->vidq.drv_priv = solo_dev;
Sakari Ailusade48682014-02-25 19:12:19 -0300677 solo_dev->vidq.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300678 solo_dev->vidq.gfp_flags = __GFP_DMA32;
679 solo_dev->vidq.buf_struct_size = sizeof(struct solo_vb2_buf);
680 solo_dev->vidq.lock = &solo_dev->lock;
681 ret = vb2_queue_init(&solo_dev->vidq);
682 if (ret < 0)
683 goto fail;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400684
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300685 solo_dev->alloc_ctx = vb2_dma_contig_init_ctx(&solo_dev->pdev->dev);
686 if (IS_ERR(solo_dev->alloc_ctx)) {
687 dev_err(&solo_dev->pdev->dev, "Can't allocate buffer context");
688 return PTR_ERR(solo_dev->alloc_ctx);
689 }
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400690
691 /* Cycle all the channels and clear */
692 for (i = 0; i < solo_dev->nr_chans; i++) {
693 solo_v4l2_set_ch(solo_dev, i);
694 while (erase_off(solo_dev))
Hans Verkuildcae5da2013-03-25 05:35:17 -0300695 /* Do nothing */;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400696 }
697
698 /* Set the default display channel */
699 solo_v4l2_set_ch(solo_dev, 0);
700 while (erase_off(solo_dev))
Hans Verkuildcae5da2013-03-25 05:35:17 -0300701 /* Do nothing */;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400702
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300703 ret = video_register_device(solo_dev->vfd, VFL_TYPE_GRABBER, nr);
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300704 if (ret < 0)
705 goto fail;
Hans Verkuil6a2e65d2013-03-15 11:56:46 -0300706
707 snprintf(solo_dev->vfd->name, sizeof(solo_dev->vfd->name), "%s (%i)",
708 SOLO6X10_NAME, solo_dev->vfd->num);
709
710 dev_info(&solo_dev->pdev->dev, "Display as /dev/video%d with "
711 "%d inputs (%d extended)\n", solo_dev->vfd->num,
712 solo_dev->nr_chans, solo_dev->nr_ext);
713
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400714 return 0;
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300715
716fail:
717 video_device_release(solo_dev->vfd);
718 vb2_dma_contig_cleanup_ctx(solo_dev->alloc_ctx);
719 v4l2_ctrl_handler_free(&solo_dev->disp_hdl);
720 solo_dev->vfd = NULL;
721 return ret;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400722}
723
Krzysztof Hałasadecebab2011-02-11 13:38:20 +0100724void solo_v4l2_exit(struct solo_dev *solo_dev)
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400725{
Hans Verkuildcae5da2013-03-25 05:35:17 -0300726 if (solo_dev->vfd == NULL)
727 return;
728
729 video_unregister_device(solo_dev->vfd);
Hans Verkuila4056c2f2013-03-15 12:11:17 -0300730 vb2_dma_contig_cleanup_ctx(solo_dev->alloc_ctx);
Hans Verkuilc813bd32013-03-25 05:38:14 -0300731 v4l2_ctrl_handler_free(&solo_dev->disp_hdl);
Hans Verkuildcae5da2013-03-25 05:35:17 -0300732 solo_dev->vfd = NULL;
Ben Collinsfaa4fd22010-06-17 13:27:26 -0400733}