2 * vpx3220a, vpx3216b & vpx3214c video decoder driver version 0.0.1
4 * Copyright (C) 2001 Laurent Pinchart <lpinchart@freegates.be>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/types.h>
25 #include <linux/slab.h>
27 #include <linux/byteorder/swab.h>
30 #include <asm/uaccess.h>
32 #include <linux/i2c.h>
34 #define I2C_NAME(x) (x)->name
36 #include <linux/videodev.h>
37 #include <linux/video_decoder.h>
39 #define I2C_VPX3220 0x86
40 #define VPX3220_DEBUG KERN_DEBUG "vpx3220: "
43 module_param(debug
, int, 0);
44 MODULE_PARM_DESC(debug
, "Debug level (0-1)");
46 #define dprintk(num, format, args...) \
49 printk(format, ##args); \
52 #define VPX_TIMEOUT_COUNT 10
54 /* ----------------------------------------------------------------------- */
57 unsigned char reg
[255];
68 static char *inputs
[] = { "internal", "composite", "svideo" };
70 /* ----------------------------------------------------------------------- */
72 vpx3220_write (struct i2c_client
*client
,
76 struct vpx3220
*decoder
= i2c_get_clientdata(client
);
78 decoder
->reg
[reg
] = value
;
79 return i2c_smbus_write_byte_data(client
, reg
, value
);
83 vpx3220_read (struct i2c_client
*client
,
86 return i2c_smbus_read_byte_data(client
, reg
);
90 vpx3220_fp_status (struct i2c_client
*client
)
95 for (i
= 0; i
< VPX_TIMEOUT_COUNT
; i
++) {
96 status
= vpx3220_read(client
, 0x29);
111 vpx3220_fp_write (struct i2c_client
*client
,
115 /* Write the 16-bit address to the FPWR register */
116 if (i2c_smbus_write_word_data(client
, 0x27, swab16(fpaddr
)) == -1) {
117 dprintk(1, VPX3220_DEBUG
"%s: failed\n", __func__
);
121 if (vpx3220_fp_status(client
) < 0)
124 /* Write the 16-bit data to the FPDAT register */
125 if (i2c_smbus_write_word_data(client
, 0x28, swab16(data
)) == -1) {
126 dprintk(1, VPX3220_DEBUG
"%s: failed\n", __func__
);
134 vpx3220_fp_read (struct i2c_client
*client
,
139 /* Write the 16-bit address to the FPRD register */
140 if (i2c_smbus_write_word_data(client
, 0x26, swab16(fpaddr
)) == -1) {
141 dprintk(1, VPX3220_DEBUG
"%s: failed\n", __func__
);
145 if (vpx3220_fp_status(client
) < 0)
148 /* Read the 16-bit data from the FPDAT register */
149 data
= i2c_smbus_read_word_data(client
, 0x28);
151 dprintk(1, VPX3220_DEBUG
"%s: failed\n", __func__
);
159 vpx3220_write_block (struct i2c_client
*client
,
169 vpx3220_write(client
, reg
, *data
++)) < 0)
178 vpx3220_write_fp_block (struct i2c_client
*client
,
187 ret
|= vpx3220_fp_write(client
, reg
, *data
++);
194 /* ---------------------------------------------------------------------- */
196 static const unsigned short init_ntsc
[] = {
197 0x1c, 0x00, /* NTSC tint angle */
198 0x88, 17, /* Window 1 vertical */
199 0x89, 240, /* Vertical lines in */
200 0x8a, 240, /* Vertical lines out */
201 0x8b, 000, /* Horizontal begin */
202 0x8c, 640, /* Horizontal length */
203 0x8d, 640, /* Number of pixels */
204 0x8f, 0xc00, /* Disable window 2 */
205 0xf0, 0x73, /* 13.5 MHz transport, Forced
206 * mode, latch windows */
207 0xf2, 0x13, /* NTSC M, composite input */
208 0xe7, 0x1e1, /* Enable vertical standard
209 * locking @ 240 lines */
212 static const unsigned short init_pal
[] = {
213 0x88, 23, /* Window 1 vertical begin */
214 0x89, 288, /* Vertical lines in (16 lines
215 * skipped by the VFE) */
216 0x8a, 288, /* Vertical lines out (16 lines
217 * skipped by the VFE) */
218 0x8b, 16, /* Horizontal begin */
219 0x8c, 768, /* Horizontal length */
220 0x8d, 784, /* Number of pixels
221 * Must be >= Horizontal begin + Horizontal length */
222 0x8f, 0xc00, /* Disable window 2 */
223 0xf0, 0x77, /* 13.5 MHz transport, Forced
224 * mode, latch windows */
225 0xf2, 0x3d1, /* PAL B,G,H,I, composite input */
226 0xe7, 0x241, /* PAL/SECAM set to 288 lines */
229 static const unsigned short init_secam
[] = {
230 0x88, 23, /* Window 1 vertical begin */
231 0x89, 288, /* Vertical lines in (16 lines
232 * skipped by the VFE) */
233 0x8a, 288, /* Vertical lines out (16 lines
234 * skipped by the VFE) */
235 0x8b, 16, /* Horizontal begin */
236 0x8c, 768, /* Horizontal length */
237 0x8d, 784, /* Number of pixels
238 * Must be >= Horizontal begin + Horizontal length */
239 0x8f, 0xc00, /* Disable window 2 */
240 0xf0, 0x77, /* 13.5 MHz transport, Forced
241 * mode, latch windows */
242 0xf2, 0x3d5, /* SECAM, composite input */
243 0xe7, 0x241, /* PAL/SECAM set to 288 lines */
246 static const unsigned char init_common
[] = {
247 0xf2, 0x00, /* Disable all outputs */
248 0x33, 0x0d, /* Luma : VIN2, Chroma : CIN
250 0xd8, 0xa8, /* HREF/VREF active high, VREF
251 * pulse = 2, Odd/Even flag */
252 0x20, 0x03, /* IF compensation 0dB/oct */
253 0xe0, 0xff, /* Open up all comparators */
259 0xe6, 0x00, /* Brightness set to 0 */
260 0xe7, 0xe0, /* Contrast to 1.0, noise shaping
261 * 10 to 8 2-bit error diffusion */
262 0xe8, 0xf8, /* YUV422, CbCr binary offset,
264 0xea, 0x18, /* LLC2 connected, output FIFO
265 * reset with VACTintern */
266 0xf0, 0x8a, /* Half full level to 10, bus
267 * shuffler [7:0, 23:16, 15:8] */
268 0xf1, 0x18, /* Single clock, sync mode, no
269 * FE delay, no HLEN counter */
270 0xf8, 0x12, /* Port A, PIXCLK, HF# & FE#
272 0xf9, 0x24, /* Port B, HREF, VREF, PREF &
273 * ALPHA strength to 4 */
276 static const unsigned short init_fp
[] = {
278 0xa0, 2070, /* ACC reference */
286 0x4b, 0x298, /* PLL gain */
290 vpx3220_dump_i2c (struct i2c_client
*client
)
292 int len
= sizeof(init_common
);
293 const unsigned char *data
= init_common
;
297 KERN_DEBUG
"vpx3216b i2c reg 0x%02x data 0x%02x\n",
298 *data
, vpx3220_read(client
, *data
));
305 vpx3220_command (struct i2c_client
*client
,
309 struct vpx3220
*decoder
= i2c_get_clientdata(client
);
314 vpx3220_write_block(client
, init_common
,
315 sizeof(init_common
));
316 vpx3220_write_fp_block(client
, init_fp
,
317 sizeof(init_fp
) >> 1);
318 switch (decoder
->norm
) {
320 case VIDEO_MODE_NTSC
:
321 vpx3220_write_fp_block(client
, init_ntsc
,
322 sizeof(init_ntsc
) >> 1);
326 vpx3220_write_fp_block(client
, init_pal
,
327 sizeof(init_pal
) >> 1);
329 case VIDEO_MODE_SECAM
:
330 vpx3220_write_fp_block(client
, init_secam
,
331 sizeof(init_secam
) >> 1);
334 vpx3220_write_fp_block(client
, init_pal
,
335 sizeof(init_pal
) >> 1);
343 vpx3220_dump_i2c(client
);
347 case DECODER_GET_CAPABILITIES
:
349 struct video_decoder_capability
*cap
= arg
;
351 dprintk(1, KERN_DEBUG
"%s: DECODER_GET_CAPABILITIES\n",
354 cap
->flags
= VIDEO_DECODER_PAL
|
356 VIDEO_DECODER_SECAM
|
364 case DECODER_GET_STATUS
:
368 dprintk(1, KERN_INFO
"%s: DECODER_GET_STATUS\n",
371 status
= vpx3220_fp_read(client
, 0x0f3);
373 dprintk(1, KERN_INFO
"%s: status: 0x%04x\n", I2C_NAME(client
),
379 if ((status
& 0x20) == 0) {
380 res
|= DECODER_STATUS_GOOD
| DECODER_STATUS_COLOR
;
382 switch (status
& 0x18) {
388 res
|= DECODER_STATUS_PAL
;
392 res
|= DECODER_STATUS_SECAM
;
398 res
|= DECODER_STATUS_NTSC
;
407 case DECODER_SET_NORM
:
409 int *iarg
= arg
, data
;
412 /* Here we back up the input selection because it gets
413 overwritten when we fill the registers with the
414 choosen video norm */
415 temp_input
= vpx3220_fp_read(client
, 0xf2);
417 dprintk(1, KERN_DEBUG
"%s: DECODER_SET_NORM %d\n",
418 I2C_NAME(client
), *iarg
);
421 case VIDEO_MODE_NTSC
:
422 vpx3220_write_fp_block(client
, init_ntsc
,
423 sizeof(init_ntsc
) >> 1);
424 dprintk(1, KERN_INFO
"%s: norm switched to NTSC\n",
429 vpx3220_write_fp_block(client
, init_pal
,
430 sizeof(init_pal
) >> 1);
431 dprintk(1, KERN_INFO
"%s: norm switched to PAL\n",
435 case VIDEO_MODE_SECAM
:
436 vpx3220_write_fp_block(client
, init_secam
,
437 sizeof(init_secam
) >> 1);
438 dprintk(1, KERN_INFO
"%s: norm switched to SECAM\n",
442 case VIDEO_MODE_AUTO
:
443 /* FIXME This is only preliminary support */
444 data
= vpx3220_fp_read(client
, 0xf2) & 0x20;
445 vpx3220_fp_write(client
, 0xf2, 0x00c0 | data
);
446 dprintk(1, KERN_INFO
"%s: norm switched to Auto\n",
454 decoder
->norm
= *iarg
;
456 /* And here we set the backed up video input again */
457 vpx3220_fp_write(client
, 0xf2, temp_input
| 0x0010);
462 case DECODER_SET_INPUT
:
464 int *iarg
= arg
, data
;
466 /* RJ: *iarg = 0: ST8 (PCTV) input
467 *iarg = 1: COMPOSITE input
468 *iarg = 2: SVHS input */
470 const int input
[3][2] = {
476 if (*iarg
< 0 || *iarg
> 2)
479 dprintk(1, KERN_INFO
"%s: input switched to %s\n",
480 I2C_NAME(client
), inputs
[*iarg
]);
482 vpx3220_write(client
, 0x33, input
[*iarg
][0]);
484 data
= vpx3220_fp_read(client
, 0xf2) & ~(0x0020);
487 /* 0x0010 is required to latch the setting */
488 vpx3220_fp_write(client
, 0xf2,
489 data
| (input
[*iarg
][1] << 5) | 0x0010);
495 case DECODER_SET_OUTPUT
:
499 /* not much choice of outputs */
506 case DECODER_ENABLE_OUTPUT
:
510 dprintk(1, KERN_DEBUG
"%s: DECODER_ENABLE_OUTPUT %d\n",
511 I2C_NAME(client
), *iarg
);
513 vpx3220_write(client
, 0xf2, (*iarg
? 0x1b : 0x00));
517 case DECODER_SET_PICTURE
:
519 struct video_picture
*pic
= arg
;
521 if (decoder
->bright
!= pic
->brightness
) {
522 /* We want -128 to 128 we get 0-65535 */
523 decoder
->bright
= pic
->brightness
;
524 vpx3220_write(client
, 0xe6,
525 (decoder
->bright
- 32768) >> 8);
527 if (decoder
->contrast
!= pic
->contrast
) {
528 /* We want 0 to 64 we get 0-65535 */
529 /* Bit 7 and 8 is for noise shaping */
530 decoder
->contrast
= pic
->contrast
;
531 vpx3220_write(client
, 0xe7,
532 (decoder
->contrast
>> 10) + 192);
534 if (decoder
->sat
!= pic
->colour
) {
535 /* We want 0 to 4096 we get 0-65535 */
536 decoder
->sat
= pic
->colour
;
537 vpx3220_fp_write(client
, 0xa0,
540 if (decoder
->hue
!= pic
->hue
) {
541 /* We want -512 to 512 we get 0-65535 */
542 decoder
->hue
= pic
->hue
;
543 vpx3220_fp_write(client
, 0x1c,
544 ((decoder
->hue
- 32768) >> 6) & 0xFFF);
557 vpx3220_init_client (struct i2c_client
*client
)
559 vpx3220_write_block(client
, init_common
, sizeof(init_common
));
560 vpx3220_write_fp_block(client
, init_fp
, sizeof(init_fp
) >> 1);
562 vpx3220_write_fp_block(client
, init_pal
, sizeof(init_pal
) >> 1);
567 /* -----------------------------------------------------------------------
568 * Client managment code
573 * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
575 static unsigned short normal_i2c
[] =
576 { I2C_VPX3220
>> 1, (I2C_VPX3220
>> 1) + 4,
580 static unsigned short ignore
= I2C_CLIENT_END
;
582 static struct i2c_client_address_data addr_data
= {
583 .normal_i2c
= normal_i2c
,
588 static struct i2c_driver vpx3220_i2c_driver
;
591 vpx3220_detach_client (struct i2c_client
*client
)
593 struct vpx3220
*decoder
= i2c_get_clientdata(client
);
596 err
= i2c_detach_client(client
);
608 vpx3220_detect_client (struct i2c_adapter
*adapter
,
613 struct i2c_client
*client
;
614 struct vpx3220
*decoder
;
616 dprintk(1, VPX3220_DEBUG
"%s\n", __func__
);
618 /* Check if the adapter supports the needed features */
619 if (!i2c_check_functionality
620 (adapter
, I2C_FUNC_SMBUS_BYTE_DATA
| I2C_FUNC_SMBUS_WORD_DATA
))
623 client
= kzalloc(sizeof(struct i2c_client
), GFP_KERNEL
);
624 if (client
== NULL
) {
628 client
->addr
= address
;
629 client
->adapter
= adapter
;
630 client
->driver
= &vpx3220_i2c_driver
;
632 /* Check for manufacture ID and part number */
637 id
= vpx3220_read(client
, 0x00);
641 "vpx3220_attach: Wrong manufacturer ID (0x%02x)\n",
647 pn
= (vpx3220_read(client
, 0x02) << 8) +
648 vpx3220_read(client
, 0x01);
651 strlcpy(I2C_NAME(client
), "vpx3220a",
652 sizeof(I2C_NAME(client
)));
655 strlcpy(I2C_NAME(client
), "vpx3216b",
656 sizeof(I2C_NAME(client
)));
659 strlcpy(I2C_NAME(client
), "vpx3214c",
660 sizeof(I2C_NAME(client
)));
665 "%s: Wrong part number (0x%04x)\n",
671 strlcpy(I2C_NAME(client
), "forced vpx32xx",
672 sizeof(I2C_NAME(client
)));
675 decoder
= kzalloc(sizeof(struct vpx3220
), GFP_KERNEL
);
676 if (decoder
== NULL
) {
680 decoder
->norm
= VIDEO_MODE_PAL
;
683 decoder
->bright
= 32768;
684 decoder
->contrast
= 32768;
685 decoder
->hue
= 32768;
686 decoder
->sat
= 32768;
687 i2c_set_clientdata(client
, decoder
);
689 err
= i2c_attach_client(client
);
696 dprintk(1, KERN_INFO
"%s: vpx32xx client found at address 0x%02x\n",
697 I2C_NAME(client
), client
->addr
<< 1);
699 vpx3220_init_client(client
);
705 vpx3220_attach_adapter (struct i2c_adapter
*adapter
)
709 ret
= i2c_probe(adapter
, &addr_data
, &vpx3220_detect_client
);
710 dprintk(1, VPX3220_DEBUG
"%s: i2c_probe returned %d\n",
715 /* -----------------------------------------------------------------------
716 * Driver initialization and cleanup code
719 static struct i2c_driver vpx3220_i2c_driver
= {
724 .id
= I2C_DRIVERID_VPX3220
,
726 .attach_adapter
= vpx3220_attach_adapter
,
727 .detach_client
= vpx3220_detach_client
,
728 .command
= vpx3220_command
,
734 return i2c_add_driver(&vpx3220_i2c_driver
);
738 vpx3220_cleanup (void)
740 i2c_del_driver(&vpx3220_i2c_driver
);
743 module_init(vpx3220_init
);
744 module_exit(vpx3220_cleanup
);
746 MODULE_DESCRIPTION("vpx3220a/vpx3216b/vpx3214c video encoder driver");
747 MODULE_AUTHOR("Laurent Pinchart");
748 MODULE_LICENSE("GPL");