blob: 3939a804f04373d3d04131eade5070fda5799885 [file] [log] [blame]
Hans Verkuil1a0adaf2007-04-27 12:31:25 -03001/*
2 init/start/stop/exit stream functions
3 Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com>
4 Copyright (C) 2004 Chris Kennedy <c@groovy.org>
5 Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22/* License: GPL
23 * Author: Kevin Thayer <nufan_wfk at yahoo dot com>
24 *
25 * This file will hold API related functions, both internal (firmware api)
26 * and external (v4l2, etc)
27 *
28 * -----
29 * MPG600/MPG160 support by T.Adachi <tadachi@tadachi-net.com>
30 * and Takeru KOMORIYA<komoriya@paken.org>
31 *
32 * AVerMedia M179 GPIO info by Chris Pinkham <cpinkham@bc2va.org>
33 * using information provided by Jiun-Kuei Jung @ AVerMedia.
34 */
35
36#include "ivtv-driver.h"
37#include "ivtv-fileops.h"
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030038#include "ivtv-queue.h"
39#include "ivtv-mailbox.h"
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030040#include "ivtv-ioctl.h"
Hans Verkuil33c0fca2007-08-23 06:32:46 -030041#include "ivtv-irq.h"
Hans Verkuil612570f2007-08-23 05:42:59 -030042#include "ivtv-yuv.h"
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030043#include "ivtv-cards.h"
Hans Verkuil612570f2007-08-23 05:42:59 -030044#include "ivtv-streams.h"
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030045
46static struct file_operations ivtv_v4l2_enc_fops = {
47 .owner = THIS_MODULE,
48 .read = ivtv_v4l2_read,
49 .write = ivtv_v4l2_write,
50 .open = ivtv_v4l2_open,
51 .ioctl = ivtv_v4l2_ioctl,
52 .release = ivtv_v4l2_close,
53 .poll = ivtv_v4l2_enc_poll,
54};
55
56static struct file_operations ivtv_v4l2_dec_fops = {
57 .owner = THIS_MODULE,
58 .read = ivtv_v4l2_read,
59 .write = ivtv_v4l2_write,
60 .open = ivtv_v4l2_open,
61 .ioctl = ivtv_v4l2_ioctl,
62 .release = ivtv_v4l2_close,
63 .poll = ivtv_v4l2_dec_poll,
64};
65
Hans Verkuil33c0fca2007-08-23 06:32:46 -030066#define IVTV_V4L2_DEC_MPG_OFFSET 16 /* offset from 0 to register decoder mpg v4l2 minors on */
67#define IVTV_V4L2_ENC_PCM_OFFSET 24 /* offset from 0 to register pcm v4l2 minors on */
68#define IVTV_V4L2_ENC_YUV_OFFSET 32 /* offset from 0 to register yuv v4l2 minors on */
69#define IVTV_V4L2_DEC_YUV_OFFSET 48 /* offset from 0 to register decoder yuv v4l2 minors on */
70#define IVTV_V4L2_DEC_VBI_OFFSET 8 /* offset from 0 to register decoder vbi input v4l2 minors on */
71#define IVTV_V4L2_DEC_VOUT_OFFSET 16 /* offset from 0 to register vbi output v4l2 minors on */
72
Hans Verkuil31ec1352007-03-03 08:50:42 -030073static struct {
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030074 const char *name;
75 int vfl_type;
76 int minor_offset;
77 int dma, pio;
78 enum v4l2_buf_type buf_type;
79 struct file_operations *fops;
80} ivtv_stream_info[] = {
81 { /* IVTV_ENC_STREAM_TYPE_MPG */
Hans Verkuil7c03a442007-08-19 18:59:42 -030082 "encoder MPG",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030083 VFL_TYPE_GRABBER, 0,
84 PCI_DMA_FROMDEVICE, 0, V4L2_BUF_TYPE_VIDEO_CAPTURE,
85 &ivtv_v4l2_enc_fops
86 },
87 { /* IVTV_ENC_STREAM_TYPE_YUV */
88 "encoder YUV",
89 VFL_TYPE_GRABBER, IVTV_V4L2_ENC_YUV_OFFSET,
90 PCI_DMA_FROMDEVICE, 0, V4L2_BUF_TYPE_VIDEO_CAPTURE,
91 &ivtv_v4l2_enc_fops
92 },
93 { /* IVTV_ENC_STREAM_TYPE_VBI */
94 "encoder VBI",
95 VFL_TYPE_VBI, 0,
96 PCI_DMA_FROMDEVICE, 0, V4L2_BUF_TYPE_VBI_CAPTURE,
97 &ivtv_v4l2_enc_fops
98 },
99 { /* IVTV_ENC_STREAM_TYPE_PCM */
Hans Verkuil7c03a442007-08-19 18:59:42 -0300100 "encoder PCM",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300101 VFL_TYPE_GRABBER, IVTV_V4L2_ENC_PCM_OFFSET,
102 PCI_DMA_FROMDEVICE, 0, V4L2_BUF_TYPE_PRIVATE,
103 &ivtv_v4l2_enc_fops
104 },
105 { /* IVTV_ENC_STREAM_TYPE_RAD */
106 "encoder radio",
107 VFL_TYPE_RADIO, 0,
108 PCI_DMA_NONE, 1, V4L2_BUF_TYPE_PRIVATE,
109 &ivtv_v4l2_enc_fops
110 },
111 { /* IVTV_DEC_STREAM_TYPE_MPG */
Hans Verkuil7c03a442007-08-19 18:59:42 -0300112 "decoder MPG",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300113 VFL_TYPE_GRABBER, IVTV_V4L2_DEC_MPG_OFFSET,
114 PCI_DMA_TODEVICE, 0, V4L2_BUF_TYPE_VIDEO_OUTPUT,
115 &ivtv_v4l2_dec_fops
116 },
117 { /* IVTV_DEC_STREAM_TYPE_VBI */
118 "decoder VBI",
119 VFL_TYPE_VBI, IVTV_V4L2_DEC_VBI_OFFSET,
120 PCI_DMA_NONE, 1, V4L2_BUF_TYPE_VBI_CAPTURE,
121 &ivtv_v4l2_enc_fops
122 },
123 { /* IVTV_DEC_STREAM_TYPE_VOUT */
124 "decoder VOUT",
125 VFL_TYPE_VBI, IVTV_V4L2_DEC_VOUT_OFFSET,
126 PCI_DMA_NONE, 1, V4L2_BUF_TYPE_VBI_OUTPUT,
127 &ivtv_v4l2_dec_fops
128 },
129 { /* IVTV_DEC_STREAM_TYPE_YUV */
130 "decoder YUV",
131 VFL_TYPE_GRABBER, IVTV_V4L2_DEC_YUV_OFFSET,
132 PCI_DMA_TODEVICE, 0, V4L2_BUF_TYPE_VIDEO_OUTPUT,
133 &ivtv_v4l2_dec_fops
134 }
135};
136
137static void ivtv_stream_init(struct ivtv *itv, int type)
138{
139 struct ivtv_stream *s = &itv->streams[type];
140 struct video_device *dev = s->v4l2dev;
141
142 /* we need to keep v4l2dev, so restore it afterwards */
143 memset(s, 0, sizeof(*s));
144 s->v4l2dev = dev;
145
146 /* initialize ivtv_stream fields */
147 s->itv = itv;
148 s->type = type;
149 s->name = ivtv_stream_info[type].name;
150
151 if (ivtv_stream_info[type].pio)
152 s->dma = PCI_DMA_NONE;
153 else
154 s->dma = ivtv_stream_info[type].dma;
155 s->buf_size = itv->stream_buf_size[type];
156 if (s->buf_size)
Hans Verkuil313e91e2007-08-19 05:32:33 -0300157 s->buffers = (itv->options.kilobytes[type] * 1024 + s->buf_size - 1) / s->buf_size;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300158 spin_lock_init(&s->qlock);
159 init_waitqueue_head(&s->waitq);
160 s->id = -1;
Hans Verkuil37093b12007-07-28 19:45:50 -0300161 s->sg_handle = IVTV_DMA_UNMAPPED;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300162 ivtv_queue_init(&s->q_free);
163 ivtv_queue_init(&s->q_full);
164 ivtv_queue_init(&s->q_dma);
165 ivtv_queue_init(&s->q_predma);
166 ivtv_queue_init(&s->q_io);
167}
168
169static int ivtv_reg_dev(struct ivtv *itv, int type)
170{
171 struct ivtv_stream *s = &itv->streams[type];
172 int vfl_type = ivtv_stream_info[type].vfl_type;
173 int minor_offset = ivtv_stream_info[type].minor_offset;
174 int minor;
175
176 /* These four fields are always initialized. If v4l2dev == NULL, then
177 this stream is not in use. In that case no other fields but these
178 four can be used. */
179 s->v4l2dev = NULL;
180 s->itv = itv;
181 s->type = type;
182 s->name = ivtv_stream_info[type].name;
183
184 /* Check whether the radio is supported */
185 if (type == IVTV_ENC_STREAM_TYPE_RAD && !(itv->v4l2_cap & V4L2_CAP_RADIO))
186 return 0;
187 if (type >= IVTV_DEC_STREAM_TYPE_MPG && !(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
188 return 0;
189
190 if (minor_offset >= 0)
191 /* card number + user defined offset + device offset */
192 minor = itv->num + ivtv_first_minor + minor_offset;
193 else
194 minor = -1;
195
196 /* User explicitly selected 0 buffers for these streams, so don't
197 create them. */
198 if (minor >= 0 && ivtv_stream_info[type].dma != PCI_DMA_NONE &&
Hans Verkuil313e91e2007-08-19 05:32:33 -0300199 itv->options.kilobytes[type] == 0) {
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300200 IVTV_INFO("Disabled %s device\n", ivtv_stream_info[type].name);
201 return 0;
202 }
203
204 ivtv_stream_init(itv, type);
205
206 /* allocate and initialize the v4l2 video device structure */
207 s->v4l2dev = video_device_alloc();
208 if (s->v4l2dev == NULL) {
209 IVTV_ERR("Couldn't allocate v4l2 video_device for %s\n", s->name);
210 return -ENOMEM;
211 }
212
213 s->v4l2dev->type = VID_TYPE_CAPTURE | VID_TYPE_TUNER | VID_TYPE_TELETEXT |
214 VID_TYPE_CLIPPING | VID_TYPE_SCALES | VID_TYPE_MPEG_ENCODER;
215 if (itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT) {
216 s->v4l2dev->type |= VID_TYPE_MPEG_DECODER;
217 }
218 snprintf(s->v4l2dev->name, sizeof(s->v4l2dev->name), "ivtv%d %s",
219 itv->num, s->name);
220
221 s->v4l2dev->minor = minor;
222 s->v4l2dev->dev = &itv->dev->dev;
223 s->v4l2dev->fops = ivtv_stream_info[type].fops;
224 s->v4l2dev->release = video_device_release;
225
226 if (minor >= 0) {
227 /* Register device. First try the desired minor, then any free one. */
228 if (video_register_device(s->v4l2dev, vfl_type, minor) &&
229 video_register_device(s->v4l2dev, vfl_type, -1)) {
230 IVTV_ERR("Couldn't register v4l2 device for %s minor %d\n",
231 s->name, minor);
232 video_device_release(s->v4l2dev);
233 s->v4l2dev = NULL;
234 return -ENOMEM;
235 }
236 }
237 else {
238 /* Don't register a 'hidden' stream (OSD) */
239 IVTV_INFO("Created framebuffer stream for %s\n", s->name);
240 return 0;
241 }
242
243 switch (vfl_type) {
244 case VFL_TYPE_GRABBER:
Hans Verkuil313e91e2007-08-19 05:32:33 -0300245 IVTV_INFO("Registered device video%d for %s (%d kB)\n",
246 s->v4l2dev->minor, s->name, itv->options.kilobytes[type]);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300247 break;
248 case VFL_TYPE_RADIO:
249 IVTV_INFO("Registered device radio%d for %s\n",
250 s->v4l2dev->minor - MINOR_VFL_TYPE_RADIO_MIN, s->name);
251 break;
252 case VFL_TYPE_VBI:
Hans Verkuil313e91e2007-08-19 05:32:33 -0300253 if (itv->options.kilobytes[type])
254 IVTV_INFO("Registered device vbi%d for %s (%d kB)\n",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300255 s->v4l2dev->minor - MINOR_VFL_TYPE_VBI_MIN,
Hans Verkuil313e91e2007-08-19 05:32:33 -0300256 s->name, itv->options.kilobytes[type]);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300257 else
258 IVTV_INFO("Registered device vbi%d for %s\n",
259 s->v4l2dev->minor - MINOR_VFL_TYPE_VBI_MIN, s->name);
260 break;
261 }
262 return 0;
263}
264
265/* Initialize v4l2 variables and register v4l2 devices */
266int ivtv_streams_setup(struct ivtv *itv)
267{
268 int type;
269
270 /* Setup V4L2 Devices */
271 for (type = 0; type < IVTV_MAX_STREAMS; type++) {
272 /* Register Device */
273 if (ivtv_reg_dev(itv, type))
274 break;
275
276 if (itv->streams[type].v4l2dev == NULL)
277 continue;
278
279 /* Allocate Stream */
280 if (ivtv_stream_alloc(&itv->streams[type]))
281 break;
282 }
283 if (type == IVTV_MAX_STREAMS) {
284 return 0;
285 }
286
287 /* One or more streams could not be initialized. Clean 'em all up. */
288 ivtv_streams_cleanup(itv);
289 return -ENOMEM;
290}
291
292/* Unregister v4l2 devices */
293void ivtv_streams_cleanup(struct ivtv *itv)
294{
295 int type;
296
297 /* Teardown all streams */
298 for (type = 0; type < IVTV_MAX_STREAMS; type++) {
299 struct video_device *vdev = itv->streams[type].v4l2dev;
300
301 itv->streams[type].v4l2dev = NULL;
302 if (vdev == NULL)
303 continue;
304
305 ivtv_stream_free(&itv->streams[type]);
306 /* Free Device */
307 if (vdev->minor == -1) /* 'Hidden' never registered stream (OSD) */
308 video_device_release(vdev);
309 else /* All others, just unregister. */
310 video_unregister_device(vdev);
311 }
312}
313
314static void ivtv_vbi_setup(struct ivtv *itv)
315{
316 int raw = itv->vbi.sliced_in->service_set == 0;
317 u32 data[CX2341X_MBOX_MAX_DATA];
318 int lines;
319 int i;
320
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300321 /* Reset VBI */
322 ivtv_vapi(itv, CX2341X_ENC_SET_VBI_LINE, 5, 0xffff , 0, 0, 0, 0);
323
324 if (itv->is_60hz) {
325 itv->vbi.count = 12;
326 itv->vbi.start[0] = 10;
327 itv->vbi.start[1] = 273;
328 } else { /* PAL/SECAM */
329 itv->vbi.count = 18;
330 itv->vbi.start[0] = 6;
331 itv->vbi.start[1] = 318;
332 }
333
334 /* setup VBI registers */
335 itv->video_dec_func(itv, VIDIOC_S_FMT, &itv->vbi.in);
336
337 /* determine number of lines and total number of VBI bytes.
338 A raw line takes 1443 bytes: 2 * 720 + 4 byte frame header - 1
339 The '- 1' byte is probably an unused U or V byte. Or something...
340 A sliced line takes 51 bytes: 4 byte frame header, 4 byte internal
341 header, 42 data bytes + checksum (to be confirmed) */
342 if (raw) {
343 lines = itv->vbi.count * 2;
344 } else {
345 lines = itv->is_60hz ? 24 : 38;
346 if (itv->is_60hz && (itv->hw_flags & IVTV_HW_CX25840))
347 lines += 2;
348 }
349
350 itv->vbi.enc_size = lines * (raw ? itv->vbi.raw_size : itv->vbi.sliced_size);
351
352 /* Note: sliced vs raw flag doesn't seem to have any effect
353 TODO: check mode (0x02) value with older ivtv versions. */
354 data[0] = raw | 0x02 | (0xbd << 8);
355
356 /* Every X number of frames a VBI interrupt arrives (frames as in 25 or 30 fps) */
357 data[1] = 1;
358 /* The VBI frames are stored in a ringbuffer with this size (with a VBI frame as unit) */
359 data[2] = raw ? 4 : 8;
360 /* The start/stop codes determine which VBI lines end up in the raw VBI data area.
361 The codes are from table 24 in the saa7115 datasheet. Each raw/sliced/video line
362 is framed with codes FF0000XX where XX is the SAV/EAV (Start/End of Active Video)
363 code. These values for raw VBI are obtained from a driver disassembly. The sliced
364 start/stop codes was deduced from this, but they do not appear in the driver.
365 Other code pairs that I found are: 0x250E6249/0x13545454 and 0x25256262/0x38137F54.
366 However, I have no idea what these values are for. */
367 if (itv->hw_flags & IVTV_HW_CX25840) {
368 /* Setup VBI for the cx25840 digitizer */
369 if (raw) {
370 data[3] = 0x20602060;
371 data[4] = 0x30703070;
372 } else {
373 data[3] = 0xB0F0B0F0;
374 data[4] = 0xA0E0A0E0;
375 }
376 /* Lines per frame */
377 data[5] = lines;
378 /* bytes per line */
379 data[6] = (raw ? itv->vbi.raw_size : itv->vbi.sliced_size);
380 } else {
381 /* Setup VBI for the saa7115 digitizer */
382 if (raw) {
383 data[3] = 0x25256262;
384 data[4] = 0x387F7F7F;
385 } else {
386 data[3] = 0xABABECEC;
387 data[4] = 0xB6F1F1F1;
388 }
389 /* Lines per frame */
390 data[5] = lines;
391 /* bytes per line */
392 data[6] = itv->vbi.enc_size / lines;
393 }
394
395 IVTV_DEBUG_INFO(
396 "Setup VBI API header 0x%08x pkts %d buffs %d ln %d sz %d\n",
397 data[0], data[1], data[2], data[5], data[6]);
398
399 ivtv_api(itv, CX2341X_ENC_SET_VBI_CONFIG, 7, data);
400
401 /* returns the VBI encoder memory area. */
402 itv->vbi.enc_start = data[2];
403 itv->vbi.fpi = data[0];
404 if (!itv->vbi.fpi)
405 itv->vbi.fpi = 1;
406
407 IVTV_DEBUG_INFO("Setup VBI start 0x%08x frames %d fpi %d lines 0x%08x\n",
408 itv->vbi.enc_start, data[1], itv->vbi.fpi, itv->digitizer);
409
410 /* select VBI lines.
411 Note that the sliced argument seems to have no effect. */
412 for (i = 2; i <= 24; i++) {
413 int valid;
414
415 if (itv->is_60hz) {
416 valid = i >= 10 && i < 22;
417 } else {
418 valid = i >= 6 && i < 24;
419 }
420 ivtv_vapi(itv, CX2341X_ENC_SET_VBI_LINE, 5, i - 1,
421 valid, 0 , 0, 0);
422 ivtv_vapi(itv, CX2341X_ENC_SET_VBI_LINE, 5, (i - 1) | 0x80000000,
423 valid, 0, 0, 0);
424 }
425
426 /* Remaining VBI questions:
427 - Is it possible to select particular VBI lines only for inclusion in the MPEG
428 stream? Currently you can only get the first X lines.
429 - Is mixed raw and sliced VBI possible?
430 - What's the meaning of the raw/sliced flag?
431 - What's the meaning of params 2, 3 & 4 of the Select VBI command? */
432}
433
434int ivtv_start_v4l2_encode_stream(struct ivtv_stream *s)
435{
436 u32 data[CX2341X_MBOX_MAX_DATA];
437 struct ivtv *itv = s->itv;
438 int captype = 0, subtype = 0;
439 int enable_passthrough = 0;
440
441 if (s->v4l2dev == NULL)
442 return -EINVAL;
443
444 IVTV_DEBUG_INFO("Start encoder stream %s\n", s->name);
445
446 switch (s->type) {
447 case IVTV_ENC_STREAM_TYPE_MPG:
448 captype = 0;
449 subtype = 3;
450
451 /* Stop Passthrough */
452 if (itv->output_mode == OUT_PASSTHROUGH) {
453 ivtv_passthrough_mode(itv, 0);
454 enable_passthrough = 1;
455 }
456 itv->mpg_data_received = itv->vbi_data_inserted = 0;
457 itv->dualwatch_jiffies = jiffies;
458 itv->dualwatch_stereo_mode = itv->params.audio_properties & 0x0300;
459 itv->search_pack_header = 0;
460 break;
461
462 case IVTV_ENC_STREAM_TYPE_YUV:
463 if (itv->output_mode == OUT_PASSTHROUGH) {
464 captype = 2;
465 subtype = 11; /* video+audio+decoder */
466 break;
467 }
468 captype = 1;
469 subtype = 1;
470 break;
471 case IVTV_ENC_STREAM_TYPE_PCM:
472 captype = 1;
473 subtype = 2;
474 break;
475 case IVTV_ENC_STREAM_TYPE_VBI:
476 captype = 1;
477 subtype = 4;
478
479 itv->vbi.frame = 0;
480 itv->vbi.inserted_frame = 0;
481 memset(itv->vbi.sliced_mpeg_size,
482 0, sizeof(itv->vbi.sliced_mpeg_size));
483 break;
484 default:
485 return -EINVAL;
486 }
487 s->subtype = subtype;
488 s->buffers_stolen = 0;
489
490 /* mute/unmute video */
491 ivtv_vapi(itv, CX2341X_ENC_MUTE_VIDEO, 1, test_bit(IVTV_F_I_RADIO_USER, &itv->i_flags) ? 1 : 0);
492
493 /* Clear Streamoff flags in case left from last capture */
494 clear_bit(IVTV_F_S_STREAMOFF, &s->s_flags);
495
496 if (atomic_read(&itv->capturing) == 0) {
497 /* Always use frame based mode. Experiments have demonstrated that byte
498 stream based mode results in dropped frames and corruption. Not often,
499 but occasionally. Many thanks go to Leonard Orb who spent a lot of
500 effort and time trying to trace the cause of the drop outs. */
501 /* 1 frame per DMA */
502 /*ivtv_vapi(itv, CX2341X_ENC_SET_DMA_BLOCK_SIZE, 2, 128, 0); */
503 ivtv_vapi(itv, CX2341X_ENC_SET_DMA_BLOCK_SIZE, 2, 1, 1);
504
505 /* Stuff from Windows, we don't know what it is */
506 ivtv_vapi(itv, CX2341X_ENC_SET_VERT_CROP_LINE, 1, 0);
507 /* According to the docs, this should be correct. However, this is
508 untested. I don't dare enable this without having tested it.
509 Only very few old cards actually have this hardware combination.
510 ivtv_vapi(itv, CX2341X_ENC_SET_VERT_CROP_LINE, 1,
511 ((itv->hw_flags & IVTV_HW_SAA7114) && itv->is_60hz) ? 10001 : 0);
512 */
513 ivtv_vapi(itv, CX2341X_ENC_MISC, 2, 3, !itv->has_cx23415);
514 ivtv_vapi(itv, CX2341X_ENC_MISC, 2, 8, 0);
515 ivtv_vapi(itv, CX2341X_ENC_MISC, 2, 4, 1);
516 ivtv_vapi(itv, CX2341X_ENC_MISC, 1, 12);
517
518 /* assign placeholder */
519 ivtv_vapi(itv, CX2341X_ENC_SET_PLACEHOLDER, 12,
520 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
521
522 ivtv_vapi(itv, CX2341X_ENC_SET_NUM_VSYNC_LINES, 2, itv->digitizer, itv->digitizer);
523
524 /* Setup VBI */
525 if (itv->v4l2_cap & V4L2_CAP_VBI_CAPTURE) {
526 ivtv_vbi_setup(itv);
527 }
528
529 /* assign program index info. Mask 7: select I/P/B, Num_req: 400 max */
530 ivtv_vapi_result(itv, data, CX2341X_ENC_SET_PGM_INDEX_INFO, 2, 7, 400);
531 itv->pgm_info_offset = data[0];
532 itv->pgm_info_num = data[1];
533 itv->pgm_info_write_idx = 0;
534 itv->pgm_info_read_idx = 0;
535
536 IVTV_DEBUG_INFO("PGM Index at 0x%08x with %d elements\n",
537 itv->pgm_info_offset, itv->pgm_info_num);
538
539 /* Setup API for Stream */
540 cx2341x_update(itv, ivtv_api_func, NULL, &itv->params);
541 }
542
543 /* Vsync Setup */
544 if (itv->has_cx23415 && !test_and_set_bit(IVTV_F_I_DIG_RST, &itv->i_flags)) {
545 /* event notification (on) */
546 ivtv_vapi(itv, CX2341X_ENC_SET_EVENT_NOTIFICATION, 4, 0, 1, IVTV_IRQ_ENC_VIM_RST, -1);
547 ivtv_clear_irq_mask(itv, IVTV_IRQ_ENC_VIM_RST);
548 }
549
550 if (atomic_read(&itv->capturing) == 0) {
551 /* Clear all Pending Interrupts */
552 ivtv_set_irq_mask(itv, IVTV_IRQ_MASK_CAPTURE);
553
554 clear_bit(IVTV_F_I_EOS, &itv->i_flags);
555
556 /* Initialize Digitizer for Capture */
Hans Verkuil3562c432007-08-18 11:46:05 -0300557 itv->video_dec_func(itv, VIDIOC_STREAMOFF, 0);
558 ivtv_msleep_timeout(300, 1);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300559 ivtv_vapi(itv, CX2341X_ENC_INITIALIZE_INPUT, 0);
Hans Verkuil3562c432007-08-18 11:46:05 -0300560 itv->video_dec_func(itv, VIDIOC_STREAMON, 0);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300561 }
562
563 /* begin_capture */
564 if (ivtv_vapi(itv, CX2341X_ENC_START_CAPTURE, 2, captype, subtype))
565 {
566 IVTV_DEBUG_WARN( "Error starting capture!\n");
567 return -EINVAL;
568 }
569
570 /* Start Passthrough */
571 if (enable_passthrough) {
572 ivtv_passthrough_mode(itv, 1);
573 }
574
575 if (s->type == IVTV_ENC_STREAM_TYPE_VBI)
576 ivtv_clear_irq_mask(itv, IVTV_IRQ_ENC_VBI_CAP);
577 else
578 ivtv_clear_irq_mask(itv, IVTV_IRQ_MASK_CAPTURE);
579
580 /* you're live! sit back and await interrupts :) */
581 atomic_inc(&itv->capturing);
582 return 0;
583}
584
585static int ivtv_setup_v4l2_decode_stream(struct ivtv_stream *s)
586{
587 u32 data[CX2341X_MBOX_MAX_DATA];
588 struct ivtv *itv = s->itv;
589 int datatype;
590
591 if (s->v4l2dev == NULL)
592 return -EINVAL;
593
594 IVTV_DEBUG_INFO("Setting some initial decoder settings\n");
595
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300596 /* set audio mode to left/stereo for dual/stereo mode. */
597 ivtv_vapi(itv, CX2341X_DEC_SET_AUDIO_MODE, 2, itv->audio_bilingual_mode, itv->audio_stereo_mode);
598
599 /* set number of internal decoder buffers */
600 ivtv_vapi(itv, CX2341X_DEC_SET_DISPLAY_BUFFERS, 1, 0);
601
602 /* prebuffering */
603 ivtv_vapi(itv, CX2341X_DEC_SET_PREBUFFERING, 1, 1);
604
605 /* extract from user packets */
606 ivtv_vapi_result(itv, data, CX2341X_DEC_EXTRACT_VBI, 1, 1);
607 itv->vbi.dec_start = data[0];
608
609 IVTV_DEBUG_INFO("Decoder VBI RE-Insert start 0x%08x size 0x%08x\n",
610 itv->vbi.dec_start, data[1]);
611
612 /* set decoder source settings */
613 /* Data type: 0 = mpeg from host,
614 1 = yuv from encoder,
615 2 = yuv_from_host */
616 switch (s->type) {
617 case IVTV_DEC_STREAM_TYPE_YUV:
618 datatype = itv->output_mode == OUT_PASSTHROUGH ? 1 : 2;
619 IVTV_DEBUG_INFO("Setup DEC YUV Stream data[0] = %d\n", datatype);
620 break;
621 case IVTV_DEC_STREAM_TYPE_MPG:
622 default:
623 datatype = 0;
624 break;
625 }
626 if (ivtv_vapi(itv, CX2341X_DEC_SET_DECODER_SOURCE, 4, datatype,
627 itv->params.width, itv->params.height, itv->params.audio_properties)) {
Hans Verkuil5a338c32007-07-22 09:39:56 -0300628 IVTV_DEBUG_WARN("Couldn't initialize decoder source\n");
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300629 }
630 return 0;
631}
632
633int ivtv_start_v4l2_decode_stream(struct ivtv_stream *s, int gop_offset)
634{
635 struct ivtv *itv = s->itv;
636
637 if (s->v4l2dev == NULL)
638 return -EINVAL;
639
640 if (test_and_set_bit(IVTV_F_S_STREAMING, &s->s_flags))
641 return 0; /* already started */
642
643 IVTV_DEBUG_INFO("Starting decode stream %s (gop_offset %d)\n", s->name, gop_offset);
644
645 /* Clear Streamoff */
646 if (s->type == IVTV_DEC_STREAM_TYPE_YUV) {
647 /* Initialize Decoder */
648 /* Reprogram Decoder YUV Buffers for YUV */
649 write_reg(yuv_offset[0] >> 4, 0x82c);
650 write_reg((yuv_offset[0] + IVTV_YUV_BUFFER_UV_OFFSET) >> 4, 0x830);
651 write_reg(yuv_offset[0] >> 4, 0x834);
652 write_reg((yuv_offset[0] + IVTV_YUV_BUFFER_UV_OFFSET) >> 4, 0x838);
653
654 write_reg_sync(0x00000000 | (0x0c << 16) | (0x0b << 8), 0x2d24);
655
656 write_reg_sync(0x00108080, 0x2898);
657 /* Enable YUV decoder output */
658 write_reg_sync(0x01, IVTV_REG_VDM);
659 }
660
661 ivtv_setup_v4l2_decode_stream(s);
662
663 /* set dma size to 65536 bytes */
664 ivtv_vapi(itv, CX2341X_DEC_SET_DMA_BLOCK_SIZE, 1, 65536);
665
666 clear_bit(IVTV_F_S_STREAMOFF, &s->s_flags);
667
668 /* Zero out decoder counters */
Hans Verkuil33c0fca2007-08-23 06:32:46 -0300669 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA_END].data[0]);
670 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA_END].data[1]);
671 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA_END].data[2]);
672 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA_END].data[3]);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300673 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA].data[0]);
674 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA].data[1]);
675 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA].data[2]);
676 writel(0, &itv->dec_mbox.mbox[IVTV_MBOX_DMA].data[3]);
677
678 /* turn on notification of dual/stereo mode change */
679 ivtv_vapi(itv, CX2341X_DEC_SET_EVENT_NOTIFICATION, 4, 0, 1, IVTV_IRQ_DEC_AUD_MODE_CHG, -1);
680
681 /* start playback */
682 ivtv_vapi(itv, CX2341X_DEC_START_PLAYBACK, 2, gop_offset, 0);
683
684 /* Clear the following Interrupt mask bits for decoding */
685 ivtv_clear_irq_mask(itv, IVTV_IRQ_MASK_DECODE);
686 IVTV_DEBUG_IRQ("IRQ Mask is now: 0x%08x\n", itv->irqmask);
687
688 /* you're live! sit back and await interrupts :) */
689 atomic_inc(&itv->decoding);
690 return 0;
691}
692
693void ivtv_stop_all_captures(struct ivtv *itv)
694{
695 int i;
696
697 for (i = IVTV_MAX_STREAMS - 1; i >= 0; i--) {
698 struct ivtv_stream *s = &itv->streams[i];
699
700 if (s->v4l2dev == NULL)
701 continue;
702 if (test_bit(IVTV_F_S_STREAMING, &s->s_flags)) {
703 ivtv_stop_v4l2_encode_stream(s, 0);
704 }
705 }
706}
707
708int ivtv_stop_v4l2_encode_stream(struct ivtv_stream *s, int gop_end)
709{
710 struct ivtv *itv = s->itv;
711 DECLARE_WAITQUEUE(wait, current);
712 int cap_type;
713 unsigned long then;
714 int stopmode;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300715
716 if (s->v4l2dev == NULL)
717 return -EINVAL;
718
719 /* This function assumes that you are allowed to stop the capture
720 and that we are actually capturing */
721
722 IVTV_DEBUG_INFO("Stop Capture\n");
723
724 if (s->type == IVTV_DEC_STREAM_TYPE_VOUT)
725 return 0;
726 if (atomic_read(&itv->capturing) == 0)
727 return 0;
728
729 switch (s->type) {
730 case IVTV_ENC_STREAM_TYPE_YUV:
731 cap_type = 1;
732 break;
733 case IVTV_ENC_STREAM_TYPE_PCM:
734 cap_type = 1;
735 break;
736 case IVTV_ENC_STREAM_TYPE_VBI:
737 cap_type = 1;
738 break;
739 case IVTV_ENC_STREAM_TYPE_MPG:
740 default:
741 cap_type = 0;
742 break;
743 }
744
745 /* Stop Capture Mode */
746 if (s->type == IVTV_ENC_STREAM_TYPE_MPG && gop_end) {
747 stopmode = 0;
748 } else {
749 stopmode = 1;
750 }
751
752 /* end_capture */
753 /* when: 0 = end of GOP 1 = NOW!, type: 0 = mpeg, subtype: 3 = video+audio */
754 ivtv_vapi(itv, CX2341X_ENC_STOP_CAPTURE, 3, stopmode, cap_type, s->subtype);
755
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300756 then = jiffies;
757
758 if (!test_bit(IVTV_F_S_PASSTHROUGH, &s->s_flags)) {
759 if (s->type == IVTV_ENC_STREAM_TYPE_MPG && gop_end) {
760 /* only run these if we're shutting down the last cap */
761 unsigned long duration;
762
763 then = jiffies;
764 add_wait_queue(&itv->cap_w, &wait);
765
766 set_current_state(TASK_INTERRUPTIBLE);
767
768 /* wait 2s for EOS interrupt */
Mauro Carvalho Chehab201700d2007-07-19 11:21:04 -0300769 while (!test_bit(IVTV_F_I_EOS, &itv->i_flags) &&
770 jiffies < then + msecs_to_jiffies (2000)) {
771 schedule_timeout(msecs_to_jiffies(10));
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300772 }
773
774 /* To convert jiffies to ms, we must multiply by 1000
775 * and divide by HZ. To avoid runtime division, we
776 * convert this to multiplication by 1000/HZ.
777 * Since integer division truncates, we get the best
778 * accuracy if we do a rounding calculation of the constant.
779 * Think of the case where HZ is 1024.
780 */
781 duration = ((1000 + HZ / 2) / HZ) * (jiffies - then);
782
783 if (!test_bit(IVTV_F_I_EOS, &itv->i_flags)) {
784 IVTV_DEBUG_WARN("%s: EOS interrupt not received! stopping anyway.\n", s->name);
785 IVTV_DEBUG_WARN("%s: waited %lu ms.\n", s->name, duration);
786 } else {
787 IVTV_DEBUG_INFO("%s: EOS took %lu ms to occur.\n", s->name, duration);
788 }
789 set_current_state(TASK_RUNNING);
790 remove_wait_queue(&itv->cap_w, &wait);
791 }
792
793 then = jiffies;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300794
Hans Verkuil3562c432007-08-18 11:46:05 -0300795 /* Handle any pending interrupts */
796 ivtv_msleep_timeout(100, 1);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300797 }
798
799 atomic_dec(&itv->capturing);
800
801 /* Clear capture and no-read bits */
802 clear_bit(IVTV_F_S_STREAMING, &s->s_flags);
803
804 if (s->type == IVTV_ENC_STREAM_TYPE_VBI)
805 ivtv_set_irq_mask(itv, IVTV_IRQ_ENC_VBI_CAP);
806
807 if (atomic_read(&itv->capturing) > 0) {
808 return 0;
809 }
810
811 /* Set the following Interrupt mask bits for capture */
812 ivtv_set_irq_mask(itv, IVTV_IRQ_MASK_CAPTURE);
Hans Verkuile17a06b2007-08-18 15:48:42 -0300813 del_timer(&itv->dma_timer);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300814
Hans Verkuilf8859692007-07-10 14:58:33 -0300815 /* event notification (off) */
816 if (test_and_clear_bit(IVTV_F_I_DIG_RST, &itv->i_flags)) {
817 /* type: 0 = refresh */
818 /* on/off: 0 = off, intr: 0x10000000, mbox_id: -1: none */
819 ivtv_vapi(itv, CX2341X_ENC_SET_EVENT_NOTIFICATION, 4, 0, 0, IVTV_IRQ_ENC_VIM_RST, -1);
820 ivtv_set_irq_mask(itv, IVTV_IRQ_ENC_VIM_RST);
821 }
822
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300823 wake_up(&s->waitq);
824
825 return 0;
826}
827
828int ivtv_stop_v4l2_decode_stream(struct ivtv_stream *s, int flags, u64 pts)
829{
830 struct ivtv *itv = s->itv;
831
832 if (s->v4l2dev == NULL)
833 return -EINVAL;
834
835 if (s->type != IVTV_DEC_STREAM_TYPE_YUV && s->type != IVTV_DEC_STREAM_TYPE_MPG)
836 return -EINVAL;
837
838 if (!test_bit(IVTV_F_S_STREAMING, &s->s_flags))
839 return 0;
840
Hans Verkuilc4385092007-06-07 09:04:03 -0300841 IVTV_DEBUG_INFO("Stop Decode at %llu, flags: %x\n", (unsigned long long)pts, flags);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300842
843 /* Stop Decoder */
844 if (!(flags & VIDEO_CMD_STOP_IMMEDIATELY) || pts) {
845 u32 tmp = 0;
846
847 /* Wait until the decoder is no longer running */
848 if (pts) {
849 ivtv_vapi(itv, CX2341X_DEC_STOP_PLAYBACK, 3,
850 0, (u32)(pts & 0xffffffff), (u32)(pts >> 32));
851 }
852 while (1) {
853 u32 data[CX2341X_MBOX_MAX_DATA];
854 ivtv_vapi_result(itv, data, CX2341X_DEC_GET_XFER_INFO, 0);
855 if (s->q_full.buffers + s->q_dma.buffers == 0) {
856 if (tmp == data[3])
857 break;
858 tmp = data[3];
859 }
Mauro Carvalho Chehab201700d2007-07-19 11:21:04 -0300860 if (ivtv_msleep_timeout(100, 1))
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300861 break;
862 }
863 }
864 ivtv_vapi(itv, CX2341X_DEC_STOP_PLAYBACK, 3, flags & VIDEO_CMD_STOP_TO_BLACK, 0, 0);
865
866 /* turn off notification of dual/stereo mode change */
867 ivtv_vapi(itv, CX2341X_DEC_SET_EVENT_NOTIFICATION, 4, 0, 0, IVTV_IRQ_DEC_AUD_MODE_CHG, -1);
868
869 ivtv_set_irq_mask(itv, IVTV_IRQ_MASK_DECODE);
Hans Verkuile17a06b2007-08-18 15:48:42 -0300870 del_timer(&itv->dma_timer);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300871
872 clear_bit(IVTV_F_S_NEEDS_DATA, &s->s_flags);
873 clear_bit(IVTV_F_S_STREAMING, &s->s_flags);
874 ivtv_flush_queues(s);
875
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300876 /* decrement decoding */
877 atomic_dec(&itv->decoding);
878
879 set_bit(IVTV_F_I_EV_DEC_STOPPED, &itv->i_flags);
880 wake_up(&itv->event_waitq);
881
882 /* wake up wait queues */
883 wake_up(&s->waitq);
884
885 return 0;
886}
887
888int ivtv_passthrough_mode(struct ivtv *itv, int enable)
889{
890 struct ivtv_stream *yuv_stream = &itv->streams[IVTV_ENC_STREAM_TYPE_YUV];
891 struct ivtv_stream *dec_stream = &itv->streams[IVTV_DEC_STREAM_TYPE_YUV];
892
893 if (yuv_stream->v4l2dev == NULL || dec_stream->v4l2dev == NULL)
894 return -EINVAL;
895
896 IVTV_DEBUG_INFO("ivtv ioctl: Select passthrough mode\n");
897
898 /* Prevent others from starting/stopping streams while we
899 initiate/terminate passthrough mode */
900 if (enable) {
901 if (itv->output_mode == OUT_PASSTHROUGH) {
902 return 0;
903 }
904 if (ivtv_set_output_mode(itv, OUT_PASSTHROUGH) != OUT_PASSTHROUGH)
905 return -EBUSY;
906
907 /* Fully initialize stream, and then unflag init */
908 set_bit(IVTV_F_S_PASSTHROUGH, &dec_stream->s_flags);
909 set_bit(IVTV_F_S_STREAMING, &dec_stream->s_flags);
910
911 /* Setup YUV Decoder */
912 ivtv_setup_v4l2_decode_stream(dec_stream);
913
914 /* Start Decoder */
915 ivtv_vapi(itv, CX2341X_DEC_START_PLAYBACK, 2, 0, 1);
916 atomic_inc(&itv->decoding);
917
918 /* Setup capture if not already done */
919 if (atomic_read(&itv->capturing) == 0) {
920 cx2341x_update(itv, ivtv_api_func, NULL, &itv->params);
921 }
922
923 /* Start Passthrough Mode */
924 ivtv_vapi(itv, CX2341X_ENC_START_CAPTURE, 2, 2, 11);
925 atomic_inc(&itv->capturing);
926 return 0;
927 }
928
929 if (itv->output_mode != OUT_PASSTHROUGH)
930 return 0;
931
932 /* Stop Passthrough Mode */
933 ivtv_vapi(itv, CX2341X_ENC_STOP_CAPTURE, 3, 1, 2, 11);
934 ivtv_vapi(itv, CX2341X_DEC_STOP_PLAYBACK, 3, 1, 0, 0);
935
936 atomic_dec(&itv->capturing);
937 atomic_dec(&itv->decoding);
938 clear_bit(IVTV_F_S_PASSTHROUGH, &dec_stream->s_flags);
939 clear_bit(IVTV_F_S_STREAMING, &dec_stream->s_flags);
940 itv->output_mode = OUT_NONE;
941
942 return 0;
943}