Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 3 | * Support for a cx23416 mpeg encoder via cx2388x host port. |
| 4 | * "blackbird" reference design. |
| 5 | * |
Jelle Foks | f8de18d | 2008-11-20 07:07:45 -0300 | [diff] [blame] | 6 | * (c) 2004 Jelle Foks <jelle@foks.us> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * (c) 2004 Gerd Knorr <kraxel@bytesex.org> |
| 8 | * |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 9 | * (c) 2005-2006 Mauro Carvalho Chehab <mchehab@infradead.org> |
| 10 | * - video_ioctl2 conversion |
| 11 | * |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 12 | * Includes parts from the ivtv driver <http://sourceforge.net/projects/ivtv/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; either version 2 of the License, or |
| 17 | * (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 27 | */ |
| 28 | |
| 29 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/fs.h> |
| 33 | #include <linux/delay.h> |
| 34 | #include <linux/device.h> |
| 35 | #include <linux/firmware.h> |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 36 | #include <media/v4l2-common.h> |
Hans Verkuil | 35ea11f | 2008-07-20 08:12:02 -0300 | [diff] [blame] | 37 | #include <media/v4l2-ioctl.h> |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 38 | #include <media/cx2341x.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | #include "cx88.h" |
| 41 | |
| 42 | MODULE_DESCRIPTION("driver for cx2388x/cx23416 based mpeg encoder cards"); |
Jelle Foks | f8de18d | 2008-11-20 07:07:45 -0300 | [diff] [blame] | 43 | MODULE_AUTHOR("Jelle Foks <jelle@foks.us>, Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | MODULE_LICENSE("GPL"); |
Mauro Carvalho Chehab | 1990d50 | 2011-06-24 14:45:49 -0300 | [diff] [blame] | 45 | MODULE_VERSION(CX88_VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Catalin Climov | 3162942 | 2005-11-08 21:36:17 -0800 | [diff] [blame] | 47 | static unsigned int mpegbufs = 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | module_param(mpegbufs,int,0644); |
| 49 | MODULE_PARM_DESC(mpegbufs,"number of mpeg buffers, range 2-32"); |
| 50 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 51 | static unsigned int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | module_param(debug,int,0644); |
| 53 | MODULE_PARM_DESC(debug,"enable debug messages [blackbird]"); |
| 54 | |
| 55 | #define dprintk(level,fmt, arg...) if (debug >= level) \ |
| 56 | printk(KERN_DEBUG "%s/2-bb: " fmt, dev->core->name , ## arg) |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | /* ------------------------------------------------------------------ */ |
| 60 | |
Hans Verkuil | 2547223 | 2007-05-30 09:39:46 -0300 | [diff] [blame] | 61 | #define BLACKBIRD_FIRM_IMAGE_SIZE 376836 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | /* defines below are from ivtv-driver.h */ |
| 64 | |
| 65 | #define IVTV_CMD_HW_BLOCKS_RST 0xFFFFFFFF |
| 66 | |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 67 | /* Firmware API commands */ |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 68 | #define IVTV_API_STD_TIMEOUT 500 |
| 69 | |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 70 | enum blackbird_capture_type { |
| 71 | BLACKBIRD_MPEG_CAPTURE, |
| 72 | BLACKBIRD_RAW_CAPTURE, |
| 73 | BLACKBIRD_RAW_PASSTHRU_CAPTURE |
| 74 | }; |
| 75 | enum blackbird_capture_bits { |
| 76 | BLACKBIRD_RAW_BITS_NONE = 0x00, |
| 77 | BLACKBIRD_RAW_BITS_YUV_CAPTURE = 0x01, |
| 78 | BLACKBIRD_RAW_BITS_PCM_CAPTURE = 0x02, |
| 79 | BLACKBIRD_RAW_BITS_VBI_CAPTURE = 0x04, |
| 80 | BLACKBIRD_RAW_BITS_PASSTHRU_CAPTURE = 0x08, |
| 81 | BLACKBIRD_RAW_BITS_TO_HOST_CAPTURE = 0x10 |
| 82 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 83 | enum blackbird_capture_end { |
| 84 | BLACKBIRD_END_AT_GOP, /* stop at the end of gop, generate irq */ |
| 85 | BLACKBIRD_END_NOW, /* stop immediately, no irq */ |
| 86 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 87 | enum blackbird_framerate { |
| 88 | BLACKBIRD_FRAMERATE_NTSC_30, /* NTSC: 30fps */ |
| 89 | BLACKBIRD_FRAMERATE_PAL_25 /* PAL: 25fps */ |
| 90 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 91 | enum blackbird_stream_port { |
| 92 | BLACKBIRD_OUTPUT_PORT_MEMORY, |
| 93 | BLACKBIRD_OUTPUT_PORT_STREAMING, |
| 94 | BLACKBIRD_OUTPUT_PORT_SERIAL |
| 95 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 96 | enum blackbird_data_xfer_status { |
| 97 | BLACKBIRD_MORE_BUFFERS_FOLLOW, |
| 98 | BLACKBIRD_LAST_BUFFER, |
| 99 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 100 | enum blackbird_picture_mask { |
| 101 | BLACKBIRD_PICTURE_MASK_NONE, |
| 102 | BLACKBIRD_PICTURE_MASK_I_FRAMES, |
| 103 | BLACKBIRD_PICTURE_MASK_I_P_FRAMES = 0x3, |
| 104 | BLACKBIRD_PICTURE_MASK_ALL_FRAMES = 0x7, |
| 105 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 106 | enum blackbird_vbi_mode_bits { |
| 107 | BLACKBIRD_VBI_BITS_SLICED, |
| 108 | BLACKBIRD_VBI_BITS_RAW, |
| 109 | }; |
| 110 | enum blackbird_vbi_insertion_bits { |
| 111 | BLACKBIRD_VBI_BITS_INSERT_IN_XTENSION_USR_DATA, |
| 112 | BLACKBIRD_VBI_BITS_INSERT_IN_PRIVATE_PACKETS = 0x1 << 1, |
| 113 | BLACKBIRD_VBI_BITS_SEPARATE_STREAM = 0x2 << 1, |
| 114 | BLACKBIRD_VBI_BITS_SEPARATE_STREAM_USR_DATA = 0x4 << 1, |
| 115 | BLACKBIRD_VBI_BITS_SEPARATE_STREAM_PRV_DATA = 0x5 << 1, |
| 116 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 117 | enum blackbird_dma_unit { |
| 118 | BLACKBIRD_DMA_BYTES, |
| 119 | BLACKBIRD_DMA_FRAMES, |
| 120 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 121 | enum blackbird_dma_transfer_status_bits { |
| 122 | BLACKBIRD_DMA_TRANSFER_BITS_DONE = 0x01, |
| 123 | BLACKBIRD_DMA_TRANSFER_BITS_ERROR = 0x04, |
| 124 | BLACKBIRD_DMA_TRANSFER_BITS_LL_ERROR = 0x10, |
| 125 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 126 | enum blackbird_pause { |
| 127 | BLACKBIRD_PAUSE_ENCODING, |
| 128 | BLACKBIRD_RESUME_ENCODING, |
| 129 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 130 | enum blackbird_copyright { |
| 131 | BLACKBIRD_COPYRIGHT_OFF, |
| 132 | BLACKBIRD_COPYRIGHT_ON, |
| 133 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 134 | enum blackbird_notification_type { |
| 135 | BLACKBIRD_NOTIFICATION_REFRESH, |
| 136 | }; |
| 137 | enum blackbird_notification_status { |
| 138 | BLACKBIRD_NOTIFICATION_OFF, |
| 139 | BLACKBIRD_NOTIFICATION_ON, |
| 140 | }; |
| 141 | enum blackbird_notification_mailbox { |
| 142 | BLACKBIRD_NOTIFICATION_NO_MAILBOX = -1, |
| 143 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 144 | enum blackbird_field1_lines { |
| 145 | BLACKBIRD_FIELD1_SAA7114 = 0x00EF, /* 239 */ |
| 146 | BLACKBIRD_FIELD1_SAA7115 = 0x00F0, /* 240 */ |
| 147 | BLACKBIRD_FIELD1_MICRONAS = 0x0105, /* 261 */ |
| 148 | }; |
| 149 | enum blackbird_field2_lines { |
| 150 | BLACKBIRD_FIELD2_SAA7114 = 0x00EF, /* 239 */ |
| 151 | BLACKBIRD_FIELD2_SAA7115 = 0x00F0, /* 240 */ |
| 152 | BLACKBIRD_FIELD2_MICRONAS = 0x0106, /* 262 */ |
| 153 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 154 | enum blackbird_custom_data_type { |
| 155 | BLACKBIRD_CUSTOM_EXTENSION_USR_DATA, |
| 156 | BLACKBIRD_CUSTOM_PRIVATE_PACKET, |
| 157 | }; |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 158 | enum blackbird_mute { |
| 159 | BLACKBIRD_UNMUTE, |
| 160 | BLACKBIRD_MUTE, |
| 161 | }; |
| 162 | enum blackbird_mute_video_mask { |
| 163 | BLACKBIRD_MUTE_VIDEO_V_MASK = 0x0000FF00, |
| 164 | BLACKBIRD_MUTE_VIDEO_U_MASK = 0x00FF0000, |
| 165 | BLACKBIRD_MUTE_VIDEO_Y_MASK = 0xFF000000, |
| 166 | }; |
| 167 | enum blackbird_mute_video_shift { |
| 168 | BLACKBIRD_MUTE_VIDEO_V_SHIFT = 8, |
| 169 | BLACKBIRD_MUTE_VIDEO_U_SHIFT = 16, |
| 170 | BLACKBIRD_MUTE_VIDEO_Y_SHIFT = 24, |
| 171 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | /* Registers */ |
| 174 | #define IVTV_REG_ENC_SDRAM_REFRESH (0x07F8 /*| IVTV_REG_OFFSET*/) |
| 175 | #define IVTV_REG_ENC_SDRAM_PRECHARGE (0x07FC /*| IVTV_REG_OFFSET*/) |
| 176 | #define IVTV_REG_SPU (0x9050 /*| IVTV_REG_OFFSET*/) |
| 177 | #define IVTV_REG_HW_BLOCKS (0x9054 /*| IVTV_REG_OFFSET*/) |
| 178 | #define IVTV_REG_VPU (0x9058 /*| IVTV_REG_OFFSET*/) |
| 179 | #define IVTV_REG_APU (0xA064 /*| IVTV_REG_OFFSET*/) |
| 180 | |
| 181 | /* ------------------------------------------------------------------ */ |
| 182 | |
| 183 | static void host_setup(struct cx88_core *core) |
| 184 | { |
| 185 | /* toggle reset of the host */ |
| 186 | cx_write(MO_GPHST_SOFT_RST, 1); |
| 187 | udelay(100); |
| 188 | cx_write(MO_GPHST_SOFT_RST, 0); |
| 189 | udelay(100); |
| 190 | |
| 191 | /* host port setup */ |
| 192 | cx_write(MO_GPHST_WSC, 0x44444444U); |
| 193 | cx_write(MO_GPHST_XFR, 0); |
| 194 | cx_write(MO_GPHST_WDTH, 15); |
| 195 | cx_write(MO_GPHST_HDSHK, 0); |
| 196 | cx_write(MO_GPHST_MUX16, 0x44448888U); |
| 197 | cx_write(MO_GPHST_MODE, 0); |
| 198 | } |
| 199 | |
| 200 | /* ------------------------------------------------------------------ */ |
| 201 | |
| 202 | #define P1_MDATA0 0x390000 |
| 203 | #define P1_MDATA1 0x390001 |
| 204 | #define P1_MDATA2 0x390002 |
| 205 | #define P1_MDATA3 0x390003 |
| 206 | #define P1_MADDR2 0x390004 |
| 207 | #define P1_MADDR1 0x390005 |
| 208 | #define P1_MADDR0 0x390006 |
| 209 | #define P1_RDATA0 0x390008 |
| 210 | #define P1_RDATA1 0x390009 |
| 211 | #define P1_RDATA2 0x39000A |
| 212 | #define P1_RDATA3 0x39000B |
| 213 | #define P1_RADDR0 0x39000C |
| 214 | #define P1_RADDR1 0x39000D |
| 215 | #define P1_RRDWR 0x39000E |
| 216 | |
| 217 | static int wait_ready_gpio0_bit1(struct cx88_core *core, u32 state) |
| 218 | { |
| 219 | unsigned long timeout = jiffies + msecs_to_jiffies(1); |
| 220 | u32 gpio0,need; |
| 221 | |
| 222 | need = state ? 2 : 0; |
| 223 | for (;;) { |
| 224 | gpio0 = cx_read(MO_GP0_IO) & 2; |
| 225 | if (need == gpio0) |
| 226 | return 0; |
| 227 | if (time_after(jiffies,timeout)) |
| 228 | return -1; |
| 229 | udelay(1); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | static int memory_write(struct cx88_core *core, u32 address, u32 value) |
| 234 | { |
| 235 | /* Warning: address is dword address (4 bytes) */ |
| 236 | cx_writeb(P1_MDATA0, (unsigned int)value); |
| 237 | cx_writeb(P1_MDATA1, (unsigned int)(value >> 8)); |
| 238 | cx_writeb(P1_MDATA2, (unsigned int)(value >> 16)); |
| 239 | cx_writeb(P1_MDATA3, (unsigned int)(value >> 24)); |
| 240 | cx_writeb(P1_MADDR2, (unsigned int)(address >> 16) | 0x40); |
| 241 | cx_writeb(P1_MADDR1, (unsigned int)(address >> 8)); |
| 242 | cx_writeb(P1_MADDR0, (unsigned int)address); |
| 243 | cx_read(P1_MDATA0); |
| 244 | cx_read(P1_MADDR0); |
| 245 | |
| 246 | return wait_ready_gpio0_bit1(core,1); |
| 247 | } |
| 248 | |
| 249 | static int memory_read(struct cx88_core *core, u32 address, u32 *value) |
| 250 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 251 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | u32 val; |
| 253 | |
| 254 | /* Warning: address is dword address (4 bytes) */ |
| 255 | cx_writeb(P1_MADDR2, (unsigned int)(address >> 16) & ~0xC0); |
| 256 | cx_writeb(P1_MADDR1, (unsigned int)(address >> 8)); |
| 257 | cx_writeb(P1_MADDR0, (unsigned int)address); |
| 258 | cx_read(P1_MADDR0); |
| 259 | |
| 260 | retval = wait_ready_gpio0_bit1(core,1); |
| 261 | |
| 262 | cx_writeb(P1_MDATA3, 0); |
| 263 | val = (unsigned char)cx_read(P1_MDATA3) << 24; |
| 264 | cx_writeb(P1_MDATA2, 0); |
| 265 | val |= (unsigned char)cx_read(P1_MDATA2) << 16; |
| 266 | cx_writeb(P1_MDATA1, 0); |
| 267 | val |= (unsigned char)cx_read(P1_MDATA1) << 8; |
| 268 | cx_writeb(P1_MDATA0, 0); |
| 269 | val |= (unsigned char)cx_read(P1_MDATA0); |
| 270 | |
| 271 | *value = val; |
| 272 | return retval; |
| 273 | } |
| 274 | |
| 275 | static int register_write(struct cx88_core *core, u32 address, u32 value) |
| 276 | { |
| 277 | cx_writeb(P1_RDATA0, (unsigned int)value); |
| 278 | cx_writeb(P1_RDATA1, (unsigned int)(value >> 8)); |
| 279 | cx_writeb(P1_RDATA2, (unsigned int)(value >> 16)); |
| 280 | cx_writeb(P1_RDATA3, (unsigned int)(value >> 24)); |
| 281 | cx_writeb(P1_RADDR0, (unsigned int)address); |
| 282 | cx_writeb(P1_RADDR1, (unsigned int)(address >> 8)); |
| 283 | cx_writeb(P1_RRDWR, 1); |
| 284 | cx_read(P1_RDATA0); |
| 285 | cx_read(P1_RADDR0); |
| 286 | |
| 287 | return wait_ready_gpio0_bit1(core,1); |
| 288 | } |
| 289 | |
| 290 | |
| 291 | static int register_read(struct cx88_core *core, u32 address, u32 *value) |
| 292 | { |
| 293 | int retval; |
| 294 | u32 val; |
| 295 | |
| 296 | cx_writeb(P1_RADDR0, (unsigned int)address); |
| 297 | cx_writeb(P1_RADDR1, (unsigned int)(address >> 8)); |
| 298 | cx_writeb(P1_RRDWR, 0); |
| 299 | cx_read(P1_RADDR0); |
| 300 | |
| 301 | retval = wait_ready_gpio0_bit1(core,1); |
| 302 | val = (unsigned char)cx_read(P1_RDATA0); |
| 303 | val |= (unsigned char)cx_read(P1_RDATA1) << 8; |
| 304 | val |= (unsigned char)cx_read(P1_RDATA2) << 16; |
| 305 | val |= (unsigned char)cx_read(P1_RDATA3) << 24; |
| 306 | |
| 307 | *value = val; |
| 308 | return retval; |
| 309 | } |
| 310 | |
| 311 | /* ------------------------------------------------------------------ */ |
| 312 | |
Hans Verkuil | ea48c13 | 2007-12-12 07:04:58 -0300 | [diff] [blame] | 313 | static int blackbird_mbox_func(void *priv, u32 command, int in, int out, u32 data[CX2341X_MBOX_MAX_DATA]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 315 | struct cx8802_dev *dev = priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | unsigned long timeout; |
| 317 | u32 value, flag, retval; |
| 318 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 320 | dprintk(1,"%s: 0x%X\n", __func__, command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | /* this may not be 100% safe if we can't read any memory location |
| 323 | without side effects */ |
| 324 | memory_read(dev->core, dev->mailbox - 4, &value); |
| 325 | if (value != 0x12345678) { |
| 326 | dprintk(0, "Firmware and/or mailbox pointer not initialized or corrupted\n"); |
| 327 | return -1; |
| 328 | } |
| 329 | |
| 330 | memory_read(dev->core, dev->mailbox, &flag); |
| 331 | if (flag) { |
| 332 | dprintk(0, "ERROR: Mailbox appears to be in use (%x)\n", flag); |
| 333 | return -1; |
| 334 | } |
| 335 | |
| 336 | flag |= 1; /* tell 'em we're working on it */ |
| 337 | memory_write(dev->core, dev->mailbox, flag); |
| 338 | |
| 339 | /* write command + args + fill remaining with zeros */ |
| 340 | memory_write(dev->core, dev->mailbox + 1, command); /* command code */ |
| 341 | memory_write(dev->core, dev->mailbox + 3, IVTV_API_STD_TIMEOUT); /* timeout */ |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 342 | for (i = 0; i < in; i++) { |
| 343 | memory_write(dev->core, dev->mailbox + 4 + i, data[i]); |
| 344 | dprintk(1, "API Input %d = %d\n", i, data[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | } |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 346 | for (; i < CX2341X_MBOX_MAX_DATA; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | memory_write(dev->core, dev->mailbox + 4 + i, 0); |
| 348 | |
| 349 | flag |= 3; /* tell 'em we're done writing */ |
| 350 | memory_write(dev->core, dev->mailbox, flag); |
| 351 | |
| 352 | /* wait for firmware to handle the API command */ |
| 353 | timeout = jiffies + msecs_to_jiffies(10); |
| 354 | for (;;) { |
| 355 | memory_read(dev->core, dev->mailbox, &flag); |
| 356 | if (0 != (flag & 4)) |
| 357 | break; |
| 358 | if (time_after(jiffies,timeout)) { |
| 359 | dprintk(0, "ERROR: API Mailbox timeout\n"); |
| 360 | return -1; |
| 361 | } |
| 362 | udelay(10); |
| 363 | } |
| 364 | |
| 365 | /* read output values */ |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 366 | for (i = 0; i < out; i++) { |
| 367 | memory_read(dev->core, dev->mailbox + 4 + i, data + i); |
| 368 | dprintk(1, "API Output %d = %d\n", i, data[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | memory_read(dev->core, dev->mailbox + 2, &retval); |
| 372 | dprintk(1, "API result = %d\n",retval); |
| 373 | |
| 374 | flag = 0; |
| 375 | memory_write(dev->core, dev->mailbox, flag); |
| 376 | return retval; |
| 377 | } |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 378 | /* ------------------------------------------------------------------ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 380 | /* We don't need to call the API often, so using just one mailbox will probably suffice */ |
| 381 | static int blackbird_api_cmd(struct cx8802_dev *dev, u32 command, |
| 382 | u32 inputcnt, u32 outputcnt, ...) |
| 383 | { |
| 384 | u32 data[CX2341X_MBOX_MAX_DATA]; |
| 385 | va_list vargs; |
| 386 | int i, err; |
| 387 | |
| 388 | va_start(vargs, outputcnt); |
| 389 | |
| 390 | for (i = 0; i < inputcnt; i++) { |
| 391 | data[i] = va_arg(vargs, int); |
| 392 | } |
| 393 | err = blackbird_mbox_func(dev, command, inputcnt, outputcnt, data); |
| 394 | for (i = 0; i < outputcnt; i++) { |
| 395 | int *vptr = va_arg(vargs, int *); |
| 396 | *vptr = data[i]; |
| 397 | } |
| 398 | va_end(vargs); |
| 399 | return err; |
| 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
| 402 | static int blackbird_find_mailbox(struct cx8802_dev *dev) |
| 403 | { |
| 404 | u32 signature[4]={0x12345678, 0x34567812, 0x56781234, 0x78123456}; |
| 405 | int signaturecnt=0; |
| 406 | u32 value; |
| 407 | int i; |
| 408 | |
Michael Krufky | e0099e9 | 2007-05-30 13:29:32 -0300 | [diff] [blame] | 409 | for (i = 0; i < BLACKBIRD_FIRM_IMAGE_SIZE; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | memory_read(dev->core, i, &value); |
| 411 | if (value == signature[signaturecnt]) |
| 412 | signaturecnt++; |
| 413 | else |
| 414 | signaturecnt = 0; |
| 415 | if (4 == signaturecnt) { |
| 416 | dprintk(1, "Mailbox signature found\n"); |
| 417 | return i+1; |
| 418 | } |
| 419 | } |
| 420 | dprintk(0, "Mailbox signature values not found!\n"); |
| 421 | return -1; |
| 422 | } |
| 423 | |
| 424 | static int blackbird_load_firmware(struct cx8802_dev *dev) |
| 425 | { |
| 426 | static const unsigned char magic[8] = { |
| 427 | 0xa7, 0x0d, 0x00, 0x00, 0x66, 0xbb, 0x55, 0xaa |
| 428 | }; |
| 429 | const struct firmware *firmware; |
| 430 | int i, retval = 0; |
| 431 | u32 value = 0; |
| 432 | u32 checksum = 0; |
| 433 | u32 *dataptr; |
| 434 | |
| 435 | retval = register_write(dev->core, IVTV_REG_VPU, 0xFFFFFFED); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 436 | retval |= register_write(dev->core, IVTV_REG_HW_BLOCKS, IVTV_CMD_HW_BLOCKS_RST); |
| 437 | retval |= register_write(dev->core, IVTV_REG_ENC_SDRAM_REFRESH, 0x80000640); |
| 438 | retval |= register_write(dev->core, IVTV_REG_ENC_SDRAM_PRECHARGE, 0x1A); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | msleep(1); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 440 | retval |= register_write(dev->core, IVTV_REG_APU, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
| 442 | if (retval < 0) |
| 443 | dprintk(0, "Error with register_write\n"); |
| 444 | |
Michael Krufky | 48c3575 | 2006-05-22 10:32:00 -0300 | [diff] [blame] | 445 | retval = request_firmware(&firmware, CX2341X_FIRM_ENC_FILENAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | &dev->pci->dev); |
Mauro Carvalho Chehab | 674434c | 2005-12-12 00:37:28 -0800 | [diff] [blame] | 447 | |
| 448 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | if (retval != 0) { |
| 450 | dprintk(0, "ERROR: Hotplug firmware request failed (%s).\n", |
Michael Krufky | 48c3575 | 2006-05-22 10:32:00 -0300 | [diff] [blame] | 451 | CX2341X_FIRM_ENC_FILENAME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | dprintk(0, "Please fix your hotplug setup, the board will " |
| 453 | "not work without firmware loaded!\n"); |
| 454 | return -1; |
| 455 | } |
| 456 | |
Hans Verkuil | 2547223 | 2007-05-30 09:39:46 -0300 | [diff] [blame] | 457 | if (firmware->size != BLACKBIRD_FIRM_IMAGE_SIZE) { |
| 458 | dprintk(0, "ERROR: Firmware size mismatch (have %zd, expected %d)\n", |
| 459 | firmware->size, BLACKBIRD_FIRM_IMAGE_SIZE); |
Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 460 | release_firmware(firmware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | return -1; |
| 462 | } |
| 463 | |
| 464 | if (0 != memcmp(firmware->data, magic, 8)) { |
| 465 | dprintk(0, "ERROR: Firmware magic mismatch, wrong file?\n"); |
Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 466 | release_firmware(firmware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | return -1; |
| 468 | } |
| 469 | |
| 470 | /* transfer to the chip */ |
| 471 | dprintk(1,"Loading firmware ...\n"); |
| 472 | dataptr = (u32*)firmware->data; |
| 473 | for (i = 0; i < (firmware->size >> 2); i++) { |
Hans Verkuil | 6ba4c43 | 2012-05-26 09:28:02 -0300 | [diff] [blame] | 474 | value = le32_to_cpu(*dataptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | checksum += ~value; |
| 476 | memory_write(dev->core, i, value); |
| 477 | dataptr++; |
| 478 | } |
| 479 | |
| 480 | /* read back to verify with the checksum */ |
| 481 | for (i--; i >= 0; i--) { |
| 482 | memory_read(dev->core, i, &value); |
| 483 | checksum -= ~value; |
| 484 | } |
| 485 | if (checksum) { |
| 486 | dprintk(0, "ERROR: Firmware load failed (checksum mismatch).\n"); |
Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 487 | release_firmware(firmware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | return -1; |
| 489 | } |
| 490 | release_firmware(firmware); |
| 491 | dprintk(0, "Firmware upload successful.\n"); |
| 492 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 493 | retval |= register_write(dev->core, IVTV_REG_HW_BLOCKS, IVTV_CMD_HW_BLOCKS_RST); |
| 494 | retval |= register_read(dev->core, IVTV_REG_SPU, &value); |
| 495 | retval |= register_write(dev->core, IVTV_REG_SPU, value & 0xFFFFFFFE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | msleep(1); |
| 497 | |
| 498 | retval |= register_read(dev->core, IVTV_REG_VPU, &value); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 499 | retval |= register_write(dev->core, IVTV_REG_VPU, value & 0xFFFFFFE8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
| 501 | if (retval < 0) |
| 502 | dprintk(0, "Error with register_write\n"); |
| 503 | return 0; |
| 504 | } |
| 505 | |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 506 | /** |
| 507 | Settings used by the windows tv app for PVR2000: |
| 508 | ================================================================================================================= |
| 509 | Profile | Codec | Resolution | CBR/VBR | Video Qlty | V. Bitrate | Frmrate | Audio Codec | A. Bitrate | A. Mode |
| 510 | ----------------------------------------------------------------------------------------------------------------- |
| 511 | MPEG-1 | MPEG1 | 352x288PAL | (CBR) | 1000:Optimal | 2000 Kbps | 25fps | MPG1 Layer2 | 224kbps | Stereo |
| 512 | MPEG-2 | MPEG2 | 720x576PAL | VBR | 600 :Good | 4000 Kbps | 25fps | MPG1 Layer2 | 224kbps | Stereo |
| 513 | VCD | MPEG1 | 352x288PAL | (CBR) | 1000:Optimal | 1150 Kbps | 25fps | MPG1 Layer2 | 224kbps | Stereo |
| 514 | DVD | MPEG2 | 720x576PAL | VBR | 600 :Good | 6000 Kbps | 25fps | MPG1 Layer2 | 224kbps | Stereo |
| 515 | DB* DVD | MPEG2 | 720x576PAL | CBR | 600 :Good | 6000 Kbps | 25fps | MPG1 Layer2 | 224kbps | Stereo |
| 516 | ================================================================================================================= |
| 517 | *DB: "DirectBurn" |
| 518 | */ |
Catalin Climov | 3162942 | 2005-11-08 21:36:17 -0800 | [diff] [blame] | 519 | |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 520 | static void blackbird_codec_settings(struct cx8802_dev *dev) |
| 521 | { |
| 522 | /* assign frame size */ |
| 523 | blackbird_api_cmd(dev, CX2341X_ENC_SET_FRAME_SIZE, 2, 0, |
| 524 | dev->height, dev->width); |
| 525 | |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 526 | dev->cxhdl.width = dev->width; |
| 527 | dev->cxhdl.height = dev->height; |
| 528 | cx2341x_handler_set_50hz(&dev->cxhdl, dev->core->tvnorm & V4L2_STD_625_50); |
| 529 | cx2341x_handler_setup(&dev->cxhdl); |
Hans Verkuil | f022156 | 2006-06-18 16:11:06 -0300 | [diff] [blame] | 530 | } |
| 531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | static int blackbird_initialize_codec(struct cx8802_dev *dev) |
| 533 | { |
| 534 | struct cx88_core *core = dev->core; |
| 535 | int version; |
| 536 | int retval; |
| 537 | |
| 538 | dprintk(1,"Initialize codec\n"); |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 539 | retval = blackbird_api_cmd(dev, CX2341X_ENC_PING_FW, 0, 0); /* ping */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | if (retval < 0) { |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 541 | |
| 542 | dev->mpeg_active = 0; |
| 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | /* ping was not successful, reset and upload firmware */ |
| 545 | cx_write(MO_SRST_IO, 0); /* SYS_RSTO=0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | cx_write(MO_SRST_IO, 1); /* SYS_RSTO=1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | retval = blackbird_load_firmware(dev); |
| 548 | if (retval < 0) |
| 549 | return retval; |
| 550 | |
Roel Kluin | 50fa46b | 2008-04-26 11:25:18 -0300 | [diff] [blame] | 551 | retval = blackbird_find_mailbox(dev); |
| 552 | if (retval < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | return -1; |
| 554 | |
Roel Kluin | 50fa46b | 2008-04-26 11:25:18 -0300 | [diff] [blame] | 555 | dev->mailbox = retval; |
| 556 | |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 557 | retval = blackbird_api_cmd(dev, CX2341X_ENC_PING_FW, 0, 0); /* ping */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | if (retval < 0) { |
| 559 | dprintk(0, "ERROR: Firmware ping failed!\n"); |
| 560 | return -1; |
| 561 | } |
| 562 | |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 563 | retval = blackbird_api_cmd(dev, CX2341X_ENC_GET_VERSION, 0, 1, &version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | if (retval < 0) { |
| 565 | dprintk(0, "ERROR: Firmware get encoder version failed!\n"); |
| 566 | return -1; |
| 567 | } |
| 568 | dprintk(0, "Firmware version is 0x%08x\n", version); |
| 569 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
| 571 | cx_write(MO_PINMUX_IO, 0x88); /* 656-8bit IO and enable MPEG parallel IO */ |
| 572 | cx_clear(MO_INPUT_FORMAT, 0x100); /* chroma subcarrier lock to normal? */ |
| 573 | cx_write(MO_VBOS_CONTROL, 0x84A00); /* no 656 mode, 8-bit pixels, disable VBI */ |
| 574 | cx_clear(MO_OUTPUT_FORMAT, 0x0008); /* Normal Y-limits to let the mpeg encoder sync */ |
| 575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | blackbird_codec_settings(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 578 | blackbird_api_cmd(dev, CX2341X_ENC_SET_NUM_VSYNC_LINES, 2, 0, |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 579 | BLACKBIRD_FIELD1_SAA7115, |
Michael Krufky | 8a17ef9 | 2006-04-13 18:43:50 -0300 | [diff] [blame] | 580 | BLACKBIRD_FIELD2_SAA7115 |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 581 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 583 | blackbird_api_cmd(dev, CX2341X_ENC_SET_PLACEHOLDER, 12, 0, |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 584 | BLACKBIRD_CUSTOM_EXTENSION_USR_DATA, |
| 585 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); |
| 586 | |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 587 | return 0; |
| 588 | } |
| 589 | |
| 590 | static int blackbird_start_codec(struct file *file, void *priv) |
| 591 | { |
| 592 | struct cx8802_dev *dev = ((struct cx8802_fh *)priv)->dev; |
| 593 | struct cx88_core *core = dev->core; |
| 594 | /* start capturing to the host interface */ |
| 595 | u32 reg; |
| 596 | |
| 597 | int i; |
| 598 | int lastchange = -1; |
| 599 | int lastval = 0; |
| 600 | |
Mauro Carvalho Chehab | d8f6997 | 2007-12-17 10:35:59 -0300 | [diff] [blame] | 601 | for (i = 0; (i < 10) && (i < (lastchange + 4)); i++) { |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 602 | reg = cx_read(AUD_STATUS); |
| 603 | |
Mauro Carvalho Chehab | d8f6997 | 2007-12-17 10:35:59 -0300 | [diff] [blame] | 604 | dprintk(1, "AUD_STATUS:%dL: 0x%x\n", i, reg); |
| 605 | if ((reg & 0x0F) != lastval) { |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 606 | lastval = reg & 0x0F; |
| 607 | lastchange = i; |
| 608 | } |
| 609 | msleep(100); |
| 610 | } |
| 611 | |
| 612 | /* unmute audio source */ |
| 613 | cx_clear(AUD_VOL_CTL, (1 << 6)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Mauro Carvalho Chehab | d8f6997 | 2007-12-17 10:35:59 -0300 | [diff] [blame] | 615 | blackbird_api_cmd(dev, CX2341X_ENC_REFRESH_INPUT, 0, 0); |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 616 | |
| 617 | /* initialize the video input */ |
| 618 | blackbird_api_cmd(dev, CX2341X_ENC_INITIALIZE_INPUT, 0, 0); |
| 619 | |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 620 | cx2341x_handler_set_busy(&dev->cxhdl, 1); |
| 621 | |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 622 | /* start capturing to the host interface */ |
Michael Krufky | 855dbad | 2006-05-22 10:31:54 -0300 | [diff] [blame] | 623 | blackbird_api_cmd(dev, CX2341X_ENC_START_CAPTURE, 2, 0, |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 624 | BLACKBIRD_MPEG_CAPTURE, |
| 625 | BLACKBIRD_RAW_BITS_NONE |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 626 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 628 | dev->mpeg_active = 1; |
| 629 | return 0; |
| 630 | } |
| 631 | |
| 632 | static int blackbird_stop_codec(struct cx8802_dev *dev) |
| 633 | { |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 634 | blackbird_api_cmd(dev, CX2341X_ENC_STOP_CAPTURE, 3, 0, |
| 635 | BLACKBIRD_END_NOW, |
| 636 | BLACKBIRD_MPEG_CAPTURE, |
| 637 | BLACKBIRD_RAW_BITS_NONE |
| 638 | ); |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 639 | |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 640 | cx2341x_handler_set_busy(&dev->cxhdl, 0); |
| 641 | |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 642 | dev->mpeg_active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | return 0; |
| 644 | } |
| 645 | |
| 646 | /* ------------------------------------------------------------------ */ |
| 647 | |
| 648 | static int bb_buf_setup(struct videobuf_queue *q, |
| 649 | unsigned int *count, unsigned int *size) |
| 650 | { |
| 651 | struct cx8802_fh *fh = q->priv_data; |
| 652 | |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 653 | fh->dev->ts_packet_size = 188 * 4; /* was: 512 */ |
Catalin Climov | 3162942 | 2005-11-08 21:36:17 -0800 | [diff] [blame] | 654 | fh->dev->ts_packet_count = mpegbufs; /* was: 100 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
| 656 | *size = fh->dev->ts_packet_size * fh->dev->ts_packet_count; |
Catalin Climov | 3162942 | 2005-11-08 21:36:17 -0800 | [diff] [blame] | 657 | *count = fh->dev->ts_packet_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | static int |
| 662 | bb_buf_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb, |
| 663 | enum v4l2_field field) |
| 664 | { |
| 665 | struct cx8802_fh *fh = q->priv_data; |
Mauro Carvalho Chehab | c7b0ac0 | 2006-03-10 12:29:15 -0300 | [diff] [blame] | 666 | return cx8802_buf_prepare(q, fh->dev, (struct cx88_buffer*)vb, field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | static void |
| 670 | bb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb) |
| 671 | { |
| 672 | struct cx8802_fh *fh = q->priv_data; |
| 673 | cx8802_buf_queue(fh->dev, (struct cx88_buffer*)vb); |
| 674 | } |
| 675 | |
| 676 | static void |
| 677 | bb_buf_release(struct videobuf_queue *q, struct videobuf_buffer *vb) |
| 678 | { |
Mauro Carvalho Chehab | c7b0ac0 | 2006-03-10 12:29:15 -0300 | [diff] [blame] | 679 | cx88_free_buffer(q, (struct cx88_buffer*)vb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | static struct videobuf_queue_ops blackbird_qops = { |
| 683 | .buf_setup = bb_buf_setup, |
| 684 | .buf_prepare = bb_buf_prepare, |
| 685 | .buf_queue = bb_buf_queue, |
| 686 | .buf_release = bb_buf_release, |
| 687 | }; |
| 688 | |
| 689 | /* ------------------------------------------------------------------ */ |
| 690 | |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 691 | static int vidioc_querycap(struct file *file, void *priv, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 692 | struct v4l2_capability *cap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | { |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 694 | struct cx8802_dev *dev = ((struct cx8802_fh *)priv)->dev; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 695 | struct cx88_core *core = dev->core; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 697 | strcpy(cap->driver, "cx88_blackbird"); |
Hans Verkuil | 902e197 | 2012-05-09 16:23:07 -0300 | [diff] [blame] | 698 | sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci)); |
| 699 | cx88_querycap(file, core, cap); |
Mauro Carvalho Chehab | ed10b06 | 2007-01-20 13:58:39 -0300 | [diff] [blame] | 700 | return 0; |
| 701 | } |
| 702 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 703 | static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 704 | struct v4l2_fmtdesc *f) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | { |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 706 | if (f->index != 0) |
| 707 | return -EINVAL; |
| 708 | |
| 709 | strlcpy(f->description, "MPEG", sizeof(f->description)); |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 710 | f->pixelformat = V4L2_PIX_FMT_MPEG; |
| 711 | return 0; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 712 | } |
| 713 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 714 | static int vidioc_g_fmt_vid_cap (struct file *file, void *priv, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 715 | struct v4l2_format *f) |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 716 | { |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 717 | struct cx8802_fh *fh = priv; |
| 718 | struct cx8802_dev *dev = fh->dev; |
| 719 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 720 | f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG; |
| 721 | f->fmt.pix.bytesperline = 0; |
| 722 | f->fmt.pix.sizeimage = dev->ts_packet_size * dev->ts_packet_count; /* 188 * 4 * 1024; */ |
| 723 | f->fmt.pix.colorspace = 0; |
| 724 | f->fmt.pix.width = dev->width; |
| 725 | f->fmt.pix.height = dev->height; |
| 726 | f->fmt.pix.field = fh->mpegq.field; |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 727 | dprintk(1, "VIDIOC_G_FMT: w: %d, h: %d, f: %d\n", |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 728 | dev->width, dev->height, fh->mpegq.field ); |
| 729 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | } |
| 731 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 732 | static int vidioc_try_fmt_vid_cap (struct file *file, void *priv, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 733 | struct v4l2_format *f) |
| 734 | { |
| 735 | struct cx8802_fh *fh = priv; |
| 736 | struct cx8802_dev *dev = fh->dev; |
| 737 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 738 | f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG; |
| 739 | f->fmt.pix.bytesperline = 0; |
| 740 | f->fmt.pix.sizeimage = dev->ts_packet_size * dev->ts_packet_count; /* 188 * 4 * 1024; */; |
| 741 | f->fmt.pix.colorspace = 0; |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 742 | dprintk(1, "VIDIOC_TRY_FMT: w: %d, h: %d, f: %d\n", |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 743 | dev->width, dev->height, fh->mpegq.field ); |
| 744 | return 0; |
| 745 | } |
| 746 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 747 | static int vidioc_s_fmt_vid_cap (struct file *file, void *priv, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 748 | struct v4l2_format *f) |
| 749 | { |
| 750 | struct cx8802_fh *fh = priv; |
| 751 | struct cx8802_dev *dev = fh->dev; |
| 752 | struct cx88_core *core = dev->core; |
| 753 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 754 | f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG; |
| 755 | f->fmt.pix.bytesperline = 0; |
| 756 | f->fmt.pix.sizeimage = dev->ts_packet_size * dev->ts_packet_count; /* 188 * 4 * 1024; */; |
| 757 | f->fmt.pix.colorspace = 0; |
| 758 | dev->width = f->fmt.pix.width; |
| 759 | dev->height = f->fmt.pix.height; |
| 760 | fh->mpegq.field = f->fmt.pix.field; |
| 761 | cx88_set_scale(core, f->fmt.pix.width, f->fmt.pix.height, f->fmt.pix.field); |
| 762 | blackbird_api_cmd(dev, CX2341X_ENC_SET_FRAME_SIZE, 2, 0, |
| 763 | f->fmt.pix.height, f->fmt.pix.width); |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 764 | dprintk(1, "VIDIOC_S_FMT: w: %d, h: %d, f: %d\n", |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 765 | f->fmt.pix.width, f->fmt.pix.height, f->fmt.pix.field ); |
| 766 | return 0; |
| 767 | } |
| 768 | |
| 769 | static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p) |
| 770 | { |
| 771 | struct cx8802_fh *fh = priv; |
| 772 | return (videobuf_reqbufs(&fh->mpegq, p)); |
| 773 | } |
| 774 | |
| 775 | static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p) |
| 776 | { |
| 777 | struct cx8802_fh *fh = priv; |
| 778 | return (videobuf_querybuf(&fh->mpegq, p)); |
| 779 | } |
| 780 | |
| 781 | static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p) |
| 782 | { |
| 783 | struct cx8802_fh *fh = priv; |
| 784 | return (videobuf_qbuf(&fh->mpegq, p)); |
| 785 | } |
| 786 | |
| 787 | static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p) |
| 788 | { |
| 789 | struct cx8802_fh *fh = priv; |
| 790 | return (videobuf_dqbuf(&fh->mpegq, p, |
| 791 | file->f_flags & O_NONBLOCK)); |
| 792 | } |
| 793 | |
| 794 | static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i) |
| 795 | { |
| 796 | struct cx8802_fh *fh = priv; |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 797 | struct cx8802_dev *dev = fh->dev; |
| 798 | |
| 799 | if (!dev->mpeg_active) |
| 800 | blackbird_start_codec(file, fh); |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 801 | return videobuf_streamon(&fh->mpegq); |
| 802 | } |
| 803 | |
| 804 | static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i) |
| 805 | { |
| 806 | struct cx8802_fh *fh = priv; |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 807 | struct cx8802_dev *dev = fh->dev; |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 808 | |
| 809 | if (dev->mpeg_active) |
| 810 | blackbird_stop_codec(dev); |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 811 | return videobuf_streamoff(&fh->mpegq); |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | static int vidioc_s_frequency (struct file *file, void *priv, |
| 815 | struct v4l2_frequency *f) |
| 816 | { |
| 817 | struct cx8802_fh *fh = priv; |
| 818 | struct cx8802_dev *dev = fh->dev; |
| 819 | struct cx88_core *core = dev->core; |
| 820 | |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 821 | if (dev->mpeg_active) |
| 822 | blackbird_stop_codec(dev); |
| 823 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 824 | cx88_set_freq (core,f); |
| 825 | blackbird_initialize_codec(dev); |
| 826 | cx88_set_scale(dev->core, dev->width, dev->height, |
| 827 | fh->mpegq.field); |
| 828 | return 0; |
| 829 | } |
| 830 | |
| 831 | static int vidioc_log_status (struct file *file, void *priv) |
| 832 | { |
| 833 | struct cx8802_dev *dev = ((struct cx8802_fh *)priv)->dev; |
| 834 | struct cx88_core *core = dev->core; |
| 835 | char name[32 + 2]; |
| 836 | |
| 837 | snprintf(name, sizeof(name), "%s/2", core->name); |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 838 | call_all(core, core, log_status); |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 839 | v4l2_ctrl_handler_log_status(&dev->cxhdl.hdl, name); |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 840 | return 0; |
| 841 | } |
| 842 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 843 | static int vidioc_enum_input (struct file *file, void *priv, |
| 844 | struct v4l2_input *i) |
| 845 | { |
| 846 | struct cx88_core *core = ((struct cx8802_fh *)priv)->dev->core; |
| 847 | return cx88_enum_input (core,i); |
| 848 | } |
| 849 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 850 | static int vidioc_g_frequency (struct file *file, void *priv, |
| 851 | struct v4l2_frequency *f) |
| 852 | { |
| 853 | struct cx8802_fh *fh = priv; |
| 854 | struct cx88_core *core = fh->dev->core; |
| 855 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 856 | if (unlikely(UNSET == core->board.tuner_type)) |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 857 | return -EINVAL; |
| 858 | |
| 859 | f->type = V4L2_TUNER_ANALOG_TV; |
| 860 | f->frequency = core->freq; |
Hans Verkuil | b8341e1 | 2009-03-29 08:26:01 -0300 | [diff] [blame] | 861 | call_all(core, tuner, g_frequency, f); |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 862 | |
| 863 | return 0; |
| 864 | } |
| 865 | |
| 866 | static int vidioc_g_input (struct file *file, void *priv, unsigned int *i) |
| 867 | { |
| 868 | struct cx88_core *core = ((struct cx8802_fh *)priv)->dev->core; |
| 869 | |
| 870 | *i = core->input; |
| 871 | return 0; |
| 872 | } |
| 873 | |
| 874 | static int vidioc_s_input (struct file *file, void *priv, unsigned int i) |
| 875 | { |
| 876 | struct cx88_core *core = ((struct cx8802_fh *)priv)->dev->core; |
| 877 | |
| 878 | if (i >= 4) |
| 879 | return -EINVAL; |
| 880 | |
| 881 | mutex_lock(&core->lock); |
| 882 | cx88_newstation(core); |
| 883 | cx88_video_mux(core,i); |
| 884 | mutex_unlock(&core->lock); |
| 885 | return 0; |
| 886 | } |
| 887 | |
| 888 | static int vidioc_g_tuner (struct file *file, void *priv, |
| 889 | struct v4l2_tuner *t) |
| 890 | { |
| 891 | struct cx88_core *core = ((struct cx8802_fh *)priv)->dev->core; |
| 892 | u32 reg; |
| 893 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 894 | if (unlikely(UNSET == core->board.tuner_type)) |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 895 | return -EINVAL; |
Jelle Foks | f057131 | 2007-05-21 14:56:17 -0300 | [diff] [blame] | 896 | if (0 != t->index) |
| 897 | return -EINVAL; |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 898 | |
| 899 | strcpy(t->name, "Television"); |
| 900 | t->type = V4L2_TUNER_ANALOG_TV; |
| 901 | t->capability = V4L2_TUNER_CAP_NORM; |
| 902 | t->rangehigh = 0xffffffffUL; |
| 903 | |
| 904 | cx88_get_stereo(core ,t); |
| 905 | reg = cx_read(MO_DEVICE_STATUS); |
| 906 | t->signal = (reg & (1<<5)) ? 0xffff : 0x0000; |
| 907 | return 0; |
| 908 | } |
| 909 | |
| 910 | static int vidioc_s_tuner (struct file *file, void *priv, |
| 911 | struct v4l2_tuner *t) |
| 912 | { |
| 913 | struct cx88_core *core = ((struct cx8802_fh *)priv)->dev->core; |
| 914 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 915 | if (UNSET == core->board.tuner_type) |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 916 | return -EINVAL; |
| 917 | if (0 != t->index) |
| 918 | return -EINVAL; |
| 919 | |
| 920 | cx88_set_stereo(core, t->audmode, 1); |
| 921 | return 0; |
| 922 | } |
| 923 | |
| 924 | static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id) |
| 925 | { |
| 926 | struct cx88_core *core = ((struct cx8802_fh *)priv)->dev->core; |
| 927 | |
| 928 | mutex_lock(&core->lock); |
| 929 | cx88_set_tvnorm(core,*id); |
| 930 | mutex_unlock(&core->lock); |
| 931 | return 0; |
| 932 | } |
| 933 | |
| 934 | /* FIXME: cx88_ioctl_hook not implemented */ |
| 935 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 936 | static int mpeg_open(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | { |
Laurent Pinchart | 50462eb | 2009-12-10 11:47:13 -0200 | [diff] [blame] | 938 | struct video_device *vdev = video_devdata(file); |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 939 | struct cx8802_dev *dev = video_drvdata(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | struct cx8802_fh *fh; |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 941 | struct cx8802_driver *drv = NULL; |
| 942 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 944 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 945 | |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 946 | mutex_lock(&dev->core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 948 | /* Make sure we can acquire the hardware */ |
| 949 | drv = cx8802_get_driver(dev, CX88_MPEG_BLACKBIRD); |
Jonathan Nieder | 579b2b4 | 2011-05-01 06:30:46 -0300 | [diff] [blame] | 950 | if (!drv) { |
| 951 | dprintk(1, "%s: blackbird driver is not loaded\n", __func__); |
| 952 | mutex_unlock(&dev->core->lock); |
| 953 | return -ENODEV; |
| 954 | } |
| 955 | |
| 956 | err = drv->request_acquire(drv); |
| 957 | if (err != 0) { |
| 958 | dprintk(1,"%s: Unable to acquire hardware, %d\n", __func__, err); |
| 959 | mutex_unlock(&dev->core->lock); |
| 960 | return err; |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 961 | } |
| 962 | |
Jonathan Nieder | f4bd4be | 2011-05-01 06:31:04 -0300 | [diff] [blame] | 963 | if (!dev->core->mpeg_users && blackbird_initialize_codec(dev) < 0) { |
Jonathan Nieder | 579b2b4 | 2011-05-01 06:30:46 -0300 | [diff] [blame] | 964 | drv->request_release(drv); |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 965 | mutex_unlock(&dev->core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | return -EINVAL; |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 967 | } |
Laurent Pinchart | 50462eb | 2009-12-10 11:47:13 -0200 | [diff] [blame] | 968 | dprintk(1, "open dev=%s\n", video_device_node_name(vdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | |
| 970 | /* allocate + initialize per filehandle data */ |
Panagiotis Issaris | 7408187 | 2006-01-11 19:40:56 -0200 | [diff] [blame] | 971 | fh = kzalloc(sizeof(*fh),GFP_KERNEL); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 972 | if (NULL == fh) { |
Jonathan Nieder | 579b2b4 | 2011-05-01 06:30:46 -0300 | [diff] [blame] | 973 | drv->request_release(drv); |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 974 | mutex_unlock(&dev->core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | return -ENOMEM; |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 976 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | file->private_data = fh; |
| 978 | fh->dev = dev; |
| 979 | |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 980 | videobuf_queue_sg_init(&fh->mpegq, &blackbird_qops, |
| 981 | &dev->pci->dev, &dev->slock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | V4L2_BUF_TYPE_VIDEO_CAPTURE, |
Catalin Climov | 3162942 | 2005-11-08 21:36:17 -0800 | [diff] [blame] | 983 | V4L2_FIELD_INTERLACED, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | sizeof(struct cx88_buffer), |
Hans Verkuil | 08bff03 | 2010-09-20 17:39:46 -0300 | [diff] [blame] | 985 | fh, NULL); |
Catalin Climov | 3162942 | 2005-11-08 21:36:17 -0800 | [diff] [blame] | 986 | |
| 987 | /* FIXME: locking against other video device */ |
| 988 | cx88_set_scale(dev->core, dev->width, dev->height, |
| 989 | fh->mpegq.field); |
| 990 | |
Jonathan Nieder | f4bd4be | 2011-05-01 06:31:04 -0300 | [diff] [blame] | 991 | dev->core->mpeg_users++; |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 992 | mutex_unlock(&dev->core->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | return 0; |
| 994 | } |
| 995 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 996 | static int mpeg_release(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | { |
| 998 | struct cx8802_fh *fh = file->private_data; |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 999 | struct cx8802_dev *dev = fh->dev; |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1000 | struct cx8802_driver *drv = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
Jonathan Nieder | f4bd4be | 2011-05-01 06:31:04 -0300 | [diff] [blame] | 1002 | mutex_lock(&dev->core->lock); |
| 1003 | |
| 1004 | if (dev->mpeg_active && dev->core->mpeg_users == 1) |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 1005 | blackbird_stop_codec(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
Valentin Zagura | 0b5f56d | 2006-04-20 22:56:25 -0300 | [diff] [blame] | 1007 | cx8802_cancel_buffers(fh->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | /* stop mpeg capture */ |
Brandon Philips | 053fcb6 | 2007-11-13 20:11:26 -0300 | [diff] [blame] | 1009 | videobuf_stop(&fh->mpegq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
| 1011 | videobuf_mmap_free(&fh->mpegq); |
Mauro Carvalho Chehab | da497e3 | 2010-09-15 09:23:20 -0300 | [diff] [blame] | 1012 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | file->private_data = NULL; |
| 1014 | kfree(fh); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1015 | |
| 1016 | /* Make sure we release the hardware */ |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1017 | drv = cx8802_get_driver(dev, CX88_MPEG_BLACKBIRD); |
Jonathan Nieder | 579b2b4 | 2011-05-01 06:30:46 -0300 | [diff] [blame] | 1018 | WARN_ON(!drv); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1019 | if (drv) |
| 1020 | drv->request_release(drv); |
| 1021 | |
Jonathan Nieder | f4bd4be | 2011-05-01 06:31:04 -0300 | [diff] [blame] | 1022 | dev->core->mpeg_users--; |
Frederic CAND | 9c8e0a2 | 2008-10-30 04:50:05 -0300 | [diff] [blame] | 1023 | |
Jonathan Nieder | 1fe70e9 | 2011-05-01 06:29:37 -0300 | [diff] [blame] | 1024 | mutex_unlock(&dev->core->lock); |
| 1025 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | return 0; |
| 1027 | } |
| 1028 | |
| 1029 | static ssize_t |
| 1030 | mpeg_read(struct file *file, char __user *data, size_t count, loff_t *ppos) |
| 1031 | { |
| 1032 | struct cx8802_fh *fh = file->private_data; |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 1033 | struct cx8802_dev *dev = fh->dev; |
| 1034 | |
| 1035 | if (!dev->mpeg_active) |
| 1036 | blackbird_start_codec(file, fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
| 1038 | return videobuf_read_stream(&fh->mpegq, data, count, ppos, 0, |
| 1039 | file->f_flags & O_NONBLOCK); |
| 1040 | } |
| 1041 | |
| 1042 | static unsigned int |
| 1043 | mpeg_poll(struct file *file, struct poll_table_struct *wait) |
| 1044 | { |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1045 | unsigned long req_events = poll_requested_events(wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | struct cx8802_fh *fh = file->private_data; |
Frederic CAND | a248237 | 2008-10-30 04:46:42 -0300 | [diff] [blame] | 1047 | struct cx8802_dev *dev = fh->dev; |
| 1048 | |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1049 | if (!dev->mpeg_active && (req_events & (POLLIN | POLLRDNORM))) |
Frederic CAND | a248237 | 2008-10-30 04:46:42 -0300 | [diff] [blame] | 1050 | blackbird_start_codec(file, fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
| 1052 | return videobuf_poll_stream(file, &fh->mpegq, wait); |
| 1053 | } |
| 1054 | |
| 1055 | static int |
| 1056 | mpeg_mmap(struct file *file, struct vm_area_struct * vma) |
| 1057 | { |
| 1058 | struct cx8802_fh *fh = file->private_data; |
| 1059 | |
| 1060 | return videobuf_mmap_mapper(&fh->mpegq, vma); |
| 1061 | } |
| 1062 | |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 1063 | static const struct v4l2_file_operations mpeg_fops = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | { |
| 1065 | .owner = THIS_MODULE, |
| 1066 | .open = mpeg_open, |
| 1067 | .release = mpeg_release, |
| 1068 | .read = mpeg_read, |
| 1069 | .poll = mpeg_poll, |
| 1070 | .mmap = mpeg_mmap, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1071 | .ioctl = video_ioctl2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | }; |
| 1073 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1074 | static const struct v4l2_ioctl_ops mpeg_ioctl_ops = { |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1075 | .vidioc_querycap = vidioc_querycap, |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1076 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
| 1077 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
| 1078 | .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap, |
| 1079 | .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1080 | .vidioc_reqbufs = vidioc_reqbufs, |
| 1081 | .vidioc_querybuf = vidioc_querybuf, |
| 1082 | .vidioc_qbuf = vidioc_qbuf, |
| 1083 | .vidioc_dqbuf = vidioc_dqbuf, |
| 1084 | .vidioc_streamon = vidioc_streamon, |
| 1085 | .vidioc_streamoff = vidioc_streamoff, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1086 | .vidioc_s_frequency = vidioc_s_frequency, |
| 1087 | .vidioc_log_status = vidioc_log_status, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1088 | .vidioc_enum_input = vidioc_enum_input, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1089 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1090 | .vidioc_g_input = vidioc_g_input, |
| 1091 | .vidioc_s_input = vidioc_s_input, |
| 1092 | .vidioc_g_tuner = vidioc_g_tuner, |
| 1093 | .vidioc_s_tuner = vidioc_s_tuner, |
| 1094 | .vidioc_s_std = vidioc_s_std, |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1095 | }; |
| 1096 | |
| 1097 | static struct video_device cx8802_mpeg_template = { |
| 1098 | .name = "cx8802", |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 1099 | .fops = &mpeg_fops, |
| 1100 | .ioctl_ops = &mpeg_ioctl_ops, |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1101 | .tvnorms = CX88_NORMS, |
Michael Krufky | b930e1d | 2007-08-27 18:16:54 -0300 | [diff] [blame] | 1102 | .current_norm = V4L2_STD_NTSC_M, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | }; |
| 1104 | |
| 1105 | /* ------------------------------------------------------------------ */ |
| 1106 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1107 | /* The CX8802 MPEG API will call this when we can use the hardware */ |
| 1108 | static int cx8802_blackbird_advise_acquire(struct cx8802_driver *drv) |
| 1109 | { |
| 1110 | struct cx88_core *core = drv->core; |
| 1111 | int err = 0; |
| 1112 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1113 | switch (core->boardnr) { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1114 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 1115 | /* By default, core setup will leave the cx22702 out of reset, on the bus. |
| 1116 | * We left the hardware on power up with the cx22702 active. |
| 1117 | * We're being given access to re-arrange the GPIOs. |
| 1118 | * Take the bus off the cx22702 and put the cx23416 on it. |
| 1119 | */ |
Darron Broad | 7939273 | 2008-12-18 06:28:35 -0300 | [diff] [blame] | 1120 | /* Toggle reset on cx22702 leaving i2c active */ |
| 1121 | cx_set(MO_GP0_IO, 0x00000080); |
| 1122 | udelay(1000); |
| 1123 | cx_clear(MO_GP0_IO, 0x00000080); |
| 1124 | udelay(50); |
| 1125 | cx_set(MO_GP0_IO, 0x00000080); |
| 1126 | udelay(1000); |
| 1127 | /* tri-state the cx22702 pins */ |
| 1128 | cx_set(MO_GP0_IO, 0x00000004); |
| 1129 | udelay(1000); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1130 | break; |
| 1131 | default: |
| 1132 | err = -ENODEV; |
| 1133 | } |
| 1134 | return err; |
| 1135 | } |
| 1136 | |
| 1137 | /* The CX8802 MPEG API will call this when we need to release the hardware */ |
| 1138 | static int cx8802_blackbird_advise_release(struct cx8802_driver *drv) |
| 1139 | { |
| 1140 | struct cx88_core *core = drv->core; |
| 1141 | int err = 0; |
| 1142 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1143 | switch (core->boardnr) { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1144 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 1145 | /* Exit leaving the cx23416 on the bus */ |
| 1146 | break; |
| 1147 | default: |
| 1148 | err = -ENODEV; |
| 1149 | } |
| 1150 | return err; |
| 1151 | } |
| 1152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | static void blackbird_unregister_video(struct cx8802_dev *dev) |
| 1154 | { |
| 1155 | if (dev->mpeg_dev) { |
Laurent Pinchart | f0813b4 | 2009-11-27 13:57:30 -0300 | [diff] [blame] | 1156 | if (video_is_registered(dev->mpeg_dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | video_unregister_device(dev->mpeg_dev); |
| 1158 | else |
| 1159 | video_device_release(dev->mpeg_dev); |
| 1160 | dev->mpeg_dev = NULL; |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | static int blackbird_register_video(struct cx8802_dev *dev) |
| 1165 | { |
| 1166 | int err; |
| 1167 | |
| 1168 | dev->mpeg_dev = cx88_vdev_init(dev->core,dev->pci, |
| 1169 | &cx8802_mpeg_template,"mpeg"); |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1170 | dev->mpeg_dev->ctrl_handler = &dev->cxhdl.hdl; |
Laurent Pinchart | 63b0d5a | 2009-12-10 11:44:04 -0200 | [diff] [blame] | 1171 | video_set_drvdata(dev->mpeg_dev, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | err = video_register_device(dev->mpeg_dev,VFL_TYPE_GRABBER, -1); |
| 1173 | if (err < 0) { |
| 1174 | printk(KERN_INFO "%s/2: can't register mpeg device\n", |
| 1175 | dev->core->name); |
| 1176 | return err; |
| 1177 | } |
Laurent Pinchart | 38c7c03 | 2009-11-27 13:57:15 -0300 | [diff] [blame] | 1178 | printk(KERN_INFO "%s/2: registered device %s [mpeg]\n", |
| 1179 | dev->core->name, video_device_node_name(dev->mpeg_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | return 0; |
| 1181 | } |
| 1182 | |
| 1183 | /* ----------------------------------------------------------- */ |
| 1184 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1185 | static int cx8802_blackbird_probe(struct cx8802_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1187 | struct cx88_core *core = drv->core; |
| 1188 | struct cx8802_dev *dev = core->dvbdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | int err; |
| 1190 | |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 1191 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1192 | dprintk( 1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n", |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1193 | core->boardnr, |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1194 | core->name, |
| 1195 | core->pci_bus, |
| 1196 | core->pci_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | |
| 1198 | err = -ENODEV; |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 1199 | if (!(core->board.mpeg & CX88_MPEG_BLACKBIRD)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | goto fail_core; |
| 1201 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1202 | cx8802_mpeg_template.current_norm = core->tvnorm; |
| 1203 | |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1204 | dev->width = 720; |
Mauro Carvalho Chehab | ed10b06 | 2007-01-20 13:58:39 -0300 | [diff] [blame] | 1205 | if (core->tvnorm & V4L2_STD_525_60) { |
Michael Krufky | 45f87a2 | 2006-06-22 21:47:07 -0300 | [diff] [blame] | 1206 | dev->height = 480; |
| 1207 | } else { |
| 1208 | dev->height = 576; |
Steven Toth | 0345c38 | 2006-01-09 15:25:17 -0200 | [diff] [blame] | 1209 | } |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1210 | dev->cxhdl.port = CX2341X_PORT_STREAMING; |
| 1211 | dev->cxhdl.width = dev->width; |
| 1212 | dev->cxhdl.height = dev->height; |
| 1213 | dev->cxhdl.func = blackbird_mbox_func; |
| 1214 | dev->cxhdl.priv = dev; |
| 1215 | err = cx2341x_handler_init(&dev->cxhdl, 36); |
| 1216 | if (err) |
| 1217 | goto fail_core; |
| 1218 | v4l2_ctrl_add_handler(&dev->cxhdl.hdl, &core->video_hdl); |
Steven Toth | 0345c38 | 2006-01-09 15:25:17 -0200 | [diff] [blame] | 1219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | /* blackbird stuff */ |
| 1221 | printk("%s/2: cx23416 based mpeg encoder (blackbird reference design)\n", |
| 1222 | core->name); |
| 1223 | host_setup(dev->core); |
| 1224 | |
Jelle Foks | f9e54e0 | 2007-05-21 14:36:01 -0300 | [diff] [blame] | 1225 | blackbird_initialize_codec(dev); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1226 | |
| 1227 | /* initial device configuration: needed ? */ |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1228 | // init_controls(core); |
| 1229 | cx88_set_tvnorm(core,core->tvnorm); |
| 1230 | cx88_video_mux(core,0); |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1231 | cx2341x_handler_set_50hz(&dev->cxhdl, dev->height == 576); |
| 1232 | cx2341x_handler_setup(&dev->cxhdl); |
| 1233 | blackbird_register_video(dev); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 1234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | return 0; |
| 1236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | fail_core: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | return err; |
| 1239 | } |
| 1240 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1241 | static int cx8802_blackbird_remove(struct cx8802_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | { |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1243 | struct cx88_core *core = drv->core; |
| 1244 | struct cx8802_dev *dev = core->dvbdev; |
| 1245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | /* blackbird */ |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1247 | blackbird_unregister_video(drv->core->dvbdev); |
Hans Verkuil | 7bb34c8 | 2012-07-02 08:47:11 -0300 | [diff] [blame^] | 1248 | v4l2_ctrl_handler_free(&dev->cxhdl.hdl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1250 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | } |
| 1252 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1253 | static struct cx8802_driver cx8802_blackbird_driver = { |
| 1254 | .type_id = CX88_MPEG_BLACKBIRD, |
| 1255 | .hw_access = CX8802_DRVCTL_SHARED, |
| 1256 | .probe = cx8802_blackbird_probe, |
| 1257 | .remove = cx8802_blackbird_remove, |
| 1258 | .advise_acquire = cx8802_blackbird_advise_acquire, |
| 1259 | .advise_release = cx8802_blackbird_advise_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | }; |
| 1261 | |
Peter Huewe | 31d0f84 | 2009-07-17 01:00:01 +0200 | [diff] [blame] | 1262 | static int __init blackbird_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | { |
Mauro Carvalho Chehab | 1990d50 | 2011-06-24 14:45:49 -0300 | [diff] [blame] | 1264 | printk(KERN_INFO "cx2388x blackbird driver version %s loaded\n", |
| 1265 | CX88_VERSION); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1266 | return cx8802_register_driver(&cx8802_blackbird_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | } |
| 1268 | |
Peter Huewe | 31d0f84 | 2009-07-17 01:00:01 +0200 | [diff] [blame] | 1269 | static void __exit blackbird_fini(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1271 | cx8802_unregister_driver(&cx8802_blackbird_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | module_init(blackbird_init); |
| 1275 | module_exit(blackbird_fini); |
| 1276 | |
Mauro Carvalho Chehab | b3c4ee7 | 2007-01-20 13:59:38 -0300 | [diff] [blame] | 1277 | module_param_named(video_debug,cx8802_mpeg_template.debug, int, 0644); |
| 1278 | MODULE_PARM_DESC(debug,"enable debug messages [video]"); |