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