1 /* 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> 7 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net> 8 * 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" 26 #include "cx18-io.h" 27 #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-dvb.h" 36 37 #define CX18_DSP0_INTERRUPT_MASK 0xd0004C 38 39 static struct v4l2_file_operations cx18_v4l2_enc_fops = { 40 .owner = THIS_MODULE, 41 .read = cx18_v4l2_read, 42 .open = cx18_v4l2_open, 43 .unlocked_ioctl = video_ioctl2, 44 .release = cx18_v4l2_close, 45 .poll = cx18_v4l2_enc_poll, 46 .mmap = cx18_v4l2_mmap, 47 }; 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 56 static struct { 57 const char *name; 58 int vfl_type; 59 int num_offset; 60 int dma; 61 u32 caps; 62 } cx18_stream_info[] = { 63 { /* CX18_ENC_STREAM_TYPE_MPG */ 64 "encoder MPEG", 65 VFL_TYPE_GRABBER, 0, 66 PCI_DMA_FROMDEVICE, 67 V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE | 68 V4L2_CAP_AUDIO | V4L2_CAP_TUNER 69 }, 70 { /* CX18_ENC_STREAM_TYPE_TS */ 71 "TS", 72 VFL_TYPE_GRABBER, -1, 73 PCI_DMA_FROMDEVICE, 74 }, 75 { /* CX18_ENC_STREAM_TYPE_YUV */ 76 "encoder YUV", 77 VFL_TYPE_GRABBER, CX18_V4L2_ENC_YUV_OFFSET, 78 PCI_DMA_FROMDEVICE, 79 V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE | 80 V4L2_CAP_STREAMING | V4L2_CAP_AUDIO | V4L2_CAP_TUNER 81 }, 82 { /* CX18_ENC_STREAM_TYPE_VBI */ 83 "encoder VBI", 84 VFL_TYPE_VBI, 0, 85 PCI_DMA_FROMDEVICE, 86 V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE | 87 V4L2_CAP_READWRITE | V4L2_CAP_TUNER 88 }, 89 { /* CX18_ENC_STREAM_TYPE_PCM */ 90 "encoder PCM audio", 91 VFL_TYPE_GRABBER, CX18_V4L2_ENC_PCM_OFFSET, 92 PCI_DMA_FROMDEVICE, 93 }, 94 { /* CX18_ENC_STREAM_TYPE_IDX */ 95 "encoder IDX", 96 VFL_TYPE_GRABBER, -1, 97 PCI_DMA_FROMDEVICE, 98 }, 99 { /* CX18_ENC_STREAM_TYPE_RAD */ 100 "encoder radio", 101 VFL_TYPE_RADIO, 0, 102 PCI_DMA_NONE, 103 V4L2_CAP_RADIO | V4L2_CAP_TUNER 104 }, 105 }; 106 107 108 static void cx18_dma_free(struct videobuf_queue *q, 109 struct cx18_stream *s, struct cx18_videobuf_buffer *buf) 110 { 111 videobuf_waiton(q, &buf->vb, 0, 0); 112 videobuf_vmalloc_free(&buf->vb); 113 buf->vb.state = VIDEOBUF_NEEDS_INIT; 114 } 115 116 static int cx18_prepare_buffer(struct videobuf_queue *q, 117 struct cx18_stream *s, 118 struct cx18_videobuf_buffer *buf, 119 u32 pixelformat, 120 unsigned int width, unsigned int height, 121 enum v4l2_field field) 122 { 123 struct cx18 *cx = s->cx; 124 int rc = 0; 125 126 /* check settings */ 127 buf->bytes_used = 0; 128 129 if ((width < 48) || (height < 32)) 130 return -EINVAL; 131 132 buf->vb.size = (width * height * 2); 133 if ((buf->vb.baddr != 0) && (buf->vb.bsize < buf->vb.size)) 134 return -EINVAL; 135 136 /* alloc + fill struct (if changed) */ 137 if (buf->vb.width != width || buf->vb.height != height || 138 buf->vb.field != field || s->pixelformat != pixelformat || 139 buf->tvnorm != cx->std) { 140 141 buf->vb.width = width; 142 buf->vb.height = height; 143 buf->vb.field = field; 144 buf->tvnorm = cx->std; 145 s->pixelformat = pixelformat; 146 147 /* HM12 YUV size is (Y=(h*720) + UV=(h*(720/2))) 148 UYUV YUV size is (Y=(h*720) + UV=(h*(720))) */ 149 if (s->pixelformat == V4L2_PIX_FMT_HM12) 150 s->vb_bytes_per_frame = height * 720 * 3 / 2; 151 else 152 s->vb_bytes_per_frame = height * 720 * 2; 153 cx18_dma_free(q, s, buf); 154 } 155 156 if ((buf->vb.baddr != 0) && (buf->vb.bsize < buf->vb.size)) 157 return -EINVAL; 158 159 if (buf->vb.field == 0) 160 buf->vb.field = V4L2_FIELD_INTERLACED; 161 162 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) { 163 buf->vb.width = width; 164 buf->vb.height = height; 165 buf->vb.field = field; 166 buf->tvnorm = cx->std; 167 s->pixelformat = pixelformat; 168 169 /* HM12 YUV size is (Y=(h*720) + UV=(h*(720/2))) 170 UYUV YUV size is (Y=(h*720) + UV=(h*(720))) */ 171 if (s->pixelformat == V4L2_PIX_FMT_HM12) 172 s->vb_bytes_per_frame = height * 720 * 3 / 2; 173 else 174 s->vb_bytes_per_frame = height * 720 * 2; 175 rc = videobuf_iolock(q, &buf->vb, NULL); 176 if (rc != 0) 177 goto fail; 178 } 179 buf->vb.state = VIDEOBUF_PREPARED; 180 return 0; 181 182 fail: 183 cx18_dma_free(q, s, buf); 184 return rc; 185 186 } 187 188 /* VB_MIN_BUFSIZE is lcm(1440 * 480, 1440 * 576) 189 1440 is a single line of 4:2:2 YUV at 720 luma samples wide 190 */ 191 #define VB_MIN_BUFFERS 32 192 #define VB_MIN_BUFSIZE 4147200 193 194 static int buffer_setup(struct videobuf_queue *q, 195 unsigned int *count, unsigned int *size) 196 { 197 struct cx18_stream *s = q->priv_data; 198 struct cx18 *cx = s->cx; 199 200 *size = 2 * cx->cxhdl.width * cx->cxhdl.height; 201 if (*count == 0) 202 *count = VB_MIN_BUFFERS; 203 204 while (*size * *count > VB_MIN_BUFFERS * VB_MIN_BUFSIZE) 205 (*count)--; 206 207 q->field = V4L2_FIELD_INTERLACED; 208 q->last = V4L2_FIELD_INTERLACED; 209 210 return 0; 211 } 212 213 static int buffer_prepare(struct videobuf_queue *q, 214 struct videobuf_buffer *vb, 215 enum v4l2_field field) 216 { 217 struct cx18_videobuf_buffer *buf = 218 container_of(vb, struct cx18_videobuf_buffer, vb); 219 struct cx18_stream *s = q->priv_data; 220 struct cx18 *cx = s->cx; 221 222 return cx18_prepare_buffer(q, s, buf, s->pixelformat, 223 cx->cxhdl.width, cx->cxhdl.height, field); 224 } 225 226 static void buffer_release(struct videobuf_queue *q, 227 struct videobuf_buffer *vb) 228 { 229 struct cx18_videobuf_buffer *buf = 230 container_of(vb, struct cx18_videobuf_buffer, vb); 231 struct cx18_stream *s = q->priv_data; 232 233 cx18_dma_free(q, s, buf); 234 } 235 236 static void buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb) 237 { 238 struct cx18_videobuf_buffer *buf = 239 container_of(vb, struct cx18_videobuf_buffer, vb); 240 struct cx18_stream *s = q->priv_data; 241 242 buf->vb.state = VIDEOBUF_QUEUED; 243 244 list_add_tail(&buf->vb.queue, &s->vb_capture); 245 } 246 247 static struct videobuf_queue_ops cx18_videobuf_qops = { 248 .buf_setup = buffer_setup, 249 .buf_prepare = buffer_prepare, 250 .buf_queue = buffer_queue, 251 .buf_release = buffer_release, 252 }; 253 254 static void cx18_stream_init(struct cx18 *cx, int type) 255 { 256 struct cx18_stream *s = &cx->streams[type]; 257 258 memset(s, 0, sizeof(*s)); 259 260 /* initialize cx18_stream fields */ 261 s->dvb = NULL; 262 s->cx = cx; 263 s->type = type; 264 s->name = cx18_stream_info[type].name; 265 s->handle = CX18_INVALID_TASK_HANDLE; 266 267 s->dma = cx18_stream_info[type].dma; 268 s->v4l2_dev_caps = cx18_stream_info[type].caps; 269 s->buffers = cx->stream_buffers[type]; 270 s->buf_size = cx->stream_buf_size[type]; 271 INIT_LIST_HEAD(&s->buf_pool); 272 s->bufs_per_mdl = 1; 273 s->mdl_size = s->buf_size * s->bufs_per_mdl; 274 275 init_waitqueue_head(&s->waitq); 276 s->id = -1; 277 spin_lock_init(&s->q_free.lock); 278 cx18_queue_init(&s->q_free); 279 spin_lock_init(&s->q_busy.lock); 280 cx18_queue_init(&s->q_busy); 281 spin_lock_init(&s->q_full.lock); 282 cx18_queue_init(&s->q_full); 283 spin_lock_init(&s->q_idle.lock); 284 cx18_queue_init(&s->q_idle); 285 286 INIT_WORK(&s->out_work_order, cx18_out_work_handler); 287 288 INIT_LIST_HEAD(&s->vb_capture); 289 s->vb_timeout.function = cx18_vb_timeout; 290 s->vb_timeout.data = (unsigned long)s; 291 init_timer(&s->vb_timeout); 292 spin_lock_init(&s->vb_lock); 293 if (type == CX18_ENC_STREAM_TYPE_YUV) { 294 spin_lock_init(&s->vbuf_q_lock); 295 296 s->vb_type = V4L2_BUF_TYPE_VIDEO_CAPTURE; 297 videobuf_queue_vmalloc_init(&s->vbuf_q, &cx18_videobuf_qops, 298 &cx->pci_dev->dev, &s->vbuf_q_lock, 299 V4L2_BUF_TYPE_VIDEO_CAPTURE, 300 V4L2_FIELD_INTERLACED, 301 sizeof(struct cx18_videobuf_buffer), 302 s, &cx->serialize_lock); 303 304 /* Assume the previous pixel default */ 305 s->pixelformat = V4L2_PIX_FMT_HM12; 306 s->vb_bytes_per_frame = cx->cxhdl.height * 720 * 3 / 2; 307 } 308 } 309 310 static int cx18_prep_dev(struct cx18 *cx, int type) 311 { 312 struct cx18_stream *s = &cx->streams[type]; 313 u32 cap = cx->v4l2_cap; 314 int num_offset = cx18_stream_info[type].num_offset; 315 int num = cx->instance + cx18_first_minor + num_offset; 316 317 /* 318 * These five fields are always initialized. 319 * For analog capture related streams, if video_dev.v4l2_dev == NULL then the 320 * stream is not in use. 321 * For the TS stream, if dvb == NULL then the stream is not in use. 322 * In those cases no other fields but these four can be used. 323 */ 324 s->video_dev.v4l2_dev = NULL; 325 s->dvb = NULL; 326 s->cx = cx; 327 s->type = type; 328 s->name = cx18_stream_info[type].name; 329 330 /* Check whether the radio is supported */ 331 if (type == CX18_ENC_STREAM_TYPE_RAD && !(cap & V4L2_CAP_RADIO)) 332 return 0; 333 334 /* Check whether VBI is supported */ 335 if (type == CX18_ENC_STREAM_TYPE_VBI && 336 !(cap & (V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE))) 337 return 0; 338 339 /* User explicitly selected 0 buffers for these streams, so don't 340 create them. */ 341 if (cx18_stream_info[type].dma != PCI_DMA_NONE && 342 cx->stream_buffers[type] == 0) { 343 CX18_INFO("Disabled %s device\n", cx18_stream_info[type].name); 344 return 0; 345 } 346 347 cx18_stream_init(cx, type); 348 349 /* Allocate the cx18_dvb struct only for the TS on cards with DTV */ 350 if (type == CX18_ENC_STREAM_TYPE_TS) { 351 if (cx->card->hw_all & CX18_HW_DVB) { 352 s->dvb = kzalloc(sizeof(struct cx18_dvb), GFP_KERNEL); 353 if (s->dvb == NULL) { 354 CX18_ERR("Couldn't allocate cx18_dvb structure" 355 " for %s\n", s->name); 356 return -ENOMEM; 357 } 358 } else { 359 /* Don't need buffers for the TS, if there is no DVB */ 360 s->buffers = 0; 361 } 362 } 363 364 if (num_offset == -1) 365 return 0; 366 367 /* initialize the v4l2 video device structure */ 368 snprintf(s->video_dev.name, sizeof(s->video_dev.name), "%s %s", 369 cx->v4l2_dev.name, s->name); 370 371 s->video_dev.num = num; 372 s->video_dev.v4l2_dev = &cx->v4l2_dev; 373 s->video_dev.fops = &cx18_v4l2_enc_fops; 374 s->video_dev.release = video_device_release_empty; 375 s->video_dev.tvnorms = V4L2_STD_ALL; 376 s->video_dev.lock = &cx->serialize_lock; 377 cx18_set_funcs(&s->video_dev); 378 return 0; 379 } 380 381 /* Initialize v4l2 variables and register v4l2 devices */ 382 int cx18_streams_setup(struct cx18 *cx) 383 { 384 int type, ret; 385 386 /* Setup V4L2 Devices */ 387 for (type = 0; type < CX18_MAX_STREAMS; type++) { 388 /* Prepare device */ 389 ret = cx18_prep_dev(cx, type); 390 if (ret < 0) 391 break; 392 393 /* Allocate Stream */ 394 ret = cx18_stream_alloc(&cx->streams[type]); 395 if (ret < 0) 396 break; 397 } 398 if (type == CX18_MAX_STREAMS) 399 return 0; 400 401 /* One or more streams could not be initialized. Clean 'em all up. */ 402 cx18_streams_cleanup(cx, 0); 403 return ret; 404 } 405 406 static int cx18_reg_dev(struct cx18 *cx, int type) 407 { 408 struct cx18_stream *s = &cx->streams[type]; 409 int vfl_type = cx18_stream_info[type].vfl_type; 410 const char *name; 411 int num, ret; 412 413 if (type == CX18_ENC_STREAM_TYPE_TS && s->dvb != NULL) { 414 ret = cx18_dvb_register(s); 415 if (ret < 0) { 416 CX18_ERR("DVB failed to register\n"); 417 return ret; 418 } 419 } 420 421 if (s->video_dev.v4l2_dev == NULL) 422 return 0; 423 424 num = s->video_dev.num; 425 /* card number + user defined offset + device offset */ 426 if (type != CX18_ENC_STREAM_TYPE_MPG) { 427 struct cx18_stream *s_mpg = &cx->streams[CX18_ENC_STREAM_TYPE_MPG]; 428 429 if (s_mpg->video_dev.v4l2_dev) 430 num = s_mpg->video_dev.num 431 + cx18_stream_info[type].num_offset; 432 } 433 video_set_drvdata(&s->video_dev, s); 434 435 /* Register device. First try the desired minor, then any free one. */ 436 ret = video_register_device_no_warn(&s->video_dev, vfl_type, num); 437 if (ret < 0) { 438 CX18_ERR("Couldn't register v4l2 device for %s (device node number %d)\n", 439 s->name, num); 440 s->video_dev.v4l2_dev = NULL; 441 return ret; 442 } 443 444 name = video_device_node_name(&s->video_dev); 445 446 switch (vfl_type) { 447 case VFL_TYPE_GRABBER: 448 CX18_INFO("Registered device %s for %s (%d x %d.%02d kB)\n", 449 name, s->name, cx->stream_buffers[type], 450 cx->stream_buf_size[type] / 1024, 451 (cx->stream_buf_size[type] * 100 / 1024) % 100); 452 break; 453 454 case VFL_TYPE_RADIO: 455 CX18_INFO("Registered device %s for %s\n", name, s->name); 456 break; 457 458 case VFL_TYPE_VBI: 459 if (cx->stream_buffers[type]) 460 CX18_INFO("Registered device %s for %s " 461 "(%d x %d bytes)\n", 462 name, s->name, cx->stream_buffers[type], 463 cx->stream_buf_size[type]); 464 else 465 CX18_INFO("Registered device %s for %s\n", 466 name, s->name); 467 break; 468 } 469 470 return 0; 471 } 472 473 /* Register v4l2 devices */ 474 int cx18_streams_register(struct cx18 *cx) 475 { 476 int type; 477 int err; 478 int ret = 0; 479 480 /* Register V4L2 devices */ 481 for (type = 0; type < CX18_MAX_STREAMS; type++) { 482 err = cx18_reg_dev(cx, type); 483 if (err && ret == 0) 484 ret = err; 485 } 486 487 if (ret == 0) 488 return 0; 489 490 /* One or more streams could not be initialized. Clean 'em all up. */ 491 cx18_streams_cleanup(cx, 1); 492 return ret; 493 } 494 495 /* Unregister v4l2 devices */ 496 void cx18_streams_cleanup(struct cx18 *cx, int unregister) 497 { 498 struct video_device *vdev; 499 int type; 500 501 /* Teardown all streams */ 502 for (type = 0; type < CX18_MAX_STREAMS; type++) { 503 504 /* The TS has a cx18_dvb structure, not a video_device */ 505 if (type == CX18_ENC_STREAM_TYPE_TS) { 506 if (cx->streams[type].dvb != NULL) { 507 if (unregister) 508 cx18_dvb_unregister(&cx->streams[type]); 509 kfree(cx->streams[type].dvb); 510 cx->streams[type].dvb = NULL; 511 cx18_stream_free(&cx->streams[type]); 512 } 513 continue; 514 } 515 516 /* No struct video_device, but can have buffers allocated */ 517 if (type == CX18_ENC_STREAM_TYPE_IDX) { 518 /* If the module params didn't inhibit IDX ... */ 519 if (cx->stream_buffers[type] != 0) { 520 cx->stream_buffers[type] = 0; 521 /* 522 * Before calling cx18_stream_free(), 523 * check if the IDX stream was actually set up. 524 * Needed, since the cx18_probe() error path 525 * exits through here as well as normal clean up 526 */ 527 if (cx->streams[type].buffers != 0) 528 cx18_stream_free(&cx->streams[type]); 529 } 530 continue; 531 } 532 533 /* If struct video_device exists, can have buffers allocated */ 534 vdev = &cx->streams[type].video_dev; 535 536 if (vdev->v4l2_dev == NULL) 537 continue; 538 539 if (type == CX18_ENC_STREAM_TYPE_YUV) 540 videobuf_mmap_free(&cx->streams[type].vbuf_q); 541 542 cx18_stream_free(&cx->streams[type]); 543 544 video_unregister_device(vdev); 545 } 546 } 547 548 static void cx18_vbi_setup(struct cx18_stream *s) 549 { 550 struct cx18 *cx = s->cx; 551 int raw = cx18_raw_vbi(cx); 552 u32 data[CX2341X_MBOX_MAX_DATA]; 553 int lines; 554 555 if (cx->is_60hz) { 556 cx->vbi.count = 12; 557 cx->vbi.start[0] = 10; 558 cx->vbi.start[1] = 273; 559 } else { /* PAL/SECAM */ 560 cx->vbi.count = 18; 561 cx->vbi.start[0] = 6; 562 cx->vbi.start[1] = 318; 563 } 564 565 /* setup VBI registers */ 566 if (raw) 567 v4l2_subdev_call(cx->sd_av, vbi, s_raw_fmt, &cx->vbi.in.fmt.vbi); 568 else 569 v4l2_subdev_call(cx->sd_av, vbi, s_sliced_fmt, &cx->vbi.in.fmt.sliced); 570 571 /* 572 * Send the CX18_CPU_SET_RAW_VBI_PARAM API command to setup Encoder Raw 573 * VBI when the first analog capture channel starts, as once it starts 574 * (e.g. MPEG), we can't effect any change in the Encoder Raw VBI setup 575 * (i.e. for the VBI capture channels). We also send it for each 576 * analog capture channel anyway just to make sure we get the proper 577 * behavior 578 */ 579 if (raw) { 580 lines = cx->vbi.count * 2; 581 } else { 582 /* 583 * For 525/60 systems, according to the VIP 2 & BT.656 std: 584 * The EAV RP code's Field bit toggles on line 4, a few lines 585 * after the Vertcal Blank bit has already toggled. 586 * Tell the encoder to capture 21-4+1=18 lines per field, 587 * since we want lines 10 through 21. 588 * 589 * For 625/50 systems, according to the VIP 2 & BT.656 std: 590 * The EAV RP code's Field bit toggles on line 1, a few lines 591 * after the Vertcal Blank bit has already toggled. 592 * (We've actually set the digitizer so that the Field bit 593 * toggles on line 2.) Tell the encoder to capture 23-2+1=22 594 * lines per field, since we want lines 6 through 23. 595 */ 596 lines = cx->is_60hz ? (21 - 4 + 1) * 2 : (23 - 2 + 1) * 2; 597 } 598 599 data[0] = s->handle; 600 /* Lines per field */ 601 data[1] = (lines / 2) | ((lines / 2) << 16); 602 /* bytes per line */ 603 data[2] = (raw ? vbi_active_samples 604 : (cx->is_60hz ? vbi_hblank_samples_60Hz 605 : vbi_hblank_samples_50Hz)); 606 /* Every X number of frames a VBI interrupt arrives 607 (frames as in 25 or 30 fps) */ 608 data[3] = 1; 609 /* 610 * Set the SAV/EAV RP codes to look for as start/stop points 611 * when in VIP-1.1 mode 612 */ 613 if (raw) { 614 /* 615 * Start codes for beginning of "active" line in vertical blank 616 * 0x20 ( VerticalBlank ) 617 * 0x60 ( EvenField VerticalBlank ) 618 */ 619 data[4] = 0x20602060; 620 /* 621 * End codes for end of "active" raw lines and regular lines 622 * 0x30 ( VerticalBlank HorizontalBlank) 623 * 0x70 ( EvenField VerticalBlank HorizontalBlank) 624 * 0x90 (Task HorizontalBlank) 625 * 0xd0 (Task EvenField HorizontalBlank) 626 */ 627 data[5] = 0x307090d0; 628 } else { 629 /* 630 * End codes for active video, we want data in the hblank region 631 * 0xb0 (Task 0 VerticalBlank HorizontalBlank) 632 * 0xf0 (Task EvenField VerticalBlank HorizontalBlank) 633 * 634 * Since the V bit is only allowed to toggle in the EAV RP code, 635 * just before the first active region line, these two 636 * are problematic: 637 * 0x90 (Task HorizontalBlank) 638 * 0xd0 (Task EvenField HorizontalBlank) 639 * 640 * We have set the digitzer such that we don't have to worry 641 * about these problem codes. 642 */ 643 data[4] = 0xB0F0B0F0; 644 /* 645 * Start codes for beginning of active line in vertical blank 646 * 0xa0 (Task VerticalBlank ) 647 * 0xe0 (Task EvenField VerticalBlank ) 648 */ 649 data[5] = 0xA0E0A0E0; 650 } 651 652 CX18_DEBUG_INFO("Setup VBI h: %d lines %x bpl %d fr %d %x %x\n", 653 data[0], data[1], data[2], data[3], data[4], data[5]); 654 655 cx18_api(cx, CX18_CPU_SET_RAW_VBI_PARAM, 6, data); 656 } 657 658 void cx18_stream_rotate_idx_mdls(struct cx18 *cx) 659 { 660 struct cx18_stream *s = &cx->streams[CX18_ENC_STREAM_TYPE_IDX]; 661 struct cx18_mdl *mdl; 662 663 if (!cx18_stream_enabled(s)) 664 return; 665 666 /* Return if the firmware is not running low on MDLs */ 667 if ((atomic_read(&s->q_free.depth) + atomic_read(&s->q_busy.depth)) >= 668 CX18_ENC_STREAM_TYPE_IDX_FW_MDL_MIN) 669 return; 670 671 /* Return if there are no MDLs to rotate back to the firmware */ 672 if (atomic_read(&s->q_full.depth) < 2) 673 return; 674 675 /* 676 * Take the oldest IDX MDL still holding data, and discard its index 677 * entries by scheduling the MDL to go back to the firmware 678 */ 679 mdl = cx18_dequeue(s, &s->q_full); 680 if (mdl != NULL) 681 cx18_enqueue(s, mdl, &s->q_free); 682 } 683 684 static 685 struct cx18_queue *_cx18_stream_put_mdl_fw(struct cx18_stream *s, 686 struct cx18_mdl *mdl) 687 { 688 struct cx18 *cx = s->cx; 689 struct cx18_queue *q; 690 691 /* Don't give it to the firmware, if we're not running a capture */ 692 if (s->handle == CX18_INVALID_TASK_HANDLE || 693 test_bit(CX18_F_S_STOPPING, &s->s_flags) || 694 !test_bit(CX18_F_S_STREAMING, &s->s_flags)) 695 return cx18_enqueue(s, mdl, &s->q_free); 696 697 q = cx18_enqueue(s, mdl, &s->q_busy); 698 if (q != &s->q_busy) 699 return q; /* The firmware has the max MDLs it can handle */ 700 701 cx18_mdl_sync_for_device(s, mdl); 702 cx18_vapi(cx, CX18_CPU_DE_SET_MDL, 5, s->handle, 703 (void __iomem *) &cx->scb->cpu_mdl[mdl->id] - cx->enc_mem, 704 s->bufs_per_mdl, mdl->id, s->mdl_size); 705 return q; 706 } 707 708 static 709 void _cx18_stream_load_fw_queue(struct cx18_stream *s) 710 { 711 struct cx18_queue *q; 712 struct cx18_mdl *mdl; 713 714 if (atomic_read(&s->q_free.depth) == 0 || 715 atomic_read(&s->q_busy.depth) >= CX18_MAX_FW_MDLS_PER_STREAM) 716 return; 717 718 /* Move from q_free to q_busy notifying the firmware, until the limit */ 719 do { 720 mdl = cx18_dequeue(s, &s->q_free); 721 if (mdl == NULL) 722 break; 723 q = _cx18_stream_put_mdl_fw(s, mdl); 724 } while (atomic_read(&s->q_busy.depth) < CX18_MAX_FW_MDLS_PER_STREAM 725 && q == &s->q_busy); 726 } 727 728 void cx18_out_work_handler(struct work_struct *work) 729 { 730 struct cx18_stream *s = 731 container_of(work, struct cx18_stream, out_work_order); 732 733 _cx18_stream_load_fw_queue(s); 734 } 735 736 static void cx18_stream_configure_mdls(struct cx18_stream *s) 737 { 738 cx18_unload_queues(s); 739 740 switch (s->type) { 741 case CX18_ENC_STREAM_TYPE_YUV: 742 /* 743 * Height should be a multiple of 32 lines. 744 * Set the MDL size to the exact size needed for one frame. 745 * Use enough buffers per MDL to cover the MDL size 746 */ 747 if (s->pixelformat == V4L2_PIX_FMT_HM12) 748 s->mdl_size = 720 * s->cx->cxhdl.height * 3 / 2; 749 else 750 s->mdl_size = 720 * s->cx->cxhdl.height * 2; 751 s->bufs_per_mdl = s->mdl_size / s->buf_size; 752 if (s->mdl_size % s->buf_size) 753 s->bufs_per_mdl++; 754 break; 755 case CX18_ENC_STREAM_TYPE_VBI: 756 s->bufs_per_mdl = 1; 757 if (cx18_raw_vbi(s->cx)) { 758 s->mdl_size = (s->cx->is_60hz ? 12 : 18) 759 * 2 * vbi_active_samples; 760 } else { 761 /* 762 * See comment in cx18_vbi_setup() below about the 763 * extra lines we capture in sliced VBI mode due to 764 * the lines on which EAV RP codes toggle. 765 */ 766 s->mdl_size = s->cx->is_60hz 767 ? (21 - 4 + 1) * 2 * vbi_hblank_samples_60Hz 768 : (23 - 2 + 1) * 2 * vbi_hblank_samples_50Hz; 769 } 770 break; 771 default: 772 s->bufs_per_mdl = 1; 773 s->mdl_size = s->buf_size * s->bufs_per_mdl; 774 break; 775 } 776 777 cx18_load_queues(s); 778 } 779 780 int cx18_start_v4l2_encode_stream(struct cx18_stream *s) 781 { 782 u32 data[MAX_MB_ARGUMENTS]; 783 struct cx18 *cx = s->cx; 784 int captype = 0; 785 struct cx18_stream *s_idx; 786 787 if (!cx18_stream_enabled(s)) 788 return -EINVAL; 789 790 CX18_DEBUG_INFO("Start encoder stream %s\n", s->name); 791 792 switch (s->type) { 793 case CX18_ENC_STREAM_TYPE_MPG: 794 captype = CAPTURE_CHANNEL_TYPE_MPEG; 795 cx->mpg_data_received = cx->vbi_data_inserted = 0; 796 cx->dualwatch_jiffies = jiffies; 797 cx->dualwatch_stereo_mode = v4l2_ctrl_g_ctrl(cx->cxhdl.audio_mode); 798 cx->search_pack_header = 0; 799 break; 800 801 case CX18_ENC_STREAM_TYPE_IDX: 802 captype = CAPTURE_CHANNEL_TYPE_INDEX; 803 break; 804 case CX18_ENC_STREAM_TYPE_TS: 805 captype = CAPTURE_CHANNEL_TYPE_TS; 806 break; 807 case CX18_ENC_STREAM_TYPE_YUV: 808 captype = CAPTURE_CHANNEL_TYPE_YUV; 809 break; 810 case CX18_ENC_STREAM_TYPE_PCM: 811 captype = CAPTURE_CHANNEL_TYPE_PCM; 812 break; 813 case CX18_ENC_STREAM_TYPE_VBI: 814 #ifdef CX18_ENCODER_PARSES_SLICED 815 captype = cx18_raw_vbi(cx) ? 816 CAPTURE_CHANNEL_TYPE_VBI : CAPTURE_CHANNEL_TYPE_SLICED_VBI; 817 #else 818 /* 819 * Currently we set things up so that Sliced VBI from the 820 * digitizer is handled as Raw VBI by the encoder 821 */ 822 captype = CAPTURE_CHANNEL_TYPE_VBI; 823 #endif 824 cx->vbi.frame = 0; 825 cx->vbi.inserted_frame = 0; 826 memset(cx->vbi.sliced_mpeg_size, 827 0, sizeof(cx->vbi.sliced_mpeg_size)); 828 break; 829 default: 830 return -EINVAL; 831 } 832 833 /* Clear Streamoff flags in case left from last capture */ 834 clear_bit(CX18_F_S_STREAMOFF, &s->s_flags); 835 836 cx18_vapi_result(cx, data, CX18_CREATE_TASK, 1, CPU_CMD_MASK_CAPTURE); 837 s->handle = data[0]; 838 cx18_vapi(cx, CX18_CPU_SET_CHANNEL_TYPE, 2, s->handle, captype); 839 840 /* 841 * For everything but CAPTURE_CHANNEL_TYPE_TS, play it safe and 842 * set up all the parameters, as it is not obvious which parameters the 843 * firmware shares across capture channel types and which it does not. 844 * 845 * Some of the cx18_vapi() calls below apply to only certain capture 846 * channel types. We're hoping there's no harm in calling most of them 847 * anyway, as long as the values are all consistent. Setting some 848 * shared parameters will have no effect once an analog capture channel 849 * has started streaming. 850 */ 851 if (captype != CAPTURE_CHANNEL_TYPE_TS) { 852 cx18_vapi(cx, CX18_CPU_SET_VER_CROP_LINE, 2, s->handle, 0); 853 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 3, 1); 854 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 8, 0); 855 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 4, 1); 856 857 /* 858 * Audio related reset according to 859 * Documentation/video4linux/cx2341x/fw-encoder-api.txt 860 */ 861 if (atomic_read(&cx->ana_capturing) == 0) 862 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 2, 863 s->handle, 12); 864 865 /* 866 * Number of lines for Field 1 & Field 2 according to 867 * Documentation/video4linux/cx2341x/fw-encoder-api.txt 868 * Field 1 is 312 for 625 line systems in BT.656 869 * Field 2 is 313 for 625 line systems in BT.656 870 */ 871 cx18_vapi(cx, CX18_CPU_SET_CAPTURE_LINE_NO, 3, 872 s->handle, 312, 313); 873 874 if (cx->v4l2_cap & V4L2_CAP_VBI_CAPTURE) 875 cx18_vbi_setup(s); 876 877 /* 878 * Select to receive I, P, and B frame index entries, if the 879 * index stream is enabled. Otherwise disable index entry 880 * generation. 881 */ 882 s_idx = &cx->streams[CX18_ENC_STREAM_TYPE_IDX]; 883 cx18_vapi_result(cx, data, CX18_CPU_SET_INDEXTABLE, 2, 884 s->handle, cx18_stream_enabled(s_idx) ? 7 : 0); 885 886 /* Call out to the common CX2341x API setup for user controls */ 887 cx->cxhdl.priv = s; 888 cx2341x_handler_setup(&cx->cxhdl); 889 890 /* 891 * When starting a capture and we're set for radio, 892 * ensure the video is muted, despite the user control. 893 */ 894 if (!cx->cxhdl.video_mute && 895 test_bit(CX18_F_I_RADIO_USER, &cx->i_flags)) 896 cx18_vapi(cx, CX18_CPU_SET_VIDEO_MUTE, 2, s->handle, 897 (v4l2_ctrl_g_ctrl(cx->cxhdl.video_mute_yuv) << 8) | 1); 898 899 /* Enable the Video Format Converter for UYVY 4:2:2 support, 900 * rather than the default HM12 Macroblovk 4:2:0 support. 901 */ 902 if (captype == CAPTURE_CHANNEL_TYPE_YUV) { 903 if (s->pixelformat == V4L2_PIX_FMT_UYVY) 904 cx18_vapi(cx, CX18_CPU_SET_VFC_PARAM, 2, 905 s->handle, 1); 906 else 907 /* If in doubt, default to HM12 */ 908 cx18_vapi(cx, CX18_CPU_SET_VFC_PARAM, 2, 909 s->handle, 0); 910 } 911 } 912 913 if (atomic_read(&cx->tot_capturing) == 0) { 914 cx2341x_handler_set_busy(&cx->cxhdl, 1); 915 clear_bit(CX18_F_I_EOS, &cx->i_flags); 916 cx18_write_reg(cx, 7, CX18_DSP0_INTERRUPT_MASK); 917 } 918 919 cx18_vapi(cx, CX18_CPU_DE_SET_MDL_ACK, 3, s->handle, 920 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][0] - cx->enc_mem, 921 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][1] - cx->enc_mem); 922 923 /* Init all the cpu_mdls for this stream */ 924 cx18_stream_configure_mdls(s); 925 _cx18_stream_load_fw_queue(s); 926 927 /* begin_capture */ 928 if (cx18_vapi(cx, CX18_CPU_CAPTURE_START, 1, s->handle)) { 929 CX18_DEBUG_WARN("Error starting capture!\n"); 930 /* Ensure we're really not capturing before releasing MDLs */ 931 set_bit(CX18_F_S_STOPPING, &s->s_flags); 932 if (s->type == CX18_ENC_STREAM_TYPE_MPG) 933 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, 1); 934 else 935 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle); 936 clear_bit(CX18_F_S_STREAMING, &s->s_flags); 937 /* FIXME - CX18_F_S_STREAMOFF as well? */ 938 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle); 939 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle); 940 s->handle = CX18_INVALID_TASK_HANDLE; 941 clear_bit(CX18_F_S_STOPPING, &s->s_flags); 942 if (atomic_read(&cx->tot_capturing) == 0) { 943 set_bit(CX18_F_I_EOS, &cx->i_flags); 944 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK); 945 } 946 return -EINVAL; 947 } 948 949 /* you're live! sit back and await interrupts :) */ 950 if (captype != CAPTURE_CHANNEL_TYPE_TS) 951 atomic_inc(&cx->ana_capturing); 952 atomic_inc(&cx->tot_capturing); 953 return 0; 954 } 955 EXPORT_SYMBOL(cx18_start_v4l2_encode_stream); 956 957 void cx18_stop_all_captures(struct cx18 *cx) 958 { 959 int i; 960 961 for (i = CX18_MAX_STREAMS - 1; i >= 0; i--) { 962 struct cx18_stream *s = &cx->streams[i]; 963 964 if (!cx18_stream_enabled(s)) 965 continue; 966 if (test_bit(CX18_F_S_STREAMING, &s->s_flags)) 967 cx18_stop_v4l2_encode_stream(s, 0); 968 } 969 } 970 971 int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end) 972 { 973 struct cx18 *cx = s->cx; 974 975 if (!cx18_stream_enabled(s)) 976 return -EINVAL; 977 978 /* This function assumes that you are allowed to stop the capture 979 and that we are actually capturing */ 980 981 CX18_DEBUG_INFO("Stop Capture\n"); 982 983 if (atomic_read(&cx->tot_capturing) == 0) 984 return 0; 985 986 set_bit(CX18_F_S_STOPPING, &s->s_flags); 987 if (s->type == CX18_ENC_STREAM_TYPE_MPG) 988 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, !gop_end); 989 else 990 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle); 991 992 if (s->type == CX18_ENC_STREAM_TYPE_MPG && gop_end) { 993 CX18_INFO("ignoring gop_end: not (yet?) supported by the firmware\n"); 994 } 995 996 if (s->type != CX18_ENC_STREAM_TYPE_TS) 997 atomic_dec(&cx->ana_capturing); 998 atomic_dec(&cx->tot_capturing); 999 1000 /* Clear capture and no-read bits */ 1001 clear_bit(CX18_F_S_STREAMING, &s->s_flags); 1002 1003 /* Tell the CX23418 it can't use our buffers anymore */ 1004 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle); 1005 1006 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle); 1007 s->handle = CX18_INVALID_TASK_HANDLE; 1008 clear_bit(CX18_F_S_STOPPING, &s->s_flags); 1009 1010 if (atomic_read(&cx->tot_capturing) > 0) 1011 return 0; 1012 1013 cx2341x_handler_set_busy(&cx->cxhdl, 0); 1014 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK); 1015 wake_up(&s->waitq); 1016 1017 return 0; 1018 } 1019 EXPORT_SYMBOL(cx18_stop_v4l2_encode_stream); 1020 1021 u32 cx18_find_handle(struct cx18 *cx) 1022 { 1023 int i; 1024 1025 /* find first available handle to be used for global settings */ 1026 for (i = 0; i < CX18_MAX_STREAMS; i++) { 1027 struct cx18_stream *s = &cx->streams[i]; 1028 1029 if (s->video_dev.v4l2_dev && (s->handle != CX18_INVALID_TASK_HANDLE)) 1030 return s->handle; 1031 } 1032 return CX18_INVALID_TASK_HANDLE; 1033 } 1034 1035 struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle) 1036 { 1037 int i; 1038 struct cx18_stream *s; 1039 1040 if (handle == CX18_INVALID_TASK_HANDLE) 1041 return NULL; 1042 1043 for (i = 0; i < CX18_MAX_STREAMS; i++) { 1044 s = &cx->streams[i]; 1045 if (s->handle != handle) 1046 continue; 1047 if (cx18_stream_enabled(s)) 1048 return s; 1049 } 1050 return NULL; 1051 } 1052