blob: e0c9fdb9914a673846ba6ffb3aae3cee5d55d7c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * i2c tv tuner chip device driver
4 * controls all those simple 4-control-bytes style tuners.
5 */
6#include <linux/delay.h>
7#include <linux/i2c.h>
8#include <linux/videodev.h>
9#include <media/tuner.h>
10
11/* ---------------------------------------------------------------------- */
12
13/* tv standard selection for Temic 4046 FM5
14 this value takes the low bits of control byte 2
15 from datasheet Rev.01, Feb.00
16 standard BG I L L2 D
17 picture IF 38.9 38.9 38.9 33.95 38.9
18 sound 1 33.4 32.9 32.4 40.45 32.4
19 sound 2 33.16
20 NICAM 33.05 32.348 33.05 33.05
21 */
22#define TEMIC_SET_PAL_I 0x05
23#define TEMIC_SET_PAL_DK 0x09
24#define TEMIC_SET_PAL_L 0x0a // SECAM ?
25#define TEMIC_SET_PAL_L2 0x0b // change IF !
26#define TEMIC_SET_PAL_BG 0x0c
27
28/* tv tuner system standard selection for Philips FQ1216ME
29 this value takes the low bits of control byte 2
30 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
31 standard BG DK I L L`
32 picture carrier 38.90 38.90 38.90 38.90 33.95
33 colour 34.47 34.47 34.47 34.47 38.38
34 sound 1 33.40 32.40 32.90 32.40 40.45
35 sound 2 33.16 - - - -
36 NICAM 33.05 33.05 32.35 33.05 39.80
37 */
38#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
39#define PHILIPS_SET_PAL_BGDK 0x09
40#define PHILIPS_SET_PAL_L2 0x0a
41#define PHILIPS_SET_PAL_L 0x0b
42
43/* system switching for Philips FI1216MF MK2
44 from datasheet "1996 Jul 09",
45 standard BG L L'
46 picture carrier 38.90 38.90 33.95
47 colour 34.47 34.37 38.38
48 sound 1 33.40 32.40 40.45
49 sound 2 33.16 - -
50 NICAM 33.05 33.05 39.80
51 */
52#define PHILIPS_MF_SET_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
53#define PHILIPS_MF_SET_PAL_L 0x03 // France
54#define PHILIPS_MF_SET_PAL_L2 0x02 // L'
55
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070056/* Control byte */
57
58#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
59#define TUNER_RATIO_SELECT_50 0x00
60#define TUNER_RATIO_SELECT_32 0x02
61#define TUNER_RATIO_SELECT_166 0x04
62#define TUNER_RATIO_SELECT_62 0x06
63
64#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
65
66/* Status byte */
67
68#define TUNER_POR 0x80
69#define TUNER_FL 0x40
70#define TUNER_MODE 0x38
71#define TUNER_AFC 0x07
72#define TUNER_SIGNAL 0x07
73#define TUNER_STEREO 0x10
74
75#define TUNER_PLL_LOCKED 0x40
76#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* ---------------------------------------------------------------------- */
79
80struct tunertype
81{
82 char *name;
83 unsigned char Vendor;
84 unsigned char Type;
85
86 unsigned short thresh1; /* band switch VHF_LO <=> VHF_HI */
87 unsigned short thresh2; /* band switch VHF_HI <=> UHF */
88 unsigned char VHF_L;
89 unsigned char VHF_H;
90 unsigned char UHF;
91 unsigned char config;
92 unsigned short IFPCoff; /* 622.4=16*38.90 MHz PAL,
93 732 =16*45.75 NTSCi,
94 940 =16*58.75 NTSC-Japan
95 704 =16*44 ATSC */
96};
97
98/*
99 * The floats in the tuner struct are computed at compile time
100 * by gcc and cast back to integers. Thus we don't violate the
101 * "no float in kernel" rule.
102 */
103static struct tunertype tuners[] = {
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700104 /* 0-9 */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800105 { "Temic PAL (4002 FH5)", TEMIC, PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 16*140.25,16*463.25,0x02,0x04,0x01,0x8e,623},
107 { "Philips PAL_I (FI1246 and compatibles)", Philips, PAL_I,
108 16*140.25,16*463.25,0xa0,0x90,0x30,0x8e,623},
109 { "Philips NTSC (FI1236,FM1236 and compatibles)", Philips, NTSC,
110 16*157.25,16*451.25,0xA0,0x90,0x30,0x8e,732},
111 { "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)", Philips, SECAM,
112 16*168.25,16*447.25,0xA7,0x97,0x37,0x8e,623},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 { "NoTuner", NoTuner, NOTUNER,
114 0,0,0x00,0x00,0x00,0x00,0x00},
115 { "Philips PAL_BG (FI1216 and compatibles)", Philips, PAL,
116 16*168.25,16*447.25,0xA0,0x90,0x30,0x8e,623},
117 { "Temic NTSC (4032 FY5)", TEMIC, NTSC,
118 16*157.25,16*463.25,0x02,0x04,0x01,0x8e,732},
119 { "Temic PAL_I (4062 FY5)", TEMIC, PAL_I,
120 16*170.00,16*450.00,0x02,0x04,0x01,0x8e,623},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800121 { "Temic NTSC (4036 FY5)", TEMIC, NTSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 16*157.25,16*463.25,0xa0,0x90,0x30,0x8e,732},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800123 { "Alps HSBH1", TEMIC, NTSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 16*137.25,16*385.25,0x01,0x02,0x08,0x8e,732},
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700125
126 /* 10-19 */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800127 { "Alps TSBE1", TEMIC, PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 16*137.25,16*385.25,0x01,0x02,0x08,0x8e,732},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800129 { "Alps TSBB5", Alps, PAL_I, /* tested (UK UHF) with Modulartech MM205 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,632},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800131 { "Alps TSBE5", Alps, PAL, /* untested - data sheet guess. Only IF differs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,622},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800133 { "Alps TSBC5", Alps, PAL, /* untested - data sheet guess. Only IF differs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,608},
135 { "Temic PAL_BG (4006FH5)", TEMIC, PAL,
136 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800137 { "Alps TSCH6", Alps, NTSC,
138 16*137.25,16*385.25,0x14,0x12,0x11,0x8e,732},
139 { "Temic PAL_DK (4016 FY5)", TEMIC, PAL,
140 16*168.25,16*456.25,0xa0,0x90,0x30,0x8e,623},
141 { "Philips NTSC_M (MK2)", Philips, NTSC,
142 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732},
143 { "Temic PAL_I (4066 FY5)", TEMIC, PAL_I,
144 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
145 { "Temic PAL* auto (4006 FN5)", TEMIC, PAL,
146 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700148 /* 20-29 */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800149 { "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)", TEMIC, PAL,
150 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
151 { "Temic NTSC (4039 FR5)", TEMIC, NTSC,
152 16*158.00, 16*453.00, 0xa0,0x90,0x30,0x8e,732},
153 { "Temic PAL/SECAM multi (4046 FM5)", TEMIC, PAL,
154 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
155 { "Philips PAL_DK (FI1256 and compatibles)", Philips, PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 { "Philips PAL/SECAM multi (FQ1216ME)", Philips, PAL,
158 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
159 { "LG PAL_I+FM (TAPC-I001D)", LGINNOTEK, PAL_I,
160 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
161 { "LG PAL_I (TAPC-I701D)", LGINNOTEK, PAL_I,
162 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
163 { "LG NTSC+FM (TPI8NSR01F)", LGINNOTEK, NTSC,
164 16*210.00,16*497.00,0xa0,0x90,0x30,0x8e,732},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 { "LG PAL_BG+FM (TPI8PSB01D)", LGINNOTEK, PAL,
166 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
167 { "LG PAL_BG (TPI8PSB11D)", LGINNOTEK, PAL,
168 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700169
170 /* 30-39 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 { "Temic PAL* auto + FM (4009 FN5)", TEMIC, PAL,
172 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
173 { "SHARP NTSC_JP (2U5JF5540)", SHARP, NTSC, /* 940=16*58.75 NTSC@Japan */
174 16*137.25,16*317.25,0x01,0x02,0x08,0x8e,940 },
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700175 { "Samsung PAL TCPM9091PD27", Samsung, PAL, /* from sourceforge v3tv */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800176 16*169,16*464,0xA0,0x90,0x30,0x8e,623},
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700177 { "MT20xx universal", Microtune, PAL|NTSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* see mt20xx.c for details */ },
179 { "Temic PAL_BG (4106 FH5)", TEMIC, PAL,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800180 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 { "Temic PAL_DK/SECAM_L (4012 FY5)", TEMIC, PAL,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800182 16*140.25, 16*463.25, 0x02,0x04,0x01,0x8e,623},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 { "Temic NTSC (4136 FY5)", TEMIC, NTSC,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800184 16*158.00, 16*453.00, 0xa0,0x90,0x30,0x8e,732},
185 { "LG PAL (newer TAPC series)", LGINNOTEK, PAL,
186 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,623},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 { "Philips PAL/SECAM multi (FM1216ME MK3)", Philips, PAL,
Nickolay V. Shmyrev6f3c3432005-11-08 21:36:24 -0800188 16*158.00,16*442.00,0x01,0x02,0x04,0x8e,623 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 { "LG NTSC (newer TAPC series)", LGINNOTEK, NTSC,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800190 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,732},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700192 /* 40-49 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 { "HITACHI V7-J180AT", HITACHI, NTSC,
194 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,940 },
195 { "Philips PAL_MK (FI1216 MK)", Philips, PAL,
196 16*140.25,16*463.25,0x01,0xc2,0xcf,0x8e,623},
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700197 { "Philips 1236D ATSC/NTSC daul in", Philips, ATSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 16*157.25,16*454.00,0xa0,0x90,0x30,0x8e,732},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800199 { "Philips NTSC MK3 (FM1236MK3 or FM1236/F)", Philips, NTSC,
200 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732},
201 { "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)", Philips, NTSC,
202 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732},
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700203 { "Microtune 4049 FM5", Microtune, PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 16*141.00,16*464.00,0xa0,0x90,0x30,0x8e,623},
205 { "Panasonic VP27s/ENGE4324D", Panasonic, NTSC,
206 16*160.00,16*454.00,0x01,0x02,0x08,0xce,940},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800207 { "LG NTSC (TAPE series)", LGINNOTEK, NTSC,
208 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 },
209 { "Tenna TNF 8831 BGFF)", Philips, PAL,
210 16*161.25,16*463.25,0xa0,0x90,0x30,0x8e,623},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 { "Microtune 4042 FI5 ATSC/NTSC dual in", Microtune, NTSC,
212 16*162.00,16*457.00,0xa2,0x94,0x31,0x8e,732},
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700213
214 /* 50-59 */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800215 { "TCL 2002N", TCL, NTSC,
216 16*172.00,16*448.00,0x01,0x02,0x08,0x8e,732},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 { "Philips PAL/SECAM_D (FM 1256 I-H3)", Philips, PAL,
218 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,623 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 { "Thomson DDT 7610 (ATSC/NTSC)", THOMSON, ATSC,
220 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732},
221 { "Philips FQ1286", Philips, NTSC,
Mauro Carvalho Chehab1c94aee2005-09-09 13:03:52 -0700222 16*160.00,16*454.00,0x41,0x42,0x04,0x8e,940}, /* UHF band untested */
223 { "tda8290+75", Philips, PAL|NTSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* see tda8290.c for details */ },
Hans Verkuil20f441f2005-11-08 21:36:44 -0800225 { "TCL 2002MB", TCL, PAL,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800226 16*170.00, 16*450.00, 0x01,0x02,0x08,0xce,623},
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700227 { "Philips PAL/SECAM multi (FQ1216AME MK4)", Philips, PAL,
228 16*160.00,16*442.00,0x01,0x02,0x04,0xce,623 },
229 { "Philips FQ1236A MK4", Philips, NTSC,
230 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 },
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700231 { "Ymec TVision TVF-8531MF/8831MF/8731MF", Philips, NTSC,
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700232 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732},
233 { "Ymec TVision TVF-5533MF", Philips, NTSC,
234 16*160.00,16*454.00,0x01,0x02,0x04,0x8e,732},
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700235
Bill Pechter633323f2005-11-13 16:07:50 -0800236 /* 60-69 */
Michael Krufky3c1d0182005-06-23 22:04:56 -0700237 { "Thomson DDT 7611 (ATSC/NTSC)", THOMSON, ATSC,
238 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732},
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700239 { "Tena TNF9533-D/IF/TNF9533-B/DF", Philips, PAL,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800240 16*160.25,16*464.25,0x01,0x02,0x04,0x8e,623},
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700241 { "Philips TEA5767HN FM Radio", Philips, RADIO,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800242 /* see tea5767.c for details */},
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700243 { "Philips FMD1216ME MK3 Hybrid Tuner", Philips, PAL,
244 16*160.00,16*442.00,0x51,0x52,0x54,0x86,623 },
Mauro Carvalho Chehab4c93b072005-09-09 13:03:54 -0700245 { "LG TDVS-H062F/TUA6034", LGINNOTEK, ATSC,
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700246 16*160.00,16*455.00,0x01,0x02,0x04,0x8e,732},
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700247 { "Ymec TVF66T5-B/DFF", Philips, PAL,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800248 16*160.25,16*464.25,0x01,0x02,0x08,0x8e,623},
249 { "LG NTSC (TALN mini series)", LGINNOTEK, NTSC,
Mauro Carvalho Chehab5adc1c32005-09-09 13:03:48 -0700250 16*137.25,16*373.25,0x01,0x02,0x08,0x8e,732 },
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800251 { "Philips TD1316 Hybrid Tuner", Philips, PAL,
252 16*160.00,16*442.00,0xa1,0xa2,0xa4,0xc8,623 },
Kirk Lapraye976f9372005-11-08 21:37:04 -0800253 { "Philips TUV1236D ATSC/NTSC dual in", Philips, ATSC,
Kirk Laprayfde6d312005-11-08 21:38:18 -0800254 16*157.25,16*454.00,0x01,0x02,0x04,0xce,732 },
Bill Pechter633323f2005-11-13 16:07:50 -0800255 { "Tena TNF 5335 MF", Philips, NTSC,
256 16*157.25,16*454.00,0x01,0x02,0x04,0x8e,732 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257};
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259unsigned const int tuner_count = ARRAY_SIZE(tuners);
260
261/* ---------------------------------------------------------------------- */
262
263static int tuner_getstatus(struct i2c_client *c)
264{
265 unsigned char byte;
266
267 if (1 != i2c_master_recv(c,&byte,1))
268 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return byte;
271}
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static int tuner_signal(struct i2c_client *c)
274{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700275 return (tuner_getstatus(c) & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278static int tuner_stereo(struct i2c_client *c)
279{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700280 int stereo, status;
281 struct tuner *t = i2c_get_clientdata(c);
282
283 status = tuner_getstatus (c);
284
285 switch (t->type) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800286 case TUNER_PHILIPS_FM1216ME_MK3:
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700287 case TUNER_PHILIPS_FM1236_MK3:
288 case TUNER_PHILIPS_FM1256_IH3:
289 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
290 break;
291 default:
292 stereo = status & TUNER_STEREO;
293 }
294
295 return stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299/* ---------------------------------------------------------------------- */
300
301static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
302{
303 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkyf4372be2005-11-08 21:38:19 -0800304 u8 config, tuneraddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 u16 div;
306 struct tunertype *tun;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800307 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int rc;
309
310 tun = &tuners[t->type];
311 if (freq < tun->thresh1) {
312 config = tun->VHF_L;
313 tuner_dbg("tv: VHF lowrange\n");
314 } else if (freq < tun->thresh2) {
315 config = tun->VHF_H;
316 tuner_dbg("tv: VHF high range\n");
317 } else {
318 config = tun->UHF;
319 tuner_dbg("tv: UHF range\n");
320 }
321
322
323 /* tv norm specific stuff for multi-norm tuners */
324 switch (t->type) {
325 case TUNER_PHILIPS_SECAM: // FI1216MF
326 /* 0x01 -> ??? no change ??? */
327 /* 0x02 -> PAL BDGHI / SECAM L */
328 /* 0x04 -> ??? PAL others / SECAM others ??? */
329 config &= ~0x02;
330 if (t->std & V4L2_STD_SECAM)
331 config |= 0x02;
332 break;
333
334 case TUNER_TEMIC_4046FM5:
335 config &= ~0x0f;
336
337 if (t->std & V4L2_STD_PAL_BG) {
338 config |= TEMIC_SET_PAL_BG;
339
340 } else if (t->std & V4L2_STD_PAL_I) {
341 config |= TEMIC_SET_PAL_I;
342
343 } else if (t->std & V4L2_STD_PAL_DK) {
344 config |= TEMIC_SET_PAL_DK;
345
346 } else if (t->std & V4L2_STD_SECAM_L) {
347 config |= TEMIC_SET_PAL_L;
348
349 }
350 break;
351
352 case TUNER_PHILIPS_FQ1216ME:
353 config &= ~0x0f;
354
355 if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
356 config |= PHILIPS_SET_PAL_BGDK;
357
358 } else if (t->std & V4L2_STD_PAL_I) {
359 config |= PHILIPS_SET_PAL_I;
360
361 } else if (t->std & V4L2_STD_SECAM_L) {
362 config |= PHILIPS_SET_PAL_L;
363
364 }
365 break;
366
367 case TUNER_PHILIPS_ATSC:
368 /* 0x00 -> ATSC antenna input 1 */
369 /* 0x01 -> ATSC antenna input 2 */
370 /* 0x02 -> NTSC antenna input 1 */
371 /* 0x03 -> NTSC antenna input 2 */
372 config &= ~0x03;
373 if (!(t->std & V4L2_STD_ATSC))
374 config |= 2;
375 /* FIXME: input */
376 break;
377
378 case TUNER_MICROTUNE_4042FI5:
379 /* Set the charge pump for fast tuning */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700380 tun->config |= TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 break;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800382
383 case TUNER_PHILIPS_TUV1236D:
384 /* 0x40 -> ATSC antenna input 1 */
385 /* 0x48 -> ATSC antenna input 2 */
386 /* 0x00 -> NTSC antenna input 1 */
387 /* 0x08 -> NTSC antenna input 2 */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800388 buffer[0] = 0x14;
389 buffer[1] = 0x00;
390 buffer[2] = 0x17;
391 buffer[3] = 0x00;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800392 config &= ~0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800393 if (t->std & V4L2_STD_ATSC) {
Kirk Lapraye976f9372005-11-08 21:37:04 -0800394 config |= 0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800395 buffer[1] = 0x04;
396 }
397 /* set to the correct mode (analog or digital) */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800398 tuneraddr = c->addr;
399 c->addr = 0x0a;
400 if (2 != (rc = i2c_master_send(c,&buffer[0],2)))
401 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
402 if (2 != (rc = i2c_master_send(c,&buffer[2],2)))
403 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
404 c->addr = tuneraddr;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800405 /* FIXME: input */
406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409 /*
410 * Philips FI1216MK2 remark from specification :
411 * for channel selection involving band switching, and to ensure
412 * smooth tuning to the desired channel without causing
413 * unnecessary charge pump action, it is recommended to consider
414 * the difference between wanted channel frequency and the
415 * current channel frequency. Unnecessary charge pump action
416 * will result in very low tuning voltage which may drive the
417 * oscillator to extreme conditions.
418 *
419 * Progfou: specification says to send config data before
420 * frequency in case (wanted frequency < current frequency).
421 */
422
423 div=freq + tun->IFPCoff;
424 if (t->type == TUNER_PHILIPS_SECAM && freq < t->freq) {
425 buffer[0] = tun->config;
426 buffer[1] = config;
427 buffer[2] = (div>>8) & 0x7f;
428 buffer[3] = div & 0xff;
429 } else {
430 buffer[0] = (div>>8) & 0x7f;
431 buffer[1] = div & 0xff;
432 buffer[2] = tun->config;
433 buffer[3] = config;
434 }
435 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
436 buffer[0],buffer[1],buffer[2],buffer[3]);
437
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800438 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
440
441 if (t->type == TUNER_MICROTUNE_4042FI5) {
442 // FIXME - this may also work for other tuners
443 unsigned long timeout = jiffies + msecs_to_jiffies(1);
444 u8 status_byte = 0;
445
446 /* Wait until the PLL locks */
447 for (;;) {
448 if (time_after(jiffies,timeout))
449 return;
450 if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
451 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
452 break;
453 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700454 if (status_byte & TUNER_PLL_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 break;
456 udelay(10);
457 }
458
459 /* Set the charge pump for optimized phase noise figure */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700460 tun->config &= ~TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 buffer[0] = (div>>8) & 0x7f;
462 buffer[1] = div & 0xff;
463 buffer[2] = tun->config;
464 buffer[3] = config;
465 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
466 buffer[0],buffer[1],buffer[2],buffer[3]);
467
468 if (4 != (rc = i2c_master_send(c,buffer,4)))
469 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
470 }
471}
472
473static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
474{
475 struct tunertype *tun;
476 struct tuner *t = i2c_get_clientdata(c);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800477 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 unsigned div;
479 int rc;
480
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700481 tun = &tuners[t->type];
482 div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
483 buffer[2] = (tun->config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 switch (t->type) {
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700486 case TUNER_TENA_9533_DI:
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700487 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700488 tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
489 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 case TUNER_PHILIPS_FM1216ME_MK3:
491 case TUNER_PHILIPS_FM1236_MK3:
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700492 case TUNER_PHILIPS_FMD1216ME_MK3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 buffer[3] = 0x19;
494 break;
495 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700496 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 buffer[3] = 0x19;
498 break;
499 case TUNER_LG_PAL_FM:
500 buffer[3] = 0xa5;
501 break;
Mauro Carvalho Chehab33ac6b52005-09-09 13:03:56 -0700502 case TUNER_MICROTUNE_4049FM5:
503 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
504 buffer[3] = 0xa4;
505 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 default:
507 buffer[3] = 0xa4;
508 break;
509 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800510 buffer[0] = (div>>8) & 0x7f;
511 buffer[1] = div & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
514 buffer[0],buffer[1],buffer[2],buffer[3]);
515
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800516 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
518}
519
520int default_tuner_init(struct i2c_client *c)
521{
522 struct tuner *t = i2c_get_clientdata(c);
523
524 tuner_info("type set to %d (%s)\n",
525 t->type, tuners[t->type].name);
526 strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 t->tv_freq = default_set_tv_freq;
529 t->radio_freq = default_set_radio_freq;
530 t->has_signal = tuner_signal;
531 t->is_stereo = tuner_stereo;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700532 t->standby = NULL;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return 0;
535}
536
537/*
538 * Overrides for Emacs so that we follow Linus's tabbing style.
539 * ---------------------------------------------------------------------------
540 * Local variables:
541 * c-basic-offset: 8
542 * End:
543 */