Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * device driver for Conexant 2388x based TV cards |
| 5 | * video4linux video interface |
| 6 | * |
| 7 | * (c) 2003-04 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs] |
| 8 | * |
Mauro Carvalho Chehab | 3259081 | 2018-04-25 05:34:48 -0400 | [diff] [blame] | 9 | * (c) 2005-2006 Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 10 | * - Multituner support |
| 11 | * - video_ioctl2 conversion |
| 12 | * - PAL/M fixes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 15 | #include "cx88.h" |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/init.h> |
| 18 | #include <linux/list.h> |
| 19 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/kmod.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/interrupt.h> |
Andrew Morton | c24228d | 2007-05-06 14:51:55 -0700 | [diff] [blame] | 24 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/delay.h> |
| 26 | #include <linux/kthread.h> |
| 27 | #include <asm/div64.h> |
| 28 | |
Michael Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 29 | #include <media/v4l2-common.h> |
Hans Verkuil | 35ea11f | 2008-07-20 08:12:02 -0300 | [diff] [blame] | 30 | #include <media/v4l2-ioctl.h> |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 31 | #include <media/v4l2-event.h> |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 32 | #include <media/i2c/wm8775.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards"); |
| 35 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |
Mauro Carvalho Chehab | 513dbd3 | 2019-06-05 13:24:35 -0400 | [diff] [blame] | 36 | MODULE_LICENSE("GPL v2"); |
Mauro Carvalho Chehab | 1990d50 | 2011-06-24 14:45:49 -0300 | [diff] [blame] | 37 | MODULE_VERSION(CX88_VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | /* ------------------------------------------------------------------ */ |
| 40 | |
| 41 | static unsigned int video_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET }; |
| 42 | static unsigned int vbi_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET }; |
| 43 | static unsigned int radio_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET }; |
| 44 | |
| 45 | module_param_array(video_nr, int, NULL, 0444); |
| 46 | module_param_array(vbi_nr, int, NULL, 0444); |
| 47 | module_param_array(radio_nr, int, NULL, 0444); |
| 48 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 49 | MODULE_PARM_DESC(video_nr, "video device numbers"); |
| 50 | MODULE_PARM_DESC(vbi_nr, "vbi device numbers"); |
| 51 | MODULE_PARM_DESC(radio_nr, "radio device numbers"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 53 | static unsigned int video_debug; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 54 | module_param(video_debug, int, 0644); |
| 55 | MODULE_PARM_DESC(video_debug, "enable debug messages [video]"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 57 | static unsigned int irq_debug; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 58 | module_param(irq_debug, int, 0644); |
| 59 | MODULE_PARM_DESC(irq_debug, "enable debug messages [IRQ handler]"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 61 | #define dprintk(level, fmt, arg...) do { \ |
| 62 | if (video_debug >= level) \ |
| 63 | printk(KERN_DEBUG pr_fmt("%s: video:" fmt), \ |
| 64 | __func__, ##arg); \ |
| 65 | } while (0) |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* ------------------------------------------------------------------- */ |
| 68 | /* static data */ |
| 69 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 70 | static const struct cx8800_fmt formats[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | .fourcc = V4L2_PIX_FMT_GREY, |
| 73 | .cxformat = ColorFormatY8, |
| 74 | .depth = 8, |
| 75 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 76 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | .fourcc = V4L2_PIX_FMT_RGB555, |
| 78 | .cxformat = ColorFormatRGB15, |
| 79 | .depth = 16, |
| 80 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 81 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | .fourcc = V4L2_PIX_FMT_RGB555X, |
| 83 | .cxformat = ColorFormatRGB15 | ColorFormatBSWAP, |
| 84 | .depth = 16, |
| 85 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 86 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | .fourcc = V4L2_PIX_FMT_RGB565, |
| 88 | .cxformat = ColorFormatRGB16, |
| 89 | .depth = 16, |
| 90 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 91 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | .fourcc = V4L2_PIX_FMT_RGB565X, |
| 93 | .cxformat = ColorFormatRGB16 | ColorFormatBSWAP, |
| 94 | .depth = 16, |
| 95 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 96 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | .fourcc = V4L2_PIX_FMT_BGR24, |
| 98 | .cxformat = ColorFormatRGB24, |
| 99 | .depth = 24, |
| 100 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 101 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | .fourcc = V4L2_PIX_FMT_BGR32, |
| 103 | .cxformat = ColorFormatRGB32, |
| 104 | .depth = 32, |
| 105 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 106 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | .fourcc = V4L2_PIX_FMT_RGB32, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 108 | .cxformat = ColorFormatRGB32 | ColorFormatBSWAP | |
| 109 | ColorFormatWSWAP, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | .depth = 32, |
| 111 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 112 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | .fourcc = V4L2_PIX_FMT_YUYV, |
| 114 | .cxformat = ColorFormatYUY2, |
| 115 | .depth = 16, |
| 116 | .flags = FORMAT_FLAGS_PACKED, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 117 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | .fourcc = V4L2_PIX_FMT_UYVY, |
| 119 | .cxformat = ColorFormatYUY2 | ColorFormatBSWAP, |
| 120 | .depth = 16, |
| 121 | .flags = FORMAT_FLAGS_PACKED, |
| 122 | }, |
| 123 | }; |
| 124 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 125 | static const struct cx8800_fmt *format_by_fourcc(unsigned int fourcc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | { |
| 127 | unsigned int i; |
| 128 | |
| 129 | for (i = 0; i < ARRAY_SIZE(formats); i++) |
| 130 | if (formats[i].fourcc == fourcc) |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 131 | return formats + i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | return NULL; |
| 133 | } |
| 134 | |
| 135 | /* ------------------------------------------------------------------- */ |
| 136 | |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 137 | struct cx88_ctrl { |
| 138 | /* control information */ |
| 139 | u32 id; |
| 140 | s32 minimum; |
| 141 | s32 maximum; |
| 142 | u32 step; |
| 143 | s32 default_value; |
| 144 | |
| 145 | /* control register information */ |
| 146 | u32 off; |
| 147 | u32 reg; |
| 148 | u32 sreg; |
| 149 | u32 mask; |
| 150 | u32 shift; |
| 151 | }; |
| 152 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 153 | static const struct cx88_ctrl cx8800_vid_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | /* --- video --- */ |
| 155 | { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 156 | .id = V4L2_CID_BRIGHTNESS, |
| 157 | .minimum = 0x00, |
| 158 | .maximum = 0xff, |
| 159 | .step = 1, |
| 160 | .default_value = 0x7f, |
| 161 | .off = 128, |
| 162 | .reg = MO_CONTR_BRIGHT, |
| 163 | .mask = 0x00ff, |
| 164 | .shift = 0, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 165 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 166 | .id = V4L2_CID_CONTRAST, |
| 167 | .minimum = 0, |
| 168 | .maximum = 0xff, |
| 169 | .step = 1, |
| 170 | .default_value = 0x3f, |
| 171 | .off = 0, |
| 172 | .reg = MO_CONTR_BRIGHT, |
| 173 | .mask = 0xff00, |
| 174 | .shift = 8, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 175 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 176 | .id = V4L2_CID_HUE, |
| 177 | .minimum = 0, |
| 178 | .maximum = 0xff, |
| 179 | .step = 1, |
| 180 | .default_value = 0x7f, |
| 181 | .off = 128, |
| 182 | .reg = MO_HUE, |
| 183 | .mask = 0x00ff, |
| 184 | .shift = 0, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 185 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* strictly, this only describes only U saturation. |
| 187 | * V saturation is handled specially through code. |
| 188 | */ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 189 | .id = V4L2_CID_SATURATION, |
| 190 | .minimum = 0, |
| 191 | .maximum = 0xff, |
| 192 | .step = 1, |
| 193 | .default_value = 0x7f, |
| 194 | .off = 0, |
| 195 | .reg = MO_UV_SATURATION, |
| 196 | .mask = 0x00ff, |
| 197 | .shift = 0, |
istvan_v@mailbox.hu | eea16e3 | 2011-07-11 11:02:19 -0300 | [diff] [blame] | 198 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 199 | .id = V4L2_CID_SHARPNESS, |
| 200 | .minimum = 0, |
| 201 | .maximum = 4, |
| 202 | .step = 1, |
| 203 | .default_value = 0x0, |
| 204 | .off = 0, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 205 | /* |
| 206 | * NOTE: the value is converted and written to both even |
| 207 | * and odd registers in the code |
| 208 | */ |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 209 | .reg = MO_FILTER_ODD, |
| 210 | .mask = 7 << 7, |
| 211 | .shift = 7, |
istvan_v@mailbox.hu | eea16e3 | 2011-07-11 11:02:19 -0300 | [diff] [blame] | 212 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 213 | .id = V4L2_CID_CHROMA_AGC, |
| 214 | .minimum = 0, |
| 215 | .maximum = 1, |
| 216 | .default_value = 0x1, |
| 217 | .reg = MO_INPUT_FORMAT, |
| 218 | .mask = 1 << 10, |
| 219 | .shift = 10, |
Frej Drejhammar | 6d04203 | 2008-03-23 22:43:21 -0300 | [diff] [blame] | 220 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 221 | .id = V4L2_CID_COLOR_KILLER, |
| 222 | .minimum = 0, |
| 223 | .maximum = 1, |
| 224 | .default_value = 0x1, |
| 225 | .reg = MO_INPUT_FORMAT, |
| 226 | .mask = 1 << 9, |
| 227 | .shift = 9, |
Frej Drejhammar | 1b879c4 | 2008-03-23 22:43:24 -0300 | [diff] [blame] | 228 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 229 | .id = V4L2_CID_BAND_STOP_FILTER, |
| 230 | .minimum = 0, |
| 231 | .maximum = 1, |
| 232 | .step = 1, |
| 233 | .default_value = 0x0, |
| 234 | .off = 0, |
| 235 | .reg = MO_HTOTAL, |
| 236 | .mask = 3 << 11, |
| 237 | .shift = 11, |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 238 | } |
| 239 | }; |
| 240 | |
| 241 | static const struct cx88_ctrl cx8800_aud_ctls[] = { |
| 242 | { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 243 | /* --- audio --- */ |
| 244 | .id = V4L2_CID_AUDIO_MUTE, |
| 245 | .minimum = 0, |
| 246 | .maximum = 1, |
| 247 | .default_value = 1, |
| 248 | .reg = AUD_VOL_CTL, |
| 249 | .sreg = SHADOW_AUD_VOL_CTL, |
| 250 | .mask = (1 << 6), |
| 251 | .shift = 6, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 252 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 253 | .id = V4L2_CID_AUDIO_VOLUME, |
| 254 | .minimum = 0, |
| 255 | .maximum = 0x3f, |
| 256 | .step = 1, |
| 257 | .default_value = 0x3f, |
| 258 | .reg = AUD_VOL_CTL, |
| 259 | .sreg = SHADOW_AUD_VOL_CTL, |
| 260 | .mask = 0x3f, |
| 261 | .shift = 0, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 262 | }, { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 263 | .id = V4L2_CID_AUDIO_BALANCE, |
| 264 | .minimum = 0, |
| 265 | .maximum = 0x7f, |
| 266 | .step = 1, |
| 267 | .default_value = 0x40, |
| 268 | .reg = AUD_BAL_CTL, |
| 269 | .sreg = SHADOW_AUD_BAL_CTL, |
| 270 | .mask = 0x7f, |
| 271 | .shift = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | }; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 274 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 275 | enum { |
| 276 | CX8800_VID_CTLS = ARRAY_SIZE(cx8800_vid_ctls), |
| 277 | CX8800_AUD_CTLS = ARRAY_SIZE(cx8800_aud_ctls), |
| 278 | }; |
Michael Krufky | 38a2713 | 2006-06-26 23:42:39 -0300 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | /* ------------------------------------------------------------------ */ |
| 281 | |
Mauro Carvalho Chehab | e90311a | 2007-01-20 13:58:29 -0300 | [diff] [blame] | 282 | int cx88_video_mux(struct cx88_core *core, unsigned int input) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | { |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 284 | /* struct cx88_core *core = dev->core; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 286 | 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] | 287 | input, INPUT(input).vmux, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 288 | INPUT(input).gpio0, INPUT(input).gpio1, |
| 289 | INPUT(input).gpio2, INPUT(input).gpio3); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 290 | core->input = input; |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 291 | cx_andor(MO_INPUT_FORMAT, 0x03 << 14, INPUT(input).vmux << 14); |
| 292 | cx_write(MO_GP3_IO, INPUT(input).gpio3); |
| 293 | cx_write(MO_GP0_IO, INPUT(input).gpio0); |
| 294 | cx_write(MO_GP1_IO, INPUT(input).gpio1); |
| 295 | cx_write(MO_GP2_IO, INPUT(input).gpio2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 297 | switch (INPUT(input).type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | case CX88_VMUX_SVIDEO: |
| 299 | cx_set(MO_AFECFG_IO, 0x00000001); |
| 300 | cx_set(MO_INPUT_FORMAT, 0x00010010); |
| 301 | cx_set(MO_FILTER_EVEN, 0x00002020); |
| 302 | cx_set(MO_FILTER_ODD, 0x00002020); |
| 303 | break; |
| 304 | default: |
| 305 | cx_clear(MO_AFECFG_IO, 0x00000001); |
| 306 | cx_clear(MO_INPUT_FORMAT, 0x00010010); |
| 307 | cx_clear(MO_FILTER_EVEN, 0x00002020); |
| 308 | cx_clear(MO_FILTER_ODD, 0x00002020); |
| 309 | break; |
| 310 | } |
Michael Krufky | f24546a | 2006-10-16 16:51:11 -0300 | [diff] [blame] | 311 | |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 312 | /* |
| 313 | * if there are audioroutes defined, we have an external |
| 314 | * ADC to deal with audio |
| 315 | */ |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 316 | if (INPUT(input).audioroute) { |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 317 | /* |
| 318 | * The wm8775 module has the "2" route hardwired into |
| 319 | * the initialization. Some boards may use different |
| 320 | * routes for different inputs. HVR-1300 surely does |
| 321 | */ |
Hans Verkuil | 609c4c1 | 2013-05-29 10:44:22 -0300 | [diff] [blame] | 322 | if (core->sd_wm8775) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 323 | call_all(core, audio, s_routing, |
istvan_v@mailbox.hu | 6e1f4df | 2010-03-27 09:31:32 -0300 | [diff] [blame] | 324 | INPUT(input).audioroute, 0, 0); |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 325 | } |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 326 | /* |
| 327 | * cx2388's C-ADC is connected to the tuner only. |
| 328 | * When used with S-Video, that ADC is busy dealing with |
| 329 | * chroma, so an external must be used for baseband audio |
| 330 | */ |
istvan_v@mailbox.hu | 6e1f4df | 2010-03-27 09:31:32 -0300 | [diff] [blame] | 331 | if (INPUT(input).type != CX88_VMUX_TELEVISION && |
| 332 | INPUT(input).type != CX88_VMUX_CABLE) { |
Darron Broad | 430189d | 2008-10-15 14:18:42 -0300 | [diff] [blame] | 333 | /* "I2S ADC mode" */ |
| 334 | core->tvaudio = WW_I2SADC; |
| 335 | cx88_set_tvaudio(core); |
| 336 | } else { |
| 337 | /* Normal mode */ |
| 338 | cx_write(AUD_I2SCNTL, 0x0); |
| 339 | cx_clear(AUD_CTL, EN_I2SIN_ENABLE); |
| 340 | } |
Michael Krufky | f24546a | 2006-10-16 16:51:11 -0300 | [diff] [blame] | 341 | } |
Ricardo Cerqueira | 66e6fbd | 2007-10-16 20:52:08 -0300 | [diff] [blame] | 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return 0; |
| 344 | } |
Mauro Carvalho Chehab | e90311a | 2007-01-20 13:58:29 -0300 | [diff] [blame] | 345 | EXPORT_SYMBOL(cx88_video_mux); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
| 347 | /* ------------------------------------------------------------------ */ |
| 348 | |
| 349 | static int start_video_dma(struct cx8800_dev *dev, |
| 350 | struct cx88_dmaqueue *q, |
| 351 | struct cx88_buffer *buf) |
| 352 | { |
| 353 | struct cx88_core *core = dev->core; |
| 354 | |
| 355 | /* setup fifo + format */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 356 | cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | buf->bpl, buf->risc.dma); |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 358 | cx88_set_scale(core, core->width, core->height, core->field); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 359 | cx_write(MO_COLOR_CTRL, dev->fmt->cxformat | ColorFormatGamma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | /* reset counter */ |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 362 | cx_write(MO_VIDY_GPCNTRL, GP_COUNT_CONTROL_RESET); |
Hans Verkuil | 9450684 | 2015-04-03 07:22:40 -0300 | [diff] [blame] | 363 | q->count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | /* enable irqs */ |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 366 | cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_VIDINT); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 367 | |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 368 | /* |
| 369 | * Enables corresponding bits at PCI_INT_STAT: |
| 370 | * bits 0 to 4: video, audio, transport stream, VIP, Host |
| 371 | * bit 7: timer |
| 372 | * bits 8 and 9: DMA complete for: SRC, DST |
| 373 | * bits 10 and 11: BERR signal asserted for RISC: RD, WR |
| 374 | * bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 375 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | cx_set(MO_VID_INTMSK, 0x0f0011); |
| 377 | |
| 378 | /* enable capture */ |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 379 | cx_set(VID_CAPTURE_CONTROL, 0x06); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | /* start dma */ |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 382 | cx_set(MO_DEV_CNTRL2, (1 << 5)); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 383 | 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] | 384 | |
| 385 | return 0; |
| 386 | } |
| 387 | |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 388 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | static int stop_video_dma(struct cx8800_dev *dev) |
| 390 | { |
| 391 | struct cx88_core *core = dev->core; |
| 392 | |
| 393 | /* stop dma */ |
| 394 | cx_clear(MO_VID_DMACNTRL, 0x11); |
| 395 | |
| 396 | /* disable capture */ |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 397 | cx_clear(VID_CAPTURE_CONTROL, 0x06); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
| 399 | /* disable irqs */ |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 400 | cx_clear(MO_PCI_INTMSK, PCI_INT_VIDINT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | cx_clear(MO_VID_INTMSK, 0x0f0011); |
| 402 | return 0; |
| 403 | } |
| 404 | |
| 405 | static int restart_video_queue(struct cx8800_dev *dev, |
| 406 | struct cx88_dmaqueue *q) |
| 407 | { |
Hans Verkuil | 6f11adc | 2014-08-10 11:56:14 -0300 | [diff] [blame] | 408 | struct cx88_buffer *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
| 410 | if (!list_empty(&q->active)) { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 411 | buf = list_entry(q->active.next, struct cx88_buffer, list); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 412 | dprintk(2, "restart_queue [%p/%d]: restart dma\n", |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 413 | buf, buf->vb.vb2_buf.index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | start_video_dma(dev, q, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
Hans Verkuil | 6f11adc | 2014-08-10 11:56:14 -0300 | [diff] [blame] | 416 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } |
Mauro Carvalho Chehab | bc5e66b | 2015-06-10 13:55:35 -0300 | [diff] [blame] | 418 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
| 420 | /* ------------------------------------------------------------------ */ |
| 421 | |
Hans Verkuil | df9ecb0c | 2015-10-28 00:50:37 -0200 | [diff] [blame] | 422 | static int queue_setup(struct vb2_queue *q, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 423 | unsigned int *num_buffers, unsigned int *num_planes, |
| 424 | unsigned int sizes[], struct device *alloc_devs[]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 426 | struct cx8800_dev *dev = q->drv_priv; |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 427 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 429 | *num_planes = 1; |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 430 | sizes[0] = (dev->fmt->depth * core->width * core->height) >> 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | return 0; |
| 432 | } |
| 433 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 434 | static int buffer_prepare(struct vb2_buffer *vb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 436 | struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 437 | struct cx8800_dev *dev = vb->vb2_queue->drv_priv; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 438 | struct cx88_core *core = dev->core; |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 439 | struct cx88_buffer *buf = container_of(vbuf, struct cx88_buffer, vb); |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 440 | struct sg_table *sgt = vb2_dma_sg_plane_desc(vb, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 442 | buf->bpl = core->width * dev->fmt->depth >> 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 444 | if (vb2_plane_size(vb, 0) < core->height * buf->bpl) |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 445 | return -EINVAL; |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 446 | vb2_set_plane_payload(vb, 0, core->height * buf->bpl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 448 | switch (core->field) { |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 449 | case V4L2_FIELD_TOP: |
| 450 | cx88_risc_buffer(dev->pci, &buf->risc, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 451 | sgt->sgl, 0, UNSET, |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 452 | buf->bpl, 0, core->height); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 453 | break; |
| 454 | case V4L2_FIELD_BOTTOM: |
| 455 | cx88_risc_buffer(dev->pci, &buf->risc, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 456 | sgt->sgl, UNSET, 0, |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 457 | buf->bpl, 0, core->height); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 458 | break; |
| 459 | case V4L2_FIELD_SEQ_TB: |
| 460 | cx88_risc_buffer(dev->pci, &buf->risc, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 461 | sgt->sgl, |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 462 | 0, buf->bpl * (core->height >> 1), |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 463 | buf->bpl, 0, |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 464 | core->height >> 1); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 465 | break; |
| 466 | case V4L2_FIELD_SEQ_BT: |
| 467 | cx88_risc_buffer(dev->pci, &buf->risc, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 468 | sgt->sgl, |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 469 | buf->bpl * (core->height >> 1), 0, |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 470 | buf->bpl, 0, |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 471 | core->height >> 1); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 472 | break; |
| 473 | case V4L2_FIELD_INTERLACED: |
| 474 | default: |
| 475 | cx88_risc_buffer(dev->pci, &buf->risc, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 476 | sgt->sgl, 0, buf->bpl, |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 477 | buf->bpl, buf->bpl, |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 478 | core->height >> 1); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 479 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | } |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 481 | dprintk(2, |
Hans Verkuil | 2169e6d | 2019-06-11 09:49:53 -0400 | [diff] [blame] | 482 | "[%p/%d] %s - %dx%d %dbpp 0x%08x - dma=0x%08lx\n", |
| 483 | buf, buf->vb.vb2_buf.index, __func__, |
| 484 | core->width, core->height, dev->fmt->depth, dev->fmt->fourcc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | (unsigned long)buf->risc.dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | } |
| 488 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 489 | static void buffer_finish(struct vb2_buffer *vb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 491 | struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 492 | struct cx8800_dev *dev = vb->vb2_queue->drv_priv; |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 493 | struct cx88_buffer *buf = container_of(vbuf, struct cx88_buffer, vb); |
Hans Verkuil | 5e7045e | 2014-08-29 04:11:54 -0300 | [diff] [blame] | 494 | struct cx88_riscmem *risc = &buf->risc; |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 495 | |
Hans Verkuil | 5e7045e | 2014-08-29 04:11:54 -0300 | [diff] [blame] | 496 | if (risc->cpu) |
| 497 | pci_free_consistent(dev->pci, risc->size, risc->cpu, risc->dma); |
| 498 | memset(risc, 0, sizeof(*risc)); |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | static void buffer_queue(struct vb2_buffer *vb) |
| 502 | { |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 503 | struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 504 | struct cx8800_dev *dev = vb->vb2_queue->drv_priv; |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 505 | struct cx88_buffer *buf = container_of(vbuf, struct cx88_buffer, vb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | struct cx88_buffer *prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | struct cx88_dmaqueue *q = &dev->vidq; |
| 508 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 509 | /* add jump to start */ |
| 510 | buf->risc.cpu[1] = cpu_to_le32(buf->risc.dma + 8); |
| 511 | buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_CNT_INC); |
| 512 | buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma + 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
Hans Verkuil | 6f11adc | 2014-08-10 11:56:14 -0300 | [diff] [blame] | 514 | if (list_empty(&q->active)) { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 515 | list_add_tail(&buf->list, &q->active); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 516 | dprintk(2, "[%p/%d] buffer_queue - first active\n", |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 517 | buf, buf->vb.vb2_buf.index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | |
| 519 | } else { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 520 | buf->risc.cpu[0] |= cpu_to_le32(RISC_IRQ1); |
| 521 | prev = list_entry(q->active.prev, struct cx88_buffer, list); |
| 522 | list_add_tail(&buf->list, &q->active); |
Hans Verkuil | 637bc20 | 2014-08-29 03:46:05 -0300 | [diff] [blame] | 523 | prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma); |
| 524 | dprintk(2, "[%p/%d] buffer_queue - append to active\n", |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 525 | buf, buf->vb.vb2_buf.index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } |
| 527 | } |
| 528 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 529 | static int start_streaming(struct vb2_queue *q, unsigned int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 531 | struct cx8800_dev *dev = q->drv_priv; |
| 532 | struct cx88_dmaqueue *dmaq = &dev->vidq; |
| 533 | struct cx88_buffer *buf = list_entry(dmaq->active.next, |
| 534 | struct cx88_buffer, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 536 | start_video_dma(dev, dmaq, buf); |
| 537 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 540 | static void stop_streaming(struct vb2_queue *q) |
| 541 | { |
| 542 | struct cx8800_dev *dev = q->drv_priv; |
| 543 | struct cx88_core *core = dev->core; |
| 544 | struct cx88_dmaqueue *dmaq = &dev->vidq; |
| 545 | unsigned long flags; |
| 546 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 547 | cx_clear(MO_VID_DMACNTRL, 0x11); |
| 548 | cx_clear(VID_CAPTURE_CONTROL, 0x06); |
| 549 | spin_lock_irqsave(&dev->slock, flags); |
| 550 | while (!list_empty(&dmaq->active)) { |
| 551 | struct cx88_buffer *buf = list_entry(dmaq->active.next, |
| 552 | struct cx88_buffer, list); |
| 553 | |
| 554 | list_del(&buf->list); |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 555 | vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR); |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 556 | } |
| 557 | spin_unlock_irqrestore(&dev->slock, flags); |
| 558 | } |
| 559 | |
Julia Lawall | 10accd2 | 2016-09-08 20:59:18 -0300 | [diff] [blame] | 560 | static const struct vb2_ops cx8800_video_qops = { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 561 | .queue_setup = queue_setup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | .buf_prepare = buffer_prepare, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 563 | .buf_finish = buffer_finish, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | .buf_queue = buffer_queue, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 565 | .wait_prepare = vb2_ops_wait_prepare, |
| 566 | .wait_finish = vb2_ops_wait_finish, |
| 567 | .start_streaming = start_streaming, |
| 568 | .stop_streaming = stop_streaming, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | }; |
| 570 | |
| 571 | /* ------------------------------------------------------------------ */ |
| 572 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 573 | static int radio_open(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | { |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 575 | struct cx8800_dev *dev = video_drvdata(file); |
Dan Carpenter | 5401c2d | 2010-10-21 16:21:45 -0300 | [diff] [blame] | 576 | struct cx88_core *core = dev->core; |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 577 | int ret = v4l2_fh_open(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 579 | if (ret) |
| 580 | return ret; |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 581 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 582 | cx_write(MO_GP3_IO, core->board.radio.gpio3); |
| 583 | cx_write(MO_GP0_IO, core->board.radio.gpio0); |
| 584 | cx_write(MO_GP1_IO, core->board.radio.gpio1); |
| 585 | cx_write(MO_GP2_IO, core->board.radio.gpio2); |
| 586 | if (core->board.radio.audioroute) { |
| 587 | if (core->sd_wm8775) { |
| 588 | call_all(core, audio, s_routing, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 589 | core->board.radio.audioroute, 0, 0); |
Darron Broad | 430189d | 2008-10-15 14:18:42 -0300 | [diff] [blame] | 590 | } |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 591 | /* "I2S ADC mode" */ |
| 592 | core->tvaudio = WW_I2SADC; |
| 593 | cx88_set_tvaudio(core); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | } else { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 595 | /* FM Mode */ |
| 596 | core->tvaudio = WW_FM; |
| 597 | cx88_set_tvaudio(core); |
| 598 | cx88_set_stereo(core, V4L2_TUNER_MODE_STEREO, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 600 | call_all(core, tuner, s_radio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | return 0; |
| 602 | } |
| 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | /* ------------------------------------------------------------------ */ |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 605 | /* VIDEO CTRL IOCTLS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 607 | static int cx8800_s_vid_ctrl(struct v4l2_ctrl *ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 609 | struct cx88_core *core = |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 610 | container_of(ctrl->handler, struct cx88_core, video_hdl); |
| 611 | const struct cx88_ctrl *cc = ctrl->priv; |
| 612 | u32 value, mask; |
| 613 | |
| 614 | mask = cc->mask; |
| 615 | switch (ctrl->id) { |
| 616 | case V4L2_CID_SATURATION: |
| 617 | /* special v_sat handling */ |
| 618 | |
| 619 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
| 620 | |
| 621 | if (core->tvnorm & V4L2_STD_SECAM) { |
| 622 | /* For SECAM, both U and V sat should be equal */ |
| 623 | value = value << 8 | value; |
| 624 | } else { |
| 625 | /* Keeps U Saturation proportional to V Sat */ |
| 626 | value = (value * 0x5a) / 0x7f << 8 | value; |
| 627 | } |
| 628 | mask = 0xffff; |
| 629 | break; |
| 630 | case V4L2_CID_SHARPNESS: |
| 631 | /* 0b000, 0b100, 0b101, 0b110, or 0b111 */ |
| 632 | value = (ctrl->val < 1 ? 0 : ((ctrl->val + 3) << 7)); |
| 633 | /* needs to be set for both fields */ |
| 634 | cx_andor(MO_FILTER_EVEN, mask, value); |
| 635 | break; |
| 636 | case V4L2_CID_CHROMA_AGC: |
| 637 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
| 638 | break; |
| 639 | default: |
| 640 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
| 641 | break; |
| 642 | } |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 643 | dprintk(1, |
| 644 | "set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n", |
| 645 | ctrl->id, ctrl->name, ctrl->val, cc->reg, value, |
| 646 | mask, cc->sreg ? " [shadowed]" : ""); |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 647 | if (cc->sreg) |
| 648 | cx_sandor(cc->sreg, cc->reg, mask, value); |
| 649 | else |
| 650 | cx_andor(cc->reg, mask, value); |
| 651 | return 0; |
| 652 | } |
| 653 | |
| 654 | static int cx8800_s_aud_ctrl(struct v4l2_ctrl *ctrl) |
| 655 | { |
| 656 | struct cx88_core *core = |
| 657 | container_of(ctrl->handler, struct cx88_core, audio_hdl); |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 658 | const struct cx88_ctrl *cc = ctrl->priv; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 659 | u32 value, mask; |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 660 | |
| 661 | /* Pass changes onto any WM8775 */ |
Hans Verkuil | 609c4c1 | 2013-05-29 10:44:22 -0300 | [diff] [blame] | 662 | if (core->sd_wm8775) { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 663 | switch (ctrl->id) { |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 664 | case V4L2_CID_AUDIO_MUTE: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 665 | wm8775_s_ctrl(core, ctrl->id, ctrl->val); |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 666 | break; |
| 667 | case V4L2_CID_AUDIO_VOLUME: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 668 | wm8775_s_ctrl(core, ctrl->id, (ctrl->val) ? |
| 669 | (0x90 + ctrl->val) << 8 : 0); |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 670 | break; |
| 671 | case V4L2_CID_AUDIO_BALANCE: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 672 | wm8775_s_ctrl(core, ctrl->id, ctrl->val << 9); |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 673 | break; |
| 674 | default: |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 675 | break; |
| 676 | } |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 677 | } |
| 678 | |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 679 | mask = cc->mask; |
| 680 | switch (ctrl->id) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | case V4L2_CID_AUDIO_BALANCE: |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 682 | value = (ctrl->val < 0x40) ? |
| 683 | (0x7f - ctrl->val) : (ctrl->val - 0x40); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | break; |
| 685 | case V4L2_CID_AUDIO_VOLUME: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 686 | value = 0x3f - (ctrl->val & 0x3f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | default: |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 689 | value = ((ctrl->val - cc->off) << cc->shift) & cc->mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | break; |
| 691 | } |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 692 | dprintk(1, |
| 693 | "set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n", |
| 694 | ctrl->id, ctrl->name, ctrl->val, cc->reg, value, |
| 695 | mask, cc->sreg ? " [shadowed]" : ""); |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 696 | if (cc->sreg) |
| 697 | cx_sandor(cc->sreg, cc->reg, mask, value); |
| 698 | else |
| 699 | cx_andor(cc->reg, mask, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | return 0; |
| 701 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | |
| 703 | /* ------------------------------------------------------------------ */ |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 704 | /* VIDEO IOCTLS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 706 | static int vidioc_g_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 707 | struct v4l2_format *f) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 708 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 709 | struct cx8800_dev *dev = video_drvdata(file); |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 710 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 711 | |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 712 | f->fmt.pix.width = core->width; |
| 713 | f->fmt.pix.height = core->height; |
| 714 | f->fmt.pix.field = core->field; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 715 | f->fmt.pix.pixelformat = dev->fmt->fourcc; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 716 | f->fmt.pix.bytesperline = |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 717 | (f->fmt.pix.width * dev->fmt->depth) >> 3; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 718 | f->fmt.pix.sizeimage = |
| 719 | f->fmt.pix.height * f->fmt.pix.bytesperline; |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 720 | f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 721 | return 0; |
| 722 | } |
| 723 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 724 | static int vidioc_try_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 725 | struct v4l2_format *f) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 727 | struct cx8800_dev *dev = video_drvdata(file); |
| 728 | struct cx88_core *core = dev->core; |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 729 | const struct cx8800_fmt *fmt; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 730 | enum v4l2_field field; |
| 731 | unsigned int maxw, maxh; |
| 732 | |
| 733 | fmt = format_by_fourcc(f->fmt.pix.pixelformat); |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 734 | if (!fmt) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 735 | return -EINVAL; |
| 736 | |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 737 | maxw = norm_maxw(core->tvnorm); |
| 738 | maxh = norm_maxh(core->tvnorm); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 739 | |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 740 | field = f->fmt.pix.field; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 741 | |
| 742 | switch (field) { |
| 743 | case V4L2_FIELD_TOP: |
| 744 | case V4L2_FIELD_BOTTOM: |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 745 | case V4L2_FIELD_INTERLACED: |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 746 | case V4L2_FIELD_SEQ_BT: |
| 747 | case V4L2_FIELD_SEQ_TB: |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 748 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | default: |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 750 | field = (f->fmt.pix.height > maxh / 2) |
| 751 | ? V4L2_FIELD_INTERLACED |
| 752 | : V4L2_FIELD_BOTTOM; |
| 753 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | } |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 755 | if (V4L2_FIELD_HAS_T_OR_B(field)) |
| 756 | maxh /= 2; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 757 | |
Trent Piepho | 4b89945 | 2009-05-30 21:45:46 -0300 | [diff] [blame] | 758 | v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2, |
| 759 | &f->fmt.pix.height, 32, maxh, 0, 0); |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 760 | f->fmt.pix.field = field; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 761 | f->fmt.pix.bytesperline = |
| 762 | (f->fmt.pix.width * fmt->depth) >> 3; |
| 763 | f->fmt.pix.sizeimage = |
| 764 | f->fmt.pix.height * f->fmt.pix.bytesperline; |
Hans Verkuil | 9450684 | 2015-04-03 07:22:40 -0300 | [diff] [blame] | 765 | f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 766 | |
| 767 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | } |
| 769 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 770 | static int vidioc_s_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 771 | struct v4l2_format *f) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 773 | struct cx8800_dev *dev = video_drvdata(file); |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 774 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 775 | int err = vidioc_try_fmt_vid_cap(file, priv, f); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 776 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 777 | if (err != 0) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 778 | return err; |
Hans Verkuil | 078859a | 2014-08-29 06:08:07 -0300 | [diff] [blame] | 779 | if (vb2_is_busy(&dev->vb2_vidq) || vb2_is_busy(&dev->vb2_vbiq)) |
| 780 | return -EBUSY; |
| 781 | if (core->dvbdev && vb2_is_busy(&core->dvbdev->vb2_mpegq)) |
| 782 | return -EBUSY; |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 783 | dev->fmt = format_by_fourcc(f->fmt.pix.pixelformat); |
| 784 | core->width = f->fmt.pix.width; |
| 785 | core->height = f->fmt.pix.height; |
| 786 | core->field = f->fmt.pix.field; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 787 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | } |
| 789 | |
Mauro Carvalho Chehab | 4839c58 | 2017-09-28 18:39:32 -0400 | [diff] [blame] | 790 | int cx88_querycap(struct file *file, struct cx88_core *core, |
| 791 | struct v4l2_capability *cap) |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 792 | { |
Mauro Carvalho Chehab | c0decac | 2018-09-10 08:19:14 -0400 | [diff] [blame] | 793 | strscpy(cap->card, core->board.name, sizeof(cap->card)); |
Hans Verkuil | 2161536 | 2019-06-17 05:36:16 -0400 | [diff] [blame] | 794 | cap->capabilities = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING | |
| 795 | V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VBI_CAPTURE | |
| 796 | V4L2_CAP_DEVICE_CAPS; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 797 | if (core->board.tuner_type != UNSET) |
Hans Verkuil | 2161536 | 2019-06-17 05:36:16 -0400 | [diff] [blame] | 798 | cap->capabilities |= V4L2_CAP_TUNER; |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 799 | if (core->board.radio.type == CX88_RADIO) |
| 800 | cap->capabilities |= V4L2_CAP_RADIO; |
Mauro Carvalho Chehab | 4839c58 | 2017-09-28 18:39:32 -0400 | [diff] [blame] | 801 | return 0; |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 802 | } |
| 803 | EXPORT_SYMBOL(cx88_querycap); |
| 804 | |
| 805 | static int vidioc_querycap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 806 | struct v4l2_capability *cap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 808 | struct cx8800_dev *dev = video_drvdata(file); |
| 809 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | |
Mauro Carvalho Chehab | cc1e631 | 2018-09-10 16:20:42 -0400 | [diff] [blame] | 811 | strscpy(cap->driver, "cx8800", sizeof(cap->driver)); |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 812 | sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci)); |
Mauro Carvalho Chehab | 4839c58 | 2017-09-28 18:39:32 -0400 | [diff] [blame] | 813 | return cx88_querycap(file, core, cap); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 814 | } |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 815 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 816 | static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 817 | struct v4l2_fmtdesc *f) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 818 | { |
| 819 | if (unlikely(f->index >= ARRAY_SIZE(formats))) |
| 820 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 822 | f->pixelformat = formats[f->index].fourcc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 824 | return 0; |
| 825 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 827 | static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *tvnorm) |
| 828 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 829 | struct cx8800_dev *dev = video_drvdata(file); |
| 830 | struct cx88_core *core = dev->core; |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 831 | |
| 832 | *tvnorm = core->tvnorm; |
| 833 | return 0; |
| 834 | } |
| 835 | |
Hans Verkuil | 314527a | 2013-03-15 06:10:40 -0300 | [diff] [blame] | 836 | 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] | 837 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 838 | struct cx8800_dev *dev = video_drvdata(file); |
| 839 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 840 | |
Hans Verkuil | 078859a | 2014-08-29 06:08:07 -0300 | [diff] [blame] | 841 | return cx88_set_tvnorm(core, tvnorms); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | /* only one input in this sample driver */ |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 845 | 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] | 846 | { |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 847 | static const char * const iname[] = { |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 848 | [CX88_VMUX_COMPOSITE1] = "Composite1", |
| 849 | [CX88_VMUX_COMPOSITE2] = "Composite2", |
| 850 | [CX88_VMUX_COMPOSITE3] = "Composite3", |
| 851 | [CX88_VMUX_COMPOSITE4] = "Composite4", |
| 852 | [CX88_VMUX_SVIDEO] = "S-Video", |
| 853 | [CX88_VMUX_TELEVISION] = "Television", |
| 854 | [CX88_VMUX_CABLE] = "Cable TV", |
| 855 | [CX88_VMUX_DVB] = "DVB", |
| 856 | [CX88_VMUX_DEBUG] = "for debug only", |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 857 | }; |
Trent Piepho | f3334bc | 2009-03-04 01:21:03 -0300 | [diff] [blame] | 858 | unsigned int n = i->index; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 859 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 860 | if (n >= 4) |
| 861 | return -EINVAL; |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 862 | if (!INPUT(n).type) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 863 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 864 | i->type = V4L2_INPUT_TYPE_CAMERA; |
Mauro Carvalho Chehab | cc1e631 | 2018-09-10 16:20:42 -0400 | [diff] [blame] | 865 | strscpy(i->name, iname[INPUT(n).type], sizeof(i->name)); |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 866 | if ((INPUT(n).type == CX88_VMUX_TELEVISION) || |
| 867 | (INPUT(n).type == CX88_VMUX_CABLE)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 868 | i->type = V4L2_INPUT_TYPE_TUNER; |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 869 | |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 870 | i->std = CX88_NORMS; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 871 | return 0; |
| 872 | } |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 873 | EXPORT_SYMBOL(cx88_enum_input); |
| 874 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 875 | static int vidioc_enum_input(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 876 | struct v4l2_input *i) |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 877 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 878 | struct cx8800_dev *dev = video_drvdata(file); |
| 879 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 880 | |
| 881 | return cx88_enum_input(core, i); |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 882 | } |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 883 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 884 | static int vidioc_g_input(struct file *file, void *priv, unsigned int *i) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 885 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 886 | struct cx8800_dev *dev = video_drvdata(file); |
| 887 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 888 | |
| 889 | *i = core->input; |
| 890 | return 0; |
| 891 | } |
| 892 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 893 | static int vidioc_s_input(struct file *file, void *priv, unsigned int i) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 894 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 895 | struct cx8800_dev *dev = video_drvdata(file); |
| 896 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 897 | |
| 898 | if (i >= 4) |
| 899 | return -EINVAL; |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 900 | if (!INPUT(i).type) |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 901 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 902 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 903 | cx88_newstation(core); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 904 | cx88_video_mux(core, i); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 905 | return 0; |
| 906 | } |
| 907 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 908 | static int vidioc_g_tuner(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 909 | struct v4l2_tuner *t) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 910 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 911 | struct cx8800_dev *dev = video_drvdata(file); |
| 912 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 913 | u32 reg; |
| 914 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 915 | if (unlikely(core->board.tuner_type == UNSET)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 916 | return -EINVAL; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 917 | if (t->index != 0) |
Mauro Carvalho Chehab | 243d8c0 | 2007-01-20 13:58:36 -0300 | [diff] [blame] | 918 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 919 | |
Mauro Carvalho Chehab | cc1e631 | 2018-09-10 16:20:42 -0400 | [diff] [blame] | 920 | strscpy(t->name, "Television", sizeof(t->name)); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 921 | t->capability = V4L2_TUNER_CAP_NORM; |
| 922 | t->rangehigh = 0xffffffffUL; |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 923 | call_all(core, tuner, g_tuner, t); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 924 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 925 | cx88_get_stereo(core, t); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 926 | reg = cx_read(MO_DEVICE_STATUS); |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 927 | t->signal = (reg & (1 << 5)) ? 0xffff : 0x0000; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 928 | return 0; |
| 929 | } |
| 930 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 931 | static int vidioc_s_tuner(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 932 | const struct v4l2_tuner *t) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 933 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 934 | struct cx8800_dev *dev = video_drvdata(file); |
| 935 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 936 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 937 | if (core->board.tuner_type == UNSET) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 938 | return -EINVAL; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 939 | if (t->index != 0) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 940 | return -EINVAL; |
| 941 | |
| 942 | cx88_set_stereo(core, t->audmode, 1); |
| 943 | return 0; |
| 944 | } |
| 945 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 946 | static int vidioc_g_frequency(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 947 | struct v4l2_frequency *f) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 948 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 949 | struct cx8800_dev *dev = video_drvdata(file); |
| 950 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 951 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 952 | if (unlikely(core->board.tuner_type == UNSET)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 953 | return -EINVAL; |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 954 | if (f->tuner) |
| 955 | return -EINVAL; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 956 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 957 | f->frequency = core->freq; |
| 958 | |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 959 | call_all(core, tuner, g_frequency, f); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 960 | |
| 961 | return 0; |
| 962 | } |
| 963 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 964 | int cx88_set_freq(struct cx88_core *core, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 965 | const struct v4l2_frequency *f) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 966 | { |
Hans Verkuil | b530a44 | 2013-03-19 04:09:26 -0300 | [diff] [blame] | 967 | struct v4l2_frequency new_freq = *f; |
| 968 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 969 | if (unlikely(core->board.tuner_type == UNSET)) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 970 | return -EINVAL; |
| 971 | if (unlikely(f->tuner != 0)) |
| 972 | return -EINVAL; |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 973 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 974 | cx88_newstation(core); |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 975 | call_all(core, tuner, s_frequency, f); |
Hans Verkuil | b530a44 | 2013-03-19 04:09:26 -0300 | [diff] [blame] | 976 | call_all(core, tuner, g_frequency, &new_freq); |
| 977 | core->freq = new_freq.frequency; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 978 | |
| 979 | /* When changing channels it is required to reset TVAUDIO */ |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 980 | usleep_range(10000, 20000); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 981 | cx88_set_tvaudio(core); |
| 982 | |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 983 | return 0; |
| 984 | } |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 985 | EXPORT_SYMBOL(cx88_set_freq); |
| 986 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 987 | static int vidioc_s_frequency(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 988 | const struct v4l2_frequency *f) |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 989 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 990 | struct cx8800_dev *dev = video_drvdata(file); |
| 991 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 992 | |
Hans Verkuil | edbd138 | 2012-05-11 10:33:25 -0300 | [diff] [blame] | 993 | return cx88_set_freq(core, f); |
Mauro Carvalho Chehab | 54da49f | 2007-01-20 13:58:26 -0300 | [diff] [blame] | 994 | } |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 995 | |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 996 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 997 | static int vidioc_g_register(struct file *file, void *fh, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 998 | struct v4l2_dbg_register *reg) |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 999 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1000 | struct cx8800_dev *dev = video_drvdata(file); |
| 1001 | struct cx88_core *core = dev->core; |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1002 | |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1003 | /* cx2388x has a 24-bit register space */ |
Hans Verkuil | 7feeb14 | 2013-05-29 06:22:02 -0300 | [diff] [blame] | 1004 | reg->val = cx_read(reg->reg & 0xfffffc); |
Hans Verkuil | aecde8b5 | 2008-12-30 07:14:19 -0300 | [diff] [blame] | 1005 | reg->size = 4; |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1006 | return 0; |
| 1007 | } |
| 1008 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1009 | static int vidioc_s_register(struct file *file, void *fh, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1010 | const struct v4l2_dbg_register *reg) |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1011 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1012 | struct cx8800_dev *dev = video_drvdata(file); |
| 1013 | struct cx88_core *core = dev->core; |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1014 | |
Hans Verkuil | 7feeb14 | 2013-05-29 06:22:02 -0300 | [diff] [blame] | 1015 | cx_write(reg->reg & 0xfffffc, reg->val); |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1016 | return 0; |
| 1017 | } |
| 1018 | #endif |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | /* ----------------------------------------------------------- */ |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1021 | /* RADIO ESPECIFIC IOCTLS */ |
| 1022 | /* ----------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1024 | static int radio_g_tuner(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1025 | struct v4l2_tuner *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1027 | struct cx8800_dev *dev = video_drvdata(file); |
| 1028 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1029 | |
| 1030 | if (unlikely(t->index > 0)) |
| 1031 | return -EINVAL; |
| 1032 | |
Mauro Carvalho Chehab | cc1e631 | 2018-09-10 16:20:42 -0400 | [diff] [blame] | 1033 | strscpy(t->name, "Radio", sizeof(t->name)); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1034 | |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1035 | call_all(core, tuner, g_tuner, t); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1036 | return 0; |
| 1037 | } |
| 1038 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1039 | static int radio_s_tuner(struct file *file, void *priv, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1040 | const struct v4l2_tuner *t) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1041 | { |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1042 | struct cx8800_dev *dev = video_drvdata(file); |
| 1043 | struct cx88_core *core = dev->core; |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1044 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1045 | if (t->index != 0) |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1046 | return -EINVAL; |
| 1047 | |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1048 | call_all(core, tuner, s_tuner, t); |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1049 | return 0; |
| 1050 | } |
| 1051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | /* ----------------------------------------------------------- */ |
| 1053 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1054 | static const char *cx88_vid_irqs[32] = { |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 1055 | "y_risci1", "u_risci1", "v_risci1", "vbi_risc1", |
| 1056 | "y_risci2", "u_risci2", "v_risci2", "vbi_risc2", |
| 1057 | "y_oflow", "u_oflow", "v_oflow", "vbi_oflow", |
| 1058 | "y_sync", "u_sync", "v_sync", "vbi_sync", |
| 1059 | "opc_err", "par_err", "rip_err", "pci_abort", |
| 1060 | }; |
| 1061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | static void cx8800_vid_irq(struct cx8800_dev *dev) |
| 1063 | { |
| 1064 | struct cx88_core *core = dev->core; |
| 1065 | u32 status, mask, count; |
| 1066 | |
| 1067 | status = cx_read(MO_VID_INTSTAT); |
| 1068 | mask = cx_read(MO_VID_INTMSK); |
| 1069 | if (0 == (status & mask)) |
| 1070 | return; |
| 1071 | cx_write(MO_VID_INTSTAT, status); |
| 1072 | if (irq_debug || (status & mask & ~0xff)) |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1073 | cx88_print_irqbits("irq vid", |
Mauro Carvalho Chehab | 66623a0 | 2007-03-29 08:47:04 -0300 | [diff] [blame] | 1074 | cx88_vid_irqs, ARRAY_SIZE(cx88_vid_irqs), |
| 1075 | status, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | |
| 1077 | /* risc op code error */ |
| 1078 | if (status & (1 << 16)) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1079 | pr_warn("video risc op code error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | cx_clear(MO_VID_DMACNTRL, 0x11); |
| 1081 | cx_clear(VID_CAPTURE_CONTROL, 0x06); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1082 | cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | } |
| 1084 | |
| 1085 | /* risc1 y */ |
| 1086 | if (status & 0x01) { |
| 1087 | spin_lock(&dev->slock); |
| 1088 | count = cx_read(MO_VIDY_GPCNT); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1089 | cx88_wakeup(core, &dev->vidq, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | spin_unlock(&dev->slock); |
| 1091 | } |
| 1092 | |
| 1093 | /* risc1 vbi */ |
| 1094 | if (status & 0x08) { |
| 1095 | spin_lock(&dev->slock); |
| 1096 | count = cx_read(MO_VBI_GPCNT); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1097 | cx88_wakeup(core, &dev->vbiq, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | spin_unlock(&dev->slock); |
| 1099 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | } |
| 1101 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1102 | static irqreturn_t cx8800_irq(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | { |
| 1104 | struct cx8800_dev *dev = dev_id; |
| 1105 | struct cx88_core *core = dev->core; |
| 1106 | u32 status; |
| 1107 | int loop, handled = 0; |
| 1108 | |
| 1109 | for (loop = 0; loop < 10; loop++) { |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 1110 | status = cx_read(MO_PCI_INTSTAT) & |
| 1111 | (core->pci_irqmask | PCI_INT_VIDINT); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1112 | if (status == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | goto out; |
| 1114 | cx_write(MO_PCI_INTSTAT, status); |
| 1115 | handled = 1; |
| 1116 | |
| 1117 | if (status & core->pci_irqmask) |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1118 | cx88_core_irq(core, status); |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 1119 | if (status & PCI_INT_VIDINT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | cx8800_vid_irq(dev); |
Peter Senna Tschudin | c2c1b41 | 2012-09-28 05:37:22 -0300 | [diff] [blame] | 1121 | } |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1122 | if (loop == 10) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1123 | pr_warn("irq loop -- clearing mask\n"); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1124 | cx_write(MO_PCI_INTMSK, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | out: |
| 1128 | return IRQ_RETVAL(handled); |
| 1129 | } |
| 1130 | |
| 1131 | /* ----------------------------------------------------------- */ |
| 1132 | /* exported stuff */ |
| 1133 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1134 | static const struct v4l2_file_operations video_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | .owner = THIS_MODULE, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1136 | .open = v4l2_fh_open, |
| 1137 | .release = vb2_fop_release, |
| 1138 | .read = vb2_fop_read, |
| 1139 | .poll = vb2_fop_poll, |
| 1140 | .mmap = vb2_fop_mmap, |
Mauro Carvalho Chehab | b6187264 | 2011-02-13 21:52:02 -0300 | [diff] [blame] | 1141 | .unlocked_ioctl = video_ioctl2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | }; |
| 1143 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1144 | static const struct v4l2_ioctl_ops video_ioctl_ops = { |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1145 | .vidioc_querycap = vidioc_querycap, |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1146 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
| 1147 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
| 1148 | .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap, |
| 1149 | .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1150 | .vidioc_reqbufs = vb2_ioctl_reqbufs, |
| 1151 | .vidioc_querybuf = vb2_ioctl_querybuf, |
| 1152 | .vidioc_qbuf = vb2_ioctl_qbuf, |
| 1153 | .vidioc_dqbuf = vb2_ioctl_dqbuf, |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 1154 | .vidioc_g_std = vidioc_g_std, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1155 | .vidioc_s_std = vidioc_s_std, |
| 1156 | .vidioc_enum_input = vidioc_enum_input, |
| 1157 | .vidioc_g_input = vidioc_g_input, |
| 1158 | .vidioc_s_input = vidioc_s_input, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1159 | .vidioc_streamon = vb2_ioctl_streamon, |
| 1160 | .vidioc_streamoff = vb2_ioctl_streamoff, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1161 | .vidioc_g_tuner = vidioc_g_tuner, |
| 1162 | .vidioc_s_tuner = vidioc_s_tuner, |
| 1163 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1164 | .vidioc_s_frequency = vidioc_s_frequency, |
| 1165 | .vidioc_subscribe_event = v4l2_ctrl_subscribe_event, |
| 1166 | .vidioc_unsubscribe_event = v4l2_event_unsubscribe, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1167 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1168 | .vidioc_g_register = vidioc_g_register, |
| 1169 | .vidioc_s_register = vidioc_s_register, |
| 1170 | #endif |
| 1171 | }; |
| 1172 | |
| 1173 | static const struct video_device cx8800_video_template = { |
| 1174 | .name = "cx8800-video", |
| 1175 | .fops = &video_fops, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1176 | .ioctl_ops = &video_ioctl_ops, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1177 | .tvnorms = CX88_NORMS, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1178 | }; |
| 1179 | |
| 1180 | static const struct v4l2_ioctl_ops vbi_ioctl_ops = { |
| 1181 | .vidioc_querycap = vidioc_querycap, |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1182 | .vidioc_g_fmt_vbi_cap = cx8800_vbi_fmt, |
| 1183 | .vidioc_try_fmt_vbi_cap = cx8800_vbi_fmt, |
| 1184 | .vidioc_s_fmt_vbi_cap = cx8800_vbi_fmt, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1185 | .vidioc_reqbufs = vb2_ioctl_reqbufs, |
| 1186 | .vidioc_querybuf = vb2_ioctl_querybuf, |
| 1187 | .vidioc_qbuf = vb2_ioctl_qbuf, |
| 1188 | .vidioc_dqbuf = vb2_ioctl_dqbuf, |
Hans Verkuil | 48d6880 | 2012-05-25 12:15:30 -0300 | [diff] [blame] | 1189 | .vidioc_g_std = vidioc_g_std, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1190 | .vidioc_s_std = vidioc_s_std, |
| 1191 | .vidioc_enum_input = vidioc_enum_input, |
| 1192 | .vidioc_g_input = vidioc_g_input, |
| 1193 | .vidioc_s_input = vidioc_s_input, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1194 | .vidioc_streamon = vb2_ioctl_streamon, |
| 1195 | .vidioc_streamoff = vb2_ioctl_streamoff, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1196 | .vidioc_g_tuner = vidioc_g_tuner, |
| 1197 | .vidioc_s_tuner = vidioc_s_tuner, |
| 1198 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1199 | .vidioc_s_frequency = vidioc_s_frequency, |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 1200 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1201 | .vidioc_g_register = vidioc_g_register, |
| 1202 | .vidioc_s_register = vidioc_s_register, |
| 1203 | #endif |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1204 | }; |
| 1205 | |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1206 | static const struct video_device cx8800_vbi_template = { |
| 1207 | .name = "cx8800-vbi", |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1208 | .fops = &video_fops, |
Hans Verkuil | f33e986 | 2012-05-25 12:04:10 -0300 | [diff] [blame] | 1209 | .ioctl_ops = &vbi_ioctl_ops, |
Mauro Carvalho Chehab | 63ab1bd | 2007-01-20 13:58:33 -0300 | [diff] [blame] | 1210 | .tvnorms = CX88_NORMS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | }; |
| 1212 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1213 | static const struct v4l2_file_operations radio_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | .owner = THIS_MODULE, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1215 | .open = radio_open, |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 1216 | .poll = v4l2_ctrl_poll, |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1217 | .release = v4l2_fh_release, |
Mauro Carvalho Chehab | b6187264 | 2011-02-13 21:52:02 -0300 | [diff] [blame] | 1218 | .unlocked_ioctl = video_ioctl2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | }; |
| 1220 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1221 | static const struct v4l2_ioctl_ops radio_ioctl_ops = { |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 1222 | .vidioc_querycap = vidioc_querycap, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1223 | .vidioc_g_tuner = radio_g_tuner, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1224 | .vidioc_s_tuner = radio_s_tuner, |
Mauro Carvalho Chehab | 8d87cb9 | 2007-01-20 13:58:17 -0300 | [diff] [blame] | 1225 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1226 | .vidioc_s_frequency = vidioc_s_frequency, |
Hans Verkuil | 1a3c60a | 2012-05-11 11:25:03 -0300 | [diff] [blame] | 1227 | .vidioc_subscribe_event = v4l2_ctrl_subscribe_event, |
| 1228 | .vidioc_unsubscribe_event = v4l2_event_unsubscribe, |
Trent Piepho | a75d204 | 2007-08-01 00:13:28 -0300 | [diff] [blame] | 1229 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1230 | .vidioc_g_register = vidioc_g_register, |
| 1231 | .vidioc_s_register = vidioc_s_register, |
| 1232 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | }; |
| 1234 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1235 | static const struct video_device cx8800_radio_template = { |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1236 | .name = "cx8800-radio", |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1237 | .fops = &radio_fops, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1238 | .ioctl_ops = &radio_ioctl_ops, |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1239 | }; |
| 1240 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1241 | static const struct v4l2_ctrl_ops cx8800_ctrl_vid_ops = { |
| 1242 | .s_ctrl = cx8800_s_vid_ctrl, |
| 1243 | }; |
| 1244 | |
| 1245 | static const struct v4l2_ctrl_ops cx8800_ctrl_aud_ops = { |
| 1246 | .s_ctrl = cx8800_s_aud_ctrl, |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1247 | }; |
| 1248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | /* ----------------------------------------------------------- */ |
| 1250 | |
| 1251 | static void cx8800_unregister_video(struct cx8800_dev *dev) |
| 1252 | { |
Hans Verkuil | 34080bc | 2015-03-09 13:34:00 -0300 | [diff] [blame] | 1253 | video_unregister_device(&dev->radio_dev); |
| 1254 | video_unregister_device(&dev->vbi_dev); |
| 1255 | video_unregister_device(&dev->video_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | } |
| 1257 | |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1258 | static int cx8800_initdev(struct pci_dev *pci_dev, |
| 1259 | const struct pci_device_id *pci_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | { |
| 1261 | struct cx8800_dev *dev; |
| 1262 | struct cx88_core *core; |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1263 | struct vb2_queue *q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | int err; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1265 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1267 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1268 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | |
| 1271 | /* pci init */ |
| 1272 | dev->pci = pci_dev; |
| 1273 | if (pci_enable_device(pci_dev)) { |
| 1274 | err = -EIO; |
| 1275 | goto fail_free; |
| 1276 | } |
| 1277 | core = cx88_core_get(dev->pci); |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1278 | if (!core) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | err = -EINVAL; |
| 1280 | goto fail_free; |
| 1281 | } |
| 1282 | dev->core = core; |
| 1283 | |
| 1284 | /* print pci info */ |
Bjørn Mork | abd34d8 | 2011-03-21 11:35:56 -0300 | [diff] [blame] | 1285 | dev->pci_rev = pci_dev->revision; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1286 | pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &dev->pci_lat); |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1287 | pr_info("found at %s, rev: %d, irq: %d, latency: %d, mmio: 0x%llx\n", |
| 1288 | pci_name(pci_dev), dev->pci_rev, pci_dev->irq, |
| 1289 | dev->pci_lat, |
| 1290 | (unsigned long long)pci_resource_start(pci_dev, 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | |
| 1292 | pci_set_master(pci_dev); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1293 | err = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32)); |
Christoph Hellwig | 1a47de6 | 2015-11-20 15:57:07 -0800 | [diff] [blame] | 1294 | if (err) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1295 | pr_err("Oops: no 32bit PCI DMA ???\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | goto fail_core; |
| 1297 | } |
| 1298 | |
| 1299 | /* initialize driver struct */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | spin_lock_init(&dev->slock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | |
| 1302 | /* init video dma queues */ |
| 1303 | INIT_LIST_HEAD(&dev->vidq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | |
| 1305 | /* init vbi dma queues */ |
| 1306 | INIT_LIST_HEAD(&dev->vbiq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
| 1308 | /* get irq */ |
| 1309 | err = request_irq(pci_dev->irq, cx8800_irq, |
Michael Opdenacker | 3e018fe | 2013-10-13 02:49:29 -0300 | [diff] [blame] | 1310 | IRQF_SHARED, core->name, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | if (err < 0) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1312 | pr_err("can't get IRQ %d\n", pci_dev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | goto fail_core; |
| 1314 | } |
| 1315 | cx_set(MO_PCI_INTMSK, core->pci_irqmask); |
| 1316 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1317 | for (i = 0; i < CX8800_AUD_CTLS; i++) { |
| 1318 | const struct cx88_ctrl *cc = &cx8800_aud_ctls[i]; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1319 | struct v4l2_ctrl *vc; |
| 1320 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1321 | vc = v4l2_ctrl_new_std(&core->audio_hdl, &cx8800_ctrl_aud_ops, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1322 | cc->id, cc->minimum, cc->maximum, |
| 1323 | cc->step, cc->default_value); |
| 1324 | if (!vc) { |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1325 | err = core->audio_hdl.error; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1326 | goto fail_core; |
| 1327 | } |
| 1328 | vc->priv = (void *)cc; |
| 1329 | } |
| 1330 | |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1331 | for (i = 0; i < CX8800_VID_CTLS; i++) { |
| 1332 | const struct cx88_ctrl *cc = &cx8800_vid_ctls[i]; |
| 1333 | struct v4l2_ctrl *vc; |
| 1334 | |
| 1335 | vc = v4l2_ctrl_new_std(&core->video_hdl, &cx8800_ctrl_vid_ops, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1336 | cc->id, cc->minimum, cc->maximum, |
| 1337 | cc->step, cc->default_value); |
| 1338 | if (!vc) { |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1339 | err = core->video_hdl.error; |
| 1340 | goto fail_core; |
| 1341 | } |
| 1342 | vc->priv = (void *)cc; |
| 1343 | if (vc->id == V4L2_CID_CHROMA_AGC) |
| 1344 | core->chroma_agc = vc; |
| 1345 | } |
Hans Verkuil | da1b1ae | 2018-05-21 04:54:36 -0400 | [diff] [blame] | 1346 | v4l2_ctrl_add_handler(&core->video_hdl, &core->audio_hdl, NULL, false); |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | /* load and configure helper modules */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1349 | |
Hans Verkuil | facd236 | 2013-05-26 07:56:06 -0300 | [diff] [blame] | 1350 | if (core->board.audio_chip == CX88_AUDIO_WM8775) { |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 1351 | struct i2c_board_info wm8775_info = { |
| 1352 | .type = "wm8775", |
| 1353 | .addr = 0x36 >> 1, |
| 1354 | .platform_data = &core->wm8775_data, |
| 1355 | }; |
| 1356 | struct v4l2_subdev *sd; |
| 1357 | |
| 1358 | if (core->boardnr == CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1) |
| 1359 | core->wm8775_data.is_nova_s = true; |
| 1360 | else |
| 1361 | core->wm8775_data.is_nova_s = false; |
| 1362 | |
| 1363 | sd = v4l2_i2c_new_subdev_board(&core->v4l2_dev, &core->i2c_adap, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1364 | &wm8775_info, NULL); |
| 1365 | if (sd) { |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1366 | core->sd_wm8775 = sd; |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 1367 | sd->grp_id = WM8775_GID; |
Hans Verkuil | bac6398 | 2012-06-10 07:39:52 -0300 | [diff] [blame] | 1368 | } |
Lawrence Rust | 6951803 | 2011-02-06 17:46:12 -0300 | [diff] [blame] | 1369 | } |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1370 | |
Hans Verkuil | facd236 | 2013-05-26 07:56:06 -0300 | [diff] [blame] | 1371 | if (core->board.audio_chip == CX88_AUDIO_TVAUDIO) { |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1372 | /* |
| 1373 | * This probes for a tda9874 as is used on some |
| 1374 | * Pixelview Ultra boards. |
| 1375 | */ |
Laurent Pinchart | 9a1f8b3 | 2010-09-24 10:16:44 -0300 | [diff] [blame] | 1376 | v4l2_i2c_new_subdev(&core->v4l2_dev, &core->i2c_adap, |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1377 | "tvaudio", 0, I2C_ADDRS(0xb0 >> 1)); |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1378 | } |
Steven Toth | 3057906 | 2006-09-25 12:43:42 -0300 | [diff] [blame] | 1379 | |
Michael Krufky | 6fcecce | 2007-08-24 01:32:31 -0300 | [diff] [blame] | 1380 | switch (core->boardnr) { |
| 1381 | case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD: |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1382 | case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD: { |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1383 | static const struct i2c_board_info rtc_info = { |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1384 | I2C_BOARD_INFO("isl1208", 0x6f) |
| 1385 | }; |
| 1386 | |
Michael Krufky | 6fcecce | 2007-08-24 01:32:31 -0300 | [diff] [blame] | 1387 | request_module("rtc-isl1208"); |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 1388 | core->i2c_rtc = i2c_new_device(&core->i2c_adap, &rtc_info); |
| 1389 | } |
Mauro Carvalho Chehab | 06eeefe | 2017-05-18 08:13:28 -0300 | [diff] [blame] | 1390 | /* fall-through */ |
Michael Krufky | 8efd2e2 | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 1391 | case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO: |
| 1392 | request_module("ir-kbd-i2c"); |
Michael Krufky | 6fcecce | 2007-08-24 01:32:31 -0300 | [diff] [blame] | 1393 | } |
| 1394 | |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1395 | /* Sets device info at pci_dev */ |
| 1396 | pci_set_drvdata(pci_dev, dev); |
| 1397 | |
Hans Verkuil | ccd6f1d | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 1398 | dev->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24); |
Hans Verkuil | c5a8614 | 2012-05-11 10:45:18 -0300 | [diff] [blame] | 1399 | |
Hans Verkuil | 078859a | 2014-08-29 06:08:07 -0300 | [diff] [blame] | 1400 | /* Maintain a reference so cx88-blackbird can query the 8800 device. */ |
| 1401 | core->v4ldev = dev; |
| 1402 | |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1403 | /* initial device configuration */ |
| 1404 | mutex_lock(&core->lock); |
Devin Heitmueller | 4e0973a | 2014-09-20 09:23:44 -0300 | [diff] [blame] | 1405 | cx88_set_tvnorm(core, V4L2_STD_NTSC_M); |
Hans Verkuil | 8c7cb12 | 2012-05-11 09:07:45 -0300 | [diff] [blame] | 1406 | v4l2_ctrl_handler_setup(&core->video_hdl); |
| 1407 | v4l2_ctrl_handler_setup(&core->audio_hdl); |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1408 | cx88_video_mux(core, 0); |
| 1409 | |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1410 | q = &dev->vb2_vidq; |
| 1411 | q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 1412 | q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ; |
| 1413 | q->gfp_flags = GFP_DMA32; |
| 1414 | q->min_buffers_needed = 2; |
| 1415 | q->drv_priv = dev; |
| 1416 | q->buf_struct_size = sizeof(struct cx88_buffer); |
| 1417 | q->ops = &cx8800_video_qops; |
| 1418 | q->mem_ops = &vb2_dma_sg_memops; |
| 1419 | q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC; |
| 1420 | q->lock = &core->lock; |
Hans Verkuil | 2bc46b3 | 2016-02-15 12:37:15 -0200 | [diff] [blame] | 1421 | q->dev = &dev->pci->dev; |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1422 | |
| 1423 | err = vb2_queue_init(q); |
| 1424 | if (err < 0) |
| 1425 | goto fail_unreg; |
| 1426 | |
| 1427 | q = &dev->vb2_vbiq; |
| 1428 | q->type = V4L2_BUF_TYPE_VBI_CAPTURE; |
| 1429 | q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ; |
| 1430 | q->gfp_flags = GFP_DMA32; |
| 1431 | q->min_buffers_needed = 2; |
| 1432 | q->drv_priv = dev; |
| 1433 | q->buf_struct_size = sizeof(struct cx88_buffer); |
| 1434 | q->ops = &cx8800_vbi_qops; |
| 1435 | q->mem_ops = &vb2_dma_sg_memops; |
| 1436 | q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC; |
| 1437 | q->lock = &core->lock; |
Hans Verkuil | 2bc46b3 | 2016-02-15 12:37:15 -0200 | [diff] [blame] | 1438 | q->dev = &dev->pci->dev; |
Hans Verkuil | 0b6b630 | 2014-09-20 09:22:18 -0300 | [diff] [blame] | 1439 | |
| 1440 | err = vb2_queue_init(q); |
| 1441 | if (err < 0) |
| 1442 | goto fail_unreg; |
| 1443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | /* register v4l devices */ |
Hans Verkuil | 34080bc | 2015-03-09 13:34:00 -0300 | [diff] [blame] | 1445 | cx88_vdev_init(core, dev->pci, &dev->video_dev, |
| 1446 | &cx8800_video_template, "video"); |
| 1447 | video_set_drvdata(&dev->video_dev, dev); |
| 1448 | dev->video_dev.ctrl_handler = &core->video_hdl; |
| 1449 | dev->video_dev.queue = &dev->vb2_vidq; |
Hans Verkuil | 2161536 | 2019-06-17 05:36:16 -0400 | [diff] [blame] | 1450 | dev->video_dev.device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING | |
| 1451 | V4L2_CAP_VIDEO_CAPTURE; |
| 1452 | if (core->board.tuner_type != UNSET) |
| 1453 | dev->video_dev.device_caps |= V4L2_CAP_TUNER; |
Hans Verkuil | 34080bc | 2015-03-09 13:34:00 -0300 | [diff] [blame] | 1454 | err = video_register_device(&dev->video_dev, VFL_TYPE_GRABBER, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | video_nr[core->nr]); |
| 1456 | if (err < 0) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1457 | pr_err("can't register video device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | goto fail_unreg; |
| 1459 | } |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1460 | pr_info("registered device %s [v4l2]\n", |
| 1461 | video_device_node_name(&dev->video_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | |
Hans Verkuil | 34080bc | 2015-03-09 13:34:00 -0300 | [diff] [blame] | 1463 | cx88_vdev_init(core, dev->pci, &dev->vbi_dev, |
| 1464 | &cx8800_vbi_template, "vbi"); |
| 1465 | video_set_drvdata(&dev->vbi_dev, dev); |
| 1466 | dev->vbi_dev.queue = &dev->vb2_vbiq; |
Hans Verkuil | 2161536 | 2019-06-17 05:36:16 -0400 | [diff] [blame] | 1467 | dev->vbi_dev.device_caps = V4L2_CAP_READWRITE | V4L2_CAP_STREAMING | |
| 1468 | V4L2_CAP_VBI_CAPTURE; |
| 1469 | if (core->board.tuner_type != UNSET) |
| 1470 | dev->vbi_dev.device_caps |= V4L2_CAP_TUNER; |
Hans Verkuil | 34080bc | 2015-03-09 13:34:00 -0300 | [diff] [blame] | 1471 | err = video_register_device(&dev->vbi_dev, VFL_TYPE_VBI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | vbi_nr[core->nr]); |
| 1473 | if (err < 0) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1474 | pr_err("can't register vbi device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | goto fail_unreg; |
| 1476 | } |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1477 | pr_info("registered device %s\n", |
| 1478 | video_device_node_name(&dev->vbi_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1480 | if (core->board.radio.type == CX88_RADIO) { |
Hans Verkuil | 34080bc | 2015-03-09 13:34:00 -0300 | [diff] [blame] | 1481 | cx88_vdev_init(core, dev->pci, &dev->radio_dev, |
| 1482 | &cx8800_radio_template, "radio"); |
| 1483 | video_set_drvdata(&dev->radio_dev, dev); |
| 1484 | dev->radio_dev.ctrl_handler = &core->audio_hdl; |
Hans Verkuil | 2161536 | 2019-06-17 05:36:16 -0400 | [diff] [blame] | 1485 | dev->radio_dev.device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER; |
Hans Verkuil | 34080bc | 2015-03-09 13:34:00 -0300 | [diff] [blame] | 1486 | err = video_register_device(&dev->radio_dev, VFL_TYPE_RADIO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | radio_nr[core->nr]); |
| 1488 | if (err < 0) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1489 | pr_err("can't register radio device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | goto fail_unreg; |
| 1491 | } |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1492 | pr_info("registered device %s\n", |
| 1493 | video_device_node_name(&dev->radio_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | } |
| 1495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | /* start tvaudio thread */ |
Hans Verkuil | c39ba330 | 2014-08-29 07:45:00 -0300 | [diff] [blame] | 1497 | if (core->board.tuner_type != UNSET) { |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1498 | core->kthread = kthread_run(cx88_audio_thread, |
| 1499 | core, "cx88 tvaudio"); |
Cyrill Gorcunov | 32b78de | 2007-07-19 11:44:11 -0300 | [diff] [blame] | 1500 | if (IS_ERR(core->kthread)) { |
| 1501 | err = PTR_ERR(core->kthread); |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1502 | pr_err("failed to create cx88 audio thread, err=%d\n", |
| 1503 | err); |
Cyrill Gorcunov | 32b78de | 2007-07-19 11:44:11 -0300 | [diff] [blame] | 1504 | } |
| 1505 | } |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1506 | mutex_unlock(&core->lock); |
| 1507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | return 0; |
| 1509 | |
| 1510 | fail_unreg: |
| 1511 | cx8800_unregister_video(dev); |
| 1512 | free_irq(pci_dev->irq, dev); |
Mauro Carvalho Chehab | 121ec13 | 2011-02-14 07:01:51 -0300 | [diff] [blame] | 1513 | mutex_unlock(&core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | fail_core: |
Hans Verkuil | 078859a | 2014-08-29 06:08:07 -0300 | [diff] [blame] | 1515 | core->v4ldev = NULL; |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1516 | cx88_core_put(core, dev->pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | fail_free: |
| 1518 | kfree(dev); |
| 1519 | return err; |
| 1520 | } |
| 1521 | |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1522 | static void cx8800_finidev(struct pci_dev *pci_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1524 | struct cx8800_dev *dev = pci_get_drvdata(pci_dev); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1525 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | |
| 1527 | /* stop thread */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1528 | if (core->kthread) { |
| 1529 | kthread_stop(core->kthread); |
| 1530 | core->kthread = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | } |
| 1532 | |
Marton Balint | b12203d | 2008-03-26 02:07:35 -0300 | [diff] [blame] | 1533 | if (core->ir) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 1534 | cx88_ir_stop(core); |
Marton Balint | b12203d | 2008-03-26 02:07:35 -0300 | [diff] [blame] | 1535 | |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1536 | cx88_shutdown(core); /* FIXME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | |
| 1538 | /* unregister stuff */ |
| 1539 | |
| 1540 | free_irq(pci_dev->irq, dev); |
| 1541 | cx8800_unregister_video(dev); |
Hans Verkuil | 98822de | 2014-09-05 09:37:09 -0300 | [diff] [blame] | 1542 | pci_disable_device(pci_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | |
Hans Verkuil | 078859a | 2014-08-29 06:08:07 -0300 | [diff] [blame] | 1544 | core->v4ldev = NULL; |
| 1545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | /* free memory */ |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1547 | cx88_core_put(core, dev->pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | kfree(dev); |
| 1549 | } |
| 1550 | |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 1551 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state) |
| 1553 | { |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 1554 | struct cx8800_dev *dev = pci_get_drvdata(pci_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | struct cx88_core *core = dev->core; |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1556 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | |
| 1558 | /* stop video+vbi capture */ |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1559 | spin_lock_irqsave(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | if (!list_empty(&dev->vidq.active)) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1561 | pr_info("suspend video\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | stop_video_dma(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | } |
| 1564 | if (!list_empty(&dev->vbiq.active)) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1565 | pr_info("suspend vbi\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | cx8800_stop_vbi_dma(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | } |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1568 | spin_unlock_irqrestore(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | |
Mauro Carvalho Chehab | 13595a5 | 2007-10-01 08:51:39 -0300 | [diff] [blame] | 1570 | if (core->ir) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 1571 | cx88_ir_stop(core); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | /* FIXME -- shutdown device */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1573 | cx88_shutdown(core); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | |
| 1575 | pci_save_state(pci_dev); |
Mauro Carvalho Chehab | 399426c | 2016-11-19 19:27:30 -0200 | [diff] [blame] | 1576 | if (pci_set_power_state(pci_dev, |
| 1577 | pci_choose_state(pci_dev, state)) != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | pci_disable_device(pci_dev); |
| 1579 | dev->state.disabled = 1; |
| 1580 | } |
| 1581 | return 0; |
| 1582 | } |
| 1583 | |
| 1584 | static int cx8800_resume(struct pci_dev *pci_dev) |
| 1585 | { |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 1586 | struct cx8800_dev *dev = pci_get_drvdata(pci_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | struct cx88_core *core = dev->core; |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1588 | unsigned long flags; |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1589 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | |
| 1591 | if (dev->state.disabled) { |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1592 | err = pci_enable_device(pci_dev); |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1593 | if (err) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1594 | pr_err("can't enable device\n"); |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1595 | return err; |
| 1596 | } |
| 1597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | dev->state.disabled = 0; |
| 1599 | } |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1600 | err = pci_set_power_state(pci_dev, PCI_D0); |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1601 | if (err) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1602 | pr_err("can't set power state\n"); |
Mauro Carvalho Chehab | 08adb9e | 2005-09-09 13:03:55 -0700 | [diff] [blame] | 1603 | pci_disable_device(pci_dev); |
| 1604 | dev->state.disabled = 1; |
| 1605 | |
| 1606 | return err; |
| 1607 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | pci_restore_state(pci_dev); |
| 1609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | /* FIXME: re-initialize hardware */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1611 | cx88_reset(core); |
Mauro Carvalho Chehab | 13595a5 | 2007-10-01 08:51:39 -0300 | [diff] [blame] | 1612 | if (core->ir) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 1613 | cx88_ir_start(core); |
Mauro Carvalho Chehab | 13595a5 | 2007-10-01 08:51:39 -0300 | [diff] [blame] | 1614 | |
| 1615 | cx_set(MO_PCI_INTMSK, core->pci_irqmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | |
| 1617 | /* restart video+vbi capture */ |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1618 | spin_lock_irqsave(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | if (!list_empty(&dev->vidq.active)) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1620 | pr_info("resume video\n"); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1621 | restart_video_queue(dev, &dev->vidq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | } |
| 1623 | if (!list_empty(&dev->vbiq.active)) { |
Mauro Carvalho Chehab | 65bc2fe | 2016-11-13 10:07:38 -0200 | [diff] [blame] | 1624 | pr_info("resume vbi\n"); |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1625 | cx8800_restart_vbi_queue(dev, &dev->vbiq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | } |
Alexey Khoroshilov | 5ddfbbb | 2013-04-13 18:52:04 -0300 | [diff] [blame] | 1627 | spin_unlock_irqrestore(&dev->slock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | |
| 1629 | return 0; |
| 1630 | } |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 1631 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
| 1633 | /* ----------------------------------------------------------- */ |
| 1634 | |
lawrence rust | 2e4e98e | 2010-08-25 09:50:20 -0300 | [diff] [blame] | 1635 | static const struct pci_device_id cx8800_pci_tbl[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | { |
| 1637 | .vendor = 0x14f1, |
| 1638 | .device = 0x8800, |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 1639 | .subvendor = PCI_ANY_ID, |
| 1640 | .subdevice = PCI_ANY_ID, |
Mauro Carvalho Chehab | 7b61ba8 | 2016-11-16 06:59:49 -0200 | [diff] [blame] | 1641 | }, { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | /* --- end of list --- */ |
| 1643 | } |
| 1644 | }; |
| 1645 | MODULE_DEVICE_TABLE(pci, cx8800_pci_tbl); |
| 1646 | |
| 1647 | static struct pci_driver cx8800_pci_driver = { |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 1648 | .name = "cx8800", |
| 1649 | .id_table = cx8800_pci_tbl, |
| 1650 | .probe = cx8800_initdev, |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1651 | .remove = cx8800_finidev, |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 1652 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | .suspend = cx8800_suspend, |
| 1654 | .resume = cx8800_resume, |
Alexey Dobriyan | 17bc98a | 2006-08-12 22:01:27 -0300 | [diff] [blame] | 1655 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | }; |
| 1657 | |
Sachin Kamat | 06333e0 | 2013-09-20 05:32:07 -0300 | [diff] [blame] | 1658 | module_pci_driver(cx8800_pci_driver); |