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>
34 #include <asm/uaccess.h>
35 #include <linux/i2c.h>
36 #include <linux/videodev2.h>
37 #include <media/v4l2-device.h>
38 #include <media/v4l2-chip-ident.h>
40 MODULE_DESCRIPTION("Philips SAA7110 video decoder driver");
41 MODULE_AUTHOR("Pauline Middelink");
42 MODULE_LICENSE("GPL");
46 module_param(debug
, int, 0);
47 MODULE_PARM_DESC(debug
, "Debug level (0-1)");
49 #define SAA7110_MAX_INPUT 9 /* 6 CVBS, 3 SVHS */
50 #define SAA7110_MAX_OUTPUT 1 /* 1 YUV */
52 #define SAA7110_NR_REG 0x35
55 struct v4l2_subdev sd
;
56 u8 reg
[SAA7110_NR_REG
];
69 static inline struct saa7110
*to_saa7110(struct v4l2_subdev
*sd
)
71 return container_of(sd
, struct saa7110
, sd
);
74 /* ----------------------------------------------------------------------- */
75 /* I2C support functions */
76 /* ----------------------------------------------------------------------- */
78 static int saa7110_write(struct v4l2_subdev
*sd
, u8 reg
, u8 value
)
80 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
81 struct saa7110
*decoder
= to_saa7110(sd
);
83 decoder
->reg
[reg
] = value
;
84 return i2c_smbus_write_byte_data(client
, reg
, value
);
87 static int saa7110_write_block(struct v4l2_subdev
*sd
, const u8
*data
, unsigned int len
)
89 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
90 struct saa7110
*decoder
= to_saa7110(sd
);
92 u8 reg
= *data
; /* first register to write to */
95 if (reg
+ (len
- 1) > SAA7110_NR_REG
)
98 /* the saa7110 has an autoincrement function, use it if
99 * the adapter understands raw I2C */
100 if (i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
)) {
101 ret
= i2c_master_send(client
, data
, len
);
103 /* Cache the written data */
104 memcpy(decoder
->reg
+ reg
, data
+ 1, len
- 1);
106 for (++data
, --len
; len
; len
--) {
107 ret
= saa7110_write(sd
, reg
++, *data
++);
116 static inline int saa7110_read(struct v4l2_subdev
*sd
)
118 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
120 return i2c_smbus_read_byte(client
);
123 /* ----------------------------------------------------------------------- */
124 /* SAA7110 functions */
125 /* ----------------------------------------------------------------------- */
127 #define FRESP_06H_COMPST 0x03 /*0x13*/
128 #define FRESP_06H_SVIDEO 0x83 /*0xC0*/
131 static int saa7110_selmux(struct v4l2_subdev
*sd
, int chan
)
133 static const unsigned char modes
[9][8] = {
135 {FRESP_06H_COMPST
, 0xD9, 0x17, 0x40, 0x03,
138 {FRESP_06H_COMPST
, 0xD8, 0x17, 0x40, 0x03,
141 {FRESP_06H_COMPST
, 0xBA, 0x07, 0x91, 0x03,
144 {FRESP_06H_COMPST
, 0xB8, 0x07, 0x91, 0x03,
147 {FRESP_06H_COMPST
, 0x7C, 0x07, 0xD2, 0x83,
150 {FRESP_06H_COMPST
, 0x78, 0x07, 0xD2, 0x83,
153 {FRESP_06H_SVIDEO
, 0x59, 0x17, 0x42, 0xA3,
156 {FRESP_06H_SVIDEO
, 0x9A, 0x17, 0xB1, 0x13,
159 {FRESP_06H_SVIDEO
, 0x3C, 0x27, 0xC1, 0x23,
162 struct saa7110
*decoder
= to_saa7110(sd
);
163 const unsigned char *ptr
= modes
[chan
];
165 saa7110_write(sd
, 0x06, ptr
[0]); /* Luminance control */
166 saa7110_write(sd
, 0x20, ptr
[1]); /* Analog Control #1 */
167 saa7110_write(sd
, 0x21, ptr
[2]); /* Analog Control #2 */
168 saa7110_write(sd
, 0x22, ptr
[3]); /* Mixer Control #1 */
169 saa7110_write(sd
, 0x2C, ptr
[4]); /* Mixer Control #2 */
170 saa7110_write(sd
, 0x30, ptr
[5]); /* ADCs gain control */
171 saa7110_write(sd
, 0x31, ptr
[6]); /* Mixer Control #3 */
172 saa7110_write(sd
, 0x21, ptr
[7]); /* Analog Control #2 */
173 decoder
->input
= chan
;
178 static const unsigned char initseq
[1 + SAA7110_NR_REG
] = {
179 0, 0x4C, 0x3C, 0x0D, 0xEF, 0xBD, 0xF2, 0x03, 0x00,
180 /* 0x08 */ 0xF8, 0xF8, 0x60, 0x60, 0x00, 0x86, 0x18, 0x90,
181 /* 0x10 */ 0x00, 0x59, 0x40, 0x46, 0x42, 0x1A, 0xFF, 0xDA,
182 /* 0x18 */ 0xF2, 0x8B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
183 /* 0x20 */ 0xD9, 0x16, 0x40, 0x41, 0x80, 0x41, 0x80, 0x4F,
184 /* 0x28 */ 0xFE, 0x01, 0xCF, 0x0F, 0x03, 0x01, 0x03, 0x0C,
185 /* 0x30 */ 0x44, 0x71, 0x02, 0x8C, 0x02
188 static v4l2_std_id
determine_norm(struct v4l2_subdev
*sd
)
191 struct saa7110
*decoder
= to_saa7110(sd
);
194 /* mode changed, start automatic detection */
195 saa7110_write_block(sd
, initseq
, sizeof(initseq
));
196 saa7110_selmux(sd
, decoder
->input
);
197 prepare_to_wait(&decoder
->wq
, &wait
, TASK_UNINTERRUPTIBLE
);
198 schedule_timeout(msecs_to_jiffies(250));
199 finish_wait(&decoder
->wq
, &wait
);
200 status
= saa7110_read(sd
);
202 v4l2_dbg(1, debug
, sd
, "status=0x%02x (no signal)\n", status
);
203 return decoder
->norm
; /* no change*/
205 if ((status
& 3) == 0) {
206 saa7110_write(sd
, 0x06, 0x83);
208 v4l2_dbg(1, debug
, sd
, "status=0x%02x (NTSC/no color)\n", status
);
209 /*saa7110_write(sd,0x2E,0x81);*/
210 return V4L2_STD_NTSC
;
212 v4l2_dbg(1, debug
, sd
, "status=0x%02x (PAL/no color)\n", status
);
213 /*saa7110_write(sd,0x2E,0x9A);*/
216 /*saa7110_write(sd,0x06,0x03);*/
217 if (status
& 0x20) { /* 60Hz */
218 v4l2_dbg(1, debug
, sd
, "status=0x%02x (NTSC)\n", status
);
219 saa7110_write(sd
, 0x0D, 0x86);
220 saa7110_write(sd
, 0x0F, 0x50);
221 saa7110_write(sd
, 0x11, 0x2C);
222 /*saa7110_write(sd,0x2E,0x81);*/
223 return V4L2_STD_NTSC
;
226 /* 50Hz -> PAL/SECAM */
227 saa7110_write(sd
, 0x0D, 0x86);
228 saa7110_write(sd
, 0x0F, 0x10);
229 saa7110_write(sd
, 0x11, 0x59);
230 /*saa7110_write(sd,0x2E,0x9A);*/
232 prepare_to_wait(&decoder
->wq
, &wait
, TASK_UNINTERRUPTIBLE
);
233 schedule_timeout(msecs_to_jiffies(250));
234 finish_wait(&decoder
->wq
, &wait
);
236 status
= saa7110_read(sd
);
237 if ((status
& 0x03) == 0x01) {
238 v4l2_dbg(1, debug
, sd
, "status=0x%02x (SECAM)\n", status
);
239 saa7110_write(sd
, 0x0D, 0x87);
240 return V4L2_STD_SECAM
;
242 v4l2_dbg(1, debug
, sd
, "status=0x%02x (PAL)\n", status
);
246 static int saa7110_g_input_status(struct v4l2_subdev
*sd
, u32
*pstatus
)
248 struct saa7110
*decoder
= to_saa7110(sd
);
249 int res
= V4L2_IN_ST_NO_SIGNAL
;
250 int status
= saa7110_read(sd
);
252 v4l2_dbg(1, debug
, sd
, "status=0x%02x norm=%llx\n",
253 status
, (unsigned long long)decoder
->norm
);
254 if (!(status
& 0x40))
256 if (!(status
& 0x03))
257 res
|= V4L2_IN_ST_NO_COLOR
;
263 static int saa7110_querystd(struct v4l2_subdev
*sd
, v4l2_std_id
*std
)
265 *(v4l2_std_id
*)std
= determine_norm(sd
);
269 static int saa7110_s_std(struct v4l2_subdev
*sd
, v4l2_std_id std
)
271 struct saa7110
*decoder
= to_saa7110(sd
);
273 if (decoder
->norm
!= std
) {
275 /*saa7110_write(sd, 0x06, 0x03);*/
276 if (std
& V4L2_STD_NTSC
) {
277 saa7110_write(sd
, 0x0D, 0x86);
278 saa7110_write(sd
, 0x0F, 0x50);
279 saa7110_write(sd
, 0x11, 0x2C);
280 /*saa7110_write(sd, 0x2E, 0x81);*/
281 v4l2_dbg(1, debug
, sd
, "switched to NTSC\n");
282 } else if (std
& V4L2_STD_PAL
) {
283 saa7110_write(sd
, 0x0D, 0x86);
284 saa7110_write(sd
, 0x0F, 0x10);
285 saa7110_write(sd
, 0x11, 0x59);
286 /*saa7110_write(sd, 0x2E, 0x9A);*/
287 v4l2_dbg(1, debug
, sd
, "switched to PAL\n");
288 } else if (std
& V4L2_STD_SECAM
) {
289 saa7110_write(sd
, 0x0D, 0x87);
290 saa7110_write(sd
, 0x0F, 0x10);
291 saa7110_write(sd
, 0x11, 0x59);
292 /*saa7110_write(sd, 0x2E, 0x9A);*/
293 v4l2_dbg(1, debug
, sd
, "switched to SECAM\n");
301 static int saa7110_s_routing(struct v4l2_subdev
*sd
,
302 u32 input
, u32 output
, u32 config
)
304 struct saa7110
*decoder
= to_saa7110(sd
);
306 if (input
>= SAA7110_MAX_INPUT
) {
307 v4l2_dbg(1, debug
, sd
, "input=%d not available\n", input
);
310 if (decoder
->input
!= input
) {
311 saa7110_selmux(sd
, input
);
312 v4l2_dbg(1, debug
, sd
, "switched to input=%d\n", input
);
317 static int saa7110_s_stream(struct v4l2_subdev
*sd
, int enable
)
319 struct saa7110
*decoder
= to_saa7110(sd
);
321 if (decoder
->enable
!= enable
) {
322 decoder
->enable
= enable
;
323 saa7110_write(sd
, 0x0E, enable
? 0x18 : 0x80);
324 v4l2_dbg(1, debug
, sd
, "YUV %s\n", enable
? "on" : "off");
329 static int saa7110_queryctrl(struct v4l2_subdev
*sd
, struct v4l2_queryctrl
*qc
)
332 case V4L2_CID_BRIGHTNESS
:
333 return v4l2_ctrl_query_fill(qc
, 0, 255, 1, 128);
334 case V4L2_CID_CONTRAST
:
335 case V4L2_CID_SATURATION
:
336 return v4l2_ctrl_query_fill(qc
, 0, 127, 1, 64);
338 return v4l2_ctrl_query_fill(qc
, -128, 127, 1, 0);
345 static int saa7110_g_ctrl(struct v4l2_subdev
*sd
, struct v4l2_control
*ctrl
)
347 struct saa7110
*decoder
= to_saa7110(sd
);
350 case V4L2_CID_BRIGHTNESS
:
351 ctrl
->value
= decoder
->bright
;
353 case V4L2_CID_CONTRAST
:
354 ctrl
->value
= decoder
->contrast
;
356 case V4L2_CID_SATURATION
:
357 ctrl
->value
= decoder
->sat
;
360 ctrl
->value
= decoder
->hue
;
368 static int saa7110_s_ctrl(struct v4l2_subdev
*sd
, struct v4l2_control
*ctrl
)
370 struct saa7110
*decoder
= to_saa7110(sd
);
373 case V4L2_CID_BRIGHTNESS
:
374 if (decoder
->bright
!= ctrl
->value
) {
375 decoder
->bright
= ctrl
->value
;
376 saa7110_write(sd
, 0x19, decoder
->bright
);
379 case V4L2_CID_CONTRAST
:
380 if (decoder
->contrast
!= ctrl
->value
) {
381 decoder
->contrast
= ctrl
->value
;
382 saa7110_write(sd
, 0x13, decoder
->contrast
);
385 case V4L2_CID_SATURATION
:
386 if (decoder
->sat
!= ctrl
->value
) {
387 decoder
->sat
= ctrl
->value
;
388 saa7110_write(sd
, 0x12, decoder
->sat
);
392 if (decoder
->hue
!= ctrl
->value
) {
393 decoder
->hue
= ctrl
->value
;
394 saa7110_write(sd
, 0x07, decoder
->hue
);
403 static int saa7110_g_chip_ident(struct v4l2_subdev
*sd
, struct v4l2_dbg_chip_ident
*chip
)
405 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
407 return v4l2_chip_ident_i2c_client(client
, chip
, V4L2_IDENT_SAA7110
, 0);
410 /* ----------------------------------------------------------------------- */
412 static const struct v4l2_subdev_core_ops saa7110_core_ops
= {
413 .g_chip_ident
= saa7110_g_chip_ident
,
414 .g_ctrl
= saa7110_g_ctrl
,
415 .s_ctrl
= saa7110_s_ctrl
,
416 .queryctrl
= saa7110_queryctrl
,
417 .s_std
= saa7110_s_std
,
420 static const struct v4l2_subdev_video_ops saa7110_video_ops
= {
421 .s_routing
= saa7110_s_routing
,
422 .s_stream
= saa7110_s_stream
,
423 .querystd
= saa7110_querystd
,
424 .g_input_status
= saa7110_g_input_status
,
427 static const struct v4l2_subdev_ops saa7110_ops
= {
428 .core
= &saa7110_core_ops
,
429 .video
= &saa7110_video_ops
,
432 /* ----------------------------------------------------------------------- */
434 static int saa7110_probe(struct i2c_client
*client
,
435 const struct i2c_device_id
*id
)
437 struct saa7110
*decoder
;
438 struct v4l2_subdev
*sd
;
441 /* Check if the adapter supports the needed features */
442 if (!i2c_check_functionality(client
->adapter
,
443 I2C_FUNC_SMBUS_READ_BYTE
| I2C_FUNC_SMBUS_WRITE_BYTE_DATA
))
446 v4l_info(client
, "chip found @ 0x%x (%s)\n",
447 client
->addr
<< 1, client
->adapter
->name
);
449 decoder
= kzalloc(sizeof(struct saa7110
), GFP_KERNEL
);
453 v4l2_i2c_subdev_init(sd
, client
, &saa7110_ops
);
454 decoder
->norm
= V4L2_STD_PAL
;
457 decoder
->bright
= 32768;
458 decoder
->contrast
= 32768;
459 decoder
->hue
= 32768;
460 decoder
->sat
= 32768;
461 init_waitqueue_head(&decoder
->wq
);
463 rv
= saa7110_write_block(sd
, initseq
, sizeof(initseq
));
465 v4l2_dbg(1, debug
, sd
, "init status %d\n", rv
);
468 saa7110_write(sd
, 0x21, 0x10);
469 saa7110_write(sd
, 0x0e, 0x18);
470 saa7110_write(sd
, 0x0D, 0x04);
471 ver
= saa7110_read(sd
);
472 saa7110_write(sd
, 0x0D, 0x06);
474 status
= saa7110_read(sd
);
475 v4l2_dbg(1, debug
, sd
, "version %x, status=0x%02x\n",
477 saa7110_write(sd
, 0x0D, 0x86);
478 saa7110_write(sd
, 0x0F, 0x10);
479 saa7110_write(sd
, 0x11, 0x59);
480 /*saa7110_write(sd, 0x2E, 0x9A);*/
483 /*saa7110_selmux(sd,0);*/
484 /*determine_norm(sd);*/
485 /* setup and implicit mode 0 select has been performed */
490 static int saa7110_remove(struct i2c_client
*client
)
492 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
494 v4l2_device_unregister_subdev(sd
);
495 kfree(to_saa7110(sd
));
499 /* ----------------------------------------------------------------------- */
501 static const struct i2c_device_id saa7110_id
[] = {
505 MODULE_DEVICE_TABLE(i2c
, saa7110_id
);
507 static struct i2c_driver saa7110_driver
= {
509 .owner
= THIS_MODULE
,
512 .probe
= saa7110_probe
,
513 .remove
= saa7110_remove
,
514 .id_table
= saa7110_id
,
517 static __init
int init_saa7110(void)
519 return i2c_add_driver(&saa7110_driver
);
522 static __exit
void exit_saa7110(void)
524 i2c_del_driver(&saa7110_driver
);
527 module_init(init_saa7110
);
528 module_exit(exit_saa7110
);