Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 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> |
Andy Walls | 1ed9dcc | 2008-11-22 01:37:34 -0300 | [diff] [blame] | 7 | * Copyright (C) 2008 Andy Walls <awalls@radix.net> |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 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" |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 26 | #include "cx18-io.h" |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 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" |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 35 | #include "cx18-dvb.h" |
| 36 | |
| 37 | #define CX18_DSP0_INTERRUPT_MASK 0xd0004C |
| 38 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 39 | static struct v4l2_file_operations cx18_v4l2_enc_fops = { |
Hans Verkuil | daf20d9 | 2008-05-12 11:21:58 -0300 | [diff] [blame] | 40 | .owner = THIS_MODULE, |
| 41 | .read = cx18_v4l2_read, |
| 42 | .open = cx18_v4l2_open, |
Andy Walls | 3b6fe58 | 2008-06-21 08:36:31 -0300 | [diff] [blame] | 43 | /* FIXME change to video_ioctl2 if serialization lock can be removed */ |
Hans Verkuil | daf20d9 | 2008-05-12 11:21:58 -0300 | [diff] [blame] | 44 | .ioctl = cx18_v4l2_ioctl, |
Hans Verkuil | daf20d9 | 2008-05-12 11:21:58 -0300 | [diff] [blame] | 45 | .release = cx18_v4l2_close, |
| 46 | .poll = cx18_v4l2_enc_poll, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 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; |
Hans Verkuil | dd89601 | 2008-10-04 08:36:54 -0300 | [diff] [blame] | 59 | int num_offset; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 60 | int dma; |
| 61 | enum v4l2_buf_type buf_type; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 62 | } cx18_stream_info[] = { |
| 63 | { /* CX18_ENC_STREAM_TYPE_MPG */ |
| 64 | "encoder MPEG", |
| 65 | VFL_TYPE_GRABBER, 0, |
| 66 | PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 67 | }, |
| 68 | { /* CX18_ENC_STREAM_TYPE_TS */ |
| 69 | "TS", |
| 70 | VFL_TYPE_GRABBER, -1, |
| 71 | PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 72 | }, |
| 73 | { /* CX18_ENC_STREAM_TYPE_YUV */ |
| 74 | "encoder YUV", |
| 75 | VFL_TYPE_GRABBER, CX18_V4L2_ENC_YUV_OFFSET, |
| 76 | PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 77 | }, |
| 78 | { /* CX18_ENC_STREAM_TYPE_VBI */ |
| 79 | "encoder VBI", |
| 80 | VFL_TYPE_VBI, 0, |
| 81 | PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VBI_CAPTURE, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 82 | }, |
| 83 | { /* CX18_ENC_STREAM_TYPE_PCM */ |
| 84 | "encoder PCM audio", |
| 85 | VFL_TYPE_GRABBER, CX18_V4L2_ENC_PCM_OFFSET, |
| 86 | PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_PRIVATE, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 87 | }, |
| 88 | { /* CX18_ENC_STREAM_TYPE_IDX */ |
| 89 | "encoder IDX", |
| 90 | VFL_TYPE_GRABBER, -1, |
| 91 | PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 92 | }, |
| 93 | { /* CX18_ENC_STREAM_TYPE_RAD */ |
| 94 | "encoder radio", |
| 95 | VFL_TYPE_RADIO, 0, |
| 96 | PCI_DMA_NONE, V4L2_BUF_TYPE_PRIVATE, |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 97 | }, |
| 98 | }; |
| 99 | |
| 100 | static void cx18_stream_init(struct cx18 *cx, int type) |
| 101 | { |
| 102 | struct cx18_stream *s = &cx->streams[type]; |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 103 | struct video_device *video_dev = s->video_dev; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 104 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 105 | /* we need to keep video_dev, so restore it afterwards */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 106 | memset(s, 0, sizeof(*s)); |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 107 | s->video_dev = video_dev; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 108 | |
| 109 | /* initialize cx18_stream fields */ |
| 110 | s->cx = cx; |
| 111 | s->type = type; |
| 112 | s->name = cx18_stream_info[type].name; |
Andy Walls | d3c5e70 | 2008-08-23 16:42:29 -0300 | [diff] [blame] | 113 | s->handle = CX18_INVALID_TASK_HANDLE; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 114 | |
| 115 | s->dma = cx18_stream_info[type].dma; |
Andy Walls | 6ecd86d | 2008-12-07 23:30:17 -0300 | [diff] [blame] | 116 | s->buffers = cx->stream_buffers[type]; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 117 | s->buf_size = cx->stream_buf_size[type]; |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 118 | INIT_LIST_HEAD(&s->buf_pool); |
| 119 | s->bufs_per_mdl = 1; |
| 120 | s->mdl_size = s->buf_size * s->bufs_per_mdl; |
Andy Walls | 6ecd86d | 2008-12-07 23:30:17 -0300 | [diff] [blame] | 121 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 122 | init_waitqueue_head(&s->waitq); |
| 123 | s->id = -1; |
Andy Walls | 40c5520 | 2009-04-13 23:08:00 -0300 | [diff] [blame] | 124 | spin_lock_init(&s->q_free.lock); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 125 | cx18_queue_init(&s->q_free); |
Andy Walls | 40c5520 | 2009-04-13 23:08:00 -0300 | [diff] [blame] | 126 | spin_lock_init(&s->q_busy.lock); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 127 | cx18_queue_init(&s->q_busy); |
Andy Walls | 40c5520 | 2009-04-13 23:08:00 -0300 | [diff] [blame] | 128 | spin_lock_init(&s->q_full.lock); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 129 | cx18_queue_init(&s->q_full); |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 130 | spin_lock_init(&s->q_idle.lock); |
| 131 | cx18_queue_init(&s->q_idle); |
Andy Walls | 21a278b | 2009-04-15 20:45:10 -0300 | [diff] [blame] | 132 | |
| 133 | INIT_WORK(&s->out_work_order, cx18_out_work_handler); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | static int cx18_prep_dev(struct cx18 *cx, int type) |
| 137 | { |
| 138 | struct cx18_stream *s = &cx->streams[type]; |
| 139 | u32 cap = cx->v4l2_cap; |
Hans Verkuil | dd89601 | 2008-10-04 08:36:54 -0300 | [diff] [blame] | 140 | int num_offset = cx18_stream_info[type].num_offset; |
Andy Walls | 5811cf9 | 2009-02-14 17:08:37 -0300 | [diff] [blame] | 141 | int num = cx->instance + cx18_first_minor + num_offset; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 142 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 143 | /* These four fields are always initialized. If video_dev == NULL, then |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 144 | this stream is not in use. In that case no other fields but these |
| 145 | four can be used. */ |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 146 | s->video_dev = NULL; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 147 | s->cx = cx; |
| 148 | s->type = type; |
| 149 | s->name = cx18_stream_info[type].name; |
| 150 | |
| 151 | /* Check whether the radio is supported */ |
| 152 | if (type == CX18_ENC_STREAM_TYPE_RAD && !(cap & V4L2_CAP_RADIO)) |
| 153 | return 0; |
| 154 | |
| 155 | /* Check whether VBI is supported */ |
| 156 | if (type == CX18_ENC_STREAM_TYPE_VBI && |
| 157 | !(cap & (V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE))) |
| 158 | return 0; |
| 159 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 160 | /* User explicitly selected 0 buffers for these streams, so don't |
| 161 | create them. */ |
| 162 | if (cx18_stream_info[type].dma != PCI_DMA_NONE && |
Andy Walls | 6ecd86d | 2008-12-07 23:30:17 -0300 | [diff] [blame] | 163 | cx->stream_buffers[type] == 0) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 164 | CX18_INFO("Disabled %s device\n", cx18_stream_info[type].name); |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | cx18_stream_init(cx, type); |
| 169 | |
Hans Verkuil | dd89601 | 2008-10-04 08:36:54 -0300 | [diff] [blame] | 170 | if (num_offset == -1) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 171 | return 0; |
| 172 | |
| 173 | /* allocate and initialize the v4l2 video device structure */ |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 174 | s->video_dev = video_device_alloc(); |
| 175 | if (s->video_dev == NULL) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 176 | CX18_ERR("Couldn't allocate v4l2 video_device for %s\n", |
| 177 | s->name); |
| 178 | return -ENOMEM; |
| 179 | } |
| 180 | |
Andy Walls | 5811cf9 | 2009-02-14 17:08:37 -0300 | [diff] [blame] | 181 | snprintf(s->video_dev->name, sizeof(s->video_dev->name), "%s %s", |
| 182 | cx->v4l2_dev.name, s->name); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 183 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 184 | s->video_dev->num = num; |
Andy Walls | 5811cf9 | 2009-02-14 17:08:37 -0300 | [diff] [blame] | 185 | s->video_dev->v4l2_dev = &cx->v4l2_dev; |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 186 | s->video_dev->fops = &cx18_v4l2_enc_fops; |
| 187 | s->video_dev->release = video_device_release; |
| 188 | s->video_dev->tvnorms = V4L2_STD_ALL; |
| 189 | cx18_set_funcs(s->video_dev); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | /* Initialize v4l2 variables and register v4l2 devices */ |
| 194 | int cx18_streams_setup(struct cx18 *cx) |
| 195 | { |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 196 | int type, ret; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 197 | |
| 198 | /* Setup V4L2 Devices */ |
| 199 | for (type = 0; type < CX18_MAX_STREAMS; type++) { |
| 200 | /* Prepare device */ |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 201 | ret = cx18_prep_dev(cx, type); |
| 202 | if (ret < 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 203 | break; |
| 204 | |
| 205 | /* Allocate Stream */ |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 206 | ret = cx18_stream_alloc(&cx->streams[type]); |
| 207 | if (ret < 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 208 | break; |
| 209 | } |
| 210 | if (type == CX18_MAX_STREAMS) |
| 211 | return 0; |
| 212 | |
| 213 | /* One or more streams could not be initialized. Clean 'em all up. */ |
Hans Verkuil | 3f98387 | 2008-05-01 10:31:12 -0300 | [diff] [blame] | 214 | cx18_streams_cleanup(cx, 0); |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 215 | return ret; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | static int cx18_reg_dev(struct cx18 *cx, int type) |
| 219 | { |
| 220 | struct cx18_stream *s = &cx->streams[type]; |
| 221 | int vfl_type = cx18_stream_info[type].vfl_type; |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 222 | const char *name; |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 223 | int num, ret; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 224 | |
| 225 | /* TODO: Shouldn't this be a VFL_TYPE_TRANSPORT or something? |
| 226 | * We need a VFL_TYPE_TS defined. |
| 227 | */ |
| 228 | if (strcmp("TS", s->name) == 0) { |
| 229 | /* just return if no DVB is supported */ |
| 230 | if ((cx->card->hw_all & CX18_HW_DVB) == 0) |
| 231 | return 0; |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 232 | ret = cx18_dvb_register(s); |
| 233 | if (ret < 0) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 234 | CX18_ERR("DVB failed to register\n"); |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 235 | return ret; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 236 | } |
| 237 | } |
| 238 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 239 | if (s->video_dev == NULL) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 240 | return 0; |
| 241 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 242 | num = s->video_dev->num; |
Hans Verkuil | dd89601 | 2008-10-04 08:36:54 -0300 | [diff] [blame] | 243 | /* card number + user defined offset + device offset */ |
| 244 | if (type != CX18_ENC_STREAM_TYPE_MPG) { |
| 245 | struct cx18_stream *s_mpg = &cx->streams[CX18_ENC_STREAM_TYPE_MPG]; |
| 246 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 247 | if (s_mpg->video_dev) |
| 248 | num = s_mpg->video_dev->num |
| 249 | + cx18_stream_info[type].num_offset; |
Hans Verkuil | dd89601 | 2008-10-04 08:36:54 -0300 | [diff] [blame] | 250 | } |
Andy Walls | 5811cf9 | 2009-02-14 17:08:37 -0300 | [diff] [blame] | 251 | video_set_drvdata(s->video_dev, s); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 252 | |
| 253 | /* Register device. First try the desired minor, then any free one. */ |
Hans Verkuil | 6b5270d | 2009-09-06 07:54:00 -0300 | [diff] [blame] | 254 | ret = video_register_device_no_warn(s->video_dev, vfl_type, num); |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 255 | if (ret < 0) { |
Hans Verkuil | 581644d | 2009-06-19 11:54:00 -0300 | [diff] [blame] | 256 | CX18_ERR("Couldn't register v4l2 device for %s (device node number %d)\n", |
Hans Verkuil | dd89601 | 2008-10-04 08:36:54 -0300 | [diff] [blame] | 257 | s->name, num); |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 258 | video_device_release(s->video_dev); |
| 259 | s->video_dev = NULL; |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 260 | return ret; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 261 | } |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 262 | |
| 263 | name = video_device_node_name(s->video_dev); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 264 | |
| 265 | switch (vfl_type) { |
| 266 | case VFL_TYPE_GRABBER: |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 267 | CX18_INFO("Registered device %s for %s (%d x %d.%02d kB)\n", |
| 268 | name, s->name, cx->stream_buffers[type], |
Andy Walls | 22dce18 | 2009-11-09 23:55:30 -0300 | [diff] [blame] | 269 | cx->stream_buf_size[type] / 1024, |
| 270 | (cx->stream_buf_size[type] * 100 / 1024) % 100); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 271 | break; |
| 272 | |
| 273 | case VFL_TYPE_RADIO: |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 274 | CX18_INFO("Registered device %s for %s\n", name, s->name); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 275 | break; |
| 276 | |
| 277 | case VFL_TYPE_VBI: |
Andy Walls | 6ecd86d | 2008-12-07 23:30:17 -0300 | [diff] [blame] | 278 | if (cx->stream_buffers[type]) |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 279 | CX18_INFO("Registered device %s for %s " |
Andy Walls | 6ecd86d | 2008-12-07 23:30:17 -0300 | [diff] [blame] | 280 | "(%d x %d bytes)\n", |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 281 | name, s->name, cx->stream_buffers[type], |
Andy Walls | 6ecd86d | 2008-12-07 23:30:17 -0300 | [diff] [blame] | 282 | cx->stream_buf_size[type]); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 283 | else |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 284 | CX18_INFO("Registered device %s for %s\n", |
| 285 | name, s->name); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 286 | break; |
| 287 | } |
| 288 | |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | /* Register v4l2 devices */ |
| 293 | int cx18_streams_register(struct cx18 *cx) |
| 294 | { |
| 295 | int type; |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 296 | int err; |
| 297 | int ret = 0; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 298 | |
| 299 | /* Register V4L2 devices */ |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 300 | for (type = 0; type < CX18_MAX_STREAMS; type++) { |
| 301 | err = cx18_reg_dev(cx, type); |
| 302 | if (err && ret == 0) |
| 303 | ret = err; |
| 304 | } |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 305 | |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 306 | if (ret == 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 307 | return 0; |
| 308 | |
| 309 | /* One or more streams could not be initialized. Clean 'em all up. */ |
Hans Verkuil | 3f98387 | 2008-05-01 10:31:12 -0300 | [diff] [blame] | 310 | cx18_streams_cleanup(cx, 1); |
Andy Walls | 9b4a7c8 | 2008-10-18 10:20:25 -0300 | [diff] [blame] | 311 | return ret; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | /* Unregister v4l2 devices */ |
Hans Verkuil | 3f98387 | 2008-05-01 10:31:12 -0300 | [diff] [blame] | 315 | void cx18_streams_cleanup(struct cx18 *cx, int unregister) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 316 | { |
| 317 | struct video_device *vdev; |
| 318 | int type; |
| 319 | |
| 320 | /* Teardown all streams */ |
| 321 | for (type = 0; type < CX18_MAX_STREAMS; type++) { |
Hans Verkuil | fac3639 | 2008-07-18 10:07:10 -0300 | [diff] [blame] | 322 | if (cx->streams[type].dvb.enabled) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 323 | cx18_dvb_unregister(&cx->streams[type]); |
Hans Verkuil | fac3639 | 2008-07-18 10:07:10 -0300 | [diff] [blame] | 324 | cx->streams[type].dvb.enabled = false; |
| 325 | } |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 326 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 327 | vdev = cx->streams[type].video_dev; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 328 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 329 | cx->streams[type].video_dev = NULL; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 330 | if (vdev == NULL) |
| 331 | continue; |
| 332 | |
| 333 | cx18_stream_free(&cx->streams[type]); |
| 334 | |
Hans Verkuil | 3f98387 | 2008-05-01 10:31:12 -0300 | [diff] [blame] | 335 | /* Unregister or release device */ |
| 336 | if (unregister) |
| 337 | video_unregister_device(vdev); |
| 338 | else |
| 339 | video_device_release(vdev); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 340 | } |
| 341 | } |
| 342 | |
| 343 | static void cx18_vbi_setup(struct cx18_stream *s) |
| 344 | { |
| 345 | struct cx18 *cx = s->cx; |
Andy Walls | dd07343 | 2008-12-12 16:24:04 -0300 | [diff] [blame] | 346 | int raw = cx18_raw_vbi(cx); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 347 | u32 data[CX2341X_MBOX_MAX_DATA]; |
| 348 | int lines; |
| 349 | |
| 350 | if (cx->is_60hz) { |
| 351 | cx->vbi.count = 12; |
| 352 | cx->vbi.start[0] = 10; |
| 353 | cx->vbi.start[1] = 273; |
| 354 | } else { /* PAL/SECAM */ |
| 355 | cx->vbi.count = 18; |
| 356 | cx->vbi.start[0] = 6; |
| 357 | cx->vbi.start[1] = 318; |
| 358 | } |
| 359 | |
| 360 | /* setup VBI registers */ |
Andy Walls | fa3e703 | 2009-02-16 02:23:25 -0300 | [diff] [blame] | 361 | v4l2_subdev_call(cx->sd_av, video, s_fmt, &cx->vbi.in); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 362 | |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 363 | /* |
| 364 | * Send the CX18_CPU_SET_RAW_VBI_PARAM API command to setup Encoder Raw |
| 365 | * VBI when the first analog capture channel starts, as once it starts |
| 366 | * (e.g. MPEG), we can't effect any change in the Encoder Raw VBI setup |
| 367 | * (i.e. for the VBI capture channels). We also send it for each |
| 368 | * analog capture channel anyway just to make sure we get the proper |
| 369 | * behavior |
| 370 | */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 371 | if (raw) { |
| 372 | lines = cx->vbi.count * 2; |
| 373 | } else { |
Andy Walls | 812b1f9 | 2009-02-08 22:40:04 -0300 | [diff] [blame] | 374 | /* |
| 375 | * For 525/60 systems, according to the VIP 2 & BT.656 std: |
| 376 | * The EAV RP code's Field bit toggles on line 4, a few lines |
| 377 | * after the Vertcal Blank bit has already toggled. |
| 378 | * Tell the encoder to capture 21-4+1=18 lines per field, |
| 379 | * since we want lines 10 through 21. |
| 380 | * |
Andy Walls | 5ab7405 | 2009-05-10 22:14:29 -0300 | [diff] [blame] | 381 | * For 625/50 systems, according to the VIP 2 & BT.656 std: |
| 382 | * The EAV RP code's Field bit toggles on line 1, a few lines |
| 383 | * after the Vertcal Blank bit has already toggled. |
Andy Walls | 929a3ad | 2009-05-16 21:06:57 -0300 | [diff] [blame] | 384 | * (We've actually set the digitizer so that the Field bit |
| 385 | * toggles on line 2.) Tell the encoder to capture 23-2+1=22 |
| 386 | * lines per field, since we want lines 6 through 23. |
Andy Walls | 812b1f9 | 2009-02-08 22:40:04 -0300 | [diff] [blame] | 387 | */ |
Andy Walls | 929a3ad | 2009-05-16 21:06:57 -0300 | [diff] [blame] | 388 | lines = cx->is_60hz ? (21 - 4 + 1) * 2 : (23 - 2 + 1) * 2; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 389 | } |
| 390 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 391 | data[0] = s->handle; |
| 392 | /* Lines per field */ |
| 393 | data[1] = (lines / 2) | ((lines / 2) << 16); |
| 394 | /* bytes per line */ |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 395 | data[2] = (raw ? vbi_active_samples |
| 396 | : (cx->is_60hz ? vbi_hblank_samples_60Hz |
| 397 | : vbi_hblank_samples_50Hz)); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 398 | /* Every X number of frames a VBI interrupt arrives |
| 399 | (frames as in 25 or 30 fps) */ |
| 400 | data[3] = 1; |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 401 | /* |
| 402 | * Set the SAV/EAV RP codes to look for as start/stop points |
| 403 | * when in VIP-1.1 mode |
| 404 | */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 405 | if (raw) { |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 406 | /* |
| 407 | * Start codes for beginning of "active" line in vertical blank |
| 408 | * 0x20 ( VerticalBlank ) |
| 409 | * 0x60 ( EvenField VerticalBlank ) |
| 410 | */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 411 | data[4] = 0x20602060; |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 412 | /* |
| 413 | * End codes for end of "active" raw lines and regular lines |
| 414 | * 0x30 ( VerticalBlank HorizontalBlank) |
| 415 | * 0x70 ( EvenField VerticalBlank HorizontalBlank) |
| 416 | * 0x90 (Task HorizontalBlank) |
| 417 | * 0xd0 (Task EvenField HorizontalBlank) |
| 418 | */ |
Andy Walls | af009cf | 2008-12-12 20:00:29 -0300 | [diff] [blame] | 419 | data[5] = 0x307090d0; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 420 | } else { |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 421 | /* |
| 422 | * End codes for active video, we want data in the hblank region |
| 423 | * 0xb0 (Task 0 VerticalBlank HorizontalBlank) |
| 424 | * 0xf0 (Task EvenField VerticalBlank HorizontalBlank) |
| 425 | * |
| 426 | * Since the V bit is only allowed to toggle in the EAV RP code, |
| 427 | * just before the first active region line, these two |
Andy Walls | 812b1f9 | 2009-02-08 22:40:04 -0300 | [diff] [blame] | 428 | * are problematic: |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 429 | * 0x90 (Task HorizontalBlank) |
| 430 | * 0xd0 (Task EvenField HorizontalBlank) |
Andy Walls | 812b1f9 | 2009-02-08 22:40:04 -0300 | [diff] [blame] | 431 | * |
Andy Walls | af7c58b | 2009-02-28 20:13:50 -0300 | [diff] [blame] | 432 | * We have set the digitzer such that we don't have to worry |
| 433 | * about these problem codes. |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 434 | */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 435 | data[4] = 0xB0F0B0F0; |
Andy Walls | 302df97 | 2009-01-31 00:33:02 -0300 | [diff] [blame] | 436 | /* |
| 437 | * Start codes for beginning of active line in vertical blank |
| 438 | * 0xa0 (Task VerticalBlank ) |
| 439 | * 0xe0 (Task EvenField VerticalBlank ) |
| 440 | */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 441 | data[5] = 0xA0E0A0E0; |
| 442 | } |
| 443 | |
| 444 | CX18_DEBUG_INFO("Setup VBI h: %d lines %x bpl %d fr %d %x %x\n", |
| 445 | data[0], data[1], data[2], data[3], data[4], data[5]); |
| 446 | |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 447 | cx18_api(cx, CX18_CPU_SET_RAW_VBI_PARAM, 6, data); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 448 | } |
| 449 | |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 450 | static |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 451 | struct cx18_queue *_cx18_stream_put_mdl_fw(struct cx18_stream *s, |
| 452 | struct cx18_mdl *mdl) |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 453 | { |
| 454 | struct cx18 *cx = s->cx; |
| 455 | struct cx18_queue *q; |
| 456 | |
| 457 | /* Don't give it to the firmware, if we're not running a capture */ |
| 458 | if (s->handle == CX18_INVALID_TASK_HANDLE || |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 459 | test_bit(CX18_F_S_STOPPING, &s->s_flags) || |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 460 | !test_bit(CX18_F_S_STREAMING, &s->s_flags)) |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 461 | return cx18_enqueue(s, mdl, &s->q_free); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 462 | |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 463 | q = cx18_enqueue(s, mdl, &s->q_busy); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 464 | if (q != &s->q_busy) |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 465 | return q; /* The firmware has the max MDLs it can handle */ |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 466 | |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 467 | cx18_mdl_sync_for_device(s, mdl); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 468 | cx18_vapi(cx, CX18_CPU_DE_SET_MDL, 5, s->handle, |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 469 | (void __iomem *) &cx->scb->cpu_mdl[mdl->id] - cx->enc_mem, |
| 470 | s->bufs_per_mdl, mdl->id, s->mdl_size); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 471 | return q; |
| 472 | } |
| 473 | |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 474 | static |
| 475 | void _cx18_stream_load_fw_queue(struct cx18_stream *s) |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 476 | { |
Andy Walls | abb096d | 2008-12-12 15:50:27 -0300 | [diff] [blame] | 477 | struct cx18_queue *q; |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 478 | struct cx18_mdl *mdl; |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 479 | |
Andy Walls | c37b11b | 2009-11-04 23:13:58 -0300 | [diff] [blame] | 480 | if (atomic_read(&s->q_free.depth) == 0 || |
| 481 | atomic_read(&s->q_busy.depth) >= CX18_MAX_FW_MDLS_PER_STREAM) |
Andy Walls | abb096d | 2008-12-12 15:50:27 -0300 | [diff] [blame] | 482 | return; |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 483 | |
Andy Walls | abb096d | 2008-12-12 15:50:27 -0300 | [diff] [blame] | 484 | /* Move from q_free to q_busy notifying the firmware, until the limit */ |
| 485 | do { |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 486 | mdl = cx18_dequeue(s, &s->q_free); |
| 487 | if (mdl == NULL) |
Andy Walls | abb096d | 2008-12-12 15:50:27 -0300 | [diff] [blame] | 488 | break; |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 489 | q = _cx18_stream_put_mdl_fw(s, mdl); |
Andy Walls | c37b11b | 2009-11-04 23:13:58 -0300 | [diff] [blame] | 490 | } while (atomic_read(&s->q_busy.depth) < CX18_MAX_FW_MDLS_PER_STREAM |
Andy Walls | 0ef0289 | 2008-12-14 18:52:12 -0300 | [diff] [blame] | 491 | && q == &s->q_busy); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 492 | } |
| 493 | |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 494 | void cx18_out_work_handler(struct work_struct *work) |
| 495 | { |
Andy Walls | 21a278b | 2009-04-15 20:45:10 -0300 | [diff] [blame] | 496 | struct cx18_stream *s = |
| 497 | container_of(work, struct cx18_stream, out_work_order); |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 498 | |
Andy Walls | 21a278b | 2009-04-15 20:45:10 -0300 | [diff] [blame] | 499 | _cx18_stream_load_fw_queue(s); |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 500 | } |
| 501 | |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 502 | static void cx18_stream_configure_mdls(struct cx18_stream *s) |
| 503 | { |
| 504 | cx18_unload_queues(s); |
| 505 | |
Andy Walls | 22dce18 | 2009-11-09 23:55:30 -0300 | [diff] [blame] | 506 | switch (s->type) { |
| 507 | case CX18_ENC_STREAM_TYPE_YUV: |
| 508 | /* |
| 509 | * Height should be a multiple of 32 lines. |
| 510 | * Set the MDL size to the exact size needed for one frame. |
| 511 | * Use enough buffers per MDL to cover the MDL size |
| 512 | */ |
| 513 | s->mdl_size = 720 * s->cx->params.height * 3 / 2; |
| 514 | s->bufs_per_mdl = s->mdl_size / s->buf_size; |
| 515 | if (s->mdl_size % s->buf_size) |
| 516 | s->bufs_per_mdl++; |
| 517 | break; |
Andy Walls | 127ce5f | 2009-11-11 00:22:57 -0300 | [diff] [blame] | 518 | case CX18_ENC_STREAM_TYPE_VBI: |
| 519 | s->bufs_per_mdl = 1; |
| 520 | if (cx18_raw_vbi(s->cx)) { |
| 521 | s->mdl_size = (s->cx->is_60hz ? 12 : 18) |
| 522 | * 2 * vbi_active_samples; |
| 523 | } else { |
| 524 | /* |
| 525 | * See comment in cx18_vbi_setup() below about the |
| 526 | * extra lines we capture in sliced VBI mode due to |
| 527 | * the lines on which EAV RP codes toggle. |
| 528 | */ |
| 529 | s->mdl_size = s->cx->is_60hz |
| 530 | ? (21 - 4 + 1) * 2 * vbi_hblank_samples_60Hz |
| 531 | : (23 - 2 + 1) * 2 * vbi_hblank_samples_50Hz; |
| 532 | } |
| 533 | break; |
Andy Walls | 22dce18 | 2009-11-09 23:55:30 -0300 | [diff] [blame] | 534 | default: |
| 535 | s->bufs_per_mdl = 1; |
| 536 | s->mdl_size = s->buf_size * s->bufs_per_mdl; |
| 537 | break; |
| 538 | } |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 539 | |
| 540 | cx18_load_queues(s); |
| 541 | } |
| 542 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 543 | int cx18_start_v4l2_encode_stream(struct cx18_stream *s) |
| 544 | { |
| 545 | u32 data[MAX_MB_ARGUMENTS]; |
| 546 | struct cx18 *cx = s->cx; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 547 | int captype = 0; |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 548 | struct cx18_api_func_private priv; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 549 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 550 | if (s->video_dev == NULL && s->dvb.enabled == 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 551 | return -EINVAL; |
| 552 | |
| 553 | CX18_DEBUG_INFO("Start encoder stream %s\n", s->name); |
| 554 | |
| 555 | switch (s->type) { |
| 556 | case CX18_ENC_STREAM_TYPE_MPG: |
| 557 | captype = CAPTURE_CHANNEL_TYPE_MPEG; |
| 558 | cx->mpg_data_received = cx->vbi_data_inserted = 0; |
| 559 | cx->dualwatch_jiffies = jiffies; |
| 560 | cx->dualwatch_stereo_mode = cx->params.audio_properties & 0x300; |
| 561 | cx->search_pack_header = 0; |
| 562 | break; |
| 563 | |
| 564 | case CX18_ENC_STREAM_TYPE_TS: |
| 565 | captype = CAPTURE_CHANNEL_TYPE_TS; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 566 | break; |
| 567 | case CX18_ENC_STREAM_TYPE_YUV: |
| 568 | captype = CAPTURE_CHANNEL_TYPE_YUV; |
| 569 | break; |
| 570 | case CX18_ENC_STREAM_TYPE_PCM: |
| 571 | captype = CAPTURE_CHANNEL_TYPE_PCM; |
| 572 | break; |
| 573 | case CX18_ENC_STREAM_TYPE_VBI: |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 574 | #ifdef CX18_ENCODER_PARSES_SLICED |
Andy Walls | dd07343 | 2008-12-12 16:24:04 -0300 | [diff] [blame] | 575 | captype = cx18_raw_vbi(cx) ? |
| 576 | CAPTURE_CHANNEL_TYPE_VBI : CAPTURE_CHANNEL_TYPE_SLICED_VBI; |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 577 | #else |
| 578 | /* |
| 579 | * Currently we set things up so that Sliced VBI from the |
| 580 | * digitizer is handled as Raw VBI by the encoder |
| 581 | */ |
| 582 | captype = CAPTURE_CHANNEL_TYPE_VBI; |
| 583 | #endif |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 584 | cx->vbi.frame = 0; |
| 585 | cx->vbi.inserted_frame = 0; |
| 586 | memset(cx->vbi.sliced_mpeg_size, |
| 587 | 0, sizeof(cx->vbi.sliced_mpeg_size)); |
| 588 | break; |
| 589 | default: |
| 590 | return -EINVAL; |
| 591 | } |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 592 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 593 | /* Clear Streamoff flags in case left from last capture */ |
| 594 | clear_bit(CX18_F_S_STREAMOFF, &s->s_flags); |
| 595 | |
| 596 | cx18_vapi_result(cx, data, CX18_CREATE_TASK, 1, CPU_CMD_MASK_CAPTURE); |
| 597 | s->handle = data[0]; |
| 598 | cx18_vapi(cx, CX18_CPU_SET_CHANNEL_TYPE, 2, s->handle, captype); |
| 599 | |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 600 | /* |
| 601 | * For everything but CAPTURE_CHANNEL_TYPE_TS, play it safe and |
| 602 | * set up all the parameters, as it is not obvious which parameters the |
| 603 | * firmware shares across capture channel types and which it does not. |
| 604 | * |
| 605 | * Some of the cx18_vapi() calls below apply to only certain capture |
| 606 | * channel types. We're hoping there's no harm in calling most of them |
| 607 | * anyway, as long as the values are all consistent. Setting some |
| 608 | * shared parameters will have no effect once an analog capture channel |
| 609 | * has started streaming. |
| 610 | */ |
| 611 | if (captype != CAPTURE_CHANNEL_TYPE_TS) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 612 | cx18_vapi(cx, CX18_CPU_SET_VER_CROP_LINE, 2, s->handle, 0); |
| 613 | cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 3, 1); |
| 614 | cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 8, 0); |
| 615 | cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 4, 1); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 616 | |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 617 | /* |
| 618 | * Audio related reset according to |
| 619 | * Documentation/video4linux/cx2341x/fw-encoder-api.txt |
| 620 | */ |
| 621 | if (atomic_read(&cx->ana_capturing) == 0) |
| 622 | cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 2, |
| 623 | s->handle, 12); |
| 624 | |
| 625 | /* |
| 626 | * Number of lines for Field 1 & Field 2 according to |
| 627 | * Documentation/video4linux/cx2341x/fw-encoder-api.txt |
Andy Walls | f37aa51 | 2009-02-07 01:15:44 -0300 | [diff] [blame] | 628 | * Field 1 is 312 for 625 line systems in BT.656 |
| 629 | * Field 2 is 313 for 625 line systems in BT.656 |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 630 | */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 631 | cx18_vapi(cx, CX18_CPU_SET_CAPTURE_LINE_NO, 3, |
Andy Walls | f37aa51 | 2009-02-07 01:15:44 -0300 | [diff] [blame] | 632 | s->handle, 312, 313); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 633 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 634 | if (cx->v4l2_cap & V4L2_CAP_VBI_CAPTURE) |
| 635 | cx18_vbi_setup(s); |
| 636 | |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 637 | /* |
| 638 | * assign program index info. |
| 639 | * Mask 7: select I/P/B, Num_req: 400 max |
| 640 | * FIXME - currently we have this hardcoded as disabled |
| 641 | */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 642 | cx18_vapi_result(cx, data, CX18_CPU_SET_INDEXTABLE, 1, 0); |
| 643 | |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 644 | /* Call out to the common CX2341x API setup for user controls */ |
Andy Walls | 50b86ba | 2008-11-23 19:16:44 -0300 | [diff] [blame] | 645 | priv.cx = cx; |
| 646 | priv.s = s; |
| 647 | cx2341x_update(&priv, cx18_api_func, NULL, &cx->params); |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 648 | |
| 649 | /* |
| 650 | * When starting a capture and we're set for radio, |
| 651 | * ensure the video is muted, despite the user control. |
| 652 | */ |
| 653 | if (!cx->params.video_mute && |
| 654 | test_bit(CX18_F_I_RADIO_USER, &cx->i_flags)) |
| 655 | cx18_vapi(cx, CX18_CPU_SET_VIDEO_MUTE, 2, s->handle, |
| 656 | (cx->params.video_mute_yuv << 8) | 1); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 657 | } |
| 658 | |
Hans Verkuil | 31554ae | 2008-05-25 11:21:27 -0300 | [diff] [blame] | 659 | if (atomic_read(&cx->tot_capturing) == 0) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 660 | clear_bit(CX18_F_I_EOS, &cx->i_flags); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 661 | cx18_write_reg(cx, 7, CX18_DSP0_INTERRUPT_MASK); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | cx18_vapi(cx, CX18_CPU_DE_SET_MDL_ACK, 3, s->handle, |
Al Viro | 990c81c | 2008-05-21 00:32:01 -0300 | [diff] [blame] | 665 | (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][0] - cx->enc_mem, |
| 666 | (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][1] - cx->enc_mem); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 667 | |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 668 | /* Init all the cpu_mdls for this stream */ |
Andy Walls | 52fcb3e | 2009-11-08 23:45:24 -0300 | [diff] [blame] | 669 | cx18_stream_configure_mdls(s); |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 670 | _cx18_stream_load_fw_queue(s); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 671 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 672 | /* begin_capture */ |
| 673 | if (cx18_vapi(cx, CX18_CPU_CAPTURE_START, 1, s->handle)) { |
| 674 | CX18_DEBUG_WARN("Error starting capture!\n"); |
Andy Walls | 3b5df8e | 2008-08-23 18:36:50 -0300 | [diff] [blame] | 675 | /* Ensure we're really not capturing before releasing MDLs */ |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 676 | set_bit(CX18_F_S_STOPPING, &s->s_flags); |
Andy Walls | 3b5df8e | 2008-08-23 18:36:50 -0300 | [diff] [blame] | 677 | if (s->type == CX18_ENC_STREAM_TYPE_MPG) |
| 678 | cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, 1); |
| 679 | else |
| 680 | cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 681 | clear_bit(CX18_F_S_STREAMING, &s->s_flags); |
| 682 | /* FIXME - CX18_F_S_STREAMOFF as well? */ |
Andy Walls | 3b5df8e | 2008-08-23 18:36:50 -0300 | [diff] [blame] | 683 | cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 684 | cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 685 | s->handle = CX18_INVALID_TASK_HANDLE; |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 686 | clear_bit(CX18_F_S_STOPPING, &s->s_flags); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 687 | if (atomic_read(&cx->tot_capturing) == 0) { |
| 688 | set_bit(CX18_F_I_EOS, &cx->i_flags); |
| 689 | cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK); |
| 690 | } |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 691 | return -EINVAL; |
| 692 | } |
| 693 | |
| 694 | /* you're live! sit back and await interrupts :) */ |
Andy Walls | dcc0ef8 | 2009-02-06 18:33:43 -0300 | [diff] [blame] | 695 | if (captype != CAPTURE_CHANNEL_TYPE_TS) |
Hans Verkuil | 31554ae | 2008-05-25 11:21:27 -0300 | [diff] [blame] | 696 | atomic_inc(&cx->ana_capturing); |
| 697 | atomic_inc(&cx->tot_capturing); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 698 | return 0; |
| 699 | } |
| 700 | |
| 701 | void cx18_stop_all_captures(struct cx18 *cx) |
| 702 | { |
| 703 | int i; |
| 704 | |
| 705 | for (i = CX18_MAX_STREAMS - 1; i >= 0; i--) { |
| 706 | struct cx18_stream *s = &cx->streams[i]; |
| 707 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 708 | if (s->video_dev == NULL && s->dvb.enabled == 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 709 | continue; |
| 710 | if (test_bit(CX18_F_S_STREAMING, &s->s_flags)) |
| 711 | cx18_stop_v4l2_encode_stream(s, 0); |
| 712 | } |
| 713 | } |
| 714 | |
| 715 | int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end) |
| 716 | { |
| 717 | struct cx18 *cx = s->cx; |
| 718 | unsigned long then; |
| 719 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 720 | if (s->video_dev == NULL && s->dvb.enabled == 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 721 | return -EINVAL; |
| 722 | |
| 723 | /* This function assumes that you are allowed to stop the capture |
| 724 | and that we are actually capturing */ |
| 725 | |
| 726 | CX18_DEBUG_INFO("Stop Capture\n"); |
| 727 | |
Hans Verkuil | 31554ae | 2008-05-25 11:21:27 -0300 | [diff] [blame] | 728 | if (atomic_read(&cx->tot_capturing) == 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 729 | return 0; |
| 730 | |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 731 | set_bit(CX18_F_S_STOPPING, &s->s_flags); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 732 | if (s->type == CX18_ENC_STREAM_TYPE_MPG) |
| 733 | cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, !gop_end); |
| 734 | else |
| 735 | cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle); |
| 736 | |
| 737 | then = jiffies; |
| 738 | |
| 739 | if (s->type == CX18_ENC_STREAM_TYPE_MPG && gop_end) { |
| 740 | CX18_INFO("ignoring gop_end: not (yet?) supported by the firmware\n"); |
| 741 | } |
| 742 | |
Hans Verkuil | 31554ae | 2008-05-25 11:21:27 -0300 | [diff] [blame] | 743 | if (s->type != CX18_ENC_STREAM_TYPE_TS) |
| 744 | atomic_dec(&cx->ana_capturing); |
| 745 | atomic_dec(&cx->tot_capturing); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 746 | |
| 747 | /* Clear capture and no-read bits */ |
| 748 | clear_bit(CX18_F_S_STREAMING, &s->s_flags); |
| 749 | |
Andy Walls | f68d0cf | 2008-11-05 21:19:15 -0300 | [diff] [blame] | 750 | /* Tell the CX23418 it can't use our buffers anymore */ |
| 751 | cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle); |
| 752 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 753 | cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle); |
Andy Walls | d3c5e70 | 2008-08-23 16:42:29 -0300 | [diff] [blame] | 754 | s->handle = CX18_INVALID_TASK_HANDLE; |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame] | 755 | clear_bit(CX18_F_S_STOPPING, &s->s_flags); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 756 | |
Hans Verkuil | 31554ae | 2008-05-25 11:21:27 -0300 | [diff] [blame] | 757 | if (atomic_read(&cx->tot_capturing) > 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 758 | return 0; |
| 759 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 760 | cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 761 | wake_up(&s->waitq); |
| 762 | |
| 763 | return 0; |
| 764 | } |
| 765 | |
| 766 | u32 cx18_find_handle(struct cx18 *cx) |
| 767 | { |
| 768 | int i; |
| 769 | |
| 770 | /* find first available handle to be used for global settings */ |
| 771 | for (i = 0; i < CX18_MAX_STREAMS; i++) { |
| 772 | struct cx18_stream *s = &cx->streams[i]; |
| 773 | |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 774 | if (s->video_dev && (s->handle != CX18_INVALID_TASK_HANDLE)) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 775 | return s->handle; |
| 776 | } |
Andy Walls | d3c5e70 | 2008-08-23 16:42:29 -0300 | [diff] [blame] | 777 | return CX18_INVALID_TASK_HANDLE; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 778 | } |
Andy Walls | ee2d64f | 2008-11-16 01:38:19 -0300 | [diff] [blame] | 779 | |
| 780 | struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle) |
| 781 | { |
| 782 | int i; |
| 783 | struct cx18_stream *s; |
| 784 | |
| 785 | if (handle == CX18_INVALID_TASK_HANDLE) |
| 786 | return NULL; |
| 787 | |
| 788 | for (i = 0; i < CX18_MAX_STREAMS; i++) { |
| 789 | s = &cx->streams[i]; |
| 790 | if (s->handle != handle) |
| 791 | continue; |
Andy Walls | 3d05913 | 2009-01-10 21:54:39 -0300 | [diff] [blame] | 792 | if (s->video_dev || s->dvb.enabled) |
Andy Walls | ee2d64f | 2008-11-16 01:38:19 -0300 | [diff] [blame] | 793 | return s; |
| 794 | } |
| 795 | return NULL; |
| 796 | } |