blob: 9f8adda6f26196dd8329bc4d2366cbfbffba1e70 [file] [log] [blame]
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001/*
2 * cx18 init/start/stop/exit stream functions
3 *
4 * Derived from ivtv-streams.c
5 *
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
Andy Walls1ed9dcc2008-11-22 01:37:34 -03007 * Copyright (C) 2008 Andy Walls <awalls@radix.net>
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 * 02111-1307 USA
23 */
24
25#include "cx18-driver.h"
Andy Wallsb1526422008-08-30 16:03:44 -030026#include "cx18-io.h"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030027#include "cx18-fileops.h"
28#include "cx18-mailbox.h"
29#include "cx18-i2c.h"
30#include "cx18-queue.h"
31#include "cx18-ioctl.h"
32#include "cx18-streams.h"
33#include "cx18-cards.h"
34#include "cx18-scb.h"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030035#include "cx18-dvb.h"
36
37#define CX18_DSP0_INTERRUPT_MASK 0xd0004C
38
Hans Verkuilbec43662008-12-30 06:58:20 -030039static struct v4l2_file_operations cx18_v4l2_enc_fops = {
Hans Verkuildaf20d92008-05-12 11:21:58 -030040 .owner = THIS_MODULE,
41 .read = cx18_v4l2_read,
42 .open = cx18_v4l2_open,
Andy Walls3b6fe582008-06-21 08:36:31 -030043 /* FIXME change to video_ioctl2 if serialization lock can be removed */
Hans Verkuildaf20d92008-05-12 11:21:58 -030044 .ioctl = cx18_v4l2_ioctl,
Hans Verkuildaf20d92008-05-12 11:21:58 -030045 .release = cx18_v4l2_close,
46 .poll = cx18_v4l2_enc_poll,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030047};
48
49/* offset from 0 to register ts v4l2 minors on */
50#define CX18_V4L2_ENC_TS_OFFSET 16
51/* offset from 0 to register pcm v4l2 minors on */
52#define CX18_V4L2_ENC_PCM_OFFSET 24
53/* offset from 0 to register yuv v4l2 minors on */
54#define CX18_V4L2_ENC_YUV_OFFSET 32
55
56static struct {
57 const char *name;
58 int vfl_type;
Hans Verkuildd896012008-10-04 08:36:54 -030059 int num_offset;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030060 int dma;
61 enum v4l2_buf_type buf_type;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030062} cx18_stream_info[] = {
63 { /* CX18_ENC_STREAM_TYPE_MPG */
64 "encoder MPEG",
65 VFL_TYPE_GRABBER, 0,
66 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030067 },
68 { /* CX18_ENC_STREAM_TYPE_TS */
69 "TS",
70 VFL_TYPE_GRABBER, -1,
71 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030072 },
73 { /* CX18_ENC_STREAM_TYPE_YUV */
74 "encoder YUV",
75 VFL_TYPE_GRABBER, CX18_V4L2_ENC_YUV_OFFSET,
76 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030077 },
78 { /* CX18_ENC_STREAM_TYPE_VBI */
79 "encoder VBI",
80 VFL_TYPE_VBI, 0,
81 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VBI_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030082 },
83 { /* CX18_ENC_STREAM_TYPE_PCM */
84 "encoder PCM audio",
85 VFL_TYPE_GRABBER, CX18_V4L2_ENC_PCM_OFFSET,
86 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_PRIVATE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030087 },
88 { /* CX18_ENC_STREAM_TYPE_IDX */
89 "encoder IDX",
90 VFL_TYPE_GRABBER, -1,
91 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030092 },
93 { /* CX18_ENC_STREAM_TYPE_RAD */
94 "encoder radio",
95 VFL_TYPE_RADIO, 0,
96 PCI_DMA_NONE, V4L2_BUF_TYPE_PRIVATE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030097 },
98};
99
100static void cx18_stream_init(struct cx18 *cx, int type)
101{
102 struct cx18_stream *s = &cx->streams[type];
Andy Walls3d059132009-01-10 21:54:39 -0300103 struct video_device *video_dev = s->video_dev;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300104
Andy Walls3d059132009-01-10 21:54:39 -0300105 /* we need to keep video_dev, so restore it afterwards */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300106 memset(s, 0, sizeof(*s));
Andy Walls3d059132009-01-10 21:54:39 -0300107 s->video_dev = video_dev;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300108
109 /* initialize cx18_stream fields */
110 s->cx = cx;
111 s->type = type;
112 s->name = cx18_stream_info[type].name;
Andy Wallsd3c5e702008-08-23 16:42:29 -0300113 s->handle = CX18_INVALID_TASK_HANDLE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300114
115 s->dma = cx18_stream_info[type].dma;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300116 s->buffers = cx->stream_buffers[type];
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300117 s->buf_size = cx->stream_buf_size[type];
Andy Walls52fcb3e2009-11-08 23:45:24 -0300118 INIT_LIST_HEAD(&s->buf_pool);
119 s->bufs_per_mdl = 1;
120 s->mdl_size = s->buf_size * s->bufs_per_mdl;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300121
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300122 init_waitqueue_head(&s->waitq);
123 s->id = -1;
Andy Walls40c55202009-04-13 23:08:00 -0300124 spin_lock_init(&s->q_free.lock);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300125 cx18_queue_init(&s->q_free);
Andy Walls40c55202009-04-13 23:08:00 -0300126 spin_lock_init(&s->q_busy.lock);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300127 cx18_queue_init(&s->q_busy);
Andy Walls40c55202009-04-13 23:08:00 -0300128 spin_lock_init(&s->q_full.lock);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300129 cx18_queue_init(&s->q_full);
Andy Walls52fcb3e2009-11-08 23:45:24 -0300130 spin_lock_init(&s->q_idle.lock);
131 cx18_queue_init(&s->q_idle);
Andy Walls21a278b2009-04-15 20:45:10 -0300132
133 INIT_WORK(&s->out_work_order, cx18_out_work_handler);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300134}
135
136static int cx18_prep_dev(struct cx18 *cx, int type)
137{
138 struct cx18_stream *s = &cx->streams[type];
139 u32 cap = cx->v4l2_cap;
Hans Verkuildd896012008-10-04 08:36:54 -0300140 int num_offset = cx18_stream_info[type].num_offset;
Andy Walls5811cf92009-02-14 17:08:37 -0300141 int num = cx->instance + cx18_first_minor + num_offset;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300142
Andy Walls3d059132009-01-10 21:54:39 -0300143 /* These four fields are always initialized. If video_dev == NULL, then
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300144 this stream is not in use. In that case no other fields but these
145 four can be used. */
Andy Walls3d059132009-01-10 21:54:39 -0300146 s->video_dev = NULL;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300147 s->cx = cx;
148 s->type = type;
149 s->name = cx18_stream_info[type].name;
150
151 /* Check whether the radio is supported */
152 if (type == CX18_ENC_STREAM_TYPE_RAD && !(cap & V4L2_CAP_RADIO))
153 return 0;
154
155 /* Check whether VBI is supported */
156 if (type == CX18_ENC_STREAM_TYPE_VBI &&
157 !(cap & (V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE)))
158 return 0;
159
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300160 /* User explicitly selected 0 buffers for these streams, so don't
161 create them. */
162 if (cx18_stream_info[type].dma != PCI_DMA_NONE &&
Andy Walls6ecd86d2008-12-07 23:30:17 -0300163 cx->stream_buffers[type] == 0) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300164 CX18_INFO("Disabled %s device\n", cx18_stream_info[type].name);
165 return 0;
166 }
167
168 cx18_stream_init(cx, type);
169
Hans Verkuildd896012008-10-04 08:36:54 -0300170 if (num_offset == -1)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300171 return 0;
172
173 /* allocate and initialize the v4l2 video device structure */
Andy Walls3d059132009-01-10 21:54:39 -0300174 s->video_dev = video_device_alloc();
175 if (s->video_dev == NULL) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300176 CX18_ERR("Couldn't allocate v4l2 video_device for %s\n",
177 s->name);
178 return -ENOMEM;
179 }
180
Andy Walls5811cf92009-02-14 17:08:37 -0300181 snprintf(s->video_dev->name, sizeof(s->video_dev->name), "%s %s",
182 cx->v4l2_dev.name, s->name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300183
Andy Walls3d059132009-01-10 21:54:39 -0300184 s->video_dev->num = num;
Andy Walls5811cf92009-02-14 17:08:37 -0300185 s->video_dev->v4l2_dev = &cx->v4l2_dev;
Andy Walls3d059132009-01-10 21:54:39 -0300186 s->video_dev->fops = &cx18_v4l2_enc_fops;
187 s->video_dev->release = video_device_release;
188 s->video_dev->tvnorms = V4L2_STD_ALL;
189 cx18_set_funcs(s->video_dev);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300190 return 0;
191}
192
193/* Initialize v4l2 variables and register v4l2 devices */
194int cx18_streams_setup(struct cx18 *cx)
195{
Andy Walls9b4a7c82008-10-18 10:20:25 -0300196 int type, ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300197
198 /* Setup V4L2 Devices */
199 for (type = 0; type < CX18_MAX_STREAMS; type++) {
200 /* Prepare device */
Andy Walls9b4a7c82008-10-18 10:20:25 -0300201 ret = cx18_prep_dev(cx, type);
202 if (ret < 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300203 break;
204
205 /* Allocate Stream */
Andy Walls9b4a7c82008-10-18 10:20:25 -0300206 ret = cx18_stream_alloc(&cx->streams[type]);
207 if (ret < 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300208 break;
209 }
210 if (type == CX18_MAX_STREAMS)
211 return 0;
212
213 /* One or more streams could not be initialized. Clean 'em all up. */
Hans Verkuil3f983872008-05-01 10:31:12 -0300214 cx18_streams_cleanup(cx, 0);
Andy Walls9b4a7c82008-10-18 10:20:25 -0300215 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300216}
217
218static int cx18_reg_dev(struct cx18 *cx, int type)
219{
220 struct cx18_stream *s = &cx->streams[type];
221 int vfl_type = cx18_stream_info[type].vfl_type;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300222 int num, ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300223
224 /* TODO: Shouldn't this be a VFL_TYPE_TRANSPORT or something?
225 * We need a VFL_TYPE_TS defined.
226 */
227 if (strcmp("TS", s->name) == 0) {
228 /* just return if no DVB is supported */
229 if ((cx->card->hw_all & CX18_HW_DVB) == 0)
230 return 0;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300231 ret = cx18_dvb_register(s);
232 if (ret < 0) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300233 CX18_ERR("DVB failed to register\n");
Andy Walls9b4a7c82008-10-18 10:20:25 -0300234 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300235 }
236 }
237
Andy Walls3d059132009-01-10 21:54:39 -0300238 if (s->video_dev == NULL)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300239 return 0;
240
Andy Walls3d059132009-01-10 21:54:39 -0300241 num = s->video_dev->num;
Hans Verkuildd896012008-10-04 08:36:54 -0300242 /* card number + user defined offset + device offset */
243 if (type != CX18_ENC_STREAM_TYPE_MPG) {
244 struct cx18_stream *s_mpg = &cx->streams[CX18_ENC_STREAM_TYPE_MPG];
245
Andy Walls3d059132009-01-10 21:54:39 -0300246 if (s_mpg->video_dev)
247 num = s_mpg->video_dev->num
248 + cx18_stream_info[type].num_offset;
Hans Verkuildd896012008-10-04 08:36:54 -0300249 }
Andy Walls5811cf92009-02-14 17:08:37 -0300250 video_set_drvdata(s->video_dev, s);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300251
252 /* Register device. First try the desired minor, then any free one. */
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300253 ret = video_register_device_no_warn(s->video_dev, vfl_type, num);
Andy Walls9b4a7c82008-10-18 10:20:25 -0300254 if (ret < 0) {
Hans Verkuil581644d2009-06-19 11:54:00 -0300255 CX18_ERR("Couldn't register v4l2 device for %s (device node number %d)\n",
Hans Verkuildd896012008-10-04 08:36:54 -0300256 s->name, num);
Andy Walls3d059132009-01-10 21:54:39 -0300257 video_device_release(s->video_dev);
258 s->video_dev = NULL;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300259 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300260 }
Andy Walls3d059132009-01-10 21:54:39 -0300261 num = s->video_dev->num;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300262
263 switch (vfl_type) {
264 case VFL_TYPE_GRABBER:
Andy Walls6ecd86d2008-12-07 23:30:17 -0300265 CX18_INFO("Registered device video%d for %s (%d x %d kB)\n",
266 num, s->name, cx->stream_buffers[type],
267 cx->stream_buf_size[type]/1024);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300268 break;
269
270 case VFL_TYPE_RADIO:
271 CX18_INFO("Registered device radio%d for %s\n",
Hans Verkuildd896012008-10-04 08:36:54 -0300272 num, s->name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300273 break;
274
275 case VFL_TYPE_VBI:
Andy Walls6ecd86d2008-12-07 23:30:17 -0300276 if (cx->stream_buffers[type])
277 CX18_INFO("Registered device vbi%d for %s "
278 "(%d x %d bytes)\n",
279 num, s->name, cx->stream_buffers[type],
280 cx->stream_buf_size[type]);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300281 else
282 CX18_INFO("Registered device vbi%d for %s\n",
Hans Verkuildd896012008-10-04 08:36:54 -0300283 num, s->name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300284 break;
285 }
286
287 return 0;
288}
289
290/* Register v4l2 devices */
291int cx18_streams_register(struct cx18 *cx)
292{
293 int type;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300294 int err;
295 int ret = 0;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300296
297 /* Register V4L2 devices */
Andy Walls9b4a7c82008-10-18 10:20:25 -0300298 for (type = 0; type < CX18_MAX_STREAMS; type++) {
299 err = cx18_reg_dev(cx, type);
300 if (err && ret == 0)
301 ret = err;
302 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300303
Andy Walls9b4a7c82008-10-18 10:20:25 -0300304 if (ret == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300305 return 0;
306
307 /* One or more streams could not be initialized. Clean 'em all up. */
Hans Verkuil3f983872008-05-01 10:31:12 -0300308 cx18_streams_cleanup(cx, 1);
Andy Walls9b4a7c82008-10-18 10:20:25 -0300309 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300310}
311
312/* Unregister v4l2 devices */
Hans Verkuil3f983872008-05-01 10:31:12 -0300313void cx18_streams_cleanup(struct cx18 *cx, int unregister)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300314{
315 struct video_device *vdev;
316 int type;
317
318 /* Teardown all streams */
319 for (type = 0; type < CX18_MAX_STREAMS; type++) {
Hans Verkuilfac36392008-07-18 10:07:10 -0300320 if (cx->streams[type].dvb.enabled) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300321 cx18_dvb_unregister(&cx->streams[type]);
Hans Verkuilfac36392008-07-18 10:07:10 -0300322 cx->streams[type].dvb.enabled = false;
323 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300324
Andy Walls3d059132009-01-10 21:54:39 -0300325 vdev = cx->streams[type].video_dev;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300326
Andy Walls3d059132009-01-10 21:54:39 -0300327 cx->streams[type].video_dev = NULL;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300328 if (vdev == NULL)
329 continue;
330
331 cx18_stream_free(&cx->streams[type]);
332
Hans Verkuil3f983872008-05-01 10:31:12 -0300333 /* Unregister or release device */
334 if (unregister)
335 video_unregister_device(vdev);
336 else
337 video_device_release(vdev);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300338 }
339}
340
341static void cx18_vbi_setup(struct cx18_stream *s)
342{
343 struct cx18 *cx = s->cx;
Andy Wallsdd073432008-12-12 16:24:04 -0300344 int raw = cx18_raw_vbi(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300345 u32 data[CX2341X_MBOX_MAX_DATA];
346 int lines;
347
348 if (cx->is_60hz) {
349 cx->vbi.count = 12;
350 cx->vbi.start[0] = 10;
351 cx->vbi.start[1] = 273;
352 } else { /* PAL/SECAM */
353 cx->vbi.count = 18;
354 cx->vbi.start[0] = 6;
355 cx->vbi.start[1] = 318;
356 }
357
358 /* setup VBI registers */
Andy Wallsfa3e7032009-02-16 02:23:25 -0300359 v4l2_subdev_call(cx->sd_av, video, s_fmt, &cx->vbi.in);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300360
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300361 /*
362 * Send the CX18_CPU_SET_RAW_VBI_PARAM API command to setup Encoder Raw
363 * VBI when the first analog capture channel starts, as once it starts
364 * (e.g. MPEG), we can't effect any change in the Encoder Raw VBI setup
365 * (i.e. for the VBI capture channels). We also send it for each
366 * analog capture channel anyway just to make sure we get the proper
367 * behavior
368 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300369 if (raw) {
370 lines = cx->vbi.count * 2;
371 } else {
Andy Walls812b1f92009-02-08 22:40:04 -0300372 /*
373 * For 525/60 systems, according to the VIP 2 & BT.656 std:
374 * The EAV RP code's Field bit toggles on line 4, a few lines
375 * after the Vertcal Blank bit has already toggled.
376 * Tell the encoder to capture 21-4+1=18 lines per field,
377 * since we want lines 10 through 21.
378 *
Andy Walls5ab74052009-05-10 22:14:29 -0300379 * For 625/50 systems, according to the VIP 2 & BT.656 std:
380 * The EAV RP code's Field bit toggles on line 1, a few lines
381 * after the Vertcal Blank bit has already toggled.
Andy Walls929a3ad2009-05-16 21:06:57 -0300382 * (We've actually set the digitizer so that the Field bit
383 * toggles on line 2.) Tell the encoder to capture 23-2+1=22
384 * lines per field, since we want lines 6 through 23.
Andy Walls812b1f92009-02-08 22:40:04 -0300385 */
Andy Walls929a3ad2009-05-16 21:06:57 -0300386 lines = cx->is_60hz ? (21 - 4 + 1) * 2 : (23 - 2 + 1) * 2;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300387 }
388
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300389 data[0] = s->handle;
390 /* Lines per field */
391 data[1] = (lines / 2) | ((lines / 2) << 16);
392 /* bytes per line */
Andy Walls302df972009-01-31 00:33:02 -0300393 data[2] = (raw ? vbi_active_samples
394 : (cx->is_60hz ? vbi_hblank_samples_60Hz
395 : vbi_hblank_samples_50Hz));
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300396 /* Every X number of frames a VBI interrupt arrives
397 (frames as in 25 or 30 fps) */
398 data[3] = 1;
Andy Walls302df972009-01-31 00:33:02 -0300399 /*
400 * Set the SAV/EAV RP codes to look for as start/stop points
401 * when in VIP-1.1 mode
402 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300403 if (raw) {
Andy Walls302df972009-01-31 00:33:02 -0300404 /*
405 * Start codes for beginning of "active" line in vertical blank
406 * 0x20 ( VerticalBlank )
407 * 0x60 ( EvenField VerticalBlank )
408 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300409 data[4] = 0x20602060;
Andy Walls302df972009-01-31 00:33:02 -0300410 /*
411 * End codes for end of "active" raw lines and regular lines
412 * 0x30 ( VerticalBlank HorizontalBlank)
413 * 0x70 ( EvenField VerticalBlank HorizontalBlank)
414 * 0x90 (Task HorizontalBlank)
415 * 0xd0 (Task EvenField HorizontalBlank)
416 */
Andy Wallsaf009cf2008-12-12 20:00:29 -0300417 data[5] = 0x307090d0;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300418 } else {
Andy Walls302df972009-01-31 00:33:02 -0300419 /*
420 * End codes for active video, we want data in the hblank region
421 * 0xb0 (Task 0 VerticalBlank HorizontalBlank)
422 * 0xf0 (Task EvenField VerticalBlank HorizontalBlank)
423 *
424 * Since the V bit is only allowed to toggle in the EAV RP code,
425 * just before the first active region line, these two
Andy Walls812b1f92009-02-08 22:40:04 -0300426 * are problematic:
Andy Walls302df972009-01-31 00:33:02 -0300427 * 0x90 (Task HorizontalBlank)
428 * 0xd0 (Task EvenField HorizontalBlank)
Andy Walls812b1f92009-02-08 22:40:04 -0300429 *
Andy Wallsaf7c58b2009-02-28 20:13:50 -0300430 * We have set the digitzer such that we don't have to worry
431 * about these problem codes.
Andy Walls302df972009-01-31 00:33:02 -0300432 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300433 data[4] = 0xB0F0B0F0;
Andy Walls302df972009-01-31 00:33:02 -0300434 /*
435 * Start codes for beginning of active line in vertical blank
436 * 0xa0 (Task VerticalBlank )
437 * 0xe0 (Task EvenField VerticalBlank )
438 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300439 data[5] = 0xA0E0A0E0;
440 }
441
442 CX18_DEBUG_INFO("Setup VBI h: %d lines %x bpl %d fr %d %x %x\n",
443 data[0], data[1], data[2], data[3], data[4], data[5]);
444
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300445 cx18_api(cx, CX18_CPU_SET_RAW_VBI_PARAM, 6, data);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300446}
447
Andy Walls87116152009-04-13 22:42:43 -0300448static
Andy Walls52fcb3e2009-11-08 23:45:24 -0300449struct cx18_queue *_cx18_stream_put_mdl_fw(struct cx18_stream *s,
450 struct cx18_mdl *mdl)
Andy Walls66c2a6b2008-12-08 23:02:45 -0300451{
452 struct cx18 *cx = s->cx;
453 struct cx18_queue *q;
454
455 /* Don't give it to the firmware, if we're not running a capture */
456 if (s->handle == CX18_INVALID_TASK_HANDLE ||
Andy Walls87116152009-04-13 22:42:43 -0300457 test_bit(CX18_F_S_STOPPING, &s->s_flags) ||
Andy Walls66c2a6b2008-12-08 23:02:45 -0300458 !test_bit(CX18_F_S_STREAMING, &s->s_flags))
Andy Walls52fcb3e2009-11-08 23:45:24 -0300459 return cx18_enqueue(s, mdl, &s->q_free);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300460
Andy Walls52fcb3e2009-11-08 23:45:24 -0300461 q = cx18_enqueue(s, mdl, &s->q_busy);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300462 if (q != &s->q_busy)
Andy Walls52fcb3e2009-11-08 23:45:24 -0300463 return q; /* The firmware has the max MDLs it can handle */
Andy Walls66c2a6b2008-12-08 23:02:45 -0300464
Andy Walls52fcb3e2009-11-08 23:45:24 -0300465 cx18_mdl_sync_for_device(s, mdl);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300466 cx18_vapi(cx, CX18_CPU_DE_SET_MDL, 5, s->handle,
Andy Walls52fcb3e2009-11-08 23:45:24 -0300467 (void __iomem *) &cx->scb->cpu_mdl[mdl->id] - cx->enc_mem,
468 s->bufs_per_mdl, mdl->id, s->mdl_size);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300469 return q;
470}
471
Andy Walls87116152009-04-13 22:42:43 -0300472static
473void _cx18_stream_load_fw_queue(struct cx18_stream *s)
Andy Walls66c2a6b2008-12-08 23:02:45 -0300474{
Andy Wallsabb096d2008-12-12 15:50:27 -0300475 struct cx18_queue *q;
Andy Walls52fcb3e2009-11-08 23:45:24 -0300476 struct cx18_mdl *mdl;
Andy Walls66c2a6b2008-12-08 23:02:45 -0300477
Andy Wallsc37b11b2009-11-04 23:13:58 -0300478 if (atomic_read(&s->q_free.depth) == 0 ||
479 atomic_read(&s->q_busy.depth) >= CX18_MAX_FW_MDLS_PER_STREAM)
Andy Wallsabb096d2008-12-12 15:50:27 -0300480 return;
Andy Walls66c2a6b2008-12-08 23:02:45 -0300481
Andy Wallsabb096d2008-12-12 15:50:27 -0300482 /* Move from q_free to q_busy notifying the firmware, until the limit */
483 do {
Andy Walls52fcb3e2009-11-08 23:45:24 -0300484 mdl = cx18_dequeue(s, &s->q_free);
485 if (mdl == NULL)
Andy Wallsabb096d2008-12-12 15:50:27 -0300486 break;
Andy Walls52fcb3e2009-11-08 23:45:24 -0300487 q = _cx18_stream_put_mdl_fw(s, mdl);
Andy Wallsc37b11b2009-11-04 23:13:58 -0300488 } while (atomic_read(&s->q_busy.depth) < CX18_MAX_FW_MDLS_PER_STREAM
Andy Walls0ef02892008-12-14 18:52:12 -0300489 && q == &s->q_busy);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300490}
491
Andy Walls87116152009-04-13 22:42:43 -0300492void cx18_out_work_handler(struct work_struct *work)
493{
Andy Walls21a278b2009-04-15 20:45:10 -0300494 struct cx18_stream *s =
495 container_of(work, struct cx18_stream, out_work_order);
Andy Walls87116152009-04-13 22:42:43 -0300496
Andy Walls21a278b2009-04-15 20:45:10 -0300497 _cx18_stream_load_fw_queue(s);
Andy Walls87116152009-04-13 22:42:43 -0300498}
499
Andy Walls52fcb3e2009-11-08 23:45:24 -0300500static void cx18_stream_configure_mdls(struct cx18_stream *s)
501{
502 cx18_unload_queues(s);
503
504 /* For now */
505 s->bufs_per_mdl = 1;
506 s->mdl_size = s->buf_size * s->bufs_per_mdl;
507
508 cx18_load_queues(s);
509}
510
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300511int cx18_start_v4l2_encode_stream(struct cx18_stream *s)
512{
513 u32 data[MAX_MB_ARGUMENTS];
514 struct cx18 *cx = s->cx;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300515 int captype = 0;
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300516 struct cx18_api_func_private priv;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300517
Andy Walls3d059132009-01-10 21:54:39 -0300518 if (s->video_dev == NULL && s->dvb.enabled == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300519 return -EINVAL;
520
521 CX18_DEBUG_INFO("Start encoder stream %s\n", s->name);
522
523 switch (s->type) {
524 case CX18_ENC_STREAM_TYPE_MPG:
525 captype = CAPTURE_CHANNEL_TYPE_MPEG;
526 cx->mpg_data_received = cx->vbi_data_inserted = 0;
527 cx->dualwatch_jiffies = jiffies;
528 cx->dualwatch_stereo_mode = cx->params.audio_properties & 0x300;
529 cx->search_pack_header = 0;
530 break;
531
532 case CX18_ENC_STREAM_TYPE_TS:
533 captype = CAPTURE_CHANNEL_TYPE_TS;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300534 break;
535 case CX18_ENC_STREAM_TYPE_YUV:
536 captype = CAPTURE_CHANNEL_TYPE_YUV;
537 break;
538 case CX18_ENC_STREAM_TYPE_PCM:
539 captype = CAPTURE_CHANNEL_TYPE_PCM;
540 break;
541 case CX18_ENC_STREAM_TYPE_VBI:
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300542#ifdef CX18_ENCODER_PARSES_SLICED
Andy Wallsdd073432008-12-12 16:24:04 -0300543 captype = cx18_raw_vbi(cx) ?
544 CAPTURE_CHANNEL_TYPE_VBI : CAPTURE_CHANNEL_TYPE_SLICED_VBI;
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300545#else
546 /*
547 * Currently we set things up so that Sliced VBI from the
548 * digitizer is handled as Raw VBI by the encoder
549 */
550 captype = CAPTURE_CHANNEL_TYPE_VBI;
551#endif
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300552 cx->vbi.frame = 0;
553 cx->vbi.inserted_frame = 0;
554 memset(cx->vbi.sliced_mpeg_size,
555 0, sizeof(cx->vbi.sliced_mpeg_size));
556 break;
557 default:
558 return -EINVAL;
559 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300560
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300561 /* Clear Streamoff flags in case left from last capture */
562 clear_bit(CX18_F_S_STREAMOFF, &s->s_flags);
563
564 cx18_vapi_result(cx, data, CX18_CREATE_TASK, 1, CPU_CMD_MASK_CAPTURE);
565 s->handle = data[0];
566 cx18_vapi(cx, CX18_CPU_SET_CHANNEL_TYPE, 2, s->handle, captype);
567
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300568 /*
569 * For everything but CAPTURE_CHANNEL_TYPE_TS, play it safe and
570 * set up all the parameters, as it is not obvious which parameters the
571 * firmware shares across capture channel types and which it does not.
572 *
573 * Some of the cx18_vapi() calls below apply to only certain capture
574 * channel types. We're hoping there's no harm in calling most of them
575 * anyway, as long as the values are all consistent. Setting some
576 * shared parameters will have no effect once an analog capture channel
577 * has started streaming.
578 */
579 if (captype != CAPTURE_CHANNEL_TYPE_TS) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300580 cx18_vapi(cx, CX18_CPU_SET_VER_CROP_LINE, 2, s->handle, 0);
581 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 3, 1);
582 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 8, 0);
583 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 4, 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300584
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300585 /*
586 * Audio related reset according to
587 * Documentation/video4linux/cx2341x/fw-encoder-api.txt
588 */
589 if (atomic_read(&cx->ana_capturing) == 0)
590 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 2,
591 s->handle, 12);
592
593 /*
594 * Number of lines for Field 1 & Field 2 according to
595 * Documentation/video4linux/cx2341x/fw-encoder-api.txt
Andy Wallsf37aa512009-02-07 01:15:44 -0300596 * Field 1 is 312 for 625 line systems in BT.656
597 * Field 2 is 313 for 625 line systems in BT.656
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300598 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300599 cx18_vapi(cx, CX18_CPU_SET_CAPTURE_LINE_NO, 3,
Andy Wallsf37aa512009-02-07 01:15:44 -0300600 s->handle, 312, 313);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300601
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300602 if (cx->v4l2_cap & V4L2_CAP_VBI_CAPTURE)
603 cx18_vbi_setup(s);
604
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300605 /*
606 * assign program index info.
607 * Mask 7: select I/P/B, Num_req: 400 max
608 * FIXME - currently we have this hardcoded as disabled
609 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300610 cx18_vapi_result(cx, data, CX18_CPU_SET_INDEXTABLE, 1, 0);
611
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300612 /* Call out to the common CX2341x API setup for user controls */
Andy Walls50b86ba2008-11-23 19:16:44 -0300613 priv.cx = cx;
614 priv.s = s;
615 cx2341x_update(&priv, cx18_api_func, NULL, &cx->params);
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300616
617 /*
618 * When starting a capture and we're set for radio,
619 * ensure the video is muted, despite the user control.
620 */
621 if (!cx->params.video_mute &&
622 test_bit(CX18_F_I_RADIO_USER, &cx->i_flags))
623 cx18_vapi(cx, CX18_CPU_SET_VIDEO_MUTE, 2, s->handle,
624 (cx->params.video_mute_yuv << 8) | 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300625 }
626
Hans Verkuil31554ae2008-05-25 11:21:27 -0300627 if (atomic_read(&cx->tot_capturing) == 0) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300628 clear_bit(CX18_F_I_EOS, &cx->i_flags);
Andy Wallsb1526422008-08-30 16:03:44 -0300629 cx18_write_reg(cx, 7, CX18_DSP0_INTERRUPT_MASK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300630 }
631
632 cx18_vapi(cx, CX18_CPU_DE_SET_MDL_ACK, 3, s->handle,
Al Viro990c81c2008-05-21 00:32:01 -0300633 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][0] - cx->enc_mem,
634 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][1] - cx->enc_mem);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300635
Andy Walls66c2a6b2008-12-08 23:02:45 -0300636 /* Init all the cpu_mdls for this stream */
Andy Walls52fcb3e2009-11-08 23:45:24 -0300637 cx18_stream_configure_mdls(s);
Andy Walls87116152009-04-13 22:42:43 -0300638 _cx18_stream_load_fw_queue(s);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300639
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300640 /* begin_capture */
641 if (cx18_vapi(cx, CX18_CPU_CAPTURE_START, 1, s->handle)) {
642 CX18_DEBUG_WARN("Error starting capture!\n");
Andy Walls3b5df8e2008-08-23 18:36:50 -0300643 /* Ensure we're really not capturing before releasing MDLs */
Andy Walls87116152009-04-13 22:42:43 -0300644 set_bit(CX18_F_S_STOPPING, &s->s_flags);
Andy Walls3b5df8e2008-08-23 18:36:50 -0300645 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
646 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, 1);
647 else
648 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300649 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
650 /* FIXME - CX18_F_S_STREAMOFF as well? */
Andy Walls3b5df8e2008-08-23 18:36:50 -0300651 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300652 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300653 s->handle = CX18_INVALID_TASK_HANDLE;
Andy Walls87116152009-04-13 22:42:43 -0300654 clear_bit(CX18_F_S_STOPPING, &s->s_flags);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300655 if (atomic_read(&cx->tot_capturing) == 0) {
656 set_bit(CX18_F_I_EOS, &cx->i_flags);
657 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
658 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300659 return -EINVAL;
660 }
661
662 /* you're live! sit back and await interrupts :) */
Andy Wallsdcc0ef82009-02-06 18:33:43 -0300663 if (captype != CAPTURE_CHANNEL_TYPE_TS)
Hans Verkuil31554ae2008-05-25 11:21:27 -0300664 atomic_inc(&cx->ana_capturing);
665 atomic_inc(&cx->tot_capturing);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300666 return 0;
667}
668
669void cx18_stop_all_captures(struct cx18 *cx)
670{
671 int i;
672
673 for (i = CX18_MAX_STREAMS - 1; i >= 0; i--) {
674 struct cx18_stream *s = &cx->streams[i];
675
Andy Walls3d059132009-01-10 21:54:39 -0300676 if (s->video_dev == NULL && s->dvb.enabled == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300677 continue;
678 if (test_bit(CX18_F_S_STREAMING, &s->s_flags))
679 cx18_stop_v4l2_encode_stream(s, 0);
680 }
681}
682
683int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end)
684{
685 struct cx18 *cx = s->cx;
686 unsigned long then;
687
Andy Walls3d059132009-01-10 21:54:39 -0300688 if (s->video_dev == NULL && s->dvb.enabled == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300689 return -EINVAL;
690
691 /* This function assumes that you are allowed to stop the capture
692 and that we are actually capturing */
693
694 CX18_DEBUG_INFO("Stop Capture\n");
695
Hans Verkuil31554ae2008-05-25 11:21:27 -0300696 if (atomic_read(&cx->tot_capturing) == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300697 return 0;
698
Andy Walls87116152009-04-13 22:42:43 -0300699 set_bit(CX18_F_S_STOPPING, &s->s_flags);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300700 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
701 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, !gop_end);
702 else
703 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
704
705 then = jiffies;
706
707 if (s->type == CX18_ENC_STREAM_TYPE_MPG && gop_end) {
708 CX18_INFO("ignoring gop_end: not (yet?) supported by the firmware\n");
709 }
710
Hans Verkuil31554ae2008-05-25 11:21:27 -0300711 if (s->type != CX18_ENC_STREAM_TYPE_TS)
712 atomic_dec(&cx->ana_capturing);
713 atomic_dec(&cx->tot_capturing);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300714
715 /* Clear capture and no-read bits */
716 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
717
Andy Wallsf68d0cf2008-11-05 21:19:15 -0300718 /* Tell the CX23418 it can't use our buffers anymore */
719 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
720
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300721 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
Andy Wallsd3c5e702008-08-23 16:42:29 -0300722 s->handle = CX18_INVALID_TASK_HANDLE;
Andy Walls87116152009-04-13 22:42:43 -0300723 clear_bit(CX18_F_S_STOPPING, &s->s_flags);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300724
Hans Verkuil31554ae2008-05-25 11:21:27 -0300725 if (atomic_read(&cx->tot_capturing) > 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300726 return 0;
727
Andy Wallsb1526422008-08-30 16:03:44 -0300728 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300729 wake_up(&s->waitq);
730
731 return 0;
732}
733
734u32 cx18_find_handle(struct cx18 *cx)
735{
736 int i;
737
738 /* find first available handle to be used for global settings */
739 for (i = 0; i < CX18_MAX_STREAMS; i++) {
740 struct cx18_stream *s = &cx->streams[i];
741
Andy Walls3d059132009-01-10 21:54:39 -0300742 if (s->video_dev && (s->handle != CX18_INVALID_TASK_HANDLE))
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300743 return s->handle;
744 }
Andy Wallsd3c5e702008-08-23 16:42:29 -0300745 return CX18_INVALID_TASK_HANDLE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300746}
Andy Wallsee2d64f2008-11-16 01:38:19 -0300747
748struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle)
749{
750 int i;
751 struct cx18_stream *s;
752
753 if (handle == CX18_INVALID_TASK_HANDLE)
754 return NULL;
755
756 for (i = 0; i < CX18_MAX_STREAMS; i++) {
757 s = &cx->streams[i];
758 if (s->handle != handle)
759 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300760 if (s->video_dev || s->dvb.enabled)
Andy Wallsee2d64f2008-11-16 01:38:19 -0300761 return s;
762 }
763 return NULL;
764}