blob: a89f7f840d95ea3fe0e69dff067583866dd9e1ea [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"
35#include "cx18-av-core.h"
36#include "cx18-dvb.h"
37
38#define CX18_DSP0_INTERRUPT_MASK 0xd0004C
39
Hans Verkuilbec43662008-12-30 06:58:20 -030040static struct v4l2_file_operations cx18_v4l2_enc_fops = {
Hans Verkuildaf20d92008-05-12 11:21:58 -030041 .owner = THIS_MODULE,
42 .read = cx18_v4l2_read,
43 .open = cx18_v4l2_open,
Andy Walls3b6fe582008-06-21 08:36:31 -030044 /* FIXME change to video_ioctl2 if serialization lock can be removed */
Hans Verkuildaf20d92008-05-12 11:21:58 -030045 .ioctl = cx18_v4l2_ioctl,
Hans Verkuildaf20d92008-05-12 11:21:58 -030046 .release = cx18_v4l2_close,
47 .poll = cx18_v4l2_enc_poll,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030048};
49
50/* offset from 0 to register ts v4l2 minors on */
51#define CX18_V4L2_ENC_TS_OFFSET 16
52/* offset from 0 to register pcm v4l2 minors on */
53#define CX18_V4L2_ENC_PCM_OFFSET 24
54/* offset from 0 to register yuv v4l2 minors on */
55#define CX18_V4L2_ENC_YUV_OFFSET 32
56
57static struct {
58 const char *name;
59 int vfl_type;
Hans Verkuildd896012008-10-04 08:36:54 -030060 int num_offset;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030061 int dma;
62 enum v4l2_buf_type buf_type;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030063} cx18_stream_info[] = {
64 { /* CX18_ENC_STREAM_TYPE_MPG */
65 "encoder MPEG",
66 VFL_TYPE_GRABBER, 0,
67 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030068 },
69 { /* CX18_ENC_STREAM_TYPE_TS */
70 "TS",
71 VFL_TYPE_GRABBER, -1,
72 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030073 },
74 { /* CX18_ENC_STREAM_TYPE_YUV */
75 "encoder YUV",
76 VFL_TYPE_GRABBER, CX18_V4L2_ENC_YUV_OFFSET,
77 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030078 },
79 { /* CX18_ENC_STREAM_TYPE_VBI */
80 "encoder VBI",
81 VFL_TYPE_VBI, 0,
82 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VBI_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030083 },
84 { /* CX18_ENC_STREAM_TYPE_PCM */
85 "encoder PCM audio",
86 VFL_TYPE_GRABBER, CX18_V4L2_ENC_PCM_OFFSET,
87 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_PRIVATE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030088 },
89 { /* CX18_ENC_STREAM_TYPE_IDX */
90 "encoder IDX",
91 VFL_TYPE_GRABBER, -1,
92 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030093 },
94 { /* CX18_ENC_STREAM_TYPE_RAD */
95 "encoder radio",
96 VFL_TYPE_RADIO, 0,
97 PCI_DMA_NONE, V4L2_BUF_TYPE_PRIVATE,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030098 },
99};
100
101static void cx18_stream_init(struct cx18 *cx, int type)
102{
103 struct cx18_stream *s = &cx->streams[type];
Andy Walls3d059132009-01-10 21:54:39 -0300104 struct video_device *video_dev = s->video_dev;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300105
Andy Walls3d059132009-01-10 21:54:39 -0300106 /* we need to keep video_dev, so restore it afterwards */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300107 memset(s, 0, sizeof(*s));
Andy Walls3d059132009-01-10 21:54:39 -0300108 s->video_dev = video_dev;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300109
110 /* initialize cx18_stream fields */
111 s->cx = cx;
112 s->type = type;
113 s->name = cx18_stream_info[type].name;
Andy Wallsd3c5e702008-08-23 16:42:29 -0300114 s->handle = CX18_INVALID_TASK_HANDLE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300115
116 s->dma = cx18_stream_info[type].dma;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300117 s->buffers = cx->stream_buffers[type];
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300118 s->buf_size = cx->stream_buf_size[type];
Andy Walls6ecd86d2008-12-07 23:30:17 -0300119
Andy Wallsf576cee2008-11-16 20:18:05 -0300120 mutex_init(&s->qlock);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300121 init_waitqueue_head(&s->waitq);
122 s->id = -1;
123 cx18_queue_init(&s->q_free);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300124 cx18_queue_init(&s->q_busy);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300125 cx18_queue_init(&s->q_full);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300126}
127
128static int cx18_prep_dev(struct cx18 *cx, int type)
129{
130 struct cx18_stream *s = &cx->streams[type];
131 u32 cap = cx->v4l2_cap;
Hans Verkuildd896012008-10-04 08:36:54 -0300132 int num_offset = cx18_stream_info[type].num_offset;
133 int num = cx->num + cx18_first_minor + num_offset;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300134
Andy Walls3d059132009-01-10 21:54:39 -0300135 /* These four fields are always initialized. If video_dev == NULL, then
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300136 this stream is not in use. In that case no other fields but these
137 four can be used. */
Andy Walls3d059132009-01-10 21:54:39 -0300138 s->video_dev = NULL;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300139 s->cx = cx;
140 s->type = type;
141 s->name = cx18_stream_info[type].name;
142
143 /* Check whether the radio is supported */
144 if (type == CX18_ENC_STREAM_TYPE_RAD && !(cap & V4L2_CAP_RADIO))
145 return 0;
146
147 /* Check whether VBI is supported */
148 if (type == CX18_ENC_STREAM_TYPE_VBI &&
149 !(cap & (V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE)))
150 return 0;
151
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300152 /* User explicitly selected 0 buffers for these streams, so don't
153 create them. */
154 if (cx18_stream_info[type].dma != PCI_DMA_NONE &&
Andy Walls6ecd86d2008-12-07 23:30:17 -0300155 cx->stream_buffers[type] == 0) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300156 CX18_INFO("Disabled %s device\n", cx18_stream_info[type].name);
157 return 0;
158 }
159
160 cx18_stream_init(cx, type);
161
Hans Verkuildd896012008-10-04 08:36:54 -0300162 if (num_offset == -1)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300163 return 0;
164
165 /* allocate and initialize the v4l2 video device structure */
Andy Walls3d059132009-01-10 21:54:39 -0300166 s->video_dev = video_device_alloc();
167 if (s->video_dev == NULL) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300168 CX18_ERR("Couldn't allocate v4l2 video_device for %s\n",
169 s->name);
170 return -ENOMEM;
171 }
172
Andy Walls3d059132009-01-10 21:54:39 -0300173 snprintf(s->video_dev->name, sizeof(s->video_dev->name), "cx18-%d",
Hans Verkuil37f89f92008-06-22 11:57:31 -0300174 cx->num);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300175
Andy Walls3d059132009-01-10 21:54:39 -0300176 s->video_dev->num = num;
177 s->video_dev->parent = &cx->pci_dev->dev;
178 s->video_dev->fops = &cx18_v4l2_enc_fops;
179 s->video_dev->release = video_device_release;
180 s->video_dev->tvnorms = V4L2_STD_ALL;
181 cx18_set_funcs(s->video_dev);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300182 return 0;
183}
184
185/* Initialize v4l2 variables and register v4l2 devices */
186int cx18_streams_setup(struct cx18 *cx)
187{
Andy Walls9b4a7c82008-10-18 10:20:25 -0300188 int type, ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300189
190 /* Setup V4L2 Devices */
191 for (type = 0; type < CX18_MAX_STREAMS; type++) {
192 /* Prepare device */
Andy Walls9b4a7c82008-10-18 10:20:25 -0300193 ret = cx18_prep_dev(cx, type);
194 if (ret < 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300195 break;
196
197 /* Allocate Stream */
Andy Walls9b4a7c82008-10-18 10:20:25 -0300198 ret = cx18_stream_alloc(&cx->streams[type]);
199 if (ret < 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300200 break;
201 }
202 if (type == CX18_MAX_STREAMS)
203 return 0;
204
205 /* One or more streams could not be initialized. Clean 'em all up. */
Hans Verkuil3f983872008-05-01 10:31:12 -0300206 cx18_streams_cleanup(cx, 0);
Andy Walls9b4a7c82008-10-18 10:20:25 -0300207 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300208}
209
210static int cx18_reg_dev(struct cx18 *cx, int type)
211{
212 struct cx18_stream *s = &cx->streams[type];
213 int vfl_type = cx18_stream_info[type].vfl_type;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300214 int num, ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300215
216 /* TODO: Shouldn't this be a VFL_TYPE_TRANSPORT or something?
217 * We need a VFL_TYPE_TS defined.
218 */
219 if (strcmp("TS", s->name) == 0) {
220 /* just return if no DVB is supported */
221 if ((cx->card->hw_all & CX18_HW_DVB) == 0)
222 return 0;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300223 ret = cx18_dvb_register(s);
224 if (ret < 0) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300225 CX18_ERR("DVB failed to register\n");
Andy Walls9b4a7c82008-10-18 10:20:25 -0300226 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300227 }
228 }
229
Andy Walls3d059132009-01-10 21:54:39 -0300230 if (s->video_dev == NULL)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300231 return 0;
232
Andy Walls3d059132009-01-10 21:54:39 -0300233 num = s->video_dev->num;
Hans Verkuildd896012008-10-04 08:36:54 -0300234 /* card number + user defined offset + device offset */
235 if (type != CX18_ENC_STREAM_TYPE_MPG) {
236 struct cx18_stream *s_mpg = &cx->streams[CX18_ENC_STREAM_TYPE_MPG];
237
Andy Walls3d059132009-01-10 21:54:39 -0300238 if (s_mpg->video_dev)
239 num = s_mpg->video_dev->num
240 + cx18_stream_info[type].num_offset;
Hans Verkuildd896012008-10-04 08:36:54 -0300241 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300242
243 /* Register device. First try the desired minor, then any free one. */
Andy Walls3d059132009-01-10 21:54:39 -0300244 ret = video_register_device(s->video_dev, vfl_type, num);
Andy Walls9b4a7c82008-10-18 10:20:25 -0300245 if (ret < 0) {
Hans Verkuildd896012008-10-04 08:36:54 -0300246 CX18_ERR("Couldn't register v4l2 device for %s kernel number %d\n",
247 s->name, num);
Andy Walls3d059132009-01-10 21:54:39 -0300248 video_device_release(s->video_dev);
249 s->video_dev = NULL;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300250 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300251 }
Andy Walls3d059132009-01-10 21:54:39 -0300252 num = s->video_dev->num;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300253
254 switch (vfl_type) {
255 case VFL_TYPE_GRABBER:
Andy Walls6ecd86d2008-12-07 23:30:17 -0300256 CX18_INFO("Registered device video%d for %s (%d x %d kB)\n",
257 num, s->name, cx->stream_buffers[type],
258 cx->stream_buf_size[type]/1024);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300259 break;
260
261 case VFL_TYPE_RADIO:
262 CX18_INFO("Registered device radio%d for %s\n",
Hans Verkuildd896012008-10-04 08:36:54 -0300263 num, s->name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300264 break;
265
266 case VFL_TYPE_VBI:
Andy Walls6ecd86d2008-12-07 23:30:17 -0300267 if (cx->stream_buffers[type])
268 CX18_INFO("Registered device vbi%d for %s "
269 "(%d x %d bytes)\n",
270 num, s->name, cx->stream_buffers[type],
271 cx->stream_buf_size[type]);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300272 else
273 CX18_INFO("Registered device vbi%d for %s\n",
Hans Verkuildd896012008-10-04 08:36:54 -0300274 num, s->name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300275 break;
276 }
277
278 return 0;
279}
280
281/* Register v4l2 devices */
282int cx18_streams_register(struct cx18 *cx)
283{
284 int type;
Andy Walls9b4a7c82008-10-18 10:20:25 -0300285 int err;
286 int ret = 0;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300287
288 /* Register V4L2 devices */
Andy Walls9b4a7c82008-10-18 10:20:25 -0300289 for (type = 0; type < CX18_MAX_STREAMS; type++) {
290 err = cx18_reg_dev(cx, type);
291 if (err && ret == 0)
292 ret = err;
293 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300294
Andy Walls9b4a7c82008-10-18 10:20:25 -0300295 if (ret == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300296 return 0;
297
298 /* One or more streams could not be initialized. Clean 'em all up. */
Hans Verkuil3f983872008-05-01 10:31:12 -0300299 cx18_streams_cleanup(cx, 1);
Andy Walls9b4a7c82008-10-18 10:20:25 -0300300 return ret;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300301}
302
303/* Unregister v4l2 devices */
Hans Verkuil3f983872008-05-01 10:31:12 -0300304void cx18_streams_cleanup(struct cx18 *cx, int unregister)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300305{
306 struct video_device *vdev;
307 int type;
308
309 /* Teardown all streams */
310 for (type = 0; type < CX18_MAX_STREAMS; type++) {
Hans Verkuilfac36392008-07-18 10:07:10 -0300311 if (cx->streams[type].dvb.enabled) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300312 cx18_dvb_unregister(&cx->streams[type]);
Hans Verkuilfac36392008-07-18 10:07:10 -0300313 cx->streams[type].dvb.enabled = false;
314 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300315
Andy Walls3d059132009-01-10 21:54:39 -0300316 vdev = cx->streams[type].video_dev;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300317
Andy Walls3d059132009-01-10 21:54:39 -0300318 cx->streams[type].video_dev = NULL;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300319 if (vdev == NULL)
320 continue;
321
322 cx18_stream_free(&cx->streams[type]);
323
Hans Verkuil3f983872008-05-01 10:31:12 -0300324 /* Unregister or release device */
325 if (unregister)
326 video_unregister_device(vdev);
327 else
328 video_device_release(vdev);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300329 }
330}
331
332static void cx18_vbi_setup(struct cx18_stream *s)
333{
334 struct cx18 *cx = s->cx;
Andy Wallsdd073432008-12-12 16:24:04 -0300335 int raw = cx18_raw_vbi(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300336 u32 data[CX2341X_MBOX_MAX_DATA];
337 int lines;
338
339 if (cx->is_60hz) {
340 cx->vbi.count = 12;
341 cx->vbi.start[0] = 10;
342 cx->vbi.start[1] = 273;
343 } else { /* PAL/SECAM */
344 cx->vbi.count = 18;
345 cx->vbi.start[0] = 6;
346 cx->vbi.start[1] = 318;
347 }
348
349 /* setup VBI registers */
350 cx18_av_cmd(cx, VIDIOC_S_FMT, &cx->vbi.in);
351
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300352 if (raw) {
353 lines = cx->vbi.count * 2;
354 } else {
355 lines = cx->is_60hz ? 24 : 38;
356 if (cx->is_60hz)
357 lines += 2;
358 }
359
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300360 data[0] = s->handle;
361 /* Lines per field */
362 data[1] = (lines / 2) | ((lines / 2) << 16);
363 /* bytes per line */
Andy Walls302df972009-01-31 00:33:02 -0300364 data[2] = (raw ? vbi_active_samples
365 : (cx->is_60hz ? vbi_hblank_samples_60Hz
366 : vbi_hblank_samples_50Hz));
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300367 /* Every X number of frames a VBI interrupt arrives
368 (frames as in 25 or 30 fps) */
369 data[3] = 1;
Andy Walls302df972009-01-31 00:33:02 -0300370 /*
371 * Set the SAV/EAV RP codes to look for as start/stop points
372 * when in VIP-1.1 mode
373 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300374 if (raw) {
Andy Walls302df972009-01-31 00:33:02 -0300375 /*
376 * Start codes for beginning of "active" line in vertical blank
377 * 0x20 ( VerticalBlank )
378 * 0x60 ( EvenField VerticalBlank )
379 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300380 data[4] = 0x20602060;
Andy Walls302df972009-01-31 00:33:02 -0300381 /*
382 * End codes for end of "active" raw lines and regular lines
383 * 0x30 ( VerticalBlank HorizontalBlank)
384 * 0x70 ( EvenField VerticalBlank HorizontalBlank)
385 * 0x90 (Task HorizontalBlank)
386 * 0xd0 (Task EvenField HorizontalBlank)
387 */
Andy Wallsaf009cf2008-12-12 20:00:29 -0300388 data[5] = 0x307090d0;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300389 } else {
Andy Walls302df972009-01-31 00:33:02 -0300390 /*
391 * End codes for active video, we want data in the hblank region
392 * 0xb0 (Task 0 VerticalBlank HorizontalBlank)
393 * 0xf0 (Task EvenField VerticalBlank HorizontalBlank)
394 *
395 * Since the V bit is only allowed to toggle in the EAV RP code,
396 * just before the first active region line, these two
397 * are problematic and we have to ignore them:
398 * 0x90 (Task HorizontalBlank)
399 * 0xd0 (Task EvenField HorizontalBlank)
400 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300401 data[4] = 0xB0F0B0F0;
Andy Walls302df972009-01-31 00:33:02 -0300402 /*
403 * Start codes for beginning of active line in vertical blank
404 * 0xa0 (Task VerticalBlank )
405 * 0xe0 (Task EvenField VerticalBlank )
406 */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300407 data[5] = 0xA0E0A0E0;
408 }
409
410 CX18_DEBUG_INFO("Setup VBI h: %d lines %x bpl %d fr %d %x %x\n",
411 data[0], data[1], data[2], data[3], data[4], data[5]);
412
413 if (s->type == CX18_ENC_STREAM_TYPE_VBI)
414 cx18_api(cx, CX18_CPU_SET_RAW_VBI_PARAM, 6, data);
415}
416
Andy Walls66c2a6b2008-12-08 23:02:45 -0300417struct cx18_queue *cx18_stream_put_buf_fw(struct cx18_stream *s,
418 struct cx18_buffer *buf)
419{
420 struct cx18 *cx = s->cx;
421 struct cx18_queue *q;
422
423 /* Don't give it to the firmware, if we're not running a capture */
424 if (s->handle == CX18_INVALID_TASK_HANDLE ||
425 !test_bit(CX18_F_S_STREAMING, &s->s_flags))
426 return cx18_enqueue(s, buf, &s->q_free);
427
428 q = cx18_enqueue(s, buf, &s->q_busy);
429 if (q != &s->q_busy)
430 return q; /* The firmware has the max buffers it can handle */
431
432 cx18_buf_sync_for_device(s, buf);
433 cx18_vapi(cx, CX18_CPU_DE_SET_MDL, 5, s->handle,
434 (void __iomem *) &cx->scb->cpu_mdl[buf->id] - cx->enc_mem,
435 1, buf->id, s->buf_size);
436 return q;
437}
438
Andy Wallsabb096d2008-12-12 15:50:27 -0300439void cx18_stream_load_fw_queue(struct cx18_stream *s)
Andy Walls66c2a6b2008-12-08 23:02:45 -0300440{
Andy Wallsabb096d2008-12-12 15:50:27 -0300441 struct cx18_queue *q;
Andy Walls66c2a6b2008-12-08 23:02:45 -0300442 struct cx18_buffer *buf;
Andy Walls66c2a6b2008-12-08 23:02:45 -0300443
Andy Wallsabb096d2008-12-12 15:50:27 -0300444 if (atomic_read(&s->q_free.buffers) == 0 ||
Andy Walls0ef02892008-12-14 18:52:12 -0300445 atomic_read(&s->q_busy.buffers) >= CX18_MAX_FW_MDLS_PER_STREAM)
Andy Wallsabb096d2008-12-12 15:50:27 -0300446 return;
Andy Walls66c2a6b2008-12-08 23:02:45 -0300447
Andy Wallsabb096d2008-12-12 15:50:27 -0300448 /* Move from q_free to q_busy notifying the firmware, until the limit */
449 do {
450 buf = cx18_dequeue(s, &s->q_free);
451 if (buf == NULL)
452 break;
453 q = cx18_stream_put_buf_fw(s, buf);
Andy Walls0ef02892008-12-14 18:52:12 -0300454 } while (atomic_read(&s->q_busy.buffers) < CX18_MAX_FW_MDLS_PER_STREAM
455 && q == &s->q_busy);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300456}
457
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300458int cx18_start_v4l2_encode_stream(struct cx18_stream *s)
459{
460 u32 data[MAX_MB_ARGUMENTS];
461 struct cx18 *cx = s->cx;
Andy Walls66c2a6b2008-12-08 23:02:45 -0300462 struct cx18_buffer *buf;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300463 int ts = 0;
464 int captype = 0;
465
Andy Walls3d059132009-01-10 21:54:39 -0300466 if (s->video_dev == NULL && s->dvb.enabled == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300467 return -EINVAL;
468
469 CX18_DEBUG_INFO("Start encoder stream %s\n", s->name);
470
471 switch (s->type) {
472 case CX18_ENC_STREAM_TYPE_MPG:
473 captype = CAPTURE_CHANNEL_TYPE_MPEG;
474 cx->mpg_data_received = cx->vbi_data_inserted = 0;
475 cx->dualwatch_jiffies = jiffies;
476 cx->dualwatch_stereo_mode = cx->params.audio_properties & 0x300;
477 cx->search_pack_header = 0;
478 break;
479
480 case CX18_ENC_STREAM_TYPE_TS:
481 captype = CAPTURE_CHANNEL_TYPE_TS;
482 ts = 1;
483 break;
484 case CX18_ENC_STREAM_TYPE_YUV:
485 captype = CAPTURE_CHANNEL_TYPE_YUV;
486 break;
487 case CX18_ENC_STREAM_TYPE_PCM:
488 captype = CAPTURE_CHANNEL_TYPE_PCM;
489 break;
490 case CX18_ENC_STREAM_TYPE_VBI:
Andy Wallsdd073432008-12-12 16:24:04 -0300491 captype = cx18_raw_vbi(cx) ?
492 CAPTURE_CHANNEL_TYPE_VBI : CAPTURE_CHANNEL_TYPE_SLICED_VBI;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300493 cx->vbi.frame = 0;
494 cx->vbi.inserted_frame = 0;
495 memset(cx->vbi.sliced_mpeg_size,
496 0, sizeof(cx->vbi.sliced_mpeg_size));
497 break;
498 default:
499 return -EINVAL;
500 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300501
502 /* mute/unmute video */
503 cx18_vapi(cx, CX18_CPU_SET_VIDEO_MUTE, 2,
504 s->handle, !!test_bit(CX18_F_I_RADIO_USER, &cx->i_flags));
505
506 /* Clear Streamoff flags in case left from last capture */
507 clear_bit(CX18_F_S_STREAMOFF, &s->s_flags);
508
509 cx18_vapi_result(cx, data, CX18_CREATE_TASK, 1, CPU_CMD_MASK_CAPTURE);
510 s->handle = data[0];
511 cx18_vapi(cx, CX18_CPU_SET_CHANNEL_TYPE, 2, s->handle, captype);
512
Hans Verkuil31554ae2008-05-25 11:21:27 -0300513 if (atomic_read(&cx->ana_capturing) == 0 && !ts) {
Andy Walls50b86ba2008-11-23 19:16:44 -0300514 struct cx18_api_func_private priv;
515
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300516 /* Stuff from Windows, we don't know what it is */
517 cx18_vapi(cx, CX18_CPU_SET_VER_CROP_LINE, 2, s->handle, 0);
518 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 3, 1);
519 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 8, 0);
520 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 4, 1);
521 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 2, s->handle, 12);
522
523 cx18_vapi(cx, CX18_CPU_SET_CAPTURE_LINE_NO, 3,
524 s->handle, cx->digitizer, cx->digitizer);
525
526 /* Setup VBI */
527 if (cx->v4l2_cap & V4L2_CAP_VBI_CAPTURE)
528 cx18_vbi_setup(s);
529
530 /* assign program index info.
531 Mask 7: select I/P/B, Num_req: 400 max */
532 cx18_vapi_result(cx, data, CX18_CPU_SET_INDEXTABLE, 1, 0);
533
534 /* Setup API for Stream */
Andy Walls50b86ba2008-11-23 19:16:44 -0300535 priv.cx = cx;
536 priv.s = s;
537 cx2341x_update(&priv, cx18_api_func, NULL, &cx->params);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300538 }
539
Hans Verkuil31554ae2008-05-25 11:21:27 -0300540 if (atomic_read(&cx->tot_capturing) == 0) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300541 clear_bit(CX18_F_I_EOS, &cx->i_flags);
Andy Wallsb1526422008-08-30 16:03:44 -0300542 cx18_write_reg(cx, 7, CX18_DSP0_INTERRUPT_MASK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300543 }
544
545 cx18_vapi(cx, CX18_CPU_DE_SET_MDL_ACK, 3, s->handle,
Al Viro990c81c2008-05-21 00:32:01 -0300546 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][0] - cx->enc_mem,
547 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][1] - cx->enc_mem);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300548
Andy Walls66c2a6b2008-12-08 23:02:45 -0300549 /* Init all the cpu_mdls for this stream */
550 cx18_flush_queues(s);
551 mutex_lock(&s->qlock);
Andy Wallsf6b181a2008-12-14 21:05:36 -0300552 list_for_each_entry(buf, &s->q_free.list, list) {
Andy Wallsb1526422008-08-30 16:03:44 -0300553 cx18_writel(cx, buf->dma_handle,
554 &cx->scb->cpu_mdl[buf->id].paddr);
555 cx18_writel(cx, s->buf_size, &cx->scb->cpu_mdl[buf->id].length);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300556 }
Andy Walls66c2a6b2008-12-08 23:02:45 -0300557 mutex_unlock(&s->qlock);
Andy Wallsabb096d2008-12-12 15:50:27 -0300558 cx18_stream_load_fw_queue(s);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300559
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300560 /* begin_capture */
561 if (cx18_vapi(cx, CX18_CPU_CAPTURE_START, 1, s->handle)) {
562 CX18_DEBUG_WARN("Error starting capture!\n");
Andy Walls3b5df8e2008-08-23 18:36:50 -0300563 /* Ensure we're really not capturing before releasing MDLs */
564 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
565 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, 1);
566 else
567 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300568 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
569 /* FIXME - CX18_F_S_STREAMOFF as well? */
Andy Walls3b5df8e2008-08-23 18:36:50 -0300570 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300571 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
Andy Walls66c2a6b2008-12-08 23:02:45 -0300572 s->handle = CX18_INVALID_TASK_HANDLE;
573 if (atomic_read(&cx->tot_capturing) == 0) {
574 set_bit(CX18_F_I_EOS, &cx->i_flags);
575 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
576 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300577 return -EINVAL;
578 }
579
580 /* you're live! sit back and await interrupts :) */
Hans Verkuil31554ae2008-05-25 11:21:27 -0300581 if (!ts)
582 atomic_inc(&cx->ana_capturing);
583 atomic_inc(&cx->tot_capturing);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300584 return 0;
585}
586
587void cx18_stop_all_captures(struct cx18 *cx)
588{
589 int i;
590
591 for (i = CX18_MAX_STREAMS - 1; i >= 0; i--) {
592 struct cx18_stream *s = &cx->streams[i];
593
Andy Walls3d059132009-01-10 21:54:39 -0300594 if (s->video_dev == NULL && s->dvb.enabled == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300595 continue;
596 if (test_bit(CX18_F_S_STREAMING, &s->s_flags))
597 cx18_stop_v4l2_encode_stream(s, 0);
598 }
599}
600
601int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end)
602{
603 struct cx18 *cx = s->cx;
604 unsigned long then;
605
Andy Walls3d059132009-01-10 21:54:39 -0300606 if (s->video_dev == NULL && s->dvb.enabled == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300607 return -EINVAL;
608
609 /* This function assumes that you are allowed to stop the capture
610 and that we are actually capturing */
611
612 CX18_DEBUG_INFO("Stop Capture\n");
613
Hans Verkuil31554ae2008-05-25 11:21:27 -0300614 if (atomic_read(&cx->tot_capturing) == 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300615 return 0;
616
617 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
618 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, !gop_end);
619 else
620 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
621
622 then = jiffies;
623
624 if (s->type == CX18_ENC_STREAM_TYPE_MPG && gop_end) {
625 CX18_INFO("ignoring gop_end: not (yet?) supported by the firmware\n");
626 }
627
Hans Verkuil31554ae2008-05-25 11:21:27 -0300628 if (s->type != CX18_ENC_STREAM_TYPE_TS)
629 atomic_dec(&cx->ana_capturing);
630 atomic_dec(&cx->tot_capturing);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300631
632 /* Clear capture and no-read bits */
633 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
634
Andy Wallsf68d0cf2008-11-05 21:19:15 -0300635 /* Tell the CX23418 it can't use our buffers anymore */
636 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
637
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300638 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
Andy Wallsd3c5e702008-08-23 16:42:29 -0300639 s->handle = CX18_INVALID_TASK_HANDLE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300640
Hans Verkuil31554ae2008-05-25 11:21:27 -0300641 if (atomic_read(&cx->tot_capturing) > 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300642 return 0;
643
Andy Wallsb1526422008-08-30 16:03:44 -0300644 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300645 wake_up(&s->waitq);
646
647 return 0;
648}
649
650u32 cx18_find_handle(struct cx18 *cx)
651{
652 int i;
653
654 /* find first available handle to be used for global settings */
655 for (i = 0; i < CX18_MAX_STREAMS; i++) {
656 struct cx18_stream *s = &cx->streams[i];
657
Andy Walls3d059132009-01-10 21:54:39 -0300658 if (s->video_dev && (s->handle != CX18_INVALID_TASK_HANDLE))
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300659 return s->handle;
660 }
Andy Wallsd3c5e702008-08-23 16:42:29 -0300661 return CX18_INVALID_TASK_HANDLE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300662}
Andy Wallsee2d64f2008-11-16 01:38:19 -0300663
664struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle)
665{
666 int i;
667 struct cx18_stream *s;
668
669 if (handle == CX18_INVALID_TASK_HANDLE)
670 return NULL;
671
672 for (i = 0; i < CX18_MAX_STREAMS; i++) {
673 s = &cx->streams[i];
674 if (s->handle != handle)
675 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300676 if (s->video_dev || s->dvb.enabled)
Andy Wallsee2d64f2008-11-16 01:38:19 -0300677 return s;
678 }
679 return NULL;
680}