3 * Support for a cx23417 mpeg encoder via cx231xx host port.
5 * (c) 2004 Jelle Foks <jelle@foks.us>
6 * (c) 2004 Gerd Knorr <kraxel@bytesex.org>
7 * (c) 2008 Steven Toth <stoth@linuxtv.org>
8 * - CX23885/7/8 support
10 * Includes parts from the ivtv driver( http://ivtv.sourceforge.net/),
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/init.h>
29 #include <linux/delay.h>
30 #include <linux/device.h>
31 #include <linux/firmware.h>
32 #include <linux/vmalloc.h>
33 #include <media/v4l2-common.h>
34 #include <media/v4l2-ioctl.h>
35 #include <media/v4l2-event.h>
36 #include <media/drv-intf/cx2341x.h>
37 #include <media/tuner.h>
39 #define CX231xx_FIRM_IMAGE_SIZE 376836
40 #define CX231xx_FIRM_IMAGE_NAME "v4l-cx23885-enc.fw"
42 /* for polaris ITVC */
43 #define ITVC_WRITE_DIR 0x03FDFC00
44 #define ITVC_READ_DIR 0x0001FC00
46 #define MCI_MEMORY_DATA_BYTE0 0x00
47 #define MCI_MEMORY_DATA_BYTE1 0x08
48 #define MCI_MEMORY_DATA_BYTE2 0x10
49 #define MCI_MEMORY_DATA_BYTE3 0x18
51 #define MCI_MEMORY_ADDRESS_BYTE2 0x20
52 #define MCI_MEMORY_ADDRESS_BYTE1 0x28
53 #define MCI_MEMORY_ADDRESS_BYTE0 0x30
55 #define MCI_REGISTER_DATA_BYTE0 0x40
56 #define MCI_REGISTER_DATA_BYTE1 0x48
57 #define MCI_REGISTER_DATA_BYTE2 0x50
58 #define MCI_REGISTER_DATA_BYTE3 0x58
60 #define MCI_REGISTER_ADDRESS_BYTE0 0x60
61 #define MCI_REGISTER_ADDRESS_BYTE1 0x68
63 #define MCI_REGISTER_MODE 0x70
65 /* Read and write modes for polaris ITVC */
66 #define MCI_MODE_REGISTER_READ 0x000
67 #define MCI_MODE_REGISTER_WRITE 0x100
68 #define MCI_MODE_MEMORY_READ 0x000
69 #define MCI_MODE_MEMORY_WRITE 0x4000
71 static unsigned int mpegbufs
= 8;
72 module_param(mpegbufs
, int, 0644);
73 MODULE_PARM_DESC(mpegbufs
, "number of mpeg buffers, range 2-32");
75 static unsigned int mpeglines
= 128;
76 module_param(mpeglines
, int, 0644);
77 MODULE_PARM_DESC(mpeglines
, "number of lines in an MPEG buffer, range 2-32");
79 static unsigned int mpeglinesize
= 512;
80 module_param(mpeglinesize
, int, 0644);
81 MODULE_PARM_DESC(mpeglinesize
,
82 "number of bytes in each line of an MPEG buffer, range 512-1024");
84 static unsigned int v4l_debug
= 1;
85 module_param(v4l_debug
, int, 0644);
86 MODULE_PARM_DESC(v4l_debug
, "enable V4L debug messages");
88 #define dprintk(level, fmt, arg...) \
90 if (v4l_debug >= level) \
91 printk(KERN_DEBUG pr_fmt(fmt), ## arg); \
94 static struct cx231xx_tvnorm cx231xx_tvnorms
[] = {
97 .id
= V4L2_STD_NTSC_M
,
100 .id
= V4L2_STD_NTSC_M_JP
,
103 .id
= V4L2_STD_PAL_BG
,
106 .id
= V4L2_STD_PAL_DK
,
109 .id
= V4L2_STD_PAL_I
,
112 .id
= V4L2_STD_PAL_M
,
115 .id
= V4L2_STD_PAL_N
,
118 .id
= V4L2_STD_PAL_Nc
,
121 .id
= V4L2_STD_PAL_60
,
124 .id
= V4L2_STD_SECAM_L
,
127 .id
= V4L2_STD_SECAM_DK
,
131 /* ------------------------------------------------------------------ */
133 enum cx231xx_capture_type
{
134 CX231xx_MPEG_CAPTURE
,
136 CX231xx_RAW_PASSTHRU_CAPTURE
139 enum cx231xx_capture_bits
{
140 CX231xx_RAW_BITS_NONE
= 0x00,
141 CX231xx_RAW_BITS_YUV_CAPTURE
= 0x01,
142 CX231xx_RAW_BITS_PCM_CAPTURE
= 0x02,
143 CX231xx_RAW_BITS_VBI_CAPTURE
= 0x04,
144 CX231xx_RAW_BITS_PASSTHRU_CAPTURE
= 0x08,
145 CX231xx_RAW_BITS_TO_HOST_CAPTURE
= 0x10
148 enum cx231xx_capture_end
{
149 CX231xx_END_AT_GOP
, /* stop at the end of gop, generate irq */
150 CX231xx_END_NOW
, /* stop immediately, no irq */
153 enum cx231xx_framerate
{
154 CX231xx_FRAMERATE_NTSC_30
, /* NTSC: 30fps */
155 CX231xx_FRAMERATE_PAL_25
/* PAL: 25fps */
158 enum cx231xx_stream_port
{
159 CX231xx_OUTPUT_PORT_MEMORY
,
160 CX231xx_OUTPUT_PORT_STREAMING
,
161 CX231xx_OUTPUT_PORT_SERIAL
164 enum cx231xx_data_xfer_status
{
165 CX231xx_MORE_BUFFERS_FOLLOW
,
169 enum cx231xx_picture_mask
{
170 CX231xx_PICTURE_MASK_NONE
,
171 CX231xx_PICTURE_MASK_I_FRAMES
,
172 CX231xx_PICTURE_MASK_I_P_FRAMES
= 0x3,
173 CX231xx_PICTURE_MASK_ALL_FRAMES
= 0x7,
176 enum cx231xx_vbi_mode_bits
{
177 CX231xx_VBI_BITS_SLICED
,
178 CX231xx_VBI_BITS_RAW
,
181 enum cx231xx_vbi_insertion_bits
{
182 CX231xx_VBI_BITS_INSERT_IN_XTENSION_USR_DATA
,
183 CX231xx_VBI_BITS_INSERT_IN_PRIVATE_PACKETS
= 0x1 << 1,
184 CX231xx_VBI_BITS_SEPARATE_STREAM
= 0x2 << 1,
185 CX231xx_VBI_BITS_SEPARATE_STREAM_USR_DATA
= 0x4 << 1,
186 CX231xx_VBI_BITS_SEPARATE_STREAM_PRV_DATA
= 0x5 << 1,
189 enum cx231xx_dma_unit
{
194 enum cx231xx_dma_transfer_status_bits
{
195 CX231xx_DMA_TRANSFER_BITS_DONE
= 0x01,
196 CX231xx_DMA_TRANSFER_BITS_ERROR
= 0x04,
197 CX231xx_DMA_TRANSFER_BITS_LL_ERROR
= 0x10,
201 CX231xx_PAUSE_ENCODING
,
202 CX231xx_RESUME_ENCODING
,
205 enum cx231xx_copyright
{
206 CX231xx_COPYRIGHT_OFF
,
207 CX231xx_COPYRIGHT_ON
,
210 enum cx231xx_notification_type
{
211 CX231xx_NOTIFICATION_REFRESH
,
214 enum cx231xx_notification_status
{
215 CX231xx_NOTIFICATION_OFF
,
216 CX231xx_NOTIFICATION_ON
,
219 enum cx231xx_notification_mailbox
{
220 CX231xx_NOTIFICATION_NO_MAILBOX
= -1,
223 enum cx231xx_field1_lines
{
224 CX231xx_FIELD1_SAA7114
= 0x00EF, /* 239 */
225 CX231xx_FIELD1_SAA7115
= 0x00F0, /* 240 */
226 CX231xx_FIELD1_MICRONAS
= 0x0105, /* 261 */
229 enum cx231xx_field2_lines
{
230 CX231xx_FIELD2_SAA7114
= 0x00EF, /* 239 */
231 CX231xx_FIELD2_SAA7115
= 0x00F0, /* 240 */
232 CX231xx_FIELD2_MICRONAS
= 0x0106, /* 262 */
235 enum cx231xx_custom_data_type
{
236 CX231xx_CUSTOM_EXTENSION_USR_DATA
,
237 CX231xx_CUSTOM_PRIVATE_PACKET
,
245 enum cx231xx_mute_video_mask
{
246 CX231xx_MUTE_VIDEO_V_MASK
= 0x0000FF00,
247 CX231xx_MUTE_VIDEO_U_MASK
= 0x00FF0000,
248 CX231xx_MUTE_VIDEO_Y_MASK
= 0xFF000000,
251 enum cx231xx_mute_video_shift
{
252 CX231xx_MUTE_VIDEO_V_SHIFT
= 8,
253 CX231xx_MUTE_VIDEO_U_SHIFT
= 16,
254 CX231xx_MUTE_VIDEO_Y_SHIFT
= 24,
257 /* defines below are from ivtv-driver.h */
258 #define IVTV_CMD_HW_BLOCKS_RST 0xFFFFFFFF
260 /* Firmware API commands */
261 #define IVTV_API_STD_TIMEOUT 500
264 /* IVTV_REG_OFFSET */
265 #define IVTV_REG_ENC_SDRAM_REFRESH (0x07F8)
266 #define IVTV_REG_ENC_SDRAM_PRECHARGE (0x07FC)
267 #define IVTV_REG_SPU (0x9050)
268 #define IVTV_REG_HW_BLOCKS (0x9054)
269 #define IVTV_REG_VPU (0x9058)
270 #define IVTV_REG_APU (0xA064)
273 * Bit definitions for MC417_RWD and MC417_OEN registers
279 *| bit 15 bit 14 bit 13 bit 12 bit 11 bit 10 bit 9 bit 8
280 *|+-------+-------+-------+-------+-------+-------+-------+-------+
281 *|| MIWR# | MIRD# | MICS# |MIRDY# |MIADDR3|MIADDR2|MIADDR1|MIADDR0|
282 *|+-------+-------+-------+-------+-------+-------+-------+-------+
283 *| bit 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0
284 *|+-------+-------+-------+-------+-------+-------+-------+-------+
285 *||MIDATA7|MIDATA6|MIDATA5|MIDATA4|MIDATA3|MIDATA2|MIDATA1|MIDATA0|
286 *|+-------+-------+-------+-------+-------+-------+-------+-------+
288 #define MC417_MIWR 0x8000
289 #define MC417_MIRD 0x4000
290 #define MC417_MICS 0x2000
291 #define MC417_MIRDY 0x1000
292 #define MC417_MIADDR 0x0F00
293 #define MC417_MIDATA 0x00FF
296 /* Bit definitions for MC417_CTL register ****
297 *bits 31-6 bits 5-4 bit 3 bits 2-1 Bit 0
298 *+--------+-------------+--------+--------------+------------+
299 *|Reserved|MC417_SPD_CTL|Reserved|MC417_GPIO_SEL|UART_GPIO_EN|
300 *+--------+-------------+--------+--------------+------------+
302 #define MC417_SPD_CTL(x) (((x) << 4) & 0x00000030)
303 #define MC417_GPIO_SEL(x) (((x) << 1) & 0x00000006)
304 #define MC417_UART_GPIO_EN 0x00000001
306 /* Values for speed control */
307 #define MC417_SPD_CTL_SLOW 0x1
308 #define MC417_SPD_CTL_MEDIUM 0x0
309 #define MC417_SPD_CTL_FAST 0x3 /* b'1x, but we use b'11 */
311 /* Values for GPIO select */
312 #define MC417_GPIO_SEL_GPIO3 0x3
313 #define MC417_GPIO_SEL_GPIO2 0x2
314 #define MC417_GPIO_SEL_GPIO1 0x1
315 #define MC417_GPIO_SEL_GPIO0 0x0
318 #define CX23417_GPIO_MASK 0xFC0003FF
320 static int set_itvc_reg(struct cx231xx
*dev
, u32 gpio_direction
, u32 value
)
323 u32 _gpio_direction
= 0;
325 _gpio_direction
= _gpio_direction
& CX23417_GPIO_MASK
;
326 _gpio_direction
= _gpio_direction
| gpio_direction
;
327 status
= cx231xx_send_gpio_cmd(dev
, _gpio_direction
,
328 (u8
*)&value
, 4, 0, 0);
332 static int get_itvc_reg(struct cx231xx
*dev
, u32 gpio_direction
, u32
*val_ptr
)
335 u32 _gpio_direction
= 0;
337 _gpio_direction
= _gpio_direction
& CX23417_GPIO_MASK
;
338 _gpio_direction
= _gpio_direction
| gpio_direction
;
340 status
= cx231xx_send_gpio_cmd(dev
, _gpio_direction
,
341 (u8
*)val_ptr
, 4, 0, 1);
345 static int wait_for_mci_complete(struct cx231xx
*dev
)
348 u32 gpio_direction
= 0;
350 get_itvc_reg(dev
, gpio_direction
, &gpio
);
352 while (!(gpio
&0x020000)) {
355 get_itvc_reg(dev
, gpio_direction
, &gpio
);
358 dprintk(3, "ERROR: Timeout - gpio=%x\n", gpio
);
365 static int mc417_register_write(struct cx231xx
*dev
, u16 address
, u32 value
)
370 temp
= 0x82 | MCI_REGISTER_DATA_BYTE0
| ((value
& 0x000000FF) << 8);
372 status
= set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
375 temp
= temp
| (0x05 << 10);
376 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
378 /*write data byte 1;*/
379 temp
= 0x82 | MCI_REGISTER_DATA_BYTE1
| (value
& 0x0000FF00);
381 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
382 temp
= temp
| (0x05 << 10);
383 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
385 /*write data byte 2;*/
386 temp
= 0x82 | MCI_REGISTER_DATA_BYTE2
| ((value
& 0x00FF0000) >> 8);
388 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
389 temp
= temp
| (0x05 << 10);
390 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
392 /*write data byte 3;*/
393 temp
= 0x82 | MCI_REGISTER_DATA_BYTE3
| ((value
& 0xFF000000) >> 16);
395 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
396 temp
= temp
| (0x05 << 10);
397 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
399 /*write address byte 0;*/
400 temp
= 0x82 | MCI_REGISTER_ADDRESS_BYTE0
| ((address
& 0x000000FF) << 8);
402 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
403 temp
= temp
| (0x05 << 10);
404 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
406 /*write address byte 1;*/
407 temp
= 0x82 | MCI_REGISTER_ADDRESS_BYTE1
| (address
& 0x0000FF00);
409 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
410 temp
= temp
| (0x05 << 10);
411 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
413 /*Write that the mode is write.*/
414 temp
= 0x82 | MCI_REGISTER_MODE
| MCI_MODE_REGISTER_WRITE
;
416 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
417 temp
= temp
| (0x05 << 10);
418 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
420 return wait_for_mci_complete(dev
);
423 static int mc417_register_read(struct cx231xx
*dev
, u16 address
, u32
*value
)
425 /*write address byte 0;*/
427 u32 return_value
= 0;
430 temp
= 0x82 | MCI_REGISTER_ADDRESS_BYTE0
| ((address
& 0x00FF) << 8);
432 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
433 temp
= temp
| ((0x05) << 10);
434 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
436 /*write address byte 1;*/
437 temp
= 0x82 | MCI_REGISTER_ADDRESS_BYTE1
| (address
& 0xFF00);
439 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
440 temp
= temp
| ((0x05) << 10);
441 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
443 /*write that the mode is read;*/
444 temp
= 0x82 | MCI_REGISTER_MODE
| MCI_MODE_REGISTER_READ
;
446 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
447 temp
= temp
| ((0x05) << 10);
448 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
450 /*wait for the MIRDY line to be asserted ,
451 signalling that the read is done;*/
452 ret
= wait_for_mci_complete(dev
);
454 /*switch the DATA- GPIO to input mode;*/
456 /*Read data byte 0;*/
457 temp
= (0x82 | MCI_REGISTER_DATA_BYTE0
) << 10;
458 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
459 temp
= ((0x81 | MCI_REGISTER_DATA_BYTE0
) << 10);
460 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
461 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
462 return_value
|= ((temp
& 0x03FC0000) >> 18);
463 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
465 /* Read data byte 1;*/
466 temp
= (0x82 | MCI_REGISTER_DATA_BYTE1
) << 10;
467 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
468 temp
= ((0x81 | MCI_REGISTER_DATA_BYTE1
) << 10);
469 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
470 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
472 return_value
|= ((temp
& 0x03FC0000) >> 10);
473 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
475 /*Read data byte 2;*/
476 temp
= (0x82 | MCI_REGISTER_DATA_BYTE2
) << 10;
477 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
478 temp
= ((0x81 | MCI_REGISTER_DATA_BYTE2
) << 10);
479 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
480 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
481 return_value
|= ((temp
& 0x03FC0000) >> 2);
482 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
484 /*Read data byte 3;*/
485 temp
= (0x82 | MCI_REGISTER_DATA_BYTE3
) << 10;
486 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
487 temp
= ((0x81 | MCI_REGISTER_DATA_BYTE3
) << 10);
488 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
489 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
490 return_value
|= ((temp
& 0x03FC0000) << 6);
491 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
493 *value
= return_value
;
497 static int mc417_memory_write(struct cx231xx
*dev
, u32 address
, u32 value
)
499 /*write data byte 0;*/
504 temp
= 0x82 | MCI_MEMORY_DATA_BYTE0
| ((value
& 0x000000FF) << 8);
506 ret
= set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
509 temp
= temp
| (0x05 << 10);
510 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
512 /*write data byte 1;*/
513 temp
= 0x82 | MCI_MEMORY_DATA_BYTE1
| (value
& 0x0000FF00);
515 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
516 temp
= temp
| (0x05 << 10);
517 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
519 /*write data byte 2;*/
520 temp
= 0x82 | MCI_MEMORY_DATA_BYTE2
| ((value
& 0x00FF0000) >> 8);
522 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
523 temp
= temp
| (0x05 << 10);
524 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
526 /*write data byte 3;*/
527 temp
= 0x82 | MCI_MEMORY_DATA_BYTE3
| ((value
& 0xFF000000) >> 16);
529 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
530 temp
= temp
| (0x05 << 10);
531 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
533 /* write address byte 2;*/
534 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE2
| MCI_MODE_MEMORY_WRITE
|
535 ((address
& 0x003F0000) >> 8);
537 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
538 temp
= temp
| (0x05 << 10);
539 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
541 /* write address byte 1;*/
542 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE1
| (address
& 0xFF00);
544 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
545 temp
= temp
| (0x05 << 10);
546 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
548 /* write address byte 0;*/
549 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE0
| ((address
& 0x00FF) << 8);
551 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
552 temp
= temp
| (0x05 << 10);
553 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
555 /*wait for MIRDY line;*/
556 wait_for_mci_complete(dev
);
561 static int mc417_memory_read(struct cx231xx
*dev
, u32 address
, u32
*value
)
564 u32 return_value
= 0;
567 /*write address byte 2;*/
568 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE2
| MCI_MODE_MEMORY_READ
|
569 ((address
& 0x003F0000) >> 8);
571 ret
= set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
574 temp
= temp
| (0x05 << 10);
575 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
577 /*write address byte 1*/
578 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE1
| (address
& 0xFF00);
580 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
581 temp
= temp
| (0x05 << 10);
582 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
584 /*write address byte 0*/
585 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE0
| ((address
& 0x00FF) << 8);
587 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
588 temp
= temp
| (0x05 << 10);
589 set_itvc_reg(dev
, ITVC_WRITE_DIR
, temp
);
591 /*Wait for MIRDY line*/
592 ret
= wait_for_mci_complete(dev
);
595 /*Read data byte 3;*/
596 temp
= (0x82 | MCI_MEMORY_DATA_BYTE3
) << 10;
597 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
598 temp
= ((0x81 | MCI_MEMORY_DATA_BYTE3
) << 10);
599 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
600 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
601 return_value
|= ((temp
& 0x03FC0000) << 6);
602 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
604 /*Read data byte 2;*/
605 temp
= (0x82 | MCI_MEMORY_DATA_BYTE2
) << 10;
606 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
607 temp
= ((0x81 | MCI_MEMORY_DATA_BYTE2
) << 10);
608 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
609 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
610 return_value
|= ((temp
& 0x03FC0000) >> 2);
611 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
613 /* Read data byte 1;*/
614 temp
= (0x82 | MCI_MEMORY_DATA_BYTE1
) << 10;
615 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
616 temp
= ((0x81 | MCI_MEMORY_DATA_BYTE1
) << 10);
617 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
618 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
619 return_value
|= ((temp
& 0x03FC0000) >> 10);
620 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
622 /*Read data byte 0;*/
623 temp
= (0x82 | MCI_MEMORY_DATA_BYTE0
) << 10;
624 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
625 temp
= ((0x81 | MCI_MEMORY_DATA_BYTE0
) << 10);
626 set_itvc_reg(dev
, ITVC_READ_DIR
, temp
);
627 get_itvc_reg(dev
, ITVC_READ_DIR
, &temp
);
628 return_value
|= ((temp
& 0x03FC0000) >> 18);
629 set_itvc_reg(dev
, ITVC_READ_DIR
, (0x87 << 10));
631 *value
= return_value
;
635 /* ------------------------------------------------------------------ */
637 /* MPEG encoder API */
638 static char *cmd_to_str(int cmd
)
641 case CX2341X_ENC_PING_FW
:
643 case CX2341X_ENC_START_CAPTURE
:
644 return "START_CAPTURE";
645 case CX2341X_ENC_STOP_CAPTURE
:
646 return "STOP_CAPTURE";
647 case CX2341X_ENC_SET_AUDIO_ID
:
648 return "SET_AUDIO_ID";
649 case CX2341X_ENC_SET_VIDEO_ID
:
650 return "SET_VIDEO_ID";
651 case CX2341X_ENC_SET_PCR_ID
:
652 return "SET_PCR_PID";
653 case CX2341X_ENC_SET_FRAME_RATE
:
654 return "SET_FRAME_RATE";
655 case CX2341X_ENC_SET_FRAME_SIZE
:
656 return "SET_FRAME_SIZE";
657 case CX2341X_ENC_SET_BIT_RATE
:
658 return "SET_BIT_RATE";
659 case CX2341X_ENC_SET_GOP_PROPERTIES
:
660 return "SET_GOP_PROPERTIES";
661 case CX2341X_ENC_SET_ASPECT_RATIO
:
662 return "SET_ASPECT_RATIO";
663 case CX2341X_ENC_SET_DNR_FILTER_MODE
:
664 return "SET_DNR_FILTER_PROPS";
665 case CX2341X_ENC_SET_DNR_FILTER_PROPS
:
666 return "SET_DNR_FILTER_PROPS";
667 case CX2341X_ENC_SET_CORING_LEVELS
:
668 return "SET_CORING_LEVELS";
669 case CX2341X_ENC_SET_SPATIAL_FILTER_TYPE
:
670 return "SET_SPATIAL_FILTER_TYPE";
671 case CX2341X_ENC_SET_VBI_LINE
:
672 return "SET_VBI_LINE";
673 case CX2341X_ENC_SET_STREAM_TYPE
:
674 return "SET_STREAM_TYPE";
675 case CX2341X_ENC_SET_OUTPUT_PORT
:
676 return "SET_OUTPUT_PORT";
677 case CX2341X_ENC_SET_AUDIO_PROPERTIES
:
678 return "SET_AUDIO_PROPERTIES";
679 case CX2341X_ENC_HALT_FW
:
681 case CX2341X_ENC_GET_VERSION
:
682 return "GET_VERSION";
683 case CX2341X_ENC_SET_GOP_CLOSURE
:
684 return "SET_GOP_CLOSURE";
685 case CX2341X_ENC_GET_SEQ_END
:
686 return "GET_SEQ_END";
687 case CX2341X_ENC_SET_PGM_INDEX_INFO
:
688 return "SET_PGM_INDEX_INFO";
689 case CX2341X_ENC_SET_VBI_CONFIG
:
690 return "SET_VBI_CONFIG";
691 case CX2341X_ENC_SET_DMA_BLOCK_SIZE
:
692 return "SET_DMA_BLOCK_SIZE";
693 case CX2341X_ENC_GET_PREV_DMA_INFO_MB_10
:
694 return "GET_PREV_DMA_INFO_MB_10";
695 case CX2341X_ENC_GET_PREV_DMA_INFO_MB_9
:
696 return "GET_PREV_DMA_INFO_MB_9";
697 case CX2341X_ENC_SCHED_DMA_TO_HOST
:
698 return "SCHED_DMA_TO_HOST";
699 case CX2341X_ENC_INITIALIZE_INPUT
:
700 return "INITIALIZE_INPUT";
701 case CX2341X_ENC_SET_FRAME_DROP_RATE
:
702 return "SET_FRAME_DROP_RATE";
703 case CX2341X_ENC_PAUSE_ENCODER
:
704 return "PAUSE_ENCODER";
705 case CX2341X_ENC_REFRESH_INPUT
:
706 return "REFRESH_INPUT";
707 case CX2341X_ENC_SET_COPYRIGHT
:
708 return "SET_COPYRIGHT";
709 case CX2341X_ENC_SET_EVENT_NOTIFICATION
:
710 return "SET_EVENT_NOTIFICATION";
711 case CX2341X_ENC_SET_NUM_VSYNC_LINES
:
712 return "SET_NUM_VSYNC_LINES";
713 case CX2341X_ENC_SET_PLACEHOLDER
:
714 return "SET_PLACEHOLDER";
715 case CX2341X_ENC_MUTE_VIDEO
:
717 case CX2341X_ENC_MUTE_AUDIO
:
719 case CX2341X_ENC_MISC
:
726 static int cx231xx_mbox_func(void *priv
, u32 command
, int in
, int out
,
727 u32 data
[CX2341X_MBOX_MAX_DATA
])
729 struct cx231xx
*dev
= priv
;
730 unsigned long timeout
;
731 u32 value
, flag
, retval
= 0;
734 dprintk(3, "%s: command(0x%X) = %s\n", __func__
, command
,
735 cmd_to_str(command
));
737 /* this may not be 100% safe if we can't read any memory location
738 without side effects */
739 mc417_memory_read(dev
, dev
->cx23417_mailbox
- 4, &value
);
740 if (value
!= 0x12345678) {
741 dprintk(3, "Firmware and/or mailbox pointer not initialized or corrupted, signature = 0x%x, cmd = %s\n",
742 value
, cmd_to_str(command
));
746 /* This read looks at 32 bits, but flag is only 8 bits.
747 * Seems we also bail if CMD or TIMEOUT bytes are set???
749 mc417_memory_read(dev
, dev
->cx23417_mailbox
, &flag
);
751 dprintk(3, "ERROR: Mailbox appears to be in use (%x), cmd = %s\n",
752 flag
, cmd_to_str(command
));
756 flag
|= 1; /* tell 'em we're working on it */
757 mc417_memory_write(dev
, dev
->cx23417_mailbox
, flag
);
759 /* write command + args + fill remaining with zeros */
761 mc417_memory_write(dev
, dev
->cx23417_mailbox
+ 1, command
);
762 mc417_memory_write(dev
, dev
->cx23417_mailbox
+ 3,
763 IVTV_API_STD_TIMEOUT
); /* timeout */
764 for (i
= 0; i
< in
; i
++) {
765 mc417_memory_write(dev
, dev
->cx23417_mailbox
+ 4 + i
, data
[i
]);
766 dprintk(3, "API Input %d = %d\n", i
, data
[i
]);
768 for (; i
< CX2341X_MBOX_MAX_DATA
; i
++)
769 mc417_memory_write(dev
, dev
->cx23417_mailbox
+ 4 + i
, 0);
771 flag
|= 3; /* tell 'em we're done writing */
772 mc417_memory_write(dev
, dev
->cx23417_mailbox
, flag
);
774 /* wait for firmware to handle the API command */
775 timeout
= jiffies
+ msecs_to_jiffies(10);
777 mc417_memory_read(dev
, dev
->cx23417_mailbox
, &flag
);
780 if (time_after(jiffies
, timeout
)) {
781 dprintk(3, "ERROR: API Mailbox timeout\n");
787 /* read output values */
788 for (i
= 0; i
< out
; i
++) {
789 mc417_memory_read(dev
, dev
->cx23417_mailbox
+ 4 + i
, data
+ i
);
790 dprintk(3, "API Output %d = %d\n", i
, data
[i
]);
793 mc417_memory_read(dev
, dev
->cx23417_mailbox
+ 2, &retval
);
794 dprintk(3, "API result = %d\n", retval
);
797 mc417_memory_write(dev
, dev
->cx23417_mailbox
, flag
);
802 /* We don't need to call the API often, so using just one
803 * mailbox will probably suffice
805 static int cx231xx_api_cmd(struct cx231xx
*dev
, u32 command
,
806 u32 inputcnt
, u32 outputcnt
, ...)
808 u32 data
[CX2341X_MBOX_MAX_DATA
];
812 dprintk(3, "%s() cmds = 0x%08x\n", __func__
, command
);
814 va_start(vargs
, outputcnt
);
815 for (i
= 0; i
< inputcnt
; i
++)
816 data
[i
] = va_arg(vargs
, int);
818 err
= cx231xx_mbox_func(dev
, command
, inputcnt
, outputcnt
, data
);
819 for (i
= 0; i
< outputcnt
; i
++) {
820 int *vptr
= va_arg(vargs
, int *);
829 static int cx231xx_find_mailbox(struct cx231xx
*dev
)
832 0x12345678, 0x34567812, 0x56781234, 0x78123456
834 int signaturecnt
= 0;
839 dprintk(2, "%s()\n", __func__
);
841 for (i
= 0; i
< 0x100; i
++) {/*CX231xx_FIRM_IMAGE_SIZE*/
842 ret
= mc417_memory_read(dev
, i
, &value
);
845 if (value
== signature
[signaturecnt
])
849 if (4 == signaturecnt
) {
850 dprintk(1, "Mailbox signature found at 0x%x\n", i
+ 1);
854 dprintk(3, "Mailbox signature values not found!\n");
858 static void mci_write_memory_to_gpio(struct cx231xx
*dev
, u32 address
, u32 value
,
864 temp
= 0x82 | MCI_MEMORY_DATA_BYTE0
| ((value
& 0x000000FF) << 8);
868 temp
= temp
| (0x05 << 10);
872 /*write data byte 1;*/
873 temp
= 0x82 | MCI_MEMORY_DATA_BYTE1
| (value
& 0x0000FF00);
877 temp
= temp
| (0x05 << 10);
881 /*write data byte 2;*/
882 temp
= 0x82 | MCI_MEMORY_DATA_BYTE2
| ((value
& 0x00FF0000) >> 8);
886 temp
= temp
| (0x05 << 10);
890 /*write data byte 3;*/
891 temp
= 0x82 | MCI_MEMORY_DATA_BYTE3
| ((value
& 0xFF000000) >> 16);
895 temp
= temp
| (0x05 << 10);
899 /* write address byte 2;*/
900 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE2
| MCI_MODE_MEMORY_WRITE
|
901 ((address
& 0x003F0000) >> 8);
905 temp
= temp
| (0x05 << 10);
909 /* write address byte 1;*/
910 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE1
| (address
& 0xFF00);
914 temp
= temp
| (0x05 << 10);
918 /* write address byte 0;*/
919 temp
= 0x82 | MCI_MEMORY_ADDRESS_BYTE0
| ((address
& 0x00FF) << 8);
923 temp
= temp
| (0x05 << 10);
927 for (i
= 0; i
< 6; i
++) {
928 *p_fw_image
= 0xFFFFFFFF;
934 static int cx231xx_load_firmware(struct cx231xx
*dev
)
936 static const unsigned char magic
[8] = {
937 0xa7, 0x0d, 0x00, 0x00, 0x66, 0xbb, 0x55, 0xaa
939 const struct firmware
*firmware
;
943 /*u32 checksum = 0;*/
945 u32 transfer_size
= 0;
948 /*u32 current_fw[800];*/
949 u32
*p_current_fw
, *p_fw
;
952 u16 _buffer_size
= 4096;
955 p_current_fw
= vmalloc(1884180 * 4);
957 if (p_current_fw
== NULL
) {
958 dprintk(2, "FAIL!!!\n");
962 p_buffer
= vmalloc(4096);
963 if (p_buffer
== NULL
) {
964 dprintk(2, "FAIL!!!\n");
969 dprintk(2, "%s()\n", __func__
);
971 /* Save GPIO settings before reset of APU */
972 retval
|= mc417_memory_read(dev
, 0x9020, &gpio_output
);
973 retval
|= mc417_memory_read(dev
, 0x900C, &value
);
975 retval
= mc417_register_write(dev
,
976 IVTV_REG_VPU
, 0xFFFFFFED);
977 retval
|= mc417_register_write(dev
,
978 IVTV_REG_HW_BLOCKS
, IVTV_CMD_HW_BLOCKS_RST
);
979 retval
|= mc417_register_write(dev
,
980 IVTV_REG_ENC_SDRAM_REFRESH
, 0x80000800);
981 retval
|= mc417_register_write(dev
,
982 IVTV_REG_ENC_SDRAM_PRECHARGE
, 0x1A);
983 retval
|= mc417_register_write(dev
,
988 "%s: Error with mc417_register_write\n", __func__
);
994 retval
= request_firmware(&firmware
, CX231xx_FIRM_IMAGE_NAME
,
999 "ERROR: Hotplug firmware request failed (%s).\n",
1000 CX231xx_FIRM_IMAGE_NAME
);
1002 "Please fix your hotplug setup, the board will not work without firmware loaded!\n");
1003 vfree(p_current_fw
);
1008 if (firmware
->size
!= CX231xx_FIRM_IMAGE_SIZE
) {
1010 "ERROR: Firmware size mismatch (have %zd, expected %d)\n",
1011 firmware
->size
, CX231xx_FIRM_IMAGE_SIZE
);
1012 release_firmware(firmware
);
1013 vfree(p_current_fw
);
1018 if (0 != memcmp(firmware
->data
, magic
, 8)) {
1020 "ERROR: Firmware magic mismatch, wrong file?\n");
1021 release_firmware(firmware
);
1022 vfree(p_current_fw
);
1029 /* transfer to the chip */
1030 dprintk(2, "Loading firmware to GPIO...\n");
1031 p_fw_data
= (u32
*)firmware
->data
;
1032 dprintk(2, "firmware->size=%zd\n", firmware
->size
);
1033 for (transfer_size
= 0; transfer_size
< firmware
->size
;
1034 transfer_size
+= 4) {
1035 fw_data
= *p_fw_data
;
1037 mci_write_memory_to_gpio(dev
, address
, fw_data
, p_current_fw
);
1038 address
= address
+ 1;
1043 /*download the firmware by ep5-out*/
1045 for (frame
= 0; frame
< (int)(CX231xx_FIRM_IMAGE_SIZE
*20/_buffer_size
);
1047 for (i
= 0; i
< _buffer_size
; i
++) {
1048 *(p_buffer
+ i
) = (u8
)(*(p_fw
+ (frame
* 128 * 8 + (i
/ 4))) & 0x000000FF);
1050 *(p_buffer
+ i
) = (u8
)((*(p_fw
+ (frame
* 128 * 8 + (i
/ 4))) & 0x0000FF00) >> 8);
1052 *(p_buffer
+ i
) = (u8
)((*(p_fw
+ (frame
* 128 * 8 + (i
/ 4))) & 0x00FF0000) >> 16);
1054 *(p_buffer
+ i
) = (u8
)((*(p_fw
+ (frame
* 128 * 8 + (i
/ 4))) & 0xFF000000) >> 24);
1056 cx231xx_ep5_bulkout(dev
, p_buffer
, _buffer_size
);
1059 p_current_fw
= p_fw
;
1060 vfree(p_current_fw
);
1061 p_current_fw
= NULL
;
1063 release_firmware(firmware
);
1064 dprintk(1, "Firmware upload successful.\n");
1066 retval
|= mc417_register_write(dev
, IVTV_REG_HW_BLOCKS
,
1067 IVTV_CMD_HW_BLOCKS_RST
);
1070 "%s: Error with mc417_register_write\n",
1074 /* F/W power up disturbs the GPIOs, restore state */
1075 retval
|= mc417_register_write(dev
, 0x9020, gpio_output
);
1076 retval
|= mc417_register_write(dev
, 0x900C, value
);
1078 retval
|= mc417_register_read(dev
, IVTV_REG_VPU
, &value
);
1079 retval
|= mc417_register_write(dev
, IVTV_REG_VPU
, value
& 0xFFFFFFE8);
1083 "%s: Error with mc417_register_write\n",
1090 static void cx231xx_417_check_encoder(struct cx231xx
*dev
)
1096 cx231xx_api_cmd(dev
, CX2341X_ENC_GET_SEQ_END
, 0, 2, &status
, &seq
);
1097 dprintk(1, "%s() status = %d, seq = %d\n", __func__
, status
, seq
);
1100 static void cx231xx_codec_settings(struct cx231xx
*dev
)
1102 dprintk(1, "%s()\n", __func__
);
1104 /* assign frame size */
1105 cx231xx_api_cmd(dev
, CX2341X_ENC_SET_FRAME_SIZE
, 2, 0,
1106 dev
->ts1
.height
, dev
->ts1
.width
);
1108 dev
->mpeg_ctrl_handler
.width
= dev
->ts1
.width
;
1109 dev
->mpeg_ctrl_handler
.height
= dev
->ts1
.height
;
1111 cx2341x_handler_setup(&dev
->mpeg_ctrl_handler
);
1113 cx231xx_api_cmd(dev
, CX2341X_ENC_MISC
, 2, 0, 3, 1);
1114 cx231xx_api_cmd(dev
, CX2341X_ENC_MISC
, 2, 0, 4, 1);
1117 static int cx231xx_initialize_codec(struct cx231xx
*dev
)
1124 dprintk(1, "%s()\n", __func__
);
1125 cx231xx_disable656(dev
);
1126 retval
= cx231xx_api_cmd(dev
, CX2341X_ENC_PING_FW
, 0, 0); /* ping */
1128 dprintk(2, "%s: PING OK\n", __func__
);
1129 retval
= cx231xx_load_firmware(dev
);
1132 "%s: f/w load failed\n", __func__
);
1135 retval
= cx231xx_find_mailbox(dev
);
1137 dev_err(dev
->dev
, "%s: mailbox < 0, error\n",
1141 dev
->cx23417_mailbox
= retval
;
1142 retval
= cx231xx_api_cmd(dev
, CX2341X_ENC_PING_FW
, 0, 0);
1145 "ERROR: cx23417 firmware ping failed!\n");
1148 retval
= cx231xx_api_cmd(dev
, CX2341X_ENC_GET_VERSION
, 0, 1,
1152 "ERROR: cx23417 firmware get encoder: version failed!\n");
1155 dprintk(1, "cx23417 firmware version is 0x%08x\n", version
);
1159 for (i
= 0; i
< 1; i
++) {
1160 retval
= mc417_register_read(dev
, 0x20f8, &val
);
1161 dprintk(3, "***before enable656() VIM Capture Lines = %d ***\n",
1167 cx231xx_enable656(dev
);
1169 /* stop mpeg capture */
1170 cx231xx_api_cmd(dev
, CX2341X_ENC_STOP_CAPTURE
, 3, 0, 1, 3, 4);
1172 cx231xx_codec_settings(dev
);
1175 /* cx231xx_api_cmd(dev, CX2341X_ENC_SET_NUM_VSYNC_LINES, 2, 0,
1176 CX231xx_FIELD1_SAA7115, CX231xx_FIELD2_SAA7115);
1177 cx231xx_api_cmd(dev, CX2341X_ENC_SET_PLACEHOLDER, 12, 0,
1178 CX231xx_CUSTOM_EXTENSION_USR_DATA, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1186 /* Setup to capture VBI */
1187 data
[0] = 0x0001BD00;
1188 data
[1] = 1; /* frames per interrupt */
1189 data
[2] = 4; /* total bufs */
1190 data
[3] = 0x91559155; /* start codes */
1191 data
[4] = 0x206080C0; /* stop codes */
1192 data
[5] = 6; /* lines */
1193 data
[6] = 64; /* BPL */
1195 cx231xx_api_cmd(dev
, CX2341X_ENC_SET_VBI_CONFIG
, 7, 0, data
[0], data
[1],
1196 data
[2], data
[3], data
[4], data
[5], data
[6]);
1198 for (i
= 2; i
<= 24; i
++) {
1201 valid
= ((i
>= 19) && (i
<= 21));
1202 cx231xx_api_cmd(dev
, CX2341X_ENC_SET_VBI_LINE
, 5, 0, i
,
1204 cx231xx_api_cmd(dev
, CX2341X_ENC_SET_VBI_LINE
, 5, 0,
1205 i
| 0x80000000, valid
, 0, 0, 0);
1208 /* cx231xx_api_cmd(dev, CX2341X_ENC_MUTE_AUDIO, 1, 0, CX231xx_UNMUTE);
1211 /* initialize the video input */
1212 retval
= cx231xx_api_cmd(dev
, CX2341X_ENC_INITIALIZE_INPUT
, 0, 0);
1217 /* Enable VIP style pixel invalidation so we work with scaled mode */
1218 mc417_memory_write(dev
, 2120, 0x00000080);
1220 /* start capturing to the host interface */
1221 retval
= cx231xx_api_cmd(dev
, CX2341X_ENC_START_CAPTURE
, 2, 0,
1222 CX231xx_MPEG_CAPTURE
, CX231xx_RAW_BITS_NONE
);
1227 for (i
= 0; i
< 1; i
++) {
1228 mc417_register_read(dev
, 0x20f8, &val
);
1229 dprintk(3, "***VIM Capture Lines =%d ***\n", val
);
1235 /* ------------------------------------------------------------------ */
1237 static int bb_buf_setup(struct videobuf_queue
*q
,
1238 unsigned int *count
, unsigned int *size
)
1240 struct cx231xx_fh
*fh
= q
->priv_data
;
1242 fh
->dev
->ts1
.ts_packet_size
= mpeglinesize
;
1243 fh
->dev
->ts1
.ts_packet_count
= mpeglines
;
1245 *size
= fh
->dev
->ts1
.ts_packet_size
* fh
->dev
->ts1
.ts_packet_count
;
1251 static void free_buffer(struct videobuf_queue
*vq
, struct cx231xx_buffer
*buf
)
1253 struct cx231xx_fh
*fh
= vq
->priv_data
;
1254 struct cx231xx
*dev
= fh
->dev
;
1255 unsigned long flags
= 0;
1257 BUG_ON(in_interrupt());
1259 spin_lock_irqsave(&dev
->video_mode
.slock
, flags
);
1261 if (dev
->video_mode
.isoc_ctl
.buf
== buf
)
1262 dev
->video_mode
.isoc_ctl
.buf
= NULL
;
1264 if (dev
->video_mode
.bulk_ctl
.buf
== buf
)
1265 dev
->video_mode
.bulk_ctl
.buf
= NULL
;
1267 spin_unlock_irqrestore(&dev
->video_mode
.slock
, flags
);
1268 videobuf_waiton(vq
, &buf
->vb
, 0, 0);
1269 videobuf_vmalloc_free(&buf
->vb
);
1270 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
1273 static void buffer_copy(struct cx231xx
*dev
, char *data
, int len
, struct urb
*urb
,
1274 struct cx231xx_dmaqueue
*dma_q
)
1277 struct cx231xx_buffer
*buf
;
1281 if (dma_q
->mpeg_buffer_done
== 0) {
1282 if (list_empty(&dma_q
->active
))
1285 buf
= list_entry(dma_q
->active
.next
,
1286 struct cx231xx_buffer
, vb
.queue
);
1287 dev
->video_mode
.isoc_ctl
.buf
= buf
;
1288 dma_q
->mpeg_buffer_done
= 1;
1291 buf
= dev
->video_mode
.isoc_ctl
.buf
;
1292 vbuf
= videobuf_to_vmalloc(&buf
->vb
);
1294 if ((dma_q
->mpeg_buffer_completed
+len
) <
1295 mpeglines
*mpeglinesize
) {
1296 if (dma_q
->add_ps_package_head
==
1297 CX231XX_NEED_ADD_PS_PACKAGE_HEAD
) {
1298 memcpy(vbuf
+dma_q
->mpeg_buffer_completed
,
1300 dma_q
->mpeg_buffer_completed
=
1301 dma_q
->mpeg_buffer_completed
+ 3;
1302 dma_q
->add_ps_package_head
=
1303 CX231XX_NONEED_PS_PACKAGE_HEAD
;
1305 memcpy(vbuf
+dma_q
->mpeg_buffer_completed
, data
, len
);
1306 dma_q
->mpeg_buffer_completed
=
1307 dma_q
->mpeg_buffer_completed
+ len
;
1309 dma_q
->mpeg_buffer_done
= 0;
1312 mpeglines
*mpeglinesize
- dma_q
->mpeg_buffer_completed
;
1313 memcpy(vbuf
+dma_q
->mpeg_buffer_completed
,
1316 buf
->vb
.state
= VIDEOBUF_DONE
;
1317 buf
->vb
.field_count
++;
1318 v4l2_get_timestamp(&buf
->vb
.ts
);
1319 list_del(&buf
->vb
.queue
);
1320 wake_up(&buf
->vb
.done
);
1321 dma_q
->mpeg_buffer_completed
= 0;
1323 if (len
- tail_data
> 0) {
1324 p_data
= data
+ tail_data
;
1325 dma_q
->left_data_count
= len
- tail_data
;
1326 memcpy(dma_q
->p_left_data
,
1327 p_data
, len
- tail_data
);
1332 static void buffer_filled(char *data
, int len
, struct urb
*urb
,
1333 struct cx231xx_dmaqueue
*dma_q
)
1336 struct cx231xx_buffer
*buf
;
1338 if (list_empty(&dma_q
->active
))
1341 buf
= list_entry(dma_q
->active
.next
,
1342 struct cx231xx_buffer
, vb
.queue
);
1345 vbuf
= videobuf_to_vmalloc(&buf
->vb
);
1346 memcpy(vbuf
, data
, len
);
1347 buf
->vb
.state
= VIDEOBUF_DONE
;
1348 buf
->vb
.field_count
++;
1349 v4l2_get_timestamp(&buf
->vb
.ts
);
1350 list_del(&buf
->vb
.queue
);
1351 wake_up(&buf
->vb
.done
);
1354 static int cx231xx_isoc_copy(struct cx231xx
*dev
, struct urb
*urb
)
1356 struct cx231xx_dmaqueue
*dma_q
= urb
->context
;
1357 unsigned char *p_buffer
;
1358 u32 buffer_size
= 0;
1361 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1362 if (dma_q
->left_data_count
> 0) {
1363 buffer_copy(dev
, dma_q
->p_left_data
,
1364 dma_q
->left_data_count
, urb
, dma_q
);
1365 dma_q
->mpeg_buffer_completed
= dma_q
->left_data_count
;
1366 dma_q
->left_data_count
= 0;
1369 p_buffer
= urb
->transfer_buffer
+
1370 urb
->iso_frame_desc
[i
].offset
;
1371 buffer_size
= urb
->iso_frame_desc
[i
].actual_length
;
1373 if (buffer_size
> 0)
1374 buffer_copy(dev
, p_buffer
, buffer_size
, urb
, dma_q
);
1380 static int cx231xx_bulk_copy(struct cx231xx
*dev
, struct urb
*urb
)
1382 struct cx231xx_dmaqueue
*dma_q
= urb
->context
;
1383 unsigned char *p_buffer
, *buffer
;
1384 u32 buffer_size
= 0;
1386 p_buffer
= urb
->transfer_buffer
;
1387 buffer_size
= urb
->actual_length
;
1389 buffer
= kmalloc(buffer_size
, GFP_ATOMIC
);
1393 memcpy(buffer
, dma_q
->ps_head
, 3);
1394 memcpy(buffer
+3, p_buffer
, buffer_size
-3);
1395 memcpy(dma_q
->ps_head
, p_buffer
+buffer_size
-3, 3);
1398 buffer_filled(p_buffer
, buffer_size
, urb
, dma_q
);
1404 static int bb_buf_prepare(struct videobuf_queue
*q
,
1405 struct videobuf_buffer
*vb
, enum v4l2_field field
)
1407 struct cx231xx_fh
*fh
= q
->priv_data
;
1408 struct cx231xx_buffer
*buf
=
1409 container_of(vb
, struct cx231xx_buffer
, vb
);
1410 struct cx231xx
*dev
= fh
->dev
;
1411 int rc
= 0, urb_init
= 0;
1412 int size
= fh
->dev
->ts1
.ts_packet_size
* fh
->dev
->ts1
.ts_packet_count
;
1414 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< size
)
1416 buf
->vb
.width
= fh
->dev
->ts1
.ts_packet_size
;
1417 buf
->vb
.height
= fh
->dev
->ts1
.ts_packet_count
;
1418 buf
->vb
.size
= size
;
1419 buf
->vb
.field
= field
;
1421 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
1422 rc
= videobuf_iolock(q
, &buf
->vb
, NULL
);
1428 if (!dev
->video_mode
.isoc_ctl
.num_bufs
)
1431 if (!dev
->video_mode
.bulk_ctl
.num_bufs
)
1435 "urb_init=%d dev->video_mode.max_pkt_size=%d\n",
1436 urb_init
, dev
->video_mode
.max_pkt_size
);
1440 rc
= cx231xx_set_mode(dev
, CX231XX_DIGITAL_MODE
);
1441 rc
= cx231xx_unmute_audio(dev
);
1443 cx231xx_set_alt_setting(dev
, INDEX_TS1
, 4);
1444 rc
= cx231xx_init_isoc(dev
, mpeglines
,
1446 dev
->ts1_mode
.max_pkt_size
,
1449 cx231xx_set_alt_setting(dev
, INDEX_TS1
, 0);
1450 rc
= cx231xx_init_bulk(dev
, mpeglines
,
1452 dev
->ts1_mode
.max_pkt_size
,
1459 buf
->vb
.state
= VIDEOBUF_PREPARED
;
1463 free_buffer(q
, buf
);
1467 static void bb_buf_queue(struct videobuf_queue
*q
,
1468 struct videobuf_buffer
*vb
)
1470 struct cx231xx_fh
*fh
= q
->priv_data
;
1472 struct cx231xx_buffer
*buf
=
1473 container_of(vb
, struct cx231xx_buffer
, vb
);
1474 struct cx231xx
*dev
= fh
->dev
;
1475 struct cx231xx_dmaqueue
*vidq
= &dev
->video_mode
.vidq
;
1477 buf
->vb
.state
= VIDEOBUF_QUEUED
;
1478 list_add_tail(&buf
->vb
.queue
, &vidq
->active
);
1482 static void bb_buf_release(struct videobuf_queue
*q
,
1483 struct videobuf_buffer
*vb
)
1485 struct cx231xx_buffer
*buf
=
1486 container_of(vb
, struct cx231xx_buffer
, vb
);
1487 /*struct cx231xx_fh *fh = q->priv_data;*/
1488 /*struct cx231xx *dev = (struct cx231xx *)fh->dev;*/
1490 free_buffer(q
, buf
);
1493 static const struct videobuf_queue_ops cx231xx_qops
= {
1494 .buf_setup
= bb_buf_setup
,
1495 .buf_prepare
= bb_buf_prepare
,
1496 .buf_queue
= bb_buf_queue
,
1497 .buf_release
= bb_buf_release
,
1500 /* ------------------------------------------------------------------ */
1502 static int vidioc_cropcap(struct file
*file
, void *priv
,
1503 struct v4l2_cropcap
*cc
)
1505 struct cx231xx_fh
*fh
= priv
;
1506 struct cx231xx
*dev
= fh
->dev
;
1507 bool is_50hz
= dev
->encodernorm
.id
& V4L2_STD_625_50
;
1509 if (cc
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1512 cc
->bounds
.left
= 0;
1514 cc
->bounds
.width
= dev
->ts1
.width
;
1515 cc
->bounds
.height
= dev
->ts1
.height
;
1516 cc
->defrect
= cc
->bounds
;
1517 cc
->pixelaspect
.numerator
= is_50hz
? 54 : 11;
1518 cc
->pixelaspect
.denominator
= is_50hz
? 59 : 10;
1523 static int vidioc_g_std(struct file
*file
, void *fh0
, v4l2_std_id
*norm
)
1525 struct cx231xx_fh
*fh
= file
->private_data
;
1526 struct cx231xx
*dev
= fh
->dev
;
1528 *norm
= dev
->encodernorm
.id
;
1532 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id id
)
1534 struct cx231xx_fh
*fh
= file
->private_data
;
1535 struct cx231xx
*dev
= fh
->dev
;
1538 for (i
= 0; i
< ARRAY_SIZE(cx231xx_tvnorms
); i
++)
1539 if (id
& cx231xx_tvnorms
[i
].id
)
1541 if (i
== ARRAY_SIZE(cx231xx_tvnorms
))
1543 dev
->encodernorm
= cx231xx_tvnorms
[i
];
1545 if (dev
->encodernorm
.id
& 0xb000) {
1546 dprintk(3, "encodernorm set to NTSC\n");
1547 dev
->norm
= V4L2_STD_NTSC
;
1548 dev
->ts1
.height
= 480;
1549 cx2341x_handler_set_50hz(&dev
->mpeg_ctrl_handler
, false);
1551 dprintk(3, "encodernorm set to PAL\n");
1552 dev
->norm
= V4L2_STD_PAL_B
;
1553 dev
->ts1
.height
= 576;
1554 cx2341x_handler_set_50hz(&dev
->mpeg_ctrl_handler
, true);
1556 call_all(dev
, video
, s_std
, dev
->norm
);
1557 /* do mode control overrides */
1558 cx231xx_do_mode_ctrl_overrides(dev
);
1560 dprintk(3, "exit vidioc_s_std() i=0x%x\n", i
);
1564 static int vidioc_s_ctrl(struct file
*file
, void *priv
,
1565 struct v4l2_control
*ctl
)
1567 struct cx231xx_fh
*fh
= file
->private_data
;
1568 struct cx231xx
*dev
= fh
->dev
;
1569 struct v4l2_subdev
*sd
;
1571 dprintk(3, "enter vidioc_s_ctrl()\n");
1572 /* Update the A/V core */
1573 v4l2_device_for_each_subdev(sd
, &dev
->v4l2_dev
)
1574 v4l2_s_ctrl(NULL
, sd
->ctrl_handler
, ctl
);
1575 dprintk(3, "exit vidioc_s_ctrl()\n");
1579 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
1580 struct v4l2_fmtdesc
*f
)
1585 strlcpy(f
->description
, "MPEG", sizeof(f
->description
));
1586 f
->pixelformat
= V4L2_PIX_FMT_MPEG
;
1591 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
1592 struct v4l2_format
*f
)
1594 struct cx231xx_fh
*fh
= file
->private_data
;
1595 struct cx231xx
*dev
= fh
->dev
;
1597 dprintk(3, "enter vidioc_g_fmt_vid_cap()\n");
1598 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
1599 f
->fmt
.pix
.bytesperline
= 0;
1600 f
->fmt
.pix
.sizeimage
= mpeglines
* mpeglinesize
;
1601 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1602 f
->fmt
.pix
.width
= dev
->ts1
.width
;
1603 f
->fmt
.pix
.height
= dev
->ts1
.height
;
1604 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
1605 dprintk(1, "VIDIOC_G_FMT: w: %d, h: %d\n",
1606 dev
->ts1
.width
, dev
->ts1
.height
);
1607 dprintk(3, "exit vidioc_g_fmt_vid_cap()\n");
1611 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
1612 struct v4l2_format
*f
)
1614 struct cx231xx_fh
*fh
= file
->private_data
;
1615 struct cx231xx
*dev
= fh
->dev
;
1617 dprintk(3, "enter vidioc_try_fmt_vid_cap()\n");
1618 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
1619 f
->fmt
.pix
.bytesperline
= 0;
1620 f
->fmt
.pix
.sizeimage
= mpeglines
* mpeglinesize
;
1621 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
1622 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1623 dprintk(1, "VIDIOC_TRY_FMT: w: %d, h: %d\n",
1624 dev
->ts1
.width
, dev
->ts1
.height
);
1625 dprintk(3, "exit vidioc_try_fmt_vid_cap()\n");
1629 static int vidioc_reqbufs(struct file
*file
, void *priv
,
1630 struct v4l2_requestbuffers
*p
)
1632 struct cx231xx_fh
*fh
= file
->private_data
;
1634 return videobuf_reqbufs(&fh
->vidq
, p
);
1637 static int vidioc_querybuf(struct file
*file
, void *priv
,
1638 struct v4l2_buffer
*p
)
1640 struct cx231xx_fh
*fh
= file
->private_data
;
1642 return videobuf_querybuf(&fh
->vidq
, p
);
1645 static int vidioc_qbuf(struct file
*file
, void *priv
,
1646 struct v4l2_buffer
*p
)
1648 struct cx231xx_fh
*fh
= file
->private_data
;
1650 return videobuf_qbuf(&fh
->vidq
, p
);
1653 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
1655 struct cx231xx_fh
*fh
= priv
;
1657 return videobuf_dqbuf(&fh
->vidq
, b
, file
->f_flags
& O_NONBLOCK
);
1661 static int vidioc_streamon(struct file
*file
, void *priv
,
1662 enum v4l2_buf_type i
)
1664 struct cx231xx_fh
*fh
= file
->private_data
;
1665 struct cx231xx
*dev
= fh
->dev
;
1667 dprintk(3, "enter vidioc_streamon()\n");
1668 cx231xx_set_alt_setting(dev
, INDEX_TS1
, 0);
1669 cx231xx_set_mode(dev
, CX231XX_DIGITAL_MODE
);
1671 cx231xx_init_isoc(dev
, CX231XX_NUM_PACKETS
,
1673 dev
->video_mode
.max_pkt_size
,
1676 cx231xx_init_bulk(dev
, 320,
1678 dev
->ts1_mode
.max_pkt_size
,
1681 dprintk(3, "exit vidioc_streamon()\n");
1682 return videobuf_streamon(&fh
->vidq
);
1685 static int vidioc_streamoff(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1687 struct cx231xx_fh
*fh
= file
->private_data
;
1689 return videobuf_streamoff(&fh
->vidq
);
1692 static int vidioc_log_status(struct file
*file
, void *priv
)
1694 struct cx231xx_fh
*fh
= priv
;
1695 struct cx231xx
*dev
= fh
->dev
;
1697 call_all(dev
, core
, log_status
);
1698 return v4l2_ctrl_log_status(file
, priv
);
1701 static int mpeg_open(struct file
*file
)
1703 struct video_device
*vdev
= video_devdata(file
);
1704 struct cx231xx
*dev
= video_drvdata(file
);
1705 struct cx231xx_fh
*fh
;
1707 dprintk(2, "%s()\n", __func__
);
1709 if (mutex_lock_interruptible(&dev
->lock
))
1710 return -ERESTARTSYS
;
1712 /* allocate + initialize per filehandle data */
1713 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
1715 mutex_unlock(&dev
->lock
);
1719 file
->private_data
= fh
;
1720 v4l2_fh_init(&fh
->fh
, vdev
);
1724 videobuf_queue_vmalloc_init(&fh
->vidq
, &cx231xx_qops
,
1725 NULL
, &dev
->video_mode
.slock
,
1726 V4L2_BUF_TYPE_VIDEO_CAPTURE
, V4L2_FIELD_INTERLACED
,
1727 sizeof(struct cx231xx_buffer
), fh
, &dev
->lock
);
1729 videobuf_queue_sg_init(&fh->vidq, &cx231xx_qops,
1730 dev->dev, &dev->ts1.slock,
1731 V4L2_BUF_TYPE_VIDEO_CAPTURE,
1732 V4L2_FIELD_INTERLACED,
1733 sizeof(struct cx231xx_buffer),
1737 cx231xx_set_alt_setting(dev
, INDEX_VANC
, 1);
1738 cx231xx_set_gpio_value(dev
, 2, 0);
1740 cx231xx_initialize_codec(dev
);
1742 mutex_unlock(&dev
->lock
);
1743 v4l2_fh_add(&fh
->fh
);
1744 cx231xx_start_TS1(dev
);
1749 static int mpeg_release(struct file
*file
)
1751 struct cx231xx_fh
*fh
= file
->private_data
;
1752 struct cx231xx
*dev
= fh
->dev
;
1754 dprintk(3, "mpeg_release()! dev=0x%p\n", dev
);
1756 mutex_lock(&dev
->lock
);
1758 cx231xx_stop_TS1(dev
);
1760 /* do this before setting alternate! */
1762 cx231xx_uninit_isoc(dev
);
1764 cx231xx_uninit_bulk(dev
);
1765 cx231xx_set_mode(dev
, CX231XX_SUSPEND
);
1767 cx231xx_api_cmd(fh
->dev
, CX2341X_ENC_STOP_CAPTURE
, 3, 0,
1768 CX231xx_END_NOW
, CX231xx_MPEG_CAPTURE
,
1769 CX231xx_RAW_BITS_NONE
);
1771 /* FIXME: Review this crap */
1772 /* Shut device down on last close */
1773 if (atomic_cmpxchg(&fh
->v4l_reading
, 1, 0) == 1) {
1774 if (atomic_dec_return(&dev
->v4l_reader_count
) == 0) {
1775 /* stop mpeg capture */
1778 cx231xx_417_check_encoder(dev
);
1783 if (fh
->vidq
.streaming
)
1784 videobuf_streamoff(&fh
->vidq
);
1785 if (fh
->vidq
.reading
)
1786 videobuf_read_stop(&fh
->vidq
);
1788 videobuf_mmap_free(&fh
->vidq
);
1789 v4l2_fh_del(&fh
->fh
);
1790 v4l2_fh_exit(&fh
->fh
);
1792 mutex_unlock(&dev
->lock
);
1796 static ssize_t
mpeg_read(struct file
*file
, char __user
*data
,
1797 size_t count
, loff_t
*ppos
)
1799 struct cx231xx_fh
*fh
= file
->private_data
;
1800 struct cx231xx
*dev
= fh
->dev
;
1802 /* Deal w/ A/V decoder * and mpeg encoder sync issues. */
1803 /* Start mpeg encoder on first read. */
1804 if (atomic_cmpxchg(&fh
->v4l_reading
, 0, 1) == 0) {
1805 if (atomic_inc_return(&dev
->v4l_reader_count
) == 1) {
1806 if (cx231xx_initialize_codec(dev
) < 0)
1811 return videobuf_read_stream(&fh
->vidq
, data
, count
, ppos
, 0,
1812 file
->f_flags
& O_NONBLOCK
);
1815 static unsigned int mpeg_poll(struct file
*file
,
1816 struct poll_table_struct
*wait
)
1818 unsigned long req_events
= poll_requested_events(wait
);
1819 struct cx231xx_fh
*fh
= file
->private_data
;
1820 struct cx231xx
*dev
= fh
->dev
;
1821 unsigned int res
= 0;
1823 if (v4l2_event_pending(&fh
->fh
))
1826 poll_wait(file
, &fh
->fh
.wait
, wait
);
1828 if (!(req_events
& (POLLIN
| POLLRDNORM
)))
1831 mutex_lock(&dev
->lock
);
1832 res
|= videobuf_poll_stream(file
, &fh
->vidq
, wait
);
1833 mutex_unlock(&dev
->lock
);
1837 static int mpeg_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1839 struct cx231xx_fh
*fh
= file
->private_data
;
1841 dprintk(2, "%s()\n", __func__
);
1843 return videobuf_mmap_mapper(&fh
->vidq
, vma
);
1846 static const struct v4l2_file_operations mpeg_fops
= {
1847 .owner
= THIS_MODULE
,
1849 .release
= mpeg_release
,
1853 .unlocked_ioctl
= video_ioctl2
,
1856 static const struct v4l2_ioctl_ops mpeg_ioctl_ops
= {
1857 .vidioc_s_std
= vidioc_s_std
,
1858 .vidioc_g_std
= vidioc_g_std
,
1859 .vidioc_g_tuner
= cx231xx_g_tuner
,
1860 .vidioc_s_tuner
= cx231xx_s_tuner
,
1861 .vidioc_g_frequency
= cx231xx_g_frequency
,
1862 .vidioc_s_frequency
= cx231xx_s_frequency
,
1863 .vidioc_enum_input
= cx231xx_enum_input
,
1864 .vidioc_g_input
= cx231xx_g_input
,
1865 .vidioc_s_input
= cx231xx_s_input
,
1866 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1867 .vidioc_cropcap
= vidioc_cropcap
,
1868 .vidioc_querycap
= cx231xx_querycap
,
1869 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1870 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1871 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1872 .vidioc_s_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1873 .vidioc_reqbufs
= vidioc_reqbufs
,
1874 .vidioc_querybuf
= vidioc_querybuf
,
1875 .vidioc_qbuf
= vidioc_qbuf
,
1876 .vidioc_dqbuf
= vidioc_dqbuf
,
1877 .vidioc_streamon
= vidioc_streamon
,
1878 .vidioc_streamoff
= vidioc_streamoff
,
1879 .vidioc_log_status
= vidioc_log_status
,
1880 #ifdef CONFIG_VIDEO_ADV_DEBUG
1881 .vidioc_g_register
= cx231xx_g_register
,
1882 .vidioc_s_register
= cx231xx_s_register
,
1884 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1885 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1888 static struct video_device cx231xx_mpeg_template
= {
1891 .ioctl_ops
= &mpeg_ioctl_ops
,
1893 .tvnorms
= V4L2_STD_ALL
,
1896 void cx231xx_417_unregister(struct cx231xx
*dev
)
1898 dprintk(1, "%s()\n", __func__
);
1899 dprintk(3, "%s()\n", __func__
);
1901 if (video_is_registered(&dev
->v4l_device
)) {
1902 video_unregister_device(&dev
->v4l_device
);
1903 v4l2_ctrl_handler_free(&dev
->mpeg_ctrl_handler
.hdl
);
1907 static int cx231xx_s_video_encoding(struct cx2341x_handler
*cxhdl
, u32 val
)
1909 struct cx231xx
*dev
= container_of(cxhdl
, struct cx231xx
, mpeg_ctrl_handler
);
1910 int is_mpeg1
= val
== V4L2_MPEG_VIDEO_ENCODING_MPEG_1
;
1911 struct v4l2_subdev_format format
= {
1912 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
1915 /* fix videodecoder resolution */
1916 format
.format
.width
= cxhdl
->width
/ (is_mpeg1
? 2 : 1);
1917 format
.format
.height
= cxhdl
->height
;
1918 format
.format
.code
= MEDIA_BUS_FMT_FIXED
;
1919 v4l2_subdev_call(dev
->sd_cx25840
, pad
, set_fmt
, NULL
, &format
);
1923 static int cx231xx_s_audio_sampling_freq(struct cx2341x_handler
*cxhdl
, u32 idx
)
1925 static const u32 freqs
[3] = { 44100, 48000, 32000 };
1926 struct cx231xx
*dev
= container_of(cxhdl
, struct cx231xx
, mpeg_ctrl_handler
);
1928 /* The audio clock of the digitizer must match the codec sample
1929 rate otherwise you get some very strange effects. */
1930 if (idx
< ARRAY_SIZE(freqs
))
1931 call_all(dev
, audio
, s_clock_freq
, freqs
[idx
]);
1935 static const struct cx2341x_handler_ops cx231xx_ops
= {
1936 /* needed for the video clock freq */
1937 .s_audio_sampling_freq
= cx231xx_s_audio_sampling_freq
,
1938 /* needed for setting up the video resolution */
1939 .s_video_encoding
= cx231xx_s_video_encoding
,
1942 static void cx231xx_video_dev_init(
1943 struct cx231xx
*dev
,
1944 struct usb_device
*usbdev
,
1945 struct video_device
*vfd
,
1946 const struct video_device
*template,
1949 dprintk(1, "%s()\n", __func__
);
1951 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s (%s)", dev
->name
,
1952 type
, cx231xx_boards
[dev
->model
].name
);
1954 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
1955 vfd
->lock
= &dev
->lock
;
1956 vfd
->release
= video_device_release_empty
;
1957 vfd
->ctrl_handler
= &dev
->mpeg_ctrl_handler
.hdl
;
1958 video_set_drvdata(vfd
, dev
);
1959 if (dev
->tuner_type
== TUNER_ABSENT
) {
1960 v4l2_disable_ioctl(vfd
, VIDIOC_G_FREQUENCY
);
1961 v4l2_disable_ioctl(vfd
, VIDIOC_S_FREQUENCY
);
1962 v4l2_disable_ioctl(vfd
, VIDIOC_G_TUNER
);
1963 v4l2_disable_ioctl(vfd
, VIDIOC_S_TUNER
);
1967 int cx231xx_417_register(struct cx231xx
*dev
)
1969 /* FIXME: Port1 hardcoded here */
1971 struct cx231xx_tsport
*tsport
= &dev
->ts1
;
1973 dprintk(1, "%s()\n", __func__
);
1975 /* Set default TV standard */
1976 dev
->encodernorm
= cx231xx_tvnorms
[0];
1978 if (dev
->encodernorm
.id
& V4L2_STD_525_60
)
1979 tsport
->height
= 480;
1981 tsport
->height
= 576;
1983 tsport
->width
= 720;
1984 err
= cx2341x_handler_init(&dev
->mpeg_ctrl_handler
, 50);
1986 dprintk(3, "%s: can't init cx2341x controls\n", dev
->name
);
1989 dev
->mpeg_ctrl_handler
.func
= cx231xx_mbox_func
;
1990 dev
->mpeg_ctrl_handler
.priv
= dev
;
1991 dev
->mpeg_ctrl_handler
.ops
= &cx231xx_ops
;
1992 if (dev
->sd_cx25840
)
1993 v4l2_ctrl_add_handler(&dev
->mpeg_ctrl_handler
.hdl
,
1994 dev
->sd_cx25840
->ctrl_handler
, NULL
);
1995 if (dev
->mpeg_ctrl_handler
.hdl
.error
) {
1996 err
= dev
->mpeg_ctrl_handler
.hdl
.error
;
1997 dprintk(3, "%s: can't add cx25840 controls\n", dev
->name
);
1998 v4l2_ctrl_handler_free(&dev
->mpeg_ctrl_handler
.hdl
);
2001 dev
->norm
= V4L2_STD_NTSC
;
2003 dev
->mpeg_ctrl_handler
.port
= CX2341X_PORT_SERIAL
;
2004 cx2341x_handler_set_50hz(&dev
->mpeg_ctrl_handler
, false);
2006 /* Allocate and initialize V4L video device */
2007 cx231xx_video_dev_init(dev
, dev
->udev
,
2008 &dev
->v4l_device
, &cx231xx_mpeg_template
, "mpeg");
2009 err
= video_register_device(&dev
->v4l_device
,
2010 VFL_TYPE_GRABBER
, -1);
2012 dprintk(3, "%s: can't register mpeg device\n", dev
->name
);
2013 v4l2_ctrl_handler_free(&dev
->mpeg_ctrl_handler
.hdl
);
2017 dprintk(3, "%s: registered device video%d [mpeg]\n",
2018 dev
->name
, dev
->v4l_device
.num
);
2023 MODULE_FIRMWARE(CX231xx_FIRM_IMAGE_NAME
);