Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 3 | * device driver for Conexant 2388x based TV cards |
| 4 | * video4linux video interface |
| 5 | * |
| 6 | * (c) 2003-04 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs] |
| 7 | * |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 8 | * (c) 2005-2006 Mauro Carvalho Chehab <mchehab@infradead.org> |
| 9 | * - Multituner support |
| 10 | * - video_ioctl2 conversion |
| 11 | * - PAL/M fixes |
| 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | * GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License |
| 24 | * along with this program; if not, write to the Free Software |
| 25 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 26 | */ |
| 27 | |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/list.h> |
| 30 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/kmod.h> |
| 32 | #include <linux/kernel.h> |
| 33 | #include <linux/slab.h> |
| 34 | #include <linux/interrupt.h> |
Andrew Morton | c24228d | 2007-05-06 14:51:55 -0700 | [diff] [blame] | 35 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/delay.h> |
| 37 | #include <linux/kthread.h> |
| 38 | #include <asm/div64.h> |
| 39 | |
| 40 | #include "cx88.h" |
Michael Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 41 | #include <media/v4l2-common.h> |
Hans Verkuil | 35ea11f | 2008-07-20 08:12:02 -0300 | [diff] [blame] | 42 | #include <media/v4l2-ioctl.h> |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 43 | #include <media/v4l2-event.h> |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 44 | #include <media/wm8775.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards"); |
| 47 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |
| 48 | MODULE_LICENSE("GPL"); |
Mauro Carvalho Chehab | 1990d50 | 2011-06-24 14:45:49 -0300 | [diff] [blame] | 49 | MODULE_VERSION(CX88_VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | /* ------------------------------------------------------------------ */ |
| 52 | |
| 53 | static unsigned int video_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET }; |
| 54 | static unsigned int vbi_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET }; |
| 55 | static unsigned int radio_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET }; |
| 56 | |
| 57 | module_param_array(video_nr, int, NULL, 0444); |
| 58 | module_param_array(vbi_nr, int, NULL, 0444); |
| 59 | module_param_array(radio_nr, int, NULL, 0444); |
| 60 | |
| 61 | MODULE_PARM_DESC(video_nr,"video device numbers"); |
| 62 | MODULE_PARM_DESC(vbi_nr,"vbi device numbers"); |
| 63 | MODULE_PARM_DESC(radio_nr,"radio device numbers"); |
| 64 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 65 | static unsigned int video_debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | module_param(video_debug,int,0644); |
| 67 | MODULE_PARM_DESC(video_debug,"enable debug messages [video]"); |
| 68 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 69 | static unsigned int irq_debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | module_param(irq_debug,int,0644); |
| 71 | MODULE_PARM_DESC(irq_debug,"enable debug messages [IRQ handler]"); |
| 72 | |
| 73 | static unsigned int vid_limit = 16; |
| 74 | module_param(vid_limit,int,0644); |
| 75 | MODULE_PARM_DESC(vid_limit,"capture memory limit in megabytes"); |
| 76 | |
| 77 | #define dprintk(level,fmt, arg...) if (video_debug >= level) \ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 78 | printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* ------------------------------------------------------------------- */ |
| 81 | /* static data */ |
| 82 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 83 | static const struct cx8800_fmt formats[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
| 85 | .name = "8 bpp, gray", |
| 86 | .fourcc = V4L2_PIX_FMT_GREY, |
| 87 | .cxformat = ColorFormatY8, |
| 88 | .depth = 8, |
| 89 | .flags = FORMAT_FLAGS_PACKED, |
| 90 | },{ |
| 91 | .name = "15 bpp RGB, le", |
| 92 | .fourcc = V4L2_PIX_FMT_RGB555, |
| 93 | .cxformat = ColorFormatRGB15, |
| 94 | .depth = 16, |
| 95 | .flags = FORMAT_FLAGS_PACKED, |
| 96 | },{ |
| 97 | .name = "15 bpp RGB, be", |
| 98 | .fourcc = V4L2_PIX_FMT_RGB555X, |
| 99 | .cxformat = ColorFormatRGB15 | ColorFormatBSWAP, |
| 100 | .depth = 16, |
| 101 | .flags = FORMAT_FLAGS_PACKED, |
| 102 | },{ |
| 103 | .name = "16 bpp RGB, le", |
| 104 | .fourcc = V4L2_PIX_FMT_RGB565, |
| 105 | .cxformat = ColorFormatRGB16, |
| 106 | .depth = 16, |
| 107 | .flags = FORMAT_FLAGS_PACKED, |
| 108 | },{ |
| 109 | .name = "16 bpp RGB, be", |
| 110 | .fourcc = V4L2_PIX_FMT_RGB565X, |
| 111 | .cxformat = ColorFormatRGB16 | ColorFormatBSWAP, |
| 112 | .depth = 16, |
| 113 | .flags = FORMAT_FLAGS_PACKED, |
| 114 | },{ |
| 115 | .name = "24 bpp RGB, le", |
| 116 | .fourcc = V4L2_PIX_FMT_BGR24, |
| 117 | .cxformat = ColorFormatRGB24, |
| 118 | .depth = 24, |
| 119 | .flags = FORMAT_FLAGS_PACKED, |
| 120 | },{ |
| 121 | .name = "32 bpp RGB, le", |
| 122 | .fourcc = V4L2_PIX_FMT_BGR32, |
| 123 | .cxformat = ColorFormatRGB32, |
| 124 | .depth = 32, |
| 125 | .flags = FORMAT_FLAGS_PACKED, |
| 126 | },{ |
| 127 | .name = "32 bpp RGB, be", |
| 128 | .fourcc = V4L2_PIX_FMT_RGB32, |
| 129 | .cxformat = ColorFormatRGB32 | ColorFormatBSWAP | ColorFormatWSWAP, |
| 130 | .depth = 32, |
| 131 | .flags = FORMAT_FLAGS_PACKED, |
| 132 | },{ |
| 133 | .name = "4:2:2, packed, YUYV", |
| 134 | .fourcc = V4L2_PIX_FMT_YUYV, |
| 135 | .cxformat = ColorFormatYUY2, |
| 136 | .depth = 16, |
| 137 | .flags = FORMAT_FLAGS_PACKED, |
| 138 | },{ |
| 139 | .name = "4:2:2, packed, UYVY", |
| 140 | .fourcc = V4L2_PIX_FMT_UYVY, |
| 141 | .cxformat = ColorFormatYUY2 | ColorFormatBSWAP, |
| 142 | .depth = 16, |
| 143 | .flags = FORMAT_FLAGS_PACKED, |
| 144 | }, |
| 145 | }; |
| 146 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 147 | static const struct cx8800_fmt* format_by_fourcc(unsigned int fourcc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
| 149 | unsigned int i; |
| 150 | |
| 151 | for (i = 0; i < ARRAY_SIZE(formats); i++) |
| 152 | if (formats[i].fourcc == fourcc) |
| 153 | return formats+i; |
| 154 | return NULL; |
| 155 | } |
| 156 | |
| 157 | /* ------------------------------------------------------------------- */ |
| 158 | |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 159 | struct cx88_ctrl { |
| 160 | /* control information */ |
| 161 | u32 id; |
| 162 | s32 minimum; |
| 163 | s32 maximum; |
| 164 | u32 step; |
| 165 | s32 default_value; |
| 166 | |
| 167 | /* control register information */ |
| 168 | u32 off; |
| 169 | u32 reg; |
| 170 | u32 sreg; |
| 171 | u32 mask; |
| 172 | u32 shift; |
| 173 | }; |
| 174 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 175 | static const struct cx88_ctrl cx8800_vid_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | /* --- video --- */ |
| 177 | { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 178 | .id = V4L2_CID_BRIGHTNESS, |
| 179 | .minimum = 0x00, |
| 180 | .maximum = 0xff, |
| 181 | .step = 1, |
| 182 | .default_value = 0x7f, |
| 183 | .off = 128, |
| 184 | .reg = MO_CONTR_BRIGHT, |
| 185 | .mask = 0x00ff, |
| 186 | .shift = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | },{ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 188 | .id = V4L2_CID_CONTRAST, |
| 189 | .minimum = 0, |
| 190 | .maximum = 0xff, |
| 191 | .step = 1, |
| 192 | .default_value = 0x3f, |
| 193 | .off = 0, |
| 194 | .reg = MO_CONTR_BRIGHT, |
| 195 | .mask = 0xff00, |
| 196 | .shift = 8, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | },{ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 198 | .id = V4L2_CID_HUE, |
| 199 | .minimum = 0, |
| 200 | .maximum = 0xff, |
| 201 | .step = 1, |
| 202 | .default_value = 0x7f, |
| 203 | .off = 128, |
| 204 | .reg = MO_HUE, |
| 205 | .mask = 0x00ff, |
| 206 | .shift = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | },{ |
| 208 | /* strictly, this only describes only U saturation. |
| 209 | * V saturation is handled specially through code. |
| 210 | */ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 211 | .id = V4L2_CID_SATURATION, |
| 212 | .minimum = 0, |
| 213 | .maximum = 0xff, |
| 214 | .step = 1, |
| 215 | .default_value = 0x7f, |
| 216 | .off = 0, |
| 217 | .reg = MO_UV_SATURATION, |
| 218 | .mask = 0x00ff, |
| 219 | .shift = 0, |
istvan_v@mailbox.hu | eea16e3 | 2011-07-11 11:02:19 -0300 | [diff] [blame] | 220 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 221 | .id = V4L2_CID_SHARPNESS, |
| 222 | .minimum = 0, |
| 223 | .maximum = 4, |
| 224 | .step = 1, |
| 225 | .default_value = 0x0, |
| 226 | .off = 0, |
istvan_v@mailbox.hu | eea16e3 | 2011-07-11 11:02:19 -0300 | [diff] [blame] | 227 | /* NOTE: the value is converted and written to both even |
| 228 | and odd registers in the code */ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 229 | .reg = MO_FILTER_ODD, |
| 230 | .mask = 7 << 7, |
| 231 | .shift = 7, |
istvan_v@mailbox.hu | eea16e3 | 2011-07-11 11:02:19 -0300 | [diff] [blame] | 232 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 233 | .id = V4L2_CID_CHROMA_AGC, |
| 234 | .minimum = 0, |
| 235 | .maximum = 1, |
| 236 | .default_value = 0x1, |
| 237 | .reg = MO_INPUT_FORMAT, |
| 238 | .mask = 1 << 10, |
| 239 | .shift = 10, |
Frej Drejhammar | 6d04203 | 2008-03-23 22:43:21 -0300 | [diff] [blame] | 240 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 241 | .id = V4L2_CID_COLOR_KILLER, |
| 242 | .minimum = 0, |
| 243 | .maximum = 1, |
| 244 | .default_value = 0x1, |
| 245 | .reg = MO_INPUT_FORMAT, |
| 246 | .mask = 1 << 9, |
| 247 | .shift = 9, |
Frej Drejhammar | 1b879c4 | 2008-03-23 22:43:24 -0300 | [diff] [blame] | 248 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 249 | .id = V4L2_CID_BAND_STOP_FILTER, |
| 250 | .minimum = 0, |
| 251 | .maximum = 1, |
| 252 | .step = 1, |
| 253 | .default_value = 0x0, |
| 254 | .off = 0, |
| 255 | .reg = MO_HTOTAL, |
| 256 | .mask = 3 << 11, |
| 257 | .shift = 11, |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 258 | } |
| 259 | }; |
| 260 | |
| 261 | static const struct cx88_ctrl cx8800_aud_ctls[] = { |
| 262 | { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 263 | /* --- audio --- */ |
| 264 | .id = V4L2_CID_AUDIO_MUTE, |
| 265 | .minimum = 0, |
| 266 | .maximum = 1, |
| 267 | .default_value = 1, |
| 268 | .reg = AUD_VOL_CTL, |
| 269 | .sreg = SHADOW_AUD_VOL_CTL, |
| 270 | .mask = (1 << 6), |
| 271 | .shift = 6, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | },{ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 273 | .id = V4L2_CID_AUDIO_VOLUME, |
| 274 | .minimum = 0, |
| 275 | .maximum = 0x3f, |
| 276 | .step = 1, |
| 277 | .default_value = 0x3f, |
| 278 | .reg = AUD_VOL_CTL, |
| 279 | .sreg = SHADOW_AUD_VOL_CTL, |
| 280 | .mask = 0x3f, |
| 281 | .shift = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | },{ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 283 | .id = V4L2_CID_AUDIO_BALANCE, |
| 284 | .minimum = 0, |
| 285 | .maximum = 0x7f, |
| 286 | .step = 1, |
| 287 | .default_value = 0x40, |
| 288 | .reg = AUD_BAL_CTL, |
| 289 | .sreg = SHADOW_AUD_BAL_CTL, |
| 290 | .mask = 0x7f, |
| 291 | .shift = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
| 293 | }; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 294 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 295 | enum { |
| 296 | CX8800_VID_CTLS = ARRAY_SIZE(cx8800_vid_ctls), |
| 297 | CX8800_AUD_CTLS = ARRAY_SIZE(cx8800_aud_ctls), |
| 298 | }; |
Michael Krufky | 38a2713 | 2006-06-26 23:42:39 -0300 | [diff] [blame] | 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | /* ------------------------------------------------------------------- */ |
| 301 | /* resource management */ |
| 302 | |
| 303 | static int res_get(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bit) |
| 304 | { |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 305 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (fh->resources & bit) |
| 307 | /* have it already allocated */ |
| 308 | return 1; |
| 309 | |
| 310 | /* is it free? */ |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 311 | mutex_lock(&core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | if (dev->resources & bit) { |
| 313 | /* no, someone else uses it */ |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 314 | mutex_unlock(&core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | return 0; |
| 316 | } |
| 317 | /* it's free, grab it */ |
| 318 | fh->resources |= bit; |
| 319 | dev->resources |= bit; |
| 320 | dprintk(1,"res: get %d\n",bit); |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 321 | mutex_unlock(&core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | return 1; |
| 323 | } |
| 324 | |
| 325 | static |
| 326 | int res_check(struct cx8800_fh *fh, unsigned int bit) |
| 327 | { |
| 328 | return (fh->resources & bit); |
| 329 | } |
| 330 | |
| 331 | static |
| 332 | int res_locked(struct cx8800_dev *dev, unsigned int bit) |
| 333 | { |
| 334 | return (dev->resources & bit); |
| 335 | } |
| 336 | |
| 337 | static |
| 338 | void res_free(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bits) |
| 339 | { |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 340 | struct cx88_core *core = dev->core; |
Eric Sesterhenn | ae24601 | 2006-03-13 13:17:11 -0300 | [diff] [blame] | 341 | BUG_ON((fh->resources & bits) != bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 343 | mutex_lock(&core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | fh->resources &= ~bits; |
| 345 | dev->resources &= ~bits; |
| 346 | dprintk(1,"res: put %d\n",bits); |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 347 | mutex_unlock(&core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | /* ------------------------------------------------------------------ */ |
| 351 | |
Mauro Carvalho Chehab | e90311a | 2007-01-20 13:58:29 -0300 | [diff] [blame] | 352 | int cx88_video_mux(struct cx88_core *core, unsigned int input) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 354 | /* struct cx88_core *core = dev->core; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | dprintk(1,"video_mux: %d [vmux=%d,gpio=0x%x,0x%x,0x%x,0x%x]\n", |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 357 | input, INPUT(input).vmux, |
| 358 | INPUT(input).gpio0,INPUT(input).gpio1, |
| 359 | INPUT(input).gpio2,INPUT(input).gpio3); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 360 | core->input = input; |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 361 | cx_andor(MO_INPUT_FORMAT, 0x03 << 14, INPUT(input).vmux << 14); |
| 362 | cx_write(MO_GP3_IO, INPUT(input).gpio3); |
| 363 | cx_write(MO_GP0_IO, INPUT(input).gpio0); |
| 364 | cx_write(MO_GP1_IO, INPUT(input).gpio1); |
| 365 | cx_write(MO_GP2_IO, INPUT(input).gpio2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 367 | switch (INPUT(input).type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | case CX88_VMUX_SVIDEO: |
| 369 | cx_set(MO_AFECFG_IO, 0x00000001); |
| 370 | cx_set(MO_INPUT_FORMAT, 0x00010010); |
| 371 | cx_set(MO_FILTER_EVEN, 0x00002020); |
| 372 | cx_set(MO_FILTER_ODD, 0x00002020); |
| 373 | break; |
| 374 | default: |
| 375 | cx_clear(MO_AFECFG_IO, 0x00000001); |
| 376 | cx_clear(MO_INPUT_FORMAT, 0x00010010); |
| 377 | cx_clear(MO_FILTER_EVEN, 0x00002020); |
| 378 | cx_clear(MO_FILTER_ODD, 0x00002020); |
| 379 | break; |
| 380 | } |
Michael Krufky | f24546a | 2006-10-16 16:51:11 -0300 | [diff] [blame] | 381 | |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 382 | /* if there are audioroutes defined, we have an external |
| 383 | ADC to deal with audio */ |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 384 | if (INPUT(input).audioroute) { |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 385 | /* The wm8775 module has the "2" route hardwired into |
| 386 | the initialization. Some boards may use different |
| 387 | routes for different inputs. HVR-1300 surely does */ |
Hans Verkuil | 609c4c1 | 2013-05-29 10:44:22 -0300 | [diff] [blame] | 388 | if (core->sd_wm8775) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 389 | call_all(core, audio, s_routing, |
istvan_v@mailbox.hu | 6e1f4df | 2010-03-27 09:31:32 -0300 | [diff] [blame] | 390 | INPUT(input).audioroute, 0, 0); |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 391 | } |
Darron Broad | 430189d | 2008-10-15 14:18:42 -0300 | [diff] [blame] | 392 | /* cx2388's C-ADC is connected to the tuner only. |
| 393 | When used with S-Video, that ADC is busy dealing with |
| 394 | chroma, so an external must be used for baseband audio */ |
istvan_v@mailbox.hu | 6e1f4df | 2010-03-27 09:31:32 -0300 | [diff] [blame] | 395 | if (INPUT(input).type != CX88_VMUX_TELEVISION && |
| 396 | INPUT(input).type != CX88_VMUX_CABLE) { |
Darron Broad | 430189d | 2008-10-15 14:18:42 -0300 | [diff] [blame] | 397 | /* "I2S ADC mode" */ |
| 398 | core->tvaudio = WW_I2SADC; |
| 399 | cx88_set_tvaudio(core); |
| 400 | } else { |
| 401 | /* Normal mode */ |
| 402 | cx_write(AUD_I2SCNTL, 0x0); |
| 403 | cx_clear(AUD_CTL, EN_I2SIN_ENABLE); |
| 404 | } |
Michael Krufky | f24546a | 2006-10-16 16:51:11 -0300 | [diff] [blame] | 405 | } |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | return 0; |
| 408 | } |
Mauro Carvalho Chehab | e90311a | 2007-01-20 13:58:29 -0300 | [diff] [blame] | 409 | EXPORT_SYMBOL(cx88_video_mux); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
| 411 | /* ------------------------------------------------------------------ */ |
| 412 | |
| 413 | static int start_video_dma(struct cx8800_dev *dev, |
| 414 | struct cx88_dmaqueue *q, |
| 415 | struct cx88_buffer *buf) |
| 416 | { |
| 417 | struct cx88_core *core = dev->core; |
| 418 | |
| 419 | /* setup fifo + format */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 420 | cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | buf->bpl, buf->risc.dma); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 422 | cx88_set_scale(core, buf->vb.width, buf->vb.height, buf->vb.field); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame^] | 423 | cx_write(MO_COLOR_CTRL, dev->fmt->cxformat | ColorFormatGamma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
| 425 | /* reset counter */ |
| 426 | cx_write(MO_VIDY_GPCNTRL,GP_COUNT_CONTROL_RESET); |
| 427 | q->count = 1; |
| 428 | |
| 429 | /* enable irqs */ |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 430 | cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_VIDINT); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 431 | |
| 432 | /* Enables corresponding bits at PCI_INT_STAT: |
| 433 | bits 0 to 4: video, audio, transport stream, VIP, Host |
| 434 | bit 7: timer |
| 435 | bits 8 and 9: DMA complete for: SRC, DST |
| 436 | bits 10 and 11: BERR signal asserted for RISC: RD, WR |
| 437 | bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB |
| 438 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | cx_set(MO_VID_INTMSK, 0x0f0011); |
| 440 | |
| 441 | /* enable capture */ |
| 442 | cx_set(VID_CAPTURE_CONTROL,0x06); |
| 443 | |
| 444 | /* start dma */ |
| 445 | cx_set(MO_DEV_CNTRL2, (1<<5)); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 446 | cx_set(MO_VID_DMACNTRL, 0x11); /* Planar Y and packed FIFO and RISC enable */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
| 448 | return 0; |
| 449 | } |
| 450 | |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 451 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | static int stop_video_dma(struct cx8800_dev *dev) |
| 453 | { |
| 454 | struct cx88_core *core = dev->core; |
| 455 | |
| 456 | /* stop dma */ |
| 457 | cx_clear(MO_VID_DMACNTRL, 0x11); |
| 458 | |
| 459 | /* disable capture */ |
| 460 | cx_clear(VID_CAPTURE_CONTROL,0x06); |
| 461 | |
| 462 | /* disable irqs */ |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 463 | cx_clear(MO_PCI_INTMSK, PCI_INT_VIDINT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | cx_clear(MO_VID_INTMSK, 0x0f0011); |
| 465 | return 0; |
| 466 | } |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 467 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
| 469 | static int restart_video_queue(struct cx8800_dev *dev, |
| 470 | struct cx88_dmaqueue *q) |
| 471 | { |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 472 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | struct cx88_buffer *buf, *prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | if (!list_empty(&q->active)) { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 476 | buf = list_entry(q->active.next, struct cx88_buffer, vb.queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | dprintk(2,"restart_queue [%p/%d]: restart dma\n", |
| 478 | buf, buf->vb.i); |
| 479 | start_video_dma(dev, q, buf); |
Trent Piepho | 8bb629e2 | 2007-10-10 05:37:40 -0300 | [diff] [blame] | 480 | list_for_each_entry(buf, &q->active, vb.queue) |
| 481 | buf->count = q->count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT); |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | prev = NULL; |
| 487 | for (;;) { |
| 488 | if (list_empty(&q->queued)) |
| 489 | return 0; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 490 | buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | if (NULL == prev) { |
Akinobu Mita | 179e091 | 2006-06-26 00:24:41 -0700 | [diff] [blame] | 492 | list_move_tail(&buf->vb.queue, &q->active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | start_video_dma(dev, q, buf); |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 494 | buf->vb.state = VIDEOBUF_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | buf->count = q->count++; |
| 496 | mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT); |
| 497 | dprintk(2,"[%p/%d] restart_queue - first active\n", |
| 498 | buf,buf->vb.i); |
| 499 | |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame^] | 500 | } else { |
Akinobu Mita | 179e091 | 2006-06-26 00:24:41 -0700 | [diff] [blame] | 501 | list_move_tail(&buf->vb.queue, &q->active); |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 502 | buf->vb.state = VIDEOBUF_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | buf->count = q->count++; |
| 504 | prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma); |
| 505 | dprintk(2,"[%p/%d] restart_queue - move to active\n", |
| 506 | buf,buf->vb.i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
| 508 | prev = buf; |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | /* ------------------------------------------------------------------ */ |
| 513 | |
| 514 | static int |
| 515 | buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size) |
| 516 | { |
| 517 | struct cx8800_fh *fh = q->priv_data; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 518 | struct cx8800_dev *dev = fh->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 520 | *size = dev->fmt->depth * dev->width * dev->height >> 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | if (0 == *count) |
| 522 | *count = 32; |
Andreas Bombe | dab7e31 | 2010-03-21 16:02:45 -0300 | [diff] [blame] | 523 | if (*size * *count > vid_limit * 1024 * 1024) |
| 524 | *count = (vid_limit * 1024 * 1024) / *size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | return 0; |
| 526 | } |
| 527 | |
| 528 | static int |
| 529 | buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb, |
| 530 | enum v4l2_field field) |
| 531 | { |
| 532 | struct cx8800_fh *fh = q->priv_data; |
| 533 | struct cx8800_dev *dev = fh->dev; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 534 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb); |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 536 | struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame^] | 537 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 539 | BUG_ON(NULL == dev->fmt); |
| 540 | if (dev->width < 48 || dev->width > norm_maxw(core->tvnorm) || |
| 541 | dev->height < 32 || dev->height > norm_maxh(core->tvnorm)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | return -EINVAL; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 543 | buf->vb.size = (dev->width * dev->height * dev->fmt->depth) >> 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size) |
| 545 | return -EINVAL; |
| 546 | |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame^] | 547 | buf->vb.width = dev->width; |
| 548 | buf->vb.height = dev->height; |
| 549 | buf->vb.field = field; |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 550 | if (VIDEOBUF_NEEDS_INIT == buf->vb.state) { |
Mauro Carvalho Chehab | c7b0ac0 | 2006-03-10 12:29:15 -0300 | [diff] [blame] | 551 | if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | goto fail; |
| 553 | } |
| 554 | |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame^] | 555 | buf->bpl = buf->vb.width * dev->fmt->depth >> 3; |
| 556 | switch (buf->vb.field) { |
| 557 | case V4L2_FIELD_TOP: |
| 558 | cx88_risc_buffer(dev->pci, &buf->risc, |
| 559 | dma->sglist, 0, UNSET, |
| 560 | buf->bpl, 0, buf->vb.height); |
| 561 | break; |
| 562 | case V4L2_FIELD_BOTTOM: |
| 563 | cx88_risc_buffer(dev->pci, &buf->risc, |
| 564 | dma->sglist, UNSET, 0, |
| 565 | buf->bpl, 0, buf->vb.height); |
| 566 | break; |
| 567 | case V4L2_FIELD_SEQ_TB: |
| 568 | cx88_risc_buffer(dev->pci, &buf->risc, |
| 569 | dma->sglist, |
| 570 | 0, buf->bpl * (buf->vb.height >> 1), |
| 571 | buf->bpl, 0, |
| 572 | buf->vb.height >> 1); |
| 573 | break; |
| 574 | case V4L2_FIELD_SEQ_BT: |
| 575 | cx88_risc_buffer(dev->pci, &buf->risc, |
| 576 | dma->sglist, |
| 577 | buf->bpl * (buf->vb.height >> 1), 0, |
| 578 | buf->bpl, 0, |
| 579 | buf->vb.height >> 1); |
| 580 | break; |
| 581 | case V4L2_FIELD_INTERLACED: |
| 582 | default: |
| 583 | cx88_risc_buffer(dev->pci, &buf->risc, |
| 584 | dma->sglist, 0, buf->bpl, |
| 585 | buf->bpl, buf->bpl, |
| 586 | buf->vb.height >> 1); |
| 587 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | } |
| 589 | dprintk(2,"[%p/%d] buffer_prepare - %dx%d %dbpp \"%s\" - dma=0x%08lx\n", |
| 590 | buf, buf->vb.i, |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 591 | dev->width, dev->height, dev->fmt->depth, dev->fmt->name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | (unsigned long)buf->risc.dma); |
| 593 | |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 594 | buf->vb.state = VIDEOBUF_PREPARED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | return 0; |
| 596 | |
| 597 | fail: |
Mauro Carvalho Chehab | c7b0ac0 | 2006-03-10 12:29:15 -0300 | [diff] [blame] | 598 | cx88_free_buffer(q,buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | return rc; |
| 600 | } |
| 601 | |
| 602 | static void |
| 603 | buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb) |
| 604 | { |
| 605 | struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb); |
| 606 | struct cx88_buffer *prev; |
| 607 | struct cx8800_fh *fh = vq->priv_data; |
| 608 | struct cx8800_dev *dev = fh->dev; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 609 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | struct cx88_dmaqueue *q = &dev->vidq; |
| 611 | |
| 612 | /* add jump to stopper */ |
| 613 | buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC); |
| 614 | buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma); |
| 615 | |
| 616 | if (!list_empty(&q->queued)) { |
| 617 | list_add_tail(&buf->vb.queue,&q->queued); |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 618 | buf->vb.state = VIDEOBUF_QUEUED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | dprintk(2,"[%p/%d] buffer_queue - append to queued\n", |
| 620 | buf, buf->vb.i); |
| 621 | |
| 622 | } else if (list_empty(&q->active)) { |
| 623 | list_add_tail(&buf->vb.queue,&q->active); |
| 624 | start_video_dma(dev, q, buf); |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 625 | buf->vb.state = VIDEOBUF_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | buf->count = q->count++; |
| 627 | mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT); |
| 628 | dprintk(2,"[%p/%d] buffer_queue - first active\n", |
| 629 | buf, buf->vb.i); |
| 630 | |
| 631 | } else { |
| 632 | prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame^] | 633 | list_add_tail(&buf->vb.queue, &q->active); |
| 634 | buf->vb.state = VIDEOBUF_ACTIVE; |
| 635 | buf->count = q->count++; |
| 636 | prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma); |
| 637 | dprintk(2, "[%p/%d] buffer_queue - append to active\n", |
| 638 | buf, buf->vb.i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | } |
| 641 | |
| 642 | static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb) |
| 643 | { |
| 644 | struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
Mauro Carvalho Chehab | c7b0ac0 | 2006-03-10 12:29:15 -0300 | [diff] [blame] | 646 | cx88_free_buffer(q,buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } |
| 648 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 649 | static const struct videobuf_queue_ops cx8800_video_qops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | .buf_setup = buffer_setup, |
| 651 | .buf_prepare = buffer_prepare, |
| 652 | .buf_queue = buffer_queue, |
| 653 | .buf_release = buffer_release, |
| 654 | }; |
| 655 | |
| 656 | /* ------------------------------------------------------------------ */ |
| 657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | |
| 659 | /* ------------------------------------------------------------------ */ |
| 660 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 661 | static struct videobuf_queue *get_queue(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 663 | struct video_device *vdev = video_devdata(file); |
| 664 | struct cx8800_fh *fh = file->private_data; |
| 665 | |
| 666 | switch (vdev->vfl_type) { |
| 667 | case VFL_TYPE_GRABBER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | return &fh->vidq; |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 669 | case VFL_TYPE_VBI: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | return &fh->vbiq; |
| 671 | default: |
| 672 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 676 | static int get_resource(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 678 | struct video_device *vdev = video_devdata(file); |
| 679 | |
| 680 | switch (vdev->vfl_type) { |
| 681 | case VFL_TYPE_GRABBER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | return RESOURCE_VIDEO; |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 683 | case VFL_TYPE_VBI: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | return RESOURCE_VBI; |
| 685 | default: |
| 686 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | } |
| 688 | } |
| 689 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 690 | static int video_open(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | { |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 692 | struct video_device *vdev = video_devdata(file); |
| 693 | struct cx8800_dev *dev = video_drvdata(file); |
Dan Carpenter | 5401c2d | 2010-10-21 16:21:45 -0300 | [diff] [blame] | 694 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | struct cx8800_fh *fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | enum v4l2_buf_type type = 0; |
| 697 | int radio = 0; |
| 698 | |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 699 | switch (vdev->vfl_type) { |
| 700 | case VFL_TYPE_GRABBER: |
| 701 | type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 702 | break; |
| 703 | case VFL_TYPE_VBI: |
| 704 | type = V4L2_BUF_TYPE_VBI_CAPTURE; |
| 705 | break; |
| 706 | case VFL_TYPE_RADIO: |
| 707 | radio = 1; |
| 708 | break; |
| 709 | } |
| 710 | |
Laurent Pinchart | 50462eb | 2009-12-10 11:47:13 -0200 | [diff] [blame] | 711 | dprintk(1, "open dev=%s radio=%d type=%s\n", |
| 712 | video_device_node_name(vdev), radio, v4l2_type_names[type]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
| 714 | /* allocate + initialize per filehandle data */ |
Panagiotis Issaris | 7408187 | 2006-01-11 19:40:56 -0200 | [diff] [blame] | 715 | fh = kzalloc(sizeof(*fh),GFP_KERNEL); |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 716 | if (unlikely(!fh)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | return -ENOMEM; |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 718 | |
Hans Verkuil | 88bb42f | 2012-05-11 10:57:59 -0300 | [diff] [blame] | 719 | v4l2_fh_init(&fh->fh, vdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | file->private_data = fh; |
| 721 | fh->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 723 | mutex_lock(&core->lock); |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 724 | |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 725 | videobuf_queue_sg_init(&fh->vidq, &cx8800_video_qops, |
| 726 | &dev->pci->dev, &dev->slock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | V4L2_BUF_TYPE_VIDEO_CAPTURE, |
| 728 | V4L2_FIELD_INTERLACED, |
| 729 | sizeof(struct cx88_buffer), |
Hans Verkuil | 08bff03 | 2010-09-20 17:39:46 -0300 | [diff] [blame] | 730 | fh, NULL); |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 731 | videobuf_queue_sg_init(&fh->vbiq, &cx8800_vbi_qops, |
| 732 | &dev->pci->dev, &dev->slock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | V4L2_BUF_TYPE_VBI_CAPTURE, |
| 734 | V4L2_FIELD_SEQ_TB, |
| 735 | sizeof(struct cx88_buffer), |
Hans Verkuil | 08bff03 | 2010-09-20 17:39:46 -0300 | [diff] [blame] | 736 | fh, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 738 | if (vdev->vfl_type == VFL_TYPE_RADIO) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | dprintk(1,"video_open: setting radio device\n"); |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 740 | cx_write(MO_GP3_IO, core->board.radio.gpio3); |
| 741 | cx_write(MO_GP0_IO, core->board.radio.gpio0); |
| 742 | cx_write(MO_GP1_IO, core->board.radio.gpio1); |
| 743 | cx_write(MO_GP2_IO, core->board.radio.gpio2); |
Darron Broad | 430189d | 2008-10-15 14:18:42 -0300 | [diff] [blame] | 744 | if (core->board.radio.audioroute) { |
Hans Verkuil | 609c4c1 | 2013-05-29 10:44:22 -0300 | [diff] [blame] | 745 | if (core->sd_wm8775) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 746 | call_all(core, audio, s_routing, |
| 747 | core->board.radio.audioroute, 0, 0); |
Darron Broad | 430189d | 2008-10-15 14:18:42 -0300 | [diff] [blame] | 748 | } |
| 749 | /* "I2S ADC mode" */ |
| 750 | core->tvaudio = WW_I2SADC; |
| 751 | cx88_set_tvaudio(core); |
| 752 | } else { |
| 753 | /* FM Mode */ |
| 754 | core->tvaudio = WW_FM; |
| 755 | cx88_set_tvaudio(core); |
| 756 | cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1); |
| 757 | } |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 758 | call_all(core, tuner, s_radio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
| 760 | |
Jonathan Nieder | 8d11593 | 2011-05-01 06:31:40 -0300 | [diff] [blame] | 761 | core->users++; |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 762 | mutex_unlock(&core->lock); |
Hans Verkuil | 88bb42f | 2012-05-11 10:57:59 -0300 | [diff] [blame] | 763 | v4l2_fh_add(&fh->fh); |
Darron Broad | 3e01084 | 2008-09-25 16:51:11 -0300 | [diff] [blame] | 764 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 765 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | static ssize_t |
Peter Hagervall | f9e7a02 | 2005-11-08 21:36:29 -0800 | [diff] [blame] | 769 | video_read(struct file *file, char __user *data, size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 771 | struct video_device *vdev = video_devdata(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | struct cx8800_fh *fh = file->private_data; |
| 773 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 774 | switch (vdev->vfl_type) { |
| 775 | case VFL_TYPE_GRABBER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | if (res_locked(fh->dev,RESOURCE_VIDEO)) |
| 777 | return -EBUSY; |
| 778 | return videobuf_read_one(&fh->vidq, data, count, ppos, |
| 779 | file->f_flags & O_NONBLOCK); |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 780 | case VFL_TYPE_VBI: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | if (!res_get(fh->dev,fh,RESOURCE_VBI)) |
| 782 | return -EBUSY; |
| 783 | return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1, |
| 784 | file->f_flags & O_NONBLOCK); |
| 785 | default: |
| 786 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } |
| 788 | } |
| 789 | |
| 790 | static unsigned int |
| 791 | video_poll(struct file *file, struct poll_table_struct *wait) |
| 792 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 793 | struct video_device *vdev = video_devdata(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | struct cx8800_fh *fh = file->private_data; |
| 795 | struct cx88_buffer *buf; |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 796 | unsigned int rc = v4l2_ctrl_poll(file, wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 798 | if (vdev->vfl_type == VFL_TYPE_VBI) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | if (!res_get(fh->dev,fh,RESOURCE_VBI)) |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 800 | return rc | POLLERR; |
| 801 | return rc | videobuf_poll_stream(file, &fh->vbiq, wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | } |
Figo.zhang | 9fd6418 | 2009-06-16 13:31:29 -0300 | [diff] [blame] | 803 | mutex_lock(&fh->vidq.vb_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | if (res_check(fh,RESOURCE_VIDEO)) { |
| 805 | /* streaming capture */ |
| 806 | if (list_empty(&fh->vidq.stream)) |
Figo.zhang | 9fd6418 | 2009-06-16 13:31:29 -0300 | [diff] [blame] | 807 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | buf = list_entry(fh->vidq.stream.next,struct cx88_buffer,vb.stream); |
| 809 | } else { |
| 810 | /* read() capture */ |
| 811 | buf = (struct cx88_buffer*)fh->vidq.read_buf; |
| 812 | if (NULL == buf) |
Figo.zhang | 9fd6418 | 2009-06-16 13:31:29 -0300 | [diff] [blame] | 813 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | } |
| 815 | poll_wait(file, &buf->vb.done, wait); |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 816 | if (buf->vb.state == VIDEOBUF_DONE || |
| 817 | buf->vb.state == VIDEOBUF_ERROR) |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 818 | rc |= POLLIN|POLLRDNORM; |
Figo.zhang | 9fd6418 | 2009-06-16 13:31:29 -0300 | [diff] [blame] | 819 | done: |
| 820 | mutex_unlock(&fh->vidq.vb_lock); |
| 821 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | } |
| 823 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 824 | static int video_release(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | { |
| 826 | struct cx8800_fh *fh = file->private_data; |
| 827 | struct cx8800_dev *dev = fh->dev; |
| 828 | |
| 829 | /* turn off overlay */ |
| 830 | if (res_check(fh, RESOURCE_OVERLAY)) { |
| 831 | /* FIXME */ |
| 832 | res_free(dev,fh,RESOURCE_OVERLAY); |
| 833 | } |
| 834 | |
| 835 | /* stop video capture */ |
| 836 | if (res_check(fh, RESOURCE_VIDEO)) { |
| 837 | videobuf_queue_cancel(&fh->vidq); |
| 838 | res_free(dev,fh,RESOURCE_VIDEO); |
| 839 | } |
| 840 | if (fh->vidq.read_buf) { |
| 841 | buffer_release(&fh->vidq,fh->vidq.read_buf); |
| 842 | kfree(fh->vidq.read_buf); |
| 843 | } |
| 844 | |
| 845 | /* stop vbi capture */ |
| 846 | if (res_check(fh, RESOURCE_VBI)) { |
Brandon Philips | 053fcb6 | 2007-11-13 20:11:26 -0300 | [diff] [blame] | 847 | videobuf_stop(&fh->vbiq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | res_free(dev,fh,RESOURCE_VBI); |
| 849 | } |
| 850 | |
| 851 | videobuf_mmap_free(&fh->vidq); |
| 852 | videobuf_mmap_free(&fh->vbiq); |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 853 | |
| 854 | mutex_lock(&dev->core->lock); |
Hans Verkuil | 88bb42f | 2012-05-11 10:57:59 -0300 | [diff] [blame] | 855 | v4l2_fh_del(&fh->fh); |
| 856 | v4l2_fh_exit(&fh->fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | file->private_data = NULL; |
| 858 | kfree(fh); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 859 | |
Jonathan Nieder | 8d11593 | 2011-05-01 06:31:40 -0300 | [diff] [blame] | 860 | dev->core->users--; |
| 861 | if (!dev->core->users) |
Laurent Pinchart | 622b828 | 2009-10-05 10:48:17 -0300 | [diff] [blame] | 862 | call_all(dev->core, core, s_power, 0); |
Devin Heitmueller | 06f837c | 2009-04-28 14:35:27 -0300 | [diff] [blame] | 863 | mutex_unlock(&dev->core->lock); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | return 0; |
| 866 | } |
| 867 | |
| 868 | static int |
| 869 | video_mmap(struct file *file, struct vm_area_struct * vma) |
| 870 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 871 | return videobuf_mmap_mapper(get_queue(file), vma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } |
| 873 | |
| 874 | /* ------------------------------------------------------------------ */ |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 875 | /* VIDEO CTRL IOCTLS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 877 | static int cx8800_s_vid_ctrl(struct v4l2_ctrl *ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 879 | struct cx88_core *core = |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 880 | container_of(ctrl->handler, struct cx88_core, video_hdl); |
| 881 | const struct cx88_ctrl *cc = ctrl->priv; |
| 882 | u32 value, mask; |
| 883 | |
| 884 | mask = cc->mask; |
| 885 | switch (ctrl->id) { |
| 886 | case V4L2_CID_SATURATION: |
| 887 | /* special v_sat handling */ |
| 888 | |
| 889 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
| 890 | |
| 891 | if (core->tvnorm & V4L2_STD_SECAM) { |
| 892 | /* For SECAM, both U and V sat should be equal */ |
| 893 | value = value << 8 | value; |
| 894 | } else { |
| 895 | /* Keeps U Saturation proportional to V Sat */ |
| 896 | value = (value * 0x5a) / 0x7f << 8 | value; |
| 897 | } |
| 898 | mask = 0xffff; |
| 899 | break; |
| 900 | case V4L2_CID_SHARPNESS: |
| 901 | /* 0b000, 0b100, 0b101, 0b110, or 0b111 */ |
| 902 | value = (ctrl->val < 1 ? 0 : ((ctrl->val + 3) << 7)); |
| 903 | /* needs to be set for both fields */ |
| 904 | cx_andor(MO_FILTER_EVEN, mask, value); |
| 905 | break; |
| 906 | case V4L2_CID_CHROMA_AGC: |
| 907 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
| 908 | break; |
| 909 | default: |
| 910 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
| 911 | break; |
| 912 | } |
| 913 | dprintk(1, "set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n", |
| 914 | ctrl->id, ctrl->name, ctrl->val, cc->reg, value, |
| 915 | mask, cc->sreg ? " [shadowed]" : ""); |
| 916 | if (cc->sreg) |
| 917 | cx_sandor(cc->sreg, cc->reg, mask, value); |
| 918 | else |
| 919 | cx_andor(cc->reg, mask, value); |
| 920 | return 0; |
| 921 | } |
| 922 | |
| 923 | static int cx8800_s_aud_ctrl(struct v4l2_ctrl *ctrl) |
| 924 | { |
| 925 | struct cx88_core *core = |
| 926 | container_of(ctrl->handler, struct cx88_core, audio_hdl); |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 927 | const struct cx88_ctrl *cc = ctrl->priv; |
Mauro Carvalho Chehab | 70f0004 | 2006-01-09 15:25:26 -0200 | [diff] [blame] | 928 | u32 value,mask; |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 929 | |
| 930 | /* Pass changes onto any WM8775 */ |
Hans Verkuil | 609c4c1 | 2013-05-29 10:44:22 -0300 | [diff] [blame] | 931 | if (core->sd_wm8775) { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 932 | switch (ctrl->id) { |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 933 | case V4L2_CID_AUDIO_MUTE: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 934 | wm8775_s_ctrl(core, ctrl->id, ctrl->val); |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 935 | break; |
| 936 | case V4L2_CID_AUDIO_VOLUME: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 937 | wm8775_s_ctrl(core, ctrl->id, (ctrl->val) ? |
| 938 | (0x90 + ctrl->val) << 8 : 0); |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 939 | break; |
| 940 | case V4L2_CID_AUDIO_BALANCE: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 941 | wm8775_s_ctrl(core, ctrl->id, ctrl->val << 9); |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 942 | break; |
| 943 | default: |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 944 | break; |
| 945 | } |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 946 | } |
| 947 | |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 948 | mask = cc->mask; |
| 949 | switch (ctrl->id) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | case V4L2_CID_AUDIO_BALANCE: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 951 | value = (ctrl->val < 0x40) ? (0x7f - ctrl->val) : (ctrl->val - 0x40); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | break; |
| 953 | case V4L2_CID_AUDIO_VOLUME: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 954 | value = 0x3f - (ctrl->val & 0x3f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | default: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 957 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | break; |
| 959 | } |
Ian Pickworth | 6457af5 | 2006-02-27 00:09:45 -0300 | [diff] [blame] | 960 | dprintk(1,"set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n", |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 961 | ctrl->id, ctrl->name, ctrl->val, cc->reg, value, |
| 962 | mask, cc->sreg ? " [shadowed]" : ""); |
| 963 | if (cc->sreg) |
| 964 | cx_sandor(cc->sreg, cc->reg, mask, value); |
| 965 | else |
| 966 | cx_andor(cc->reg, mask, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | return 0; |
| 968 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | |
| 970 | /* ------------------------------------------------------------------ */ |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 971 | /* VIDEO IOCTLS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 973 | static int vidioc_g_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 974 | struct v4l2_format *f) |
| 975 | { |
| 976 | struct cx8800_fh *fh = priv; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 977 | struct cx8800_dev *dev = fh->dev; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 978 | |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 979 | f->fmt.pix.width = dev->width; |
| 980 | f->fmt.pix.height = dev->height; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 981 | f->fmt.pix.field = fh->vidq.field; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 982 | f->fmt.pix.pixelformat = dev->fmt->fourcc; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 983 | f->fmt.pix.bytesperline = |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 984 | (f->fmt.pix.width * dev->fmt->depth) >> 3; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 985 | f->fmt.pix.sizeimage = |
| 986 | f->fmt.pix.height * f->fmt.pix.bytesperline; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 987 | f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 988 | return 0; |
| 989 | } |
| 990 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 991 | static int vidioc_try_fmt_vid_cap(struct file *file, void *priv, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | struct v4l2_format *f) |
| 993 | { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 994 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 995 | const struct cx8800_fmt *fmt; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 996 | enum v4l2_field field; |
| 997 | unsigned int maxw, maxh; |
| 998 | |
| 999 | fmt = format_by_fourcc(f->fmt.pix.pixelformat); |
| 1000 | if (NULL == fmt) |
| 1001 | return -EINVAL; |
| 1002 | |
| 1003 | field = f->fmt.pix.field; |
| 1004 | maxw = norm_maxw(core->tvnorm); |
| 1005 | maxh = norm_maxh(core->tvnorm); |
| 1006 | |
| 1007 | if (V4L2_FIELD_ANY == field) { |
| 1008 | field = (f->fmt.pix.height > maxh/2) |
| 1009 | ? V4L2_FIELD_INTERLACED |
| 1010 | : V4L2_FIELD_BOTTOM; |
| 1011 | } |
| 1012 | |
| 1013 | switch (field) { |
| 1014 | case V4L2_FIELD_TOP: |
| 1015 | case V4L2_FIELD_BOTTOM: |
| 1016 | maxh = maxh / 2; |
| 1017 | break; |
| 1018 | case V4L2_FIELD_INTERLACED: |
| 1019 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | default: |
| 1021 | return -EINVAL; |
| 1022 | } |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1023 | |
| 1024 | f->fmt.pix.field = field; |
Trent Piepho | 4b89945 | 2009-05-30 21:45:46 -0300 | [diff] [blame] | 1025 | v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2, |
| 1026 | &f->fmt.pix.height, 32, maxh, 0, 0); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1027 | f->fmt.pix.bytesperline = |
| 1028 | (f->fmt.pix.width * fmt->depth) >> 3; |
| 1029 | f->fmt.pix.sizeimage = |
| 1030 | f->fmt.pix.height * f->fmt.pix.bytesperline; |
| 1031 | |
| 1032 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1035 | static int vidioc_s_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1036 | struct v4l2_format *f) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1038 | struct cx8800_fh *fh = priv; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 1039 | struct cx8800_dev *dev = fh->dev; |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1040 | int err = vidioc_try_fmt_vid_cap (file,priv,f); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1041 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1042 | if (0 != err) |
| 1043 | return err; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 1044 | dev->fmt = format_by_fourcc(f->fmt.pix.pixelformat); |
| 1045 | dev->width = f->fmt.pix.width; |
| 1046 | dev->height = f->fmt.pix.height; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1047 | fh->vidq.field = f->fmt.pix.field; |
| 1048 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | } |
| 1050 | |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 1051 | void cx88_querycap(struct file *file, struct cx88_core *core, |
| 1052 | struct v4l2_capability *cap) |
| 1053 | { |
| 1054 | struct video_device *vdev = video_devdata(file); |
| 1055 | |
| 1056 | strlcpy(cap->card, core->board.name, sizeof(cap->card)); |
| 1057 | cap->device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING; |
| 1058 | if (UNSET != core->board.tuner_type) |
| 1059 | cap->device_caps |= V4L2_CAP_TUNER; |
| 1060 | switch (vdev->vfl_type) { |
| 1061 | case VFL_TYPE_RADIO: |
| 1062 | cap->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER; |
| 1063 | break; |
| 1064 | case VFL_TYPE_GRABBER: |
| 1065 | cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE; |
| 1066 | break; |
| 1067 | case VFL_TYPE_VBI: |
| 1068 | cap->device_caps |= V4L2_CAP_VBI_CAPTURE; |
| 1069 | break; |
| 1070 | } |
| 1071 | cap->capabilities = cap->device_caps | V4L2_CAP_VIDEO_CAPTURE | |
| 1072 | V4L2_CAP_VBI_CAPTURE | V4L2_CAP_DEVICE_CAPS; |
| 1073 | if (core->board.radio.type == CX88_RADIO) |
| 1074 | cap->capabilities |= V4L2_CAP_RADIO; |
| 1075 | } |
| 1076 | EXPORT_SYMBOL(cx88_querycap); |
| 1077 | |
| 1078 | static int vidioc_querycap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1079 | struct v4l2_capability *cap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1081 | struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1084 | strcpy(cap->driver, "cx8800"); |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 1085 | sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci)); |
| 1086 | cx88_querycap(file, core, cap); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1087 | return 0; |
| 1088 | } |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1089 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1090 | static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1091 | struct v4l2_fmtdesc *f) |
| 1092 | { |
| 1093 | if (unlikely(f->index >= ARRAY_SIZE(formats))) |
| 1094 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1096 | strlcpy(f->description,formats[f->index].name,sizeof(f->description)); |
| 1097 | f->pixelformat = formats[f->index].fourcc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1099 | return 0; |
| 1100 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1102 | static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1104 | return videobuf_reqbufs(get_queue(file), p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | } |
| 1106 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1107 | static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p) |
| 1108 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1109 | return videobuf_querybuf(get_queue(file), p); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p) |
| 1113 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1114 | return videobuf_qbuf(get_queue(file), p); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1115 | } |
| 1116 | |
| 1117 | static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p) |
| 1118 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1119 | return videobuf_dqbuf(get_queue(file), p, |
| 1120 | file->f_flags & O_NONBLOCK); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i) |
| 1124 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1125 | struct video_device *vdev = video_devdata(file); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1126 | struct cx8800_fh *fh = priv; |
| 1127 | struct cx8800_dev *dev = fh->dev; |
| 1128 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1129 | if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) || |
| 1130 | (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1131 | return -EINVAL; |
Rafael Diniz | b058e3f | 2008-10-24 23:07:57 -0300 | [diff] [blame] | 1132 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1133 | if (unlikely(!res_get(dev, fh, get_resource(file)))) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1134 | return -EBUSY; |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1135 | return videobuf_streamon(get_queue(file)); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i) |
| 1139 | { |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1140 | struct video_device *vdev = video_devdata(file); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1141 | struct cx8800_fh *fh = priv; |
| 1142 | struct cx8800_dev *dev = fh->dev; |
| 1143 | int err, res; |
| 1144 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1145 | if ((vdev->vfl_type == VFL_TYPE_GRABBER && i != V4L2_BUF_TYPE_VIDEO_CAPTURE) || |
| 1146 | (vdev->vfl_type == VFL_TYPE_VBI && i != V4L2_BUF_TYPE_VBI_CAPTURE)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1147 | return -EINVAL; |
Rafael Diniz | b058e3f | 2008-10-24 23:07:57 -0300 | [diff] [blame] | 1148 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1149 | res = get_resource(file); |
| 1150 | err = videobuf_streamoff(get_queue(file)); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1151 | if (err < 0) |
| 1152 | return err; |
| 1153 | res_free(dev,fh,res); |
| 1154 | return 0; |
| 1155 | } |
| 1156 | |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 1157 | static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *tvnorm) |
| 1158 | { |
| 1159 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1160 | |
| 1161 | *tvnorm = core->tvnorm; |
| 1162 | return 0; |
| 1163 | } |
| 1164 | |
Hans Verkuil | 314527a | 2013-03-15 06:10:40 -0300 | [diff] [blame] | 1165 | static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id tvnorms) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1166 | { |
| 1167 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1168 | |
| 1169 | mutex_lock(&core->lock); |
Hans Verkuil | 314527a | 2013-03-15 06:10:40 -0300 | [diff] [blame] | 1170 | cx88_set_tvnorm(core, tvnorms); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1171 | mutex_unlock(&core->lock); |
Mauro Carvalho Chehab | 63ab1bd | 2007-01-20 13:58:33 -0300 | [diff] [blame] | 1172 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1173 | return 0; |
| 1174 | } |
| 1175 | |
| 1176 | /* only one input in this sample driver */ |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1177 | int cx88_enum_input (struct cx88_core *core,struct v4l2_input *i) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1178 | { |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1179 | static const char * const iname[] = { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1180 | [ CX88_VMUX_COMPOSITE1 ] = "Composite1", |
| 1181 | [ CX88_VMUX_COMPOSITE2 ] = "Composite2", |
| 1182 | [ CX88_VMUX_COMPOSITE3 ] = "Composite3", |
| 1183 | [ CX88_VMUX_COMPOSITE4 ] = "Composite4", |
| 1184 | [ CX88_VMUX_SVIDEO ] = "S-Video", |
| 1185 | [ CX88_VMUX_TELEVISION ] = "Television", |
| 1186 | [ CX88_VMUX_CABLE ] = "Cable TV", |
| 1187 | [ CX88_VMUX_DVB ] = "DVB", |
| 1188 | [ CX88_VMUX_DEBUG ] = "for debug only", |
| 1189 | }; |
Trent Piepho | f3334bc | 2009-03-04 01:21:03 -0300 | [diff] [blame] | 1190 | unsigned int n = i->index; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1191 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1192 | if (n >= 4) |
| 1193 | return -EINVAL; |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1194 | if (0 == INPUT(n).type) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1195 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1196 | i->type = V4L2_INPUT_TYPE_CAMERA; |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1197 | strcpy(i->name,iname[INPUT(n).type]); |
| 1198 | if ((CX88_VMUX_TELEVISION == INPUT(n).type) || |
Julia Lawall | 473d802 | 2010-08-05 17:22:44 -0300 | [diff] [blame] | 1199 | (CX88_VMUX_CABLE == INPUT(n).type)) { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1200 | i->type = V4L2_INPUT_TYPE_TUNER; |
Julia Lawall | 473d802 | 2010-08-05 17:22:44 -0300 | [diff] [blame] | 1201 | } |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1202 | i->std = CX88_NORMS; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1203 | return 0; |
| 1204 | } |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1205 | EXPORT_SYMBOL(cx88_enum_input); |
| 1206 | |
| 1207 | static int vidioc_enum_input (struct file *file, void *priv, |
| 1208 | struct v4l2_input *i) |
| 1209 | { |
| 1210 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1211 | return cx88_enum_input (core,i); |
| 1212 | } |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1213 | |
| 1214 | static int vidioc_g_input (struct file *file, void *priv, unsigned int *i) |
| 1215 | { |
| 1216 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1217 | |
| 1218 | *i = core->input; |
| 1219 | return 0; |
| 1220 | } |
| 1221 | |
| 1222 | static int vidioc_s_input (struct file *file, void *priv, unsigned int i) |
| 1223 | { |
| 1224 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1225 | |
| 1226 | if (i >= 4) |
| 1227 | return -EINVAL; |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1228 | if (0 == INPUT(i).type) |
| 1229 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1230 | |
| 1231 | mutex_lock(&core->lock); |
| 1232 | cx88_newstation(core); |
Mauro Carvalho Chehab | e90311a | 2007-01-20 13:58:29 -0300 | [diff] [blame] | 1233 | cx88_video_mux(core,i); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1234 | mutex_unlock(&core->lock); |
| 1235 | return 0; |
| 1236 | } |
| 1237 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1238 | static int vidioc_g_tuner (struct file *file, void *priv, |
| 1239 | struct v4l2_tuner *t) |
| 1240 | { |
| 1241 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1242 | u32 reg; |
| 1243 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1244 | if (unlikely(UNSET == core->board.tuner_type)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1245 | return -EINVAL; |
Mauro Carvalho Chehab | 243d8c0 | 2007-01-20 13:58:36 -0300 | [diff] [blame] | 1246 | if (0 != t->index) |
| 1247 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1248 | |
| 1249 | strcpy(t->name, "Television"); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1250 | t->capability = V4L2_TUNER_CAP_NORM; |
| 1251 | t->rangehigh = 0xffffffffUL; |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1252 | call_all(core, tuner, g_tuner, t); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1253 | |
| 1254 | cx88_get_stereo(core ,t); |
| 1255 | reg = cx_read(MO_DEVICE_STATUS); |
| 1256 | t->signal = (reg & (1<<5)) ? 0xffff : 0x0000; |
| 1257 | return 0; |
| 1258 | } |
| 1259 | |
| 1260 | static int vidioc_s_tuner (struct file *file, void *priv, |
Hans Verkuil | 2f73c7c | 2013-03-15 06:10:06 -0300 | [diff] [blame] | 1261 | const struct v4l2_tuner *t) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1262 | { |
| 1263 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1264 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1265 | if (UNSET == core->board.tuner_type) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1266 | return -EINVAL; |
| 1267 | if (0 != t->index) |
| 1268 | return -EINVAL; |
| 1269 | |
| 1270 | cx88_set_stereo(core, t->audmode, 1); |
| 1271 | return 0; |
| 1272 | } |
| 1273 | |
| 1274 | static int vidioc_g_frequency (struct file *file, void *priv, |
| 1275 | struct v4l2_frequency *f) |
| 1276 | { |
| 1277 | struct cx8800_fh *fh = priv; |
| 1278 | struct cx88_core *core = fh->dev->core; |
| 1279 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1280 | if (unlikely(UNSET == core->board.tuner_type)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1281 | return -EINVAL; |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1282 | if (f->tuner) |
| 1283 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1284 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1285 | f->frequency = core->freq; |
| 1286 | |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1287 | call_all(core, tuner, g_frequency, f); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1288 | |
| 1289 | return 0; |
| 1290 | } |
| 1291 | |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1292 | int cx88_set_freq (struct cx88_core *core, |
Hans Verkuil | b530a44 | 2013-03-19 04:09:26 -0300 | [diff] [blame] | 1293 | const struct v4l2_frequency *f) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1294 | { |
Hans Verkuil | b530a44 | 2013-03-19 04:09:26 -0300 | [diff] [blame] | 1295 | struct v4l2_frequency new_freq = *f; |
| 1296 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1297 | if (unlikely(UNSET == core->board.tuner_type)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1298 | return -EINVAL; |
| 1299 | if (unlikely(f->tuner != 0)) |
| 1300 | return -EINVAL; |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1301 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1302 | mutex_lock(&core->lock); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1303 | cx88_newstation(core); |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1304 | call_all(core, tuner, s_frequency, f); |
Hans Verkuil | b530a44 | 2013-03-19 04:09:26 -0300 | [diff] [blame] | 1305 | call_all(core, tuner, g_frequency, &new_freq); |
| 1306 | core->freq = new_freq.frequency; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1307 | |
| 1308 | /* When changing channels it is required to reset TVAUDIO */ |
| 1309 | msleep (10); |
| 1310 | cx88_set_tvaudio(core); |
| 1311 | |
| 1312 | mutex_unlock(&core->lock); |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1313 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1314 | return 0; |
| 1315 | } |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1316 | EXPORT_SYMBOL(cx88_set_freq); |
| 1317 | |
| 1318 | static int vidioc_s_frequency (struct file *file, void *priv, |
Hans Verkuil | b530a44 | 2013-03-19 04:09:26 -0300 | [diff] [blame] | 1319 | const struct v4l2_frequency *f) |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1320 | { |
| 1321 | struct cx8800_fh *fh = priv; |
| 1322 | struct cx88_core *core = fh->dev->core; |
| 1323 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 1324 | return cx88_set_freq(core, f); |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 1325 | } |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1326 | |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1327 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1328 | static int vidioc_g_register (struct file *file, void *fh, |
Hans Verkuil | aecde8b5 | 2008-12-30 07:14:19 -0300 | [diff] [blame] | 1329 | struct v4l2_dbg_register *reg) |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1330 | { |
| 1331 | struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core; |
| 1332 | |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1333 | /* cx2388x has a 24-bit register space */ |
Hans Verkuil | 7feeb14 | 2013-05-29 06:22:02 -0300 | [diff] [blame] | 1334 | reg->val = cx_read(reg->reg & 0xfffffc); |
Hans Verkuil | aecde8b5 | 2008-12-30 07:14:19 -0300 | [diff] [blame] | 1335 | reg->size = 4; |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1336 | return 0; |
| 1337 | } |
| 1338 | |
| 1339 | static int vidioc_s_register (struct file *file, void *fh, |
Hans Verkuil | 977ba3b1 | 2013-03-24 08:28:46 -0300 | [diff] [blame] | 1340 | const struct v4l2_dbg_register *reg) |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1341 | { |
| 1342 | struct cx88_core *core = ((struct cx8800_fh*)fh)->dev->core; |
| 1343 | |
Hans Verkuil | 7feeb14 | 2013-05-29 06:22:02 -0300 | [diff] [blame] | 1344 | cx_write(reg->reg & 0xfffffc, reg->val); |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1345 | return 0; |
| 1346 | } |
| 1347 | #endif |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | /* ----------------------------------------------------------- */ |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1350 | /* RADIO ESPECIFIC IOCTLS */ |
| 1351 | /* ----------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1353 | static int radio_g_tuner (struct file *file, void *priv, |
| 1354 | struct v4l2_tuner *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1356 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1357 | |
| 1358 | if (unlikely(t->index > 0)) |
| 1359 | return -EINVAL; |
| 1360 | |
| 1361 | strcpy(t->name, "Radio"); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1362 | |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1363 | call_all(core, tuner, g_tuner, t); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1364 | return 0; |
| 1365 | } |
| 1366 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1367 | static int radio_s_tuner (struct file *file, void *priv, |
Hans Verkuil | 2f73c7c | 2013-03-15 06:10:06 -0300 | [diff] [blame] | 1368 | const struct v4l2_tuner *t) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1369 | { |
| 1370 | struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core; |
| 1371 | |
| 1372 | if (0 != t->index) |
| 1373 | return -EINVAL; |
| 1374 | |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1375 | call_all(core, tuner, s_tuner, t); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1376 | return 0; |
| 1377 | } |
| 1378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | /* ----------------------------------------------------------- */ |
| 1380 | |
| 1381 | static void cx8800_vid_timeout(unsigned long data) |
| 1382 | { |
| 1383 | struct cx8800_dev *dev = (struct cx8800_dev*)data; |
| 1384 | struct cx88_core *core = dev->core; |
| 1385 | struct cx88_dmaqueue *q = &dev->vidq; |
| 1386 | struct cx88_buffer *buf; |
| 1387 | unsigned long flags; |
| 1388 | |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1389 | cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | |
| 1391 | cx_clear(MO_VID_DMACNTRL, 0x11); |
| 1392 | cx_clear(VID_CAPTURE_CONTROL, 0x06); |
| 1393 | |
| 1394 | spin_lock_irqsave(&dev->slock,flags); |
| 1395 | while (!list_empty(&q->active)) { |
| 1396 | buf = list_entry(q->active.next, struct cx88_buffer, vb.queue); |
| 1397 | list_del(&buf->vb.queue); |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 1398 | buf->vb.state = VIDEOBUF_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | wake_up(&buf->vb.done); |
| 1400 | printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", core->name, |
| 1401 | buf, buf->vb.i, (unsigned long)buf->risc.dma); |
| 1402 | } |
| 1403 | restart_video_queue(dev,q); |
| 1404 | spin_unlock_irqrestore(&dev->slock,flags); |
| 1405 | } |
| 1406 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1407 | static const char *cx88_vid_irqs[32] = { |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 1408 | "y_risci1", "u_risci1", "v_risci1", "vbi_risc1", |
| 1409 | "y_risci2", "u_risci2", "v_risci2", "vbi_risc2", |
| 1410 | "y_oflow", "u_oflow", "v_oflow", "vbi_oflow", |
| 1411 | "y_sync", "u_sync", "v_sync", "vbi_sync", |
| 1412 | "opc_err", "par_err", "rip_err", "pci_abort", |
| 1413 | }; |
| 1414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | static void cx8800_vid_irq(struct cx8800_dev *dev) |
| 1416 | { |
| 1417 | struct cx88_core *core = dev->core; |
| 1418 | u32 status, mask, count; |
| 1419 | |
| 1420 | status = cx_read(MO_VID_INTSTAT); |
| 1421 | mask = cx_read(MO_VID_INTMSK); |
| 1422 | if (0 == (status & mask)) |
| 1423 | return; |
| 1424 | cx_write(MO_VID_INTSTAT, status); |
| 1425 | if (irq_debug || (status & mask & ~0xff)) |
| 1426 | cx88_print_irqbits(core->name, "irq vid", |
Mauro Carvalho Chehab | 66623a0 | 2007-03-29 08:47:04 -0300 | [diff] [blame] | 1427 | cx88_vid_irqs, ARRAY_SIZE(cx88_vid_irqs), |
| 1428 | status, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | |
| 1430 | /* risc op code error */ |
| 1431 | if (status & (1 << 16)) { |
| 1432 | printk(KERN_WARNING "%s/0: video risc op code error\n",core->name); |
| 1433 | cx_clear(MO_VID_DMACNTRL, 0x11); |
| 1434 | cx_clear(VID_CAPTURE_CONTROL, 0x06); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1435 | cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | } |
| 1437 | |
| 1438 | /* risc1 y */ |
| 1439 | if (status & 0x01) { |
| 1440 | spin_lock(&dev->slock); |
| 1441 | count = cx_read(MO_VIDY_GPCNT); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1442 | cx88_wakeup(core, &dev->vidq, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | spin_unlock(&dev->slock); |
| 1444 | } |
| 1445 | |
| 1446 | /* risc1 vbi */ |
| 1447 | if (status & 0x08) { |
| 1448 | spin_lock(&dev->slock); |
| 1449 | count = cx_read(MO_VBI_GPCNT); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1450 | cx88_wakeup(core, &dev->vbiq, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | spin_unlock(&dev->slock); |
| 1452 | } |
| 1453 | |
| 1454 | /* risc2 y */ |
| 1455 | if (status & 0x10) { |
| 1456 | dprintk(2,"stopper video\n"); |
| 1457 | spin_lock(&dev->slock); |
| 1458 | restart_video_queue(dev,&dev->vidq); |
| 1459 | spin_unlock(&dev->slock); |
| 1460 | } |
| 1461 | |
| 1462 | /* risc2 vbi */ |
| 1463 | if (status & 0x80) { |
| 1464 | dprintk(2,"stopper vbi\n"); |
| 1465 | spin_lock(&dev->slock); |
| 1466 | cx8800_restart_vbi_queue(dev,&dev->vbiq); |
| 1467 | spin_unlock(&dev->slock); |
| 1468 | } |
| 1469 | } |
| 1470 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1471 | static irqreturn_t cx8800_irq(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | { |
| 1473 | struct cx8800_dev *dev = dev_id; |
| 1474 | struct cx88_core *core = dev->core; |
| 1475 | u32 status; |
| 1476 | int loop, handled = 0; |
| 1477 | |
| 1478 | for (loop = 0; loop < 10; loop++) { |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 1479 | status = cx_read(MO_PCI_INTSTAT) & |
| 1480 | (core->pci_irqmask | PCI_INT_VIDINT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | if (0 == status) |
| 1482 | goto out; |
| 1483 | cx_write(MO_PCI_INTSTAT, status); |
| 1484 | handled = 1; |
| 1485 | |
| 1486 | if (status & core->pci_irqmask) |
| 1487 | cx88_core_irq(core,status); |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 1488 | if (status & PCI_INT_VIDINT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | cx8800_vid_irq(dev); |
Peter Senna Tschudin | c2c1b41 | 2012-09-28 05:37:22 -0300 | [diff] [blame] | 1490 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | if (10 == loop) { |
| 1492 | printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n", |
| 1493 | core->name); |
| 1494 | cx_write(MO_PCI_INTMSK,0); |
| 1495 | } |
| 1496 | |
| 1497 | out: |
| 1498 | return IRQ_RETVAL(handled); |
| 1499 | } |
| 1500 | |
| 1501 | /* ----------------------------------------------------------- */ |
| 1502 | /* exported stuff */ |
| 1503 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 1504 | static const struct v4l2_file_operations video_fops = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | { |
| 1506 | .owner = THIS_MODULE, |
| 1507 | .open = video_open, |
| 1508 | .release = video_release, |
| 1509 | .read = video_read, |
| 1510 | .poll = video_poll, |
| 1511 | .mmap = video_mmap, |
Mauro Carvalho Chehab | b6187264 | 2011-02-13 21:52:02 -0300 | [diff] [blame] | 1512 | .unlocked_ioctl = video_ioctl2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | }; |
| 1514 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1515 | static const struct v4l2_ioctl_ops video_ioctl_ops = { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1516 | .vidioc_querycap = vidioc_querycap, |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1517 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
| 1518 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
| 1519 | .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap, |
| 1520 | .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1521 | .vidioc_reqbufs = vidioc_reqbufs, |
| 1522 | .vidioc_querybuf = vidioc_querybuf, |
| 1523 | .vidioc_qbuf = vidioc_qbuf, |
| 1524 | .vidioc_dqbuf = vidioc_dqbuf, |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 1525 | .vidioc_g_std = vidioc_g_std, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1526 | .vidioc_s_std = vidioc_s_std, |
| 1527 | .vidioc_enum_input = vidioc_enum_input, |
| 1528 | .vidioc_g_input = vidioc_g_input, |
| 1529 | .vidioc_s_input = vidioc_s_input, |
| 1530 | .vidioc_streamon = vidioc_streamon, |
| 1531 | .vidioc_streamoff = vidioc_streamoff, |
| 1532 | .vidioc_g_tuner = vidioc_g_tuner, |
| 1533 | .vidioc_s_tuner = vidioc_s_tuner, |
| 1534 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1535 | .vidioc_s_frequency = vidioc_s_frequency, |
| 1536 | .vidioc_subscribe_event = v4l2_ctrl_subscribe_event, |
| 1537 | .vidioc_unsubscribe_event = v4l2_event_unsubscribe, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1538 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1539 | .vidioc_g_register = vidioc_g_register, |
| 1540 | .vidioc_s_register = vidioc_s_register, |
| 1541 | #endif |
| 1542 | }; |
| 1543 | |
| 1544 | static const struct video_device cx8800_video_template = { |
| 1545 | .name = "cx8800-video", |
| 1546 | .fops = &video_fops, |
| 1547 | .ioctl_ops = &video_ioctl_ops, |
| 1548 | .tvnorms = CX88_NORMS, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1549 | }; |
| 1550 | |
| 1551 | static const struct v4l2_ioctl_ops vbi_ioctl_ops = { |
| 1552 | .vidioc_querycap = vidioc_querycap, |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1553 | .vidioc_g_fmt_vbi_cap = cx8800_vbi_fmt, |
| 1554 | .vidioc_try_fmt_vbi_cap = cx8800_vbi_fmt, |
| 1555 | .vidioc_s_fmt_vbi_cap = cx8800_vbi_fmt, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1556 | .vidioc_reqbufs = vidioc_reqbufs, |
| 1557 | .vidioc_querybuf = vidioc_querybuf, |
| 1558 | .vidioc_qbuf = vidioc_qbuf, |
| 1559 | .vidioc_dqbuf = vidioc_dqbuf, |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 1560 | .vidioc_g_std = vidioc_g_std, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1561 | .vidioc_s_std = vidioc_s_std, |
| 1562 | .vidioc_enum_input = vidioc_enum_input, |
| 1563 | .vidioc_g_input = vidioc_g_input, |
| 1564 | .vidioc_s_input = vidioc_s_input, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1565 | .vidioc_streamon = vidioc_streamon, |
| 1566 | .vidioc_streamoff = vidioc_streamoff, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1567 | .vidioc_g_tuner = vidioc_g_tuner, |
| 1568 | .vidioc_s_tuner = vidioc_s_tuner, |
| 1569 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1570 | .vidioc_s_frequency = vidioc_s_frequency, |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1571 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1572 | .vidioc_g_register = vidioc_g_register, |
| 1573 | .vidioc_s_register = vidioc_s_register, |
| 1574 | #endif |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1575 | }; |
| 1576 | |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1577 | static const struct video_device cx8800_vbi_template = { |
| 1578 | .name = "cx8800-vbi", |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1579 | .fops = &video_fops, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1580 | .ioctl_ops = &vbi_ioctl_ops, |
Mauro Carvalho Chehab | 63ab1bd | 2007-01-20 13:58:33 -0300 | [diff] [blame] | 1581 | .tvnorms = CX88_NORMS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | }; |
| 1583 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 1584 | static const struct v4l2_file_operations radio_fops = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | { |
| 1586 | .owner = THIS_MODULE, |
| 1587 | .open = video_open, |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 1588 | .poll = v4l2_ctrl_poll, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | .release = video_release, |
Mauro Carvalho Chehab | b6187264 | 2011-02-13 21:52:02 -0300 | [diff] [blame] | 1590 | .unlocked_ioctl = video_ioctl2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | }; |
| 1592 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1593 | static const struct v4l2_ioctl_ops radio_ioctl_ops = { |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 1594 | .vidioc_querycap = vidioc_querycap, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1595 | .vidioc_g_tuner = radio_g_tuner, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1596 | .vidioc_s_tuner = radio_s_tuner, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1597 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1598 | .vidioc_s_frequency = vidioc_s_frequency, |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 1599 | .vidioc_subscribe_event = v4l2_ctrl_subscribe_event, |
| 1600 | .vidioc_unsubscribe_event = v4l2_event_unsubscribe, |
Trent Piepho | a75d204 | 2007-08-01 00:13:28 -0300 | [diff] [blame] | 1601 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1602 | .vidioc_g_register = vidioc_g_register, |
| 1603 | .vidioc_s_register = vidioc_s_register, |
| 1604 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | }; |
| 1606 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1607 | static const struct video_device cx8800_radio_template = { |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1608 | .name = "cx8800-radio", |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1609 | .fops = &radio_fops, |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1610 | .ioctl_ops = &radio_ioctl_ops, |
| 1611 | }; |
| 1612 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1613 | static const struct v4l2_ctrl_ops cx8800_ctrl_vid_ops = { |
| 1614 | .s_ctrl = cx8800_s_vid_ctrl, |
| 1615 | }; |
| 1616 | |
| 1617 | static const struct v4l2_ctrl_ops cx8800_ctrl_aud_ops = { |
| 1618 | .s_ctrl = cx8800_s_aud_ctrl, |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1619 | }; |
| 1620 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | /* ----------------------------------------------------------- */ |
| 1622 | |
| 1623 | static void cx8800_unregister_video(struct cx8800_dev *dev) |
| 1624 | { |
| 1625 | if (dev->radio_dev) { |
Laurent Pinchart | f0813b4 | 2009-11-27 13:57:30 -0300 | [diff] [blame] | 1626 | if (video_is_registered(dev->radio_dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | video_unregister_device(dev->radio_dev); |
| 1628 | else |
| 1629 | video_device_release(dev->radio_dev); |
| 1630 | dev->radio_dev = NULL; |
| 1631 | } |
| 1632 | if (dev->vbi_dev) { |
Laurent Pinchart | f0813b4 | 2009-11-27 13:57:30 -0300 | [diff] [blame] | 1633 | if (video_is_registered(dev->vbi_dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | video_unregister_device(dev->vbi_dev); |
| 1635 | else |
| 1636 | video_device_release(dev->vbi_dev); |
| 1637 | dev->vbi_dev = NULL; |
| 1638 | } |
| 1639 | if (dev->video_dev) { |
Laurent Pinchart | f0813b4 | 2009-11-27 13:57:30 -0300 | [diff] [blame] | 1640 | if (video_is_registered(dev->video_dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | video_unregister_device(dev->video_dev); |
| 1642 | else |
| 1643 | video_device_release(dev->video_dev); |
| 1644 | dev->video_dev = NULL; |
| 1645 | } |
| 1646 | } |
| 1647 | |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1648 | static int cx8800_initdev(struct pci_dev *pci_dev, |
| 1649 | const struct pci_device_id *pci_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | { |
| 1651 | struct cx8800_dev *dev; |
| 1652 | struct cx88_core *core; |
| 1653 | int err; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1654 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | |
Panagiotis Issaris | 7408187 | 2006-01-11 19:40:56 -0200 | [diff] [blame] | 1656 | dev = kzalloc(sizeof(*dev),GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | if (NULL == dev) |
| 1658 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | |
| 1660 | /* pci init */ |
| 1661 | dev->pci = pci_dev; |
| 1662 | if (pci_enable_device(pci_dev)) { |
| 1663 | err = -EIO; |
| 1664 | goto fail_free; |
| 1665 | } |
| 1666 | core = cx88_core_get(dev->pci); |
| 1667 | if (NULL == core) { |
| 1668 | err = -EINVAL; |
| 1669 | goto fail_free; |
| 1670 | } |
| 1671 | dev->core = core; |
| 1672 | |
| 1673 | /* print pci info */ |
Bjørn Mork | abd34d8 | 2011-03-21 11:35:56 -0300 | [diff] [blame] | 1674 | dev->pci_rev = pci_dev->revision; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1675 | pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &dev->pci_lat); |
| 1676 | printk(KERN_INFO "%s/0: found at %s, rev: %d, irq: %d, " |
Greg Kroah-Hartman | 228aef6 | 2006-06-12 15:16:52 -0700 | [diff] [blame] | 1677 | "latency: %d, mmio: 0x%llx\n", core->name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | pci_name(pci_dev), dev->pci_rev, pci_dev->irq, |
Greg Kroah-Hartman | 228aef6 | 2006-06-12 15:16:52 -0700 | [diff] [blame] | 1679 | dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | |
| 1681 | pci_set_master(pci_dev); |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1682 | if (!pci_dma_supported(pci_dev,DMA_BIT_MASK(32))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name); |
| 1684 | err = -EIO; |
| 1685 | goto fail_core; |
| 1686 | } |
| 1687 | |
| 1688 | /* initialize driver struct */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | spin_lock_init(&dev->slock); |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 1690 | core->tvnorm = V4L2_STD_NTSC_M; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | |
| 1692 | /* init video dma queues */ |
| 1693 | INIT_LIST_HEAD(&dev->vidq.active); |
| 1694 | INIT_LIST_HEAD(&dev->vidq.queued); |
| 1695 | dev->vidq.timeout.function = cx8800_vid_timeout; |
| 1696 | dev->vidq.timeout.data = (unsigned long)dev; |
| 1697 | init_timer(&dev->vidq.timeout); |
| 1698 | cx88_risc_stopper(dev->pci,&dev->vidq.stopper, |
| 1699 | MO_VID_DMACNTRL,0x11,0x00); |
| 1700 | |
| 1701 | /* init vbi dma queues */ |
| 1702 | INIT_LIST_HEAD(&dev->vbiq.active); |
| 1703 | INIT_LIST_HEAD(&dev->vbiq.queued); |
| 1704 | dev->vbiq.timeout.function = cx8800_vbi_timeout; |
| 1705 | dev->vbiq.timeout.data = (unsigned long)dev; |
| 1706 | init_timer(&dev->vbiq.timeout); |
| 1707 | cx88_risc_stopper(dev->pci,&dev->vbiq.stopper, |
| 1708 | MO_VID_DMACNTRL,0x88,0x00); |
| 1709 | |
| 1710 | /* get irq */ |
| 1711 | err = request_irq(pci_dev->irq, cx8800_irq, |
Michael Opdenacker | 3e018fe | 2013-10-13 02:49:29 -0300 | [diff] [blame] | 1712 | IRQF_SHARED, core->name, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | if (err < 0) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1714 | printk(KERN_ERR "%s/0: can't get IRQ %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | core->name,pci_dev->irq); |
| 1716 | goto fail_core; |
| 1717 | } |
| 1718 | cx_set(MO_PCI_INTMSK, core->pci_irqmask); |
| 1719 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1720 | for (i = 0; i < CX8800_AUD_CTLS; i++) { |
| 1721 | const struct cx88_ctrl *cc = &cx8800_aud_ctls[i]; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1722 | struct v4l2_ctrl *vc; |
| 1723 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1724 | vc = v4l2_ctrl_new_std(&core->audio_hdl, &cx8800_ctrl_aud_ops, |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1725 | cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value); |
| 1726 | if (vc == NULL) { |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1727 | err = core->audio_hdl.error; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1728 | goto fail_core; |
| 1729 | } |
| 1730 | vc->priv = (void *)cc; |
| 1731 | } |
| 1732 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1733 | for (i = 0; i < CX8800_VID_CTLS; i++) { |
| 1734 | const struct cx88_ctrl *cc = &cx8800_vid_ctls[i]; |
| 1735 | struct v4l2_ctrl *vc; |
| 1736 | |
| 1737 | vc = v4l2_ctrl_new_std(&core->video_hdl, &cx8800_ctrl_vid_ops, |
| 1738 | cc->id, cc->minimum, cc->maximum, cc->step, cc->default_value); |
| 1739 | if (vc == NULL) { |
| 1740 | err = core->video_hdl.error; |
| 1741 | goto fail_core; |
| 1742 | } |
| 1743 | vc->priv = (void *)cc; |
| 1744 | if (vc->id == V4L2_CID_CHROMA_AGC) |
| 1745 | core->chroma_agc = vc; |
| 1746 | } |
Hans Verkuil | 34a6b7d | 2012-09-14 07:15:03 -0300 | [diff] [blame] | 1747 | v4l2_ctrl_add_handler(&core->video_hdl, &core->audio_hdl, NULL); |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1748 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | /* load and configure helper modules */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1750 | |
Hans Verkuil | facd236 | 2013-05-26 07:56:06 -0300 | [diff] [blame] | 1751 | if (core->board.audio_chip == CX88_AUDIO_WM8775) { |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 1752 | struct i2c_board_info wm8775_info = { |
| 1753 | .type = "wm8775", |
| 1754 | .addr = 0x36 >> 1, |
| 1755 | .platform_data = &core->wm8775_data, |
| 1756 | }; |
| 1757 | struct v4l2_subdev *sd; |
| 1758 | |
| 1759 | if (core->boardnr == CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1) |
| 1760 | core->wm8775_data.is_nova_s = true; |
| 1761 | else |
| 1762 | core->wm8775_data.is_nova_s = false; |
| 1763 | |
| 1764 | sd = v4l2_i2c_new_subdev_board(&core->v4l2_dev, &core->i2c_adap, |
| 1765 | &wm8775_info, NULL); |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1766 | if (sd != NULL) { |
| 1767 | core->sd_wm8775 = sd; |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 1768 | sd->grp_id = WM8775_GID; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1769 | } |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 1770 | } |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1771 | |
Hans Verkuil | facd236 | 2013-05-26 07:56:06 -0300 | [diff] [blame] | 1772 | if (core->board.audio_chip == CX88_AUDIO_TVAUDIO) { |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1773 | /* This probes for a tda9874 as is used on some |
| 1774 | Pixelview Ultra boards. */ |
Laurent Pinchart | 9a1f8b3 | 2010-09-24 10:16:44 -0300 | [diff] [blame] | 1775 | v4l2_i2c_new_subdev(&core->v4l2_dev, &core->i2c_adap, |
| 1776 | "tvaudio", 0, I2C_ADDRS(0xb0 >> 1)); |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1777 | } |
Steven Toth | 3057906 | 2006-09-25 12:43:42 -0300 | [diff] [blame] | 1778 | |
Michael Krufky | 6fcecce | 2007-08-24 01:32:31 -0300 | [diff] [blame] | 1779 | switch (core->boardnr) { |
| 1780 | case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD: |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1781 | case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD: { |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1782 | static const struct i2c_board_info rtc_info = { |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1783 | I2C_BOARD_INFO("isl1208", 0x6f) |
| 1784 | }; |
| 1785 | |
Michael Krufky | 6fcecce | 2007-08-24 01:32:31 -0300 | [diff] [blame] | 1786 | request_module("rtc-isl1208"); |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1787 | core->i2c_rtc = i2c_new_device(&core->i2c_adap, &rtc_info); |
| 1788 | } |
Michael Krufky | 8efd2e2 | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 1789 | /* break intentionally omitted */ |
| 1790 | case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO: |
| 1791 | request_module("ir-kbd-i2c"); |
Michael Krufky | 6fcecce | 2007-08-24 01:32:31 -0300 | [diff] [blame] | 1792 | } |
| 1793 | |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1794 | /* Sets device info at pci_dev */ |
| 1795 | pci_set_drvdata(pci_dev, dev); |
| 1796 | |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 1797 | dev->width = 320; |
| 1798 | dev->height = 240; |
| 1799 | dev->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24); |
| 1800 | |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1801 | /* initial device configuration */ |
| 1802 | mutex_lock(&core->lock); |
| 1803 | cx88_set_tvnorm(core, core->tvnorm); |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1804 | v4l2_ctrl_handler_setup(&core->video_hdl); |
| 1805 | v4l2_ctrl_handler_setup(&core->audio_hdl); |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1806 | cx88_video_mux(core, 0); |
| 1807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | /* register v4l devices */ |
| 1809 | dev->video_dev = cx88_vdev_init(core,dev->pci, |
| 1810 | &cx8800_video_template,"video"); |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 1811 | video_set_drvdata(dev->video_dev, dev); |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1812 | dev->video_dev->ctrl_handler = &core->video_hdl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER, |
| 1814 | video_nr[core->nr]); |
| 1815 | if (err < 0) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1816 | printk(KERN_ERR "%s/0: can't register video device\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | core->name); |
| 1818 | goto fail_unreg; |
| 1819 | } |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 1820 | printk(KERN_INFO "%s/0: registered device %s [v4l2]\n", |
| 1821 | core->name, video_device_node_name(dev->video_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
| 1823 | dev->vbi_dev = cx88_vdev_init(core,dev->pci,&cx8800_vbi_template,"vbi"); |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 1824 | video_set_drvdata(dev->vbi_dev, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI, |
| 1826 | vbi_nr[core->nr]); |
| 1827 | if (err < 0) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1828 | printk(KERN_ERR "%s/0: can't register vbi device\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | core->name); |
| 1830 | goto fail_unreg; |
| 1831 | } |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 1832 | printk(KERN_INFO "%s/0: registered device %s\n", |
| 1833 | core->name, video_device_node_name(dev->vbi_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1835 | if (core->board.radio.type == CX88_RADIO) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | dev->radio_dev = cx88_vdev_init(core,dev->pci, |
| 1837 | &cx8800_radio_template,"radio"); |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 1838 | video_set_drvdata(dev->radio_dev, dev); |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1839 | dev->radio_dev->ctrl_handler = &core->audio_hdl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | err = video_register_device(dev->radio_dev,VFL_TYPE_RADIO, |
| 1841 | radio_nr[core->nr]); |
| 1842 | if (err < 0) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1843 | printk(KERN_ERR "%s/0: can't register radio device\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | core->name); |
| 1845 | goto fail_unreg; |
| 1846 | } |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 1847 | printk(KERN_INFO "%s/0: registered device %s\n", |
| 1848 | core->name, video_device_node_name(dev->radio_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | } |
| 1850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | /* start tvaudio thread */ |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1852 | if (core->board.tuner_type != TUNER_ABSENT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio"); |
Cyrill Gorcunov | 32b78de | 2007-07-19 11:44:11 -0300 | [diff] [blame] | 1854 | if (IS_ERR(core->kthread)) { |
| 1855 | err = PTR_ERR(core->kthread); |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1856 | printk(KERN_ERR "%s/0: failed to create cx88 audio thread, err=%d\n", |
| 1857 | core->name, err); |
Cyrill Gorcunov | 32b78de | 2007-07-19 11:44:11 -0300 | [diff] [blame] | 1858 | } |
| 1859 | } |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1860 | mutex_unlock(&core->lock); |
| 1861 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | return 0; |
| 1863 | |
| 1864 | fail_unreg: |
| 1865 | cx8800_unregister_video(dev); |
| 1866 | free_irq(pci_dev->irq, dev); |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1867 | mutex_unlock(&core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | fail_core: |
| 1869 | cx88_core_put(core,dev->pci); |
| 1870 | fail_free: |
| 1871 | kfree(dev); |
| 1872 | return err; |
| 1873 | } |
| 1874 | |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1875 | static void cx8800_finidev(struct pci_dev *pci_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1877 | struct cx8800_dev *dev = pci_get_drvdata(pci_dev); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1878 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | |
| 1880 | /* stop thread */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1881 | if (core->kthread) { |
| 1882 | kthread_stop(core->kthread); |
| 1883 | core->kthread = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | } |
| 1885 | |
Marton Balint | b12203d | 2008-03-26 02:07:35 -0300 | [diff] [blame] | 1886 | if (core->ir) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 1887 | cx88_ir_stop(core); |
Marton Balint | b12203d | 2008-03-26 02:07:35 -0300 | [diff] [blame] | 1888 | |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1889 | cx88_shutdown(core); /* FIXME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | pci_disable_device(pci_dev); |
| 1891 | |
| 1892 | /* unregister stuff */ |
| 1893 | |
| 1894 | free_irq(pci_dev->irq, dev); |
| 1895 | cx8800_unregister_video(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | |
| 1897 | /* free memory */ |
| 1898 | btcx_riscmem_free(dev->pci,&dev->vidq.stopper); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1899 | cx88_core_put(core,dev->pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | kfree(dev); |
| 1901 | } |
| 1902 | |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 1903 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state) |
| 1905 | { |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 1906 | struct cx8800_dev *dev = pci_get_drvdata(pci_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | struct cx88_core *core = dev->core; |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1908 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | |
| 1910 | /* stop video+vbi capture */ |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1911 | spin_lock_irqsave(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | if (!list_empty(&dev->vidq.active)) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1913 | printk("%s/0: suspend video\n", core->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | stop_video_dma(dev); |
| 1915 | del_timer(&dev->vidq.timeout); |
| 1916 | } |
| 1917 | if (!list_empty(&dev->vbiq.active)) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1918 | printk("%s/0: suspend vbi\n", core->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | cx8800_stop_vbi_dma(dev); |
| 1920 | del_timer(&dev->vbiq.timeout); |
| 1921 | } |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1922 | spin_unlock_irqrestore(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | |
Mauro Carvalho Chehab | 13595a5 | 2007-10-01 08:51:39 -0300 | [diff] [blame] | 1924 | if (core->ir) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 1925 | cx88_ir_stop(core); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | /* FIXME -- shutdown device */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1927 | cx88_shutdown(core); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | |
| 1929 | pci_save_state(pci_dev); |
| 1930 | if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) { |
| 1931 | pci_disable_device(pci_dev); |
| 1932 | dev->state.disabled = 1; |
| 1933 | } |
| 1934 | return 0; |
| 1935 | } |
| 1936 | |
| 1937 | static int cx8800_resume(struct pci_dev *pci_dev) |
| 1938 | { |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 1939 | struct cx8800_dev *dev = pci_get_drvdata(pci_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | struct cx88_core *core = dev->core; |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1941 | unsigned long flags; |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1942 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | |
| 1944 | if (dev->state.disabled) { |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1945 | err=pci_enable_device(pci_dev); |
| 1946 | if (err) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1947 | printk(KERN_ERR "%s/0: can't enable device\n", |
| 1948 | core->name); |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1949 | return err; |
| 1950 | } |
| 1951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | dev->state.disabled = 0; |
| 1953 | } |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1954 | err= pci_set_power_state(pci_dev, PCI_D0); |
| 1955 | if (err) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1956 | printk(KERN_ERR "%s/0: can't set power state\n", core->name); |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1957 | pci_disable_device(pci_dev); |
| 1958 | dev->state.disabled = 1; |
| 1959 | |
| 1960 | return err; |
| 1961 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | pci_restore_state(pci_dev); |
| 1963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | /* FIXME: re-initialize hardware */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1965 | cx88_reset(core); |
Mauro Carvalho Chehab | 13595a5 | 2007-10-01 08:51:39 -0300 | [diff] [blame] | 1966 | if (core->ir) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 1967 | cx88_ir_start(core); |
Mauro Carvalho Chehab | 13595a5 | 2007-10-01 08:51:39 -0300 | [diff] [blame] | 1968 | |
| 1969 | cx_set(MO_PCI_INTMSK, core->pci_irqmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | |
| 1971 | /* restart video+vbi capture */ |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1972 | spin_lock_irqsave(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | if (!list_empty(&dev->vidq.active)) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1974 | printk("%s/0: resume video\n", core->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | restart_video_queue(dev,&dev->vidq); |
| 1976 | } |
| 1977 | if (!list_empty(&dev->vbiq.active)) { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1978 | printk("%s/0: resume vbi\n", core->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | cx8800_restart_vbi_queue(dev,&dev->vbiq); |
| 1980 | } |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1981 | spin_unlock_irqrestore(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | |
| 1983 | return 0; |
| 1984 | } |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 1985 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | |
| 1987 | /* ----------------------------------------------------------- */ |
| 1988 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1989 | static const struct pci_device_id cx8800_pci_tbl[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | { |
| 1991 | .vendor = 0x14f1, |
| 1992 | .device = 0x8800, |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 1993 | .subvendor = PCI_ANY_ID, |
| 1994 | .subdevice = PCI_ANY_ID, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | },{ |
| 1996 | /* --- end of list --- */ |
| 1997 | } |
| 1998 | }; |
| 1999 | MODULE_DEVICE_TABLE(pci, cx8800_pci_tbl); |
| 2000 | |
| 2001 | static struct pci_driver cx8800_pci_driver = { |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 2002 | .name = "cx8800", |
| 2003 | .id_table = cx8800_pci_tbl, |
| 2004 | .probe = cx8800_initdev, |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 2005 | .remove = cx8800_finidev, |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 2006 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | .suspend = cx8800_suspend, |
| 2008 | .resume = cx8800_resume, |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 2009 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | }; |
| 2011 | |
Sachin Kamat | 06333e0 | 2013-09-20 05:32:07 -0300 | [diff] [blame] | 2012 | module_pci_driver(cx8800_pci_driver); |