diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-13 11:31:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 11:53:40 -0500 |
commit | f5762e441d5022ecc5b66b5fe54e41e2ac5d02be (patch) | |
tree | 6afff3bc33f4d8a2dca15a681902316d230eb811 /drivers/media/video/saa7115.c | |
parent | c04e89b1f2c624fbb1e57874062491c2b987c7e2 (diff) |
V4L/DVB (3513): Remove saa711x driver
Now, em28xx uses saa7115 instead of saa711x.
saa7115 driver is capable of handling saa 7113, 7114 and 7115.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/saa7115.c')
-rw-r--r-- | drivers/media/video/saa7115.c | 76 |
1 files changed, 62 insertions, 14 deletions
diff --git a/drivers/media/video/saa7115.c b/drivers/media/video/saa7115.c index f0eb9851bf53..7050d81c0242 100644 --- a/drivers/media/video/saa7115.c +++ b/drivers/media/video/saa7115.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* saa7115 - Philips SAA7114/SAA7115 video decoder driver | 1 | /* saa7115 - Philips SAA7113/SAA7114/SAA7115 video decoder driver |
2 | * | 2 | * |
3 | * Based on saa7114 driver by Maxim Yevtyushkin, which is based on | 3 | * Based on saa7114 driver by Maxim Yevtyushkin, which is based on |
4 | * the saa7111 driver by Dave Perks. | 4 | * the saa7111 driver by Dave Perks. |
@@ -16,6 +16,7 @@ | |||
16 | * (2/17/2003) | 16 | * (2/17/2003) |
17 | * | 17 | * |
18 | * VBI support (2004) and cleanups (2005) by Hans Verkuil <hverkuil@xs4all.nl> | 18 | * VBI support (2004) and cleanups (2005) by Hans Verkuil <hverkuil@xs4all.nl> |
19 | * SAA7113 support by Mauro Carvalho Chehab <mchehab@infradead.org> | ||
19 | * | 20 | * |
20 | * This program is free software; you can redistribute it and/or | 21 | * This program is free software; you can redistribute it and/or |
21 | * modify it under the terms of the GNU General Public License | 22 | * modify it under the terms of the GNU General Public License |
@@ -42,8 +43,9 @@ | |||
42 | #include <media/audiochip.h> | 43 | #include <media/audiochip.h> |
43 | #include <asm/div64.h> | 44 | #include <asm/div64.h> |
44 | 45 | ||
45 | MODULE_DESCRIPTION("Philips SAA7114/SAA7115 video decoder driver"); | 46 | MODULE_DESCRIPTION("Philips SAA7113/SAA7114/SAA7115 video decoder driver"); |
46 | MODULE_AUTHOR("Maxim Yevtyushkin, Kevin Thayer, Chris Kennedy, Hans Verkuil"); | 47 | MODULE_AUTHOR( "Maxim Yevtyushkin, Kevin Thayer, Chris Kennedy, " |
48 | "Hans Verkuil, Mauro Carvalho Chehab"); | ||
47 | MODULE_LICENSE("GPL"); | 49 | MODULE_LICENSE("GPL"); |
48 | 50 | ||
49 | static int debug = 0; | 51 | static int debug = 0; |
@@ -51,7 +53,10 @@ module_param(debug, bool, 0644); | |||
51 | 53 | ||
52 | MODULE_PARM_DESC(debug, "Debug level (0-1)"); | 54 | MODULE_PARM_DESC(debug, "Debug level (0-1)"); |
53 | 55 | ||
54 | static unsigned short normal_i2c[] = { 0x42 >> 1, 0x40 >> 1, I2C_CLIENT_END }; | 56 | static unsigned short normal_i2c[] = { |
57 | 0x4a >>1, 0x48 >>1, /* SAA7113 */ | ||
58 | 0x42 >> 1, 0x40 >> 1, /* SAA7114 and SAA7115 */ | ||
59 | I2C_CLIENT_END }; | ||
55 | 60 | ||
56 | 61 | ||
57 | I2C_CLIENT_INSMOD; | 62 | I2C_CLIENT_INSMOD; |
@@ -101,10 +106,12 @@ static inline int saa7115_read(struct i2c_client *client, u8 reg) | |||
101 | Hauppauge driver sets. */ | 106 | Hauppauge driver sets. */ |
102 | 107 | ||
103 | static const unsigned char saa7115_init_auto_input[] = { | 108 | static const unsigned char saa7115_init_auto_input[] = { |
109 | /* Front-End Part */ | ||
104 | 0x01, 0x48, /* white peak control disabled */ | 110 | 0x01, 0x48, /* white peak control disabled */ |
105 | 0x03, 0x20, /* was 0x30. 0x20: long vertical blanking */ | 111 | 0x03, 0x20, /* was 0x30. 0x20: long vertical blanking */ |
106 | 0x04, 0x90, /* analog gain set to 0 */ | 112 | 0x04, 0x90, /* analog gain set to 0 */ |
107 | 0x05, 0x90, /* analog gain set to 0 */ | 113 | 0x05, 0x90, /* analog gain set to 0 */ |
114 | /* Decoder Part */ | ||
108 | 0x06, 0xeb, /* horiz sync begin = -21 */ | 115 | 0x06, 0xeb, /* horiz sync begin = -21 */ |
109 | 0x07, 0xe0, /* horiz sync stop = -17 */ | 116 | 0x07, 0xe0, /* horiz sync stop = -17 */ |
110 | 0x0a, 0x80, /* was 0x88. decoder brightness, 0x80 is itu standard */ | 117 | 0x0a, 0x80, /* was 0x88. decoder brightness, 0x80 is itu standard */ |
@@ -123,6 +130,8 @@ static const unsigned char saa7115_init_auto_input[] = { | |||
123 | 0x1b, 0x42, /* misc chroma control 0x42 = recommended */ | 130 | 0x1b, 0x42, /* misc chroma control 0x42 = recommended */ |
124 | 0x1c, 0xa9, /* combfilter control 0xA9 = recommended */ | 131 | 0x1c, 0xa9, /* combfilter control 0xA9 = recommended */ |
125 | 0x1d, 0x01, /* combfilter control 0x01 = recommended */ | 132 | 0x1d, 0x01, /* combfilter control 0x01 = recommended */ |
133 | |||
134 | /* Power Device Control */ | ||
126 | 0x88, 0xd0, /* reset device */ | 135 | 0x88, 0xd0, /* reset device */ |
127 | 0x88, 0xf0, /* set device programmed, all in operational mode */ | 136 | 0x88, 0xf0, /* set device programmed, all in operational mode */ |
128 | 0x00, 0x00 | 137 | 0x00, 0x00 |
@@ -338,6 +347,33 @@ static const unsigned char saa7115_cfg_vbi_off[] = { | |||
338 | 0x00, 0x00 | 347 | 0x00, 0x00 |
339 | }; | 348 | }; |
340 | 349 | ||
350 | static const unsigned char saa7113_init_auto_input[] = { | ||
351 | 0x01, 0x08, /* PH7113_INCREMENT_DELAY - (1) (1) (1) (1) IDEL3 IDEL2 IDELL1 IDEL0 */ | ||
352 | 0x02, 0xc2, /* PH7113_ANALOG_INPUT_CONTR_1 - FUSE1 FUSE0 GUDL1 GUDL0 MODE3 MODE2 MODE1 MODE0 */ | ||
353 | 0x03, 0x30, /* PH7113_ANALOG_INPUT_CONTR_2 - (1) HLNRS VBSL WPOFF HOLDG GAFIX GAI28 GAI18 */ | ||
354 | 0x04, 0x00, /* PH7113_ANALOG_INPUT_CONTR_3 - GAI17 GAI16 GAI15 GAI14 GAI13 GAI12 GAI11 GAI10 */ | ||
355 | 0x05, 0x00, /* PH7113_ANALOG_INPUT_CONTR_4 - GAI27 GAI26 GAI25 GAI24 GAI23 GAI22 GAI21 GAI20 */ | ||
356 | 0x06, 0x89, /* PH7113_HORIZONTAL_SYNC_START - HSB7 HSB6 HSB5 HSB4 HSB3 HSB2 HSB1 HSB0 */ | ||
357 | 0x07, 0x0d, /* PH7113_HORIZONTAL_SYNC_STOP - HSS7 HSS6 HSS5 HSS4 HSS3 HSS2 HSS1 HSS0 */ | ||
358 | 0x08, 0x88, /* PH7113_SYNC_CONTROL - AUFD FSEL FOET HTC1 HTC0 HPLL VNOI1 VNOI0 */ | ||
359 | 0x09, 0x01, /* PH7113_LUMINANCE_CONTROL - BYPS PREF BPSS1 BPSS0 VBLB UPTCV APER1 APER0 */ | ||
360 | 0x0a, 0x80, /* PH7113_LUMINANCE_BRIGHTNESS - BRIG7 BRIG6 BRIG5 BRIG4 BRIG3 BRIG2 BRIG1 BRIG0 */ | ||
361 | 0x0b, 0x47, /* PH7113_LUMINANCE_CONTRAST - CONT7 CONT6 CONT5 CONT4 CONT3 CONT2 CONT1 CONT0 */ | ||
362 | 0x0c, 0x40, /* PH7113_CHROMA_SATURATION - SATN7 SATN6 SATN5 SATN4 SATN3 SATN2 SATN1 SATN0 */ | ||
363 | 0x0d, 0x00, /* PH7113_CHROMA_HUE_CONTROL - HUEC7 HUEC6 HUEC5 HUEC4 HUEC3 HUEC2 HUEC1 HUEC0 */ | ||
364 | 0x0e, 0x01, /* PH7113_CHROMA_CONTROL - CDTO CSTD2 CSTD1 CSTD0 DCCF FCTC CHBW1 CHBW0 */ | ||
365 | 0x0f, 0x2a, /* PH7113_CHROMA_GAIN_CONTROL - ACGC CGAIN6 CGAIN5 CGAIN4 CGAIN3 CGAIN2 CGAIN1 CGAIN0 */ | ||
366 | 0x10, 0x08, /* PH7113_FORMAT_DELAY_CONTROL - OFTS1 OFTS0 HDEL1 HDEL0 VRLN YDEL2 YDEL1 YDEL0 */ | ||
367 | 0x11, 0x0c, /* PH7113_OUTPUT_CONTROL_1 - GPSW1 CM99 GPSW0 HLSEL OEYC OERT VIPB COLO */ | ||
368 | 0x12, 0x07, /* PH7113_OUTPUT_CONTROL_2 - RTSE13 RTSE12 RTSE11 RTSE10 RTSE03 RTSE02 RTSE01 RTSE00 */ | ||
369 | 0x13, 0x00, /* PH7113_OUTPUT_CONTROL_3 - ADLSB (1) (1) OLDSB FIDP (1) AOSL1 AOSL0 */ | ||
370 | 0x14, 0x00, /* RESERVED 14 - (1) (1) (1) (1) (1) (1) (1) (1) */ | ||
371 | 0x15, 0x00, /* PH7113_V_GATE1_START - VSTA7 VSTA6 VSTA5 VSTA4 VSTA3 VSTA2 VSTA1 VSTA0 */ | ||
372 | 0x16, 0x00, /* PH7113_V_GATE1_STOP - VSTO7 VSTO6 VSTO5 VSTO4 VSTO3 VSTO2 VSTO1 VSTO0 */ | ||
373 | 0x17, 0x00, /* PH7113_V_GATE1_MSB - (1) (1) (1) (1) (1) (1) VSTO8 VSTA8 */ | ||
374 | 0x00, 0x00 | ||
375 | }; | ||
376 | |||
341 | static const unsigned char saa7115_init_misc[] = { | 377 | static const unsigned char saa7115_init_misc[] = { |
342 | 0x38, 0x03, /* audio stuff */ | 378 | 0x38, 0x03, /* audio stuff */ |
343 | 0x39, 0x10, | 379 | 0x39, 0x10, |
@@ -680,7 +716,7 @@ static void saa7115_set_v4lstd(struct i2c_client *client, v4l2_std_id std) | |||
680 | state->std = std; | 716 | state->std = std; |
681 | 717 | ||
682 | /* restart task B if needed */ | 718 | /* restart task B if needed */ |
683 | if (taskb && state->ident == V4L2_IDENT_SAA7114) { | 719 | if (taskb && state->ident != V4L2_IDENT_SAA7115) { |
684 | saa7115_writeregs(client, saa7115_cfg_vbi_on); | 720 | saa7115_writeregs(client, saa7115_cfg_vbi_on); |
685 | } | 721 | } |
686 | 722 | ||
@@ -703,7 +739,7 @@ static void saa7115_log_status(struct i2c_client *client) | |||
703 | int vcr; | 739 | int vcr; |
704 | 740 | ||
705 | v4l_info(client, "Audio frequency: %d Hz\n", state->audclk_freq); | 741 | v4l_info(client, "Audio frequency: %d Hz\n", state->audclk_freq); |
706 | if (client->name[6] == '4') { | 742 | if (state->ident != V4L2_IDENT_SAA7115) { |
707 | /* status for the saa7114 */ | 743 | /* status for the saa7114 */ |
708 | reg1f = saa7115_read(client, 0x1f); | 744 | reg1f = saa7115_read(client, 0x1f); |
709 | signalOk = (reg1f & 0xc1) == 0x81; | 745 | signalOk = (reg1f & 0xc1) == 0x81; |
@@ -751,8 +787,8 @@ static void saa7115_set_lcr(struct i2c_client *client, struct v4l2_sliced_vbi_fo | |||
751 | u8 lcr[24]; | 787 | u8 lcr[24]; |
752 | int i, x; | 788 | int i, x; |
753 | 789 | ||
754 | /* saa7114 doesn't yet support VBI */ | 790 | /* saa7113/71144 doesn't yet support VBI */ |
755 | if (state->ident == V4L2_IDENT_SAA7114) | 791 | if (state->ident != V4L2_IDENT_SAA7115) |
756 | return; | 792 | return; |
757 | 793 | ||
758 | for (i = 0; i <= 23; i++) | 794 | for (i = 0; i <= 23; i++) |
@@ -1261,14 +1297,12 @@ static int saa7115_attach(struct i2c_adapter *adapter, int address, int kind) | |||
1261 | 1297 | ||
1262 | saa7115_write(client, 0, 5); | 1298 | saa7115_write(client, 0, 5); |
1263 | chip_id = saa7115_read(client, 0) & 0x0f; | 1299 | chip_id = saa7115_read(client, 0) & 0x0f; |
1264 | if (chip_id != 4 && chip_id != 5) { | 1300 | if (chip_id <3 && chip_id > 5) { |
1265 | v4l_dbg(1, debug, client, "saa7115 not found\n"); | 1301 | v4l_dbg(1, debug, client, "saa7115 not found\n"); |
1266 | kfree(client); | 1302 | kfree(client); |
1267 | return 0; | 1303 | return 0; |
1268 | } | 1304 | } |
1269 | if (chip_id == 4) { | 1305 | snprintf(client->name, sizeof(client->name) - 1, "saa711%d",chip_id); |
1270 | snprintf(client->name, sizeof(client->name) - 1, "saa7114"); | ||
1271 | } | ||
1272 | v4l_info(client, "saa711%d found @ 0x%x (%s)\n", chip_id, address << 1, adapter->name); | 1306 | v4l_info(client, "saa711%d found @ 0x%x (%s)\n", chip_id, address << 1, adapter->name); |
1273 | 1307 | ||
1274 | state = kzalloc(sizeof(struct saa7115_state), GFP_KERNEL); | 1308 | state = kzalloc(sizeof(struct saa7115_state), GFP_KERNEL); |
@@ -1285,13 +1319,27 @@ static int saa7115_attach(struct i2c_adapter *adapter, int address, int kind) | |||
1285 | state->contrast = 64; | 1319 | state->contrast = 64; |
1286 | state->hue = 0; | 1320 | state->hue = 0; |
1287 | state->sat = 64; | 1321 | state->sat = 64; |
1288 | state->ident = (chip_id == 4) ? V4L2_IDENT_SAA7114 : V4L2_IDENT_SAA7115; | 1322 | switch (chip_id) { |
1323 | case 3: | ||
1324 | state->ident = V4L2_IDENT_SAA7113; | ||
1325 | break; | ||
1326 | case 4: | ||
1327 | state->ident = V4L2_IDENT_SAA7114; | ||
1328 | break; | ||
1329 | default: | ||
1330 | state->ident = V4L2_IDENT_SAA7115; | ||
1331 | break; | ||
1332 | } | ||
1333 | |||
1289 | state->audclk_freq = 48000; | 1334 | state->audclk_freq = 48000; |
1290 | 1335 | ||
1291 | v4l_dbg(1, debug, client, "writing init values\n"); | 1336 | v4l_dbg(1, debug, client, "writing init values\n"); |
1292 | 1337 | ||
1293 | /* init to 60hz/48khz */ | 1338 | /* init to 60hz/48khz */ |
1294 | saa7115_writeregs(client, saa7115_init_auto_input); | 1339 | if (state->ident==V4L2_IDENT_SAA7113) |
1340 | saa7115_writeregs(client, saa7113_init_auto_input); | ||
1341 | else | ||
1342 | saa7115_writeregs(client, saa7115_init_auto_input); | ||
1295 | saa7115_writeregs(client, saa7115_init_misc); | 1343 | saa7115_writeregs(client, saa7115_init_misc); |
1296 | saa7115_writeregs(client, saa7115_cfg_60hz_fullres_x); | 1344 | saa7115_writeregs(client, saa7115_cfg_60hz_fullres_x); |
1297 | saa7115_writeregs(client, saa7115_cfg_60hz_fullres_y); | 1345 | saa7115_writeregs(client, saa7115_cfg_60hz_fullres_y); |