blob: f30ef79d795e1cc98af82d3422fe0612f9559fb4 [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 * core core, i.e. kernel interfaces, registering and so on
5 */
6
7#include <linux/module.h>
8#include <linux/moduleparam.h>
9#include <linux/kernel.h>
10#include <linux/sched.h>
11#include <linux/string.h>
12#include <linux/timer.h>
13#include <linux/delay.h>
14#include <linux/errno.h>
15#include <linux/slab.h>
16#include <linux/poll.h>
17#include <linux/i2c.h>
18#include <linux/types.h>
19#include <linux/videodev.h>
20#include <linux/init.h>
21
22#include <media/tuner.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020023#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <media/audiochip.h>
25
26#define UNSET (-1U)
27
28/* standard i2c insmod options */
29static unsigned short normal_i2c[] = {
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080030 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -070031 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
32 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 I2C_CLIENT_END
34};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036I2C_CLIENT_INSMOD;
37
38/* insmod options used at init time => read/only */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070039static unsigned int addr = 0;
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -070040static unsigned int no_autodetect = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070041static unsigned int show_i2c = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* insmod options used at runtime => read/write */
Hans Verkuilf9195de2006-01-11 19:01:01 -020044static unsigned int tuner_debug_old = 0;
45int tuner_debug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070047static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static unsigned int radio_range[2] = { 65, 108 };
49
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -020050static char pal[] = "--";
51static char secam[] = "--";
52static char ntsc[] = "-";
53
Hans Verkuilf9195de2006-01-11 19:01:01 -020054
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -020055module_param(addr, int, 0444);
56module_param(no_autodetect, int, 0444);
57module_param(show_i2c, int, 0444);
Hans Verkuilfac9e892006-01-09 15:32:40 -020058/* Note: tuner_debug is deprecated and will be removed in 2.6.17 */
Hans Verkuilf9195de2006-01-11 19:01:01 -020059module_param_named(tuner_debug,tuner_debug_old, int, 0444);
60module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -020061module_param_string(pal, pal, sizeof(pal), 0644);
62module_param_string(secam, secam, sizeof(secam), 0644);
63module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070064module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065module_param_array(radio_range, int, NULL, 0644);
66
67MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
68MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
69MODULE_LICENSE("GPL");
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static struct i2c_driver driver;
72static struct i2c_client client_template;
73
74/* ---------------------------------------------------------------------- */
75
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -070076/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static void set_tv_freq(struct i2c_client *c, unsigned int freq)
78{
79 struct tuner *t = i2c_get_clientdata(c);
80
81 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070082 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return;
84 }
85 if (NULL == t->tv_freq) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070086 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return;
88 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070089 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
90 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
91 freq / 16, freq % 16 * 100 / 16, tv_range[0],
92 tv_range[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070094 t->tv_freq(c, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
97static void set_radio_freq(struct i2c_client *c, unsigned int freq)
98{
99 struct tuner *t = i2c_get_clientdata(c);
100
101 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700102 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return;
104 }
105 if (NULL == t->radio_freq) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700106 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return;
108 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700109 if (freq <= radio_range[0] * 16000 || freq >= radio_range[1] * 16000) {
110 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
111 freq / 16000, freq % 16000 * 100 / 16000,
112 radio_range[0], radio_range[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700114
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700115 t->radio_freq(c, freq);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700116 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static void set_freq(struct i2c_client *c, unsigned long freq)
120{
121 struct tuner *t = i2c_get_clientdata(c);
122
123 switch (t->mode) {
124 case V4L2_TUNER_RADIO:
125 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700126 freq / 16000, freq % 16000 * 100 / 16000);
127 set_radio_freq(c, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 break;
129 case V4L2_TUNER_ANALOG_TV:
130 case V4L2_TUNER_DIGITAL_TV:
131 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700132 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 set_tv_freq(c, freq);
134 break;
135 }
136 t->freq = freq;
137}
138
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700139static void set_type(struct i2c_client *c, unsigned int type,
140 unsigned int new_mode_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct tuner *t = i2c_get_clientdata(c);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700143 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700145 if (type == UNSET || type == TUNER_ABSENT) {
146 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return;
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700150 if (type >= tuner_count) {
151 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
152 return;
153 }
154
155 /* This code detects calls by card attach_inform */
156 if (NULL == t->i2c.dev.driver) {
157 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
158
159 t->type=type;
160 return;
161 }
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 t->type = type;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 switch (t->type) {
166 case TUNER_MT2032:
167 microtune_init(c);
168 break;
169 case TUNER_PHILIPS_TDA8290:
170 tda8290_init(c);
171 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700172 case TUNER_TEA5767:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700173 if (tea5767_tuner_init(c) == EINVAL) {
174 t->type = TUNER_ABSENT;
175 t->mode_mask = T_UNINITIALIZED;
176 return;
177 }
178 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700179 break;
180 case TUNER_PHILIPS_FMD1216ME_MK3:
181 buffer[0] = 0x0b;
182 buffer[1] = 0xdc;
183 buffer[2] = 0x9c;
184 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700185 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700186 mdelay(1);
187 buffer[2] = 0x86;
188 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700189 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700190 default_tuner_init(c);
191 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700192 case TUNER_LG_TDVS_H062F:
193 /* Set the Auxiliary Byte. */
194 buffer[2] &= ~0x20;
195 buffer[2] |= 0x18;
196 buffer[3] = 0x20;
197 i2c_master_send(c, buffer, 4);
198 default_tuner_init(c);
199 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800200 case TUNER_PHILIPS_TD1316:
201 buffer[0] = 0x0b;
202 buffer[1] = 0xdc;
203 buffer[2] = 0x86;
204 buffer[3] = 0xa4;
205 i2c_master_send(c,buffer,4);
206 default_tuner_init(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 default:
208 default_tuner_init(c);
209 break;
210 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700211
212 if (t->mode_mask == T_UNINITIALIZED)
213 t->mode_mask = new_mode_mask;
214
215 set_freq(c, t->freq);
216 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100217 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700218 t->mode_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700221/*
222 * This function apply tuner config to tuner specified
223 * by tun_setup structure. I addr is unset, then admin status
224 * and tun addr status is more precise then current status,
225 * it's applied. Otherwise status and type are applied only to
226 * tuner with exactly the same addr.
227*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700228
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700229static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700230{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700231 struct tuner *t = i2c_get_clientdata(c);
232
Ricardo Cerqueira291d1d72005-11-08 21:38:33 -0800233 if ( t->type == UNSET && ((tun_setup->addr == ADDR_UNSET &&
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700234 (t->mode_mask & tun_setup->mode_mask)) ||
Ricardo Cerqueira291d1d72005-11-08 21:38:33 -0800235 tun_setup->addr == c->addr)) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700236 set_type(c, tun_setup->type, tun_setup->mode_mask);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700237 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700238}
239
240static inline int check_mode(struct tuner *t, char *cmd)
241{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700242 if ((1 << t->mode & t->mode_mask) == 0) {
243 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700244 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700245
246 switch (t->mode) {
247 case V4L2_TUNER_RADIO:
248 tuner_dbg("Cmd %s accepted for radio\n", cmd);
249 break;
250 case V4L2_TUNER_ANALOG_TV:
251 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
252 break;
253 case V4L2_TUNER_DIGITAL_TV:
254 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
255 break;
256 }
257 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700258}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700259
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700260/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261static int tuner_fixup_std(struct tuner *t)
262{
263 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 switch (pal[0]) {
265 case 'b':
266 case 'B':
267 case 'g':
268 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700269 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 t->std = V4L2_STD_PAL_BG;
271 break;
272 case 'i':
273 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700274 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 t->std = V4L2_STD_PAL_I;
276 break;
277 case 'd':
278 case 'D':
279 case 'k':
280 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700281 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 t->std = V4L2_STD_PAL_DK;
283 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700284 case 'M':
285 case 'm':
286 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
287 t->std = V4L2_STD_PAL_M;
288 break;
289 case 'N':
290 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200291 if (pal[1] == 'c' || pal[1] == 'C') {
292 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
293 t->std = V4L2_STD_PAL_Nc;
294 } else {
295 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
296 t->std = V4L2_STD_PAL_N;
297 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700298 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700299 case '-':
300 /* default parameter, do nothing */
301 break;
302 default:
303 tuner_warn ("pal= argument not recognised\n");
304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700307 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
308 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200309 case 'b':
310 case 'B':
311 case 'g':
312 case 'G':
313 case 'h':
314 case 'H':
315 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
316 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
317 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700318 case 'd':
319 case 'D':
320 case 'k':
321 case 'K':
322 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
323 t->std = V4L2_STD_SECAM_DK;
324 break;
325 case 'l':
326 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800327 if ((secam[1]=='C')||(secam[1]=='c')) {
328 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
329 t->std = V4L2_STD_SECAM_LC;
330 } else {
331 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
332 t->std = V4L2_STD_SECAM_L;
333 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700334 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700335 case '-':
336 /* default parameter, do nothing */
337 break;
338 default:
339 tuner_warn ("secam= argument not recognised\n");
340 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700341 }
342 }
343
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200344 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
345 switch (ntsc[0]) {
346 case 'm':
347 case 'M':
348 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
349 t->std = V4L2_STD_NTSC_M;
350 break;
351 case 'j':
352 case 'J':
353 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
354 t->std = V4L2_STD_NTSC_M_JP;
355 break;
356 case '-':
357 /* default parameter, do nothing */
358 break;
359 default:
360 tuner_info("ntsc= argument not recognised\n");
361 break;
362 }
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0;
365}
366
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200367static void tuner_status(struct i2c_client *client)
368{
369 struct tuner *t = i2c_get_clientdata(client);
370 unsigned long freq, freq_fraction;
371 const char *p;
372
373 switch (t->mode) {
374 case V4L2_TUNER_RADIO: p = "radio"; break;
375 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
376 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
377 default: p = "undefined"; break;
378 }
379 if (t->mode == V4L2_TUNER_RADIO) {
380 freq = t->freq / 16000;
381 freq_fraction = (t->freq % 16000) * 100 / 16000;
382 } else {
383 freq = t->freq / 16;
384 freq_fraction = (t->freq % 16) * 100 / 16;
385 }
386 tuner_info("Tuner mode: %s\n", p);
387 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
388 tuner_info("Standard: 0x%08llx\n", t->std);
389 if (t->mode == V4L2_TUNER_RADIO) {
390 if (t->has_signal) {
391 tuner_info("Signal strength: %d\n", t->has_signal(client));
392 }
393 if (t->is_stereo) {
394 tuner_info("Stereo: %s\n", t->is_stereo(client) ? "yes" : "no");
395 }
396 }
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398/* ---------------------------------------------------------------------- */
399
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700400/* static var Used only in tuner_attach and tuner_probe */
401static unsigned default_mode_mask;
402
403/* During client attach, set_type is called by adapter's attach_inform callback.
404 set_type must then be completed by tuner_attach.
405 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406static int tuner_attach(struct i2c_adapter *adap, int addr, int kind)
407{
408 struct tuner *t;
409
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700410 client_template.adapter = adap;
411 client_template.addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Panagiotis Issaris74081872006-01-11 19:40:56 -0200413 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700414 if (NULL == t)
415 return -ENOMEM;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700416 memcpy(&t->i2c, &client_template, sizeof(struct i2c_client));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 i2c_set_clientdata(&t->i2c, t);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700418 t->type = UNSET;
419 t->radio_if2 = 10700 * 1000; /* 10.7MHz - FM radio */
420 t->audmode = V4L2_TUNER_MODE_STEREO;
421 t->mode_mask = T_UNINITIALIZED;
Hans Verkuilf9195de2006-01-11 19:01:01 -0200422 if (tuner_debug_old) {
423 tuner_debug = tuner_debug_old;
Hans Verkuilfac9e892006-01-09 15:32:40 -0200424 printk(KERN_ERR "tuner: tuner_debug is deprecated and will be removed in 2.6.17.\n");
425 printk(KERN_ERR "tuner: use the debug option instead.\n");
426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700428 if (show_i2c) {
429 unsigned char buffer[16];
430 int i,rc;
431
432 memset(buffer, 0, sizeof(buffer));
433 rc = i2c_master_recv(&t->i2c, buffer, sizeof(buffer));
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800434 tuner_info("I2C RECV = ");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700435 for (i=0;i<rc;i++)
436 printk("%02x ",buffer[i]);
437 printk("\n");
438 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700439 /* TEA5767 autodetection code - only for addr = 0xc0 */
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700440 if (!no_autodetect) {
Mauro Carvalho Chehab13dd38d2005-11-08 21:37:57 -0800441 switch (addr) {
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800442 case 0x42:
443 case 0x43:
444 case 0x4a:
445 case 0x4b:
446 /* If chip is not tda8290, don't register.
447 since it can be tda9887*/
448 if (tda8290_probe(&t->i2c) != 0) {
Nickolay V. Shmyrevb228ede2005-11-08 21:38:11 -0800449 tuner_dbg("chip at addr %x is not a tda8290\n", addr);
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800450 kfree(t);
451 return 0;
452 }
453 break;
Mauro Carvalho Chehab13dd38d2005-11-08 21:37:57 -0800454 case 0x60:
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700455 if (tea5767_autodetection(&t->i2c) != EINVAL) {
456 t->type = TUNER_TEA5767;
457 t->mode_mask = T_RADIO;
458 t->mode = T_STANDBY;
459 t->freq = 87.5 * 16; /* Sets freq to FM range */
460 default_mode_mask &= ~T_RADIO;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700461
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800462 goto register_client;
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700463 }
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800464 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700465 }
466 }
467
468 /* Initializes only the first adapter found */
469 if (default_mode_mask != T_UNINITIALIZED) {
470 tuner_dbg ("Setting mode_mask to 0x%02x\n", default_mode_mask);
471 t->mode_mask = default_mode_mask;
472 t->freq = 400 * 16; /* Sets freq to VHF High */
473 default_mode_mask = T_UNINITIALIZED;
474 }
475
476 /* Should be just before return */
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800477register_client:
478 tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700479 i2c_attach_client (&t->i2c);
480 set_type (&t->i2c,t->type, t->mode_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return 0;
482}
483
484static int tuner_probe(struct i2c_adapter *adap)
485{
486 if (0 != addr) {
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -0700487 normal_i2c[0] = addr;
488 normal_i2c[1] = I2C_CLIENT_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700491 default_mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (adap->class & I2C_CLASS_TV_ANALOG)
494 return i2c_probe(adap, &addr_data, tuner_attach);
495 return 0;
496}
497
498static int tuner_detach(struct i2c_client *client)
499{
500 struct tuner *t = i2c_get_clientdata(client);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700501 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700503 err = i2c_detach_client(&t->i2c);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700504 if (err) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700505 tuner_warn
506 ("Client deregistration failed, client not detached.\n");
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700507 return err;
508 }
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 kfree(t);
511 return 0;
512}
513
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700514/*
515 * Switch tuner to other mode. If tuner support both tv and radio,
516 * set another frequency to some value (This is needed for some pal
517 * tuners to avoid locking). Otherwise, just put second tuner in
518 * standby mode.
519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700521static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
522{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800523 if (mode == t->mode)
524 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700525
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800526 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700527
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800528 if (check_mode(t, cmd) == EINVAL) {
529 t->mode = T_STANDBY;
530 if (t->standby)
531 t->standby (client);
532 return EINVAL;
533 }
534 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700535}
536
537#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800538 tuner_dbg("switching to v4l2\n"); \
539 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700540
541static inline int check_v4l2(struct tuner *t)
542{
543 if (t->using_v4l2) {
544 tuner_dbg ("ignore v4l1 call\n");
545 return EINVAL;
546 }
547 return 0;
548}
549
550static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
552 struct tuner *t = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Hans Verkuilf9195de2006-01-11 19:01:01 -0200554 if (tuner_debug>1)
Michael Krufky5e453dc2006-01-09 15:32:31 -0200555 v4l_i2c_print_ioctl(&(t->i2c),cmd);
556
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700557 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700559 case TUNER_SET_TYPE_ADDR:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700560 tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x\n",
561 ((struct tuner_setup *)arg)->type,
562 ((struct tuner_setup *)arg)->addr,
563 ((struct tuner_setup *)arg)->mode_mask);
564
565 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700566 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 case AUDC_SET_RADIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700568 set_mode(client,t,V4L2_TUNER_RADIO, "AUDC_SET_RADIO");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700570 case TUNER_SET_STANDBY:
571 {
572 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
573 return 0;
574 if (t->standby)
575 t->standby (client);
576 break;
577 }
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700578 case VIDIOCSAUDIO:
579 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
580 return 0;
581 if (check_v4l2(t) == EINVAL)
582 return 0;
583
584 /* Should be implemented, since bttv calls it */
585 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
586
587 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /* --- v4l ioctls --- */
589 /* take care: bttv does userspace copying, we'll get a
590 kernel pointer here... */
591 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700592 {
593 static const v4l2_std_id map[] = {
594 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
595 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
596 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
597 [4 /* bttv */ ] = V4L2_STD_PAL_M,
598 [5 /* bttv */ ] = V4L2_STD_PAL_N,
599 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
600 };
601 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700603 if (check_v4l2(t) == EINVAL)
604 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700605
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700606 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700609 if (vc->norm < ARRAY_SIZE(map))
610 t->std = map[vc->norm];
611 tuner_fixup_std(t);
612 if (t->freq)
613 set_tv_freq(client, t->freq);
614 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700615 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700616 case VIDIOCSFREQ:
617 {
618 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700619
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700620 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
621 return 0;
622 if (check_v4l2(t) == EINVAL)
623 return 0;
624
625 set_freq(client, *v);
626 return 0;
627 }
628 case VIDIOCGTUNER:
629 {
630 struct video_tuner *vt = arg;
631
632 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
633 return 0;
634 if (check_v4l2(t) == EINVAL)
635 return 0;
636
637 if (V4L2_TUNER_RADIO == t->mode) {
638 if (t->has_signal)
639 vt->signal = t->has_signal(client);
640 if (t->is_stereo) {
641 if (t->is_stereo(client))
642 vt->flags |=
643 VIDEO_TUNER_STEREO_ON;
644 else
645 vt->flags &=
646 ~VIDEO_TUNER_STEREO_ON;
647 }
648 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
649
650 vt->rangelow = radio_range[0] * 16000;
651 vt->rangehigh = radio_range[1] * 16000;
652
653 } else {
654 vt->rangelow = tv_range[0] * 16;
655 vt->rangehigh = tv_range[1] * 16;
656 }
657
658 return 0;
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700661 {
662 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700664 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
665 return 0;
666 if (check_v4l2(t) == EINVAL)
667 return 0;
668
669 if (V4L2_TUNER_RADIO == t->mode && t->is_stereo)
670 va->mode = t->is_stereo(client)
671 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
672 return 0;
673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700676 {
677 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700679 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
680 == EINVAL)
681 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700682
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700683 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700685 t->std = *id;
686 tuner_fixup_std(t);
687 if (t->freq)
688 set_freq(client, t->freq);
689 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700690 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700691 case VIDIOC_S_FREQUENCY:
692 {
693 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700694
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700695 t->freq = f->frequency;
696 switch_v4l2();
697 if (V4L2_TUNER_RADIO == f->type &&
698 V4L2_TUNER_RADIO != t->mode) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800699 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700700 == EINVAL)
701 return 0;
702 }
703 set_freq(client,t->freq);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700704
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700705 break;
706 }
707 case VIDIOC_G_FREQUENCY:
708 {
709 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700710
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700711 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
712 return 0;
713 switch_v4l2();
714 f->type = t->mode;
715 f->frequency = t->freq;
716 break;
717 }
718 case VIDIOC_G_TUNER:
719 {
720 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700721
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700722 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
723 return 0;
724 switch_v4l2();
725
726 if (V4L2_TUNER_RADIO == t->mode) {
727
728 if (t->has_signal)
729 tuner->signal = t->has_signal(client);
730
731 if (t->is_stereo) {
732 if (t->is_stereo(client)) {
733 tuner->rxsubchans =
734 V4L2_TUNER_SUB_STEREO |
735 V4L2_TUNER_SUB_MONO;
736 } else {
737 tuner->rxsubchans =
738 V4L2_TUNER_SUB_MONO;
739 }
740 }
741
742 tuner->capability |=
743 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
744
745 tuner->audmode = t->audmode;
746
747 tuner->rangelow = radio_range[0] * 16000;
748 tuner->rangehigh = radio_range[1] * 16000;
749 } else {
750 tuner->rangelow = tv_range[0] * 16;
751 tuner->rangehigh = tv_range[1] * 16;
752 }
753 break;
754 }
755 case VIDIOC_S_TUNER:
756 {
757 struct v4l2_tuner *tuner = arg;
758
759 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
760 return 0;
761
762 switch_v4l2();
763
764 if (V4L2_TUNER_RADIO == t->mode) {
765 t->audmode = tuner->audmode;
766 set_radio_freq(client, t->freq);
767 }
768 break;
769 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200770 case VIDIOC_LOG_STATUS:
771 tuner_status(client);
772 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
775 return 0;
776}
777
Russell King9480e302005-10-28 09:52:56 -0700778static int tuner_suspend(struct device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700780 struct i2c_client *c = container_of (dev, struct i2c_client, dev);
781 struct tuner *t = i2c_get_clientdata (c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700783 tuner_dbg ("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /* FIXME: power down ??? */
785 return 0;
786}
787
Russell King9480e302005-10-28 09:52:56 -0700788static int tuner_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700790 struct i2c_client *c = container_of (dev, struct i2c_client, dev);
791 struct tuner *t = i2c_get_clientdata (c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700793 tuner_dbg ("resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (t->freq)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700795 set_freq(c, t->freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return 0;
797}
798
799/* ----------------------------------------------------------------------- */
800
801static struct i2c_driver driver = {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700802 .id = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700803 .attach_adapter = tuner_probe,
804 .detach_client = tuner_detach,
805 .command = tuner_command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 .driver = {
Mauro Carvalho Chehabcab462f2006-01-09 15:53:26 -0200807 .name = "tuner",
808 .suspend = tuner_suspend,
809 .resume = tuner_resume,
810 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700812static struct i2c_client client_template = {
Jean Delvarefae91e72005-08-15 19:57:04 +0200813 .name = "(tuner unset)",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700814 .driver = &driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815};
816
817static int __init tuner_init_module(void)
818{
819 return i2c_add_driver(&driver);
820}
821
822static void __exit tuner_cleanup_module(void)
823{
824 i2c_del_driver(&driver);
825}
826
827module_init(tuner_init_module);
828module_exit(tuner_cleanup_module);
829
830/*
831 * Overrides for Emacs so that we follow Linus's tabbing style.
832 * ---------------------------------------------------------------------------
833 * Local variables:
834 * c-basic-offset: 8
835 * End:
836 */