2 * saa7110 - Philips SAA7110(A) video decoder driver
4 * Copyright (C) 1998 Pauline Middelink <middelin@polyware.nl>
6 * Copyright (C) 1999 Wolfgang Scherr <scherr@net4you.net>
7 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
8 * - some corrections for Pinnacle Systems Inc. DC10plus card.
10 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
11 * - moved over to linux>=2.4.x i2c protocol (1/1/2003)
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/types.h>
31 #include <linux/delay.h>
32 #include <linux/slab.h>
33 #include <linux/wait.h>
35 #include <asm/uaccess.h>
37 MODULE_DESCRIPTION("Philips SAA7110 video decoder driver");
38 MODULE_AUTHOR("Pauline Middelink");
39 MODULE_LICENSE("GPL");
41 #include <linux/i2c.h>
43 #define I2C_NAME(s) (s)->name
45 #include <linux/videodev.h>
46 #include <linux/video_decoder.h>
49 module_param(debug
, int, 0);
50 MODULE_PARM_DESC(debug
, "Debug level (0-1)");
52 #define dprintk(num, format, args...) \
55 printk(format, ##args); \
58 #define SAA7110_MAX_INPUT 9 /* 6 CVBS, 3 SVHS */
59 #define SAA7110_MAX_OUTPUT 0 /* its a decoder only */
61 #define I2C_SAA7110 0x9C /* or 0x9E */
63 #define SAA7110_NR_REG 0x35
66 u8 reg
[SAA7110_NR_REG
];
79 /* ----------------------------------------------------------------------- */
80 /* I2C support functions */
81 /* ----------------------------------------------------------------------- */
84 saa7110_write (struct i2c_client
*client
,
88 struct saa7110
*decoder
= i2c_get_clientdata(client
);
90 decoder
->reg
[reg
] = value
;
91 return i2c_smbus_write_byte_data(client
, reg
, value
);
95 saa7110_write_block (struct i2c_client
*client
,
100 u8 reg
= *data
; /* first register to write to */
103 if (reg
+ (len
- 1) > SAA7110_NR_REG
)
106 /* the saa7110 has an autoincrement function, use it if
107 * the adapter understands raw I2C */
108 if (i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
)) {
109 struct saa7110
*decoder
= i2c_get_clientdata(client
);
111 ret
= i2c_master_send(client
, data
, len
);
113 /* Cache the written data */
114 memcpy(decoder
->reg
+ reg
, data
+ 1, len
- 1);
116 for (++data
, --len
; len
; len
--) {
117 if ((ret
= saa7110_write(client
, reg
++,
127 saa7110_read (struct i2c_client
*client
)
129 return i2c_smbus_read_byte(client
);
132 /* ----------------------------------------------------------------------- */
133 /* SAA7110 functions */
134 /* ----------------------------------------------------------------------- */
136 #define FRESP_06H_COMPST 0x03 //0x13
137 #define FRESP_06H_SVIDEO 0x83 //0xC0
141 saa7110_selmux (struct i2c_client
*client
,
144 static const unsigned char modes
[9][8] = {
146 {FRESP_06H_COMPST
, 0xD9, 0x17, 0x40, 0x03,
149 {FRESP_06H_COMPST
, 0xD8, 0x17, 0x40, 0x03,
152 {FRESP_06H_COMPST
, 0xBA, 0x07, 0x91, 0x03,
155 {FRESP_06H_COMPST
, 0xB8, 0x07, 0x91, 0x03,
158 {FRESP_06H_COMPST
, 0x7C, 0x07, 0xD2, 0x83,
161 {FRESP_06H_COMPST
, 0x78, 0x07, 0xD2, 0x83,
164 {FRESP_06H_SVIDEO
, 0x59, 0x17, 0x42, 0xA3,
167 {FRESP_06H_SVIDEO
, 0x9A, 0x17, 0xB1, 0x13,
170 {FRESP_06H_SVIDEO
, 0x3C, 0x27, 0xC1, 0x23,
173 struct saa7110
*decoder
= i2c_get_clientdata(client
);
174 const unsigned char *ptr
= modes
[chan
];
176 saa7110_write(client
, 0x06, ptr
[0]); /* Luminance control */
177 saa7110_write(client
, 0x20, ptr
[1]); /* Analog Control #1 */
178 saa7110_write(client
, 0x21, ptr
[2]); /* Analog Control #2 */
179 saa7110_write(client
, 0x22, ptr
[3]); /* Mixer Control #1 */
180 saa7110_write(client
, 0x2C, ptr
[4]); /* Mixer Control #2 */
181 saa7110_write(client
, 0x30, ptr
[5]); /* ADCs gain control */
182 saa7110_write(client
, 0x31, ptr
[6]); /* Mixer Control #3 */
183 saa7110_write(client
, 0x21, ptr
[7]); /* Analog Control #2 */
184 decoder
->input
= chan
;
189 static const unsigned char initseq
[1 + SAA7110_NR_REG
] = {
190 0, 0x4C, 0x3C, 0x0D, 0xEF, 0xBD, 0xF2, 0x03, 0x00,
191 /* 0x08 */ 0xF8, 0xF8, 0x60, 0x60, 0x00, 0x86, 0x18, 0x90,
192 /* 0x10 */ 0x00, 0x59, 0x40, 0x46, 0x42, 0x1A, 0xFF, 0xDA,
193 /* 0x18 */ 0xF2, 0x8B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
194 /* 0x20 */ 0xD9, 0x16, 0x40, 0x41, 0x80, 0x41, 0x80, 0x4F,
195 /* 0x28 */ 0xFE, 0x01, 0xCF, 0x0F, 0x03, 0x01, 0x03, 0x0C,
196 /* 0x30 */ 0x44, 0x71, 0x02, 0x8C, 0x02
200 determine_norm (struct i2c_client
*client
)
203 struct saa7110
*decoder
= i2c_get_clientdata(client
);
206 /* mode changed, start automatic detection */
207 saa7110_write_block(client
, initseq
, sizeof(initseq
));
208 saa7110_selmux(client
, decoder
->input
);
209 prepare_to_wait(&decoder
->wq
, &wait
, TASK_UNINTERRUPTIBLE
);
210 schedule_timeout(HZ
/4);
211 finish_wait(&decoder
->wq
, &wait
);
212 status
= saa7110_read(client
);
214 dprintk(1, KERN_INFO
"%s: status=0x%02x (no signal)\n",
215 I2C_NAME(client
), status
);
216 return decoder
->norm
; // no change
218 if ((status
& 3) == 0) {
219 saa7110_write(client
, 0x06, 0x83);
223 "%s: status=0x%02x (NTSC/no color)\n",
224 I2C_NAME(client
), status
);
225 //saa7110_write(client,0x2E,0x81);
226 return VIDEO_MODE_NTSC
;
228 dprintk(1, KERN_INFO
"%s: status=0x%02x (PAL/no color)\n",
229 I2C_NAME(client
), status
);
230 //saa7110_write(client,0x2E,0x9A);
231 return VIDEO_MODE_PAL
;
233 //saa7110_write(client,0x06,0x03);
234 if (status
& 0x20) { /* 60Hz */
235 dprintk(1, KERN_INFO
"%s: status=0x%02x (NTSC)\n",
236 I2C_NAME(client
), status
);
237 saa7110_write(client
, 0x0D, 0x86);
238 saa7110_write(client
, 0x0F, 0x50);
239 saa7110_write(client
, 0x11, 0x2C);
240 //saa7110_write(client,0x2E,0x81);
241 return VIDEO_MODE_NTSC
;
244 /* 50Hz -> PAL/SECAM */
245 saa7110_write(client
, 0x0D, 0x86);
246 saa7110_write(client
, 0x0F, 0x10);
247 saa7110_write(client
, 0x11, 0x59);
248 //saa7110_write(client,0x2E,0x9A);
250 prepare_to_wait(&decoder
->wq
, &wait
, TASK_UNINTERRUPTIBLE
);
251 schedule_timeout(HZ
/4);
252 finish_wait(&decoder
->wq
, &wait
);
254 status
= saa7110_read(client
);
255 if ((status
& 0x03) == 0x01) {
256 dprintk(1, KERN_INFO
"%s: status=0x%02x (SECAM)\n",
257 I2C_NAME(client
), status
);
258 saa7110_write(client
, 0x0D, 0x87);
259 return VIDEO_MODE_SECAM
;
261 dprintk(1, KERN_INFO
"%s: status=0x%02x (PAL)\n", I2C_NAME(client
),
263 return VIDEO_MODE_PAL
;
267 saa7110_command (struct i2c_client
*client
,
271 struct saa7110
*decoder
= i2c_get_clientdata(client
);
276 //saa7110_write_block(client, initseq, sizeof(initseq));
279 case DECODER_GET_CAPABILITIES
:
281 struct video_decoder_capability
*dc
= arg
;
284 VIDEO_DECODER_PAL
| VIDEO_DECODER_NTSC
|
285 VIDEO_DECODER_SECAM
| VIDEO_DECODER_AUTO
;
286 dc
->inputs
= SAA7110_MAX_INPUT
;
287 dc
->outputs
= SAA7110_MAX_OUTPUT
;
291 case DECODER_GET_STATUS
:
296 status
= saa7110_read(client
);
297 dprintk(1, KERN_INFO
"%s: status=0x%02x norm=%d\n",
298 I2C_NAME(client
), status
, decoder
->norm
);
299 if (!(status
& 0x40))
300 res
|= DECODER_STATUS_GOOD
;
302 res
|= DECODER_STATUS_COLOR
;
304 switch (decoder
->norm
) {
305 case VIDEO_MODE_NTSC
:
306 res
|= DECODER_STATUS_NTSC
;
309 res
|= DECODER_STATUS_PAL
;
311 case VIDEO_MODE_SECAM
:
312 res
|= DECODER_STATUS_SECAM
;
319 case DECODER_SET_NORM
:
321 if (decoder
->norm
!= v
) {
323 //saa7110_write(client, 0x06, 0x03);
325 case VIDEO_MODE_NTSC
:
326 saa7110_write(client
, 0x0D, 0x86);
327 saa7110_write(client
, 0x0F, 0x50);
328 saa7110_write(client
, 0x11, 0x2C);
329 //saa7110_write(client, 0x2E, 0x81);
331 KERN_INFO
"%s: switched to NTSC\n",
335 saa7110_write(client
, 0x0D, 0x86);
336 saa7110_write(client
, 0x0F, 0x10);
337 saa7110_write(client
, 0x11, 0x59);
338 //saa7110_write(client, 0x2E, 0x9A);
340 KERN_INFO
"%s: switched to PAL\n",
343 case VIDEO_MODE_SECAM
:
344 saa7110_write(client
, 0x0D, 0x87);
345 saa7110_write(client
, 0x0F, 0x10);
346 saa7110_write(client
, 0x11, 0x59);
347 //saa7110_write(client, 0x2E, 0x9A);
350 "%s: switched to SECAM\n",
353 case VIDEO_MODE_AUTO
:
356 "%s: TV standard detection...\n",
358 decoder
->norm
= determine_norm(client
);
359 *(int *) arg
= decoder
->norm
;
367 case DECODER_SET_INPUT
:
369 if (v
< 0 || v
> SAA7110_MAX_INPUT
) {
371 KERN_INFO
"%s: input=%d not available\n",
372 I2C_NAME(client
), v
);
375 if (decoder
->input
!= v
) {
376 saa7110_selmux(client
, v
);
377 dprintk(1, KERN_INFO
"%s: switched to input=%d\n",
378 I2C_NAME(client
), v
);
382 case DECODER_SET_OUTPUT
:
384 /* not much choice of outputs */
389 case DECODER_ENABLE_OUTPUT
:
391 if (decoder
->enable
!= v
) {
393 saa7110_write(client
, 0x0E, v
? 0x18 : 0x80);
394 dprintk(1, KERN_INFO
"%s: YUV %s\n", I2C_NAME(client
),
399 case DECODER_SET_PICTURE
:
401 struct video_picture
*pic
= arg
;
403 if (decoder
->bright
!= pic
->brightness
) {
404 /* We want 0 to 255 we get 0-65535 */
405 decoder
->bright
= pic
->brightness
;
406 saa7110_write(client
, 0x19, decoder
->bright
>> 8);
408 if (decoder
->contrast
!= pic
->contrast
) {
409 /* We want 0 to 127 we get 0-65535 */
410 decoder
->contrast
= pic
->contrast
;
411 saa7110_write(client
, 0x13,
412 decoder
->contrast
>> 9);
414 if (decoder
->sat
!= pic
->colour
) {
415 /* We want 0 to 127 we get 0-65535 */
416 decoder
->sat
= pic
->colour
;
417 saa7110_write(client
, 0x12, decoder
->sat
>> 9);
419 if (decoder
->hue
!= pic
->hue
) {
420 /* We want -128 to 127 we get 0-65535 */
421 decoder
->hue
= pic
->hue
;
422 saa7110_write(client
, 0x07,
423 (decoder
->hue
>> 8) - 128);
429 for (v
= 0; v
< SAA7110_NR_REG
; v
+= 16) {
431 dprintk(1, KERN_DEBUG
"%s: %02x:", I2C_NAME(client
),
433 for (j
= 0; j
< 16 && v
+ j
< SAA7110_NR_REG
; j
++)
434 dprintk(1, " %02x", decoder
->reg
[v
+ j
]);
440 dprintk(1, KERN_INFO
"unknown saa7110_command??(%d)\n",
447 /* ----------------------------------------------------------------------- */
451 * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
453 static unsigned short normal_i2c
[] = {
455 (I2C_SAA7110
>> 1) + 1,
459 static unsigned short ignore
= I2C_CLIENT_END
;
461 static struct i2c_client_address_data addr_data
= {
462 .normal_i2c
= normal_i2c
,
467 static struct i2c_driver i2c_driver_saa7110
;
470 saa7110_detect_client (struct i2c_adapter
*adapter
,
474 struct i2c_client
*client
;
475 struct saa7110
*decoder
;
480 "saa7110.c: detecting saa7110 client on address 0x%x\n",
483 /* Check if the adapter supports the needed features */
484 if (!i2c_check_functionality
486 I2C_FUNC_SMBUS_READ_BYTE
| I2C_FUNC_SMBUS_WRITE_BYTE_DATA
))
489 client
= kzalloc(sizeof(struct i2c_client
), GFP_KERNEL
);
492 client
->addr
= address
;
493 client
->adapter
= adapter
;
494 client
->driver
= &i2c_driver_saa7110
;
495 strlcpy(I2C_NAME(client
), "saa7110", sizeof(I2C_NAME(client
)));
497 decoder
= kzalloc(sizeof(struct saa7110
), GFP_KERNEL
);
502 decoder
->norm
= VIDEO_MODE_PAL
;
505 decoder
->bright
= 32768;
506 decoder
->contrast
= 32768;
507 decoder
->hue
= 32768;
508 decoder
->sat
= 32768;
509 init_waitqueue_head(&decoder
->wq
);
510 i2c_set_clientdata(client
, decoder
);
512 rv
= i2c_attach_client(client
);
519 rv
= saa7110_write_block(client
, initseq
, sizeof(initseq
));
521 dprintk(1, KERN_ERR
"%s_attach: init status %d\n",
522 I2C_NAME(client
), rv
);
525 saa7110_write(client
, 0x21, 0x10);
526 saa7110_write(client
, 0x0e, 0x18);
527 saa7110_write(client
, 0x0D, 0x04);
528 ver
= saa7110_read(client
);
529 saa7110_write(client
, 0x0D, 0x06);
531 status
= saa7110_read(client
);
534 "%s_attach: SAA7110A version %x at 0x%02x, status=0x%02x\n",
535 I2C_NAME(client
), ver
, client
->addr
<< 1, status
);
536 saa7110_write(client
, 0x0D, 0x86);
537 saa7110_write(client
, 0x0F, 0x10);
538 saa7110_write(client
, 0x11, 0x59);
539 //saa7110_write(client, 0x2E, 0x9A);
542 //saa7110_selmux(client,0);
543 //determine_norm(client);
544 /* setup and implicit mode 0 select has been performed */
550 saa7110_attach_adapter (struct i2c_adapter
*adapter
)
554 "saa7110.c: starting probe for adapter %s (0x%x)\n",
555 I2C_NAME(adapter
), adapter
->id
);
556 return i2c_probe(adapter
, &addr_data
, &saa7110_detect_client
);
560 saa7110_detach_client (struct i2c_client
*client
)
562 struct saa7110
*decoder
= i2c_get_clientdata(client
);
565 err
= i2c_detach_client(client
);
576 /* ----------------------------------------------------------------------- */
578 static struct i2c_driver i2c_driver_saa7110
= {
583 .id
= I2C_DRIVERID_SAA7110
,
585 .attach_adapter
= saa7110_attach_adapter
,
586 .detach_client
= saa7110_detach_client
,
587 .command
= saa7110_command
,
593 return i2c_add_driver(&i2c_driver_saa7110
);
599 i2c_del_driver(&i2c_driver_saa7110
);
602 module_init(saa7110_init
);
603 module_exit(saa7110_exit
);