blob: e7ee619d62c5287171890da403c952b3c7615d65 [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 }
Hans Verkuil27487d42006-01-15 15:04:52 -020085 if (NULL == t->set_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]);
Hans Verkuil27487d42006-01-15 15:04:52 -020093 /* V4L2 spec: if the freq is not possible then the closest
94 possible value should be selected */
95 if (freq < tv_range[0] * 16)
96 freq = tv_range[0] * 16;
97 else
98 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200100 t->set_tv_freq(c, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103static void set_radio_freq(struct i2c_client *c, unsigned int freq)
104{
105 struct tuner *t = i2c_get_clientdata(c);
106
107 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700108 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return;
110 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200111 if (NULL == t->set_radio_freq) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700112 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return;
114 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200115 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700116 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
117 freq / 16000, freq % 16000 * 100 / 16000,
118 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200119 /* V4L2 spec: if the freq is not possible then the closest
120 possible value should be selected */
121 if (freq < radio_range[0] * 16000)
122 freq = radio_range[0] * 16000;
123 else
124 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700126
Hans Verkuil27487d42006-01-15 15:04:52 -0200127 t->set_radio_freq(c, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130static void set_freq(struct i2c_client *c, unsigned long freq)
131{
132 struct tuner *t = i2c_get_clientdata(c);
133
134 switch (t->mode) {
135 case V4L2_TUNER_RADIO:
136 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700137 freq / 16000, freq % 16000 * 100 / 16000);
138 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200139 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 break;
141 case V4L2_TUNER_ANALOG_TV:
142 case V4L2_TUNER_DIGITAL_TV:
143 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700144 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200146 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700151static void set_type(struct i2c_client *c, unsigned int type,
152 unsigned int new_mode_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct tuner *t = i2c_get_clientdata(c);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700155 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700157 if (type == UNSET || type == TUNER_ABSENT) {
158 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return;
160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700162 if (type >= tuner_count) {
163 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
164 return;
165 }
166
167 /* This code detects calls by card attach_inform */
168 if (NULL == t->i2c.dev.driver) {
169 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
170
171 t->type=type;
172 return;
173 }
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 t->type = type;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 switch (t->type) {
178 case TUNER_MT2032:
179 microtune_init(c);
180 break;
181 case TUNER_PHILIPS_TDA8290:
182 tda8290_init(c);
183 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700184 case TUNER_TEA5767:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700185 if (tea5767_tuner_init(c) == EINVAL) {
186 t->type = TUNER_ABSENT;
187 t->mode_mask = T_UNINITIALIZED;
188 return;
189 }
190 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700191 break;
192 case TUNER_PHILIPS_FMD1216ME_MK3:
193 buffer[0] = 0x0b;
194 buffer[1] = 0xdc;
195 buffer[2] = 0x9c;
196 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700197 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700198 mdelay(1);
199 buffer[2] = 0x86;
200 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700201 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700202 default_tuner_init(c);
203 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700204 case TUNER_LG_TDVS_H062F:
205 /* Set the Auxiliary Byte. */
206 buffer[2] &= ~0x20;
207 buffer[2] |= 0x18;
208 buffer[3] = 0x20;
209 i2c_master_send(c, buffer, 4);
210 default_tuner_init(c);
211 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800212 case TUNER_PHILIPS_TD1316:
213 buffer[0] = 0x0b;
214 buffer[1] = 0xdc;
215 buffer[2] = 0x86;
216 buffer[3] = 0xa4;
217 i2c_master_send(c,buffer,4);
218 default_tuner_init(c);
Markus Rechbergerc73e4482006-01-23 09:58:32 -0200219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 default:
221 default_tuner_init(c);
222 break;
223 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700224
225 if (t->mode_mask == T_UNINITIALIZED)
226 t->mode_mask = new_mode_mask;
227
Hans Verkuil27487d42006-01-15 15:04:52 -0200228 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700229 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100230 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700231 t->mode_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700234/*
235 * This function apply tuner config to tuner specified
236 * by tun_setup structure. I addr is unset, then admin status
237 * and tun addr status is more precise then current status,
238 * it's applied. Otherwise status and type are applied only to
239 * tuner with exactly the same addr.
240*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700241
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700242static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700243{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700244 struct tuner *t = i2c_get_clientdata(c);
245
Ricardo Cerqueira291d1d72005-11-08 21:38:33 -0800246 if ( t->type == UNSET && ((tun_setup->addr == ADDR_UNSET &&
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700247 (t->mode_mask & tun_setup->mode_mask)) ||
Ricardo Cerqueira291d1d72005-11-08 21:38:33 -0800248 tun_setup->addr == c->addr)) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700249 set_type(c, tun_setup->type, tun_setup->mode_mask);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700250 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700251}
252
253static inline int check_mode(struct tuner *t, char *cmd)
254{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700255 if ((1 << t->mode & t->mode_mask) == 0) {
256 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700257 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700258
259 switch (t->mode) {
260 case V4L2_TUNER_RADIO:
261 tuner_dbg("Cmd %s accepted for radio\n", cmd);
262 break;
263 case V4L2_TUNER_ANALOG_TV:
264 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
265 break;
266 case V4L2_TUNER_DIGITAL_TV:
267 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
268 break;
269 }
270 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700271}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700272
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700273/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static int tuner_fixup_std(struct tuner *t)
275{
276 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 switch (pal[0]) {
278 case 'b':
279 case 'B':
280 case 'g':
281 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700282 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 t->std = V4L2_STD_PAL_BG;
284 break;
285 case 'i':
286 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700287 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 t->std = V4L2_STD_PAL_I;
289 break;
290 case 'd':
291 case 'D':
292 case 'k':
293 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700294 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 t->std = V4L2_STD_PAL_DK;
296 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700297 case 'M':
298 case 'm':
299 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
300 t->std = V4L2_STD_PAL_M;
301 break;
302 case 'N':
303 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200304 if (pal[1] == 'c' || pal[1] == 'C') {
305 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
306 t->std = V4L2_STD_PAL_Nc;
307 } else {
308 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
309 t->std = V4L2_STD_PAL_N;
310 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700311 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700312 case '-':
313 /* default parameter, do nothing */
314 break;
315 default:
316 tuner_warn ("pal= argument not recognised\n");
317 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700320 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
321 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200322 case 'b':
323 case 'B':
324 case 'g':
325 case 'G':
326 case 'h':
327 case 'H':
328 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
329 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
330 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700331 case 'd':
332 case 'D':
333 case 'k':
334 case 'K':
335 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
336 t->std = V4L2_STD_SECAM_DK;
337 break;
338 case 'l':
339 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800340 if ((secam[1]=='C')||(secam[1]=='c')) {
341 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
342 t->std = V4L2_STD_SECAM_LC;
343 } else {
344 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
345 t->std = V4L2_STD_SECAM_L;
346 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700347 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700348 case '-':
349 /* default parameter, do nothing */
350 break;
351 default:
352 tuner_warn ("secam= argument not recognised\n");
353 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700354 }
355 }
356
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200357 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
358 switch (ntsc[0]) {
359 case 'm':
360 case 'M':
361 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
362 t->std = V4L2_STD_NTSC_M;
363 break;
364 case 'j':
365 case 'J':
366 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
367 t->std = V4L2_STD_NTSC_M_JP;
368 break;
Hans Verkuil0dfd8122006-02-07 06:45:34 -0200369 case 'k':
370 case 'K':
371 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
372 t->std = V4L2_STD_NTSC_M_KR;
373 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200374 case '-':
375 /* default parameter, do nothing */
376 break;
377 default:
378 tuner_info("ntsc= argument not recognised\n");
379 break;
380 }
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
383}
384
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200385static void tuner_status(struct i2c_client *client)
386{
387 struct tuner *t = i2c_get_clientdata(client);
388 unsigned long freq, freq_fraction;
389 const char *p;
390
391 switch (t->mode) {
392 case V4L2_TUNER_RADIO: p = "radio"; break;
393 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
394 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
395 default: p = "undefined"; break;
396 }
397 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200398 freq = t->radio_freq / 16000;
399 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200400 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200401 freq = t->tv_freq / 16;
402 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200403 }
404 tuner_info("Tuner mode: %s\n", p);
405 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
406 tuner_info("Standard: 0x%08llx\n", t->std);
407 if (t->mode == V4L2_TUNER_RADIO) {
408 if (t->has_signal) {
409 tuner_info("Signal strength: %d\n", t->has_signal(client));
410 }
411 if (t->is_stereo) {
412 tuner_info("Stereo: %s\n", t->is_stereo(client) ? "yes" : "no");
413 }
414 }
415}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/* ---------------------------------------------------------------------- */
417
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700418/* static var Used only in tuner_attach and tuner_probe */
419static unsigned default_mode_mask;
420
421/* During client attach, set_type is called by adapter's attach_inform callback.
422 set_type must then be completed by tuner_attach.
423 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static int tuner_attach(struct i2c_adapter *adap, int addr, int kind)
425{
426 struct tuner *t;
427
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700428 client_template.adapter = adap;
429 client_template.addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Panagiotis Issaris74081872006-01-11 19:40:56 -0200431 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700432 if (NULL == t)
433 return -ENOMEM;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700434 memcpy(&t->i2c, &client_template, sizeof(struct i2c_client));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 i2c_set_clientdata(&t->i2c, t);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700436 t->type = UNSET;
437 t->radio_if2 = 10700 * 1000; /* 10.7MHz - FM radio */
438 t->audmode = V4L2_TUNER_MODE_STEREO;
439 t->mode_mask = T_UNINITIALIZED;
Hans Verkuilf9195de2006-01-11 19:01:01 -0200440 if (tuner_debug_old) {
441 tuner_debug = tuner_debug_old;
Hans Verkuilfac9e892006-01-09 15:32:40 -0200442 printk(KERN_ERR "tuner: tuner_debug is deprecated and will be removed in 2.6.17.\n");
443 printk(KERN_ERR "tuner: use the debug option instead.\n");
444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700446 if (show_i2c) {
447 unsigned char buffer[16];
448 int i,rc;
449
450 memset(buffer, 0, sizeof(buffer));
451 rc = i2c_master_recv(&t->i2c, buffer, sizeof(buffer));
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800452 tuner_info("I2C RECV = ");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700453 for (i=0;i<rc;i++)
454 printk("%02x ",buffer[i]);
455 printk("\n");
456 }
Markus Rechberger65f17ee2006-01-23 10:02:35 -0200457 /* autodetection code based on the i2c addr */
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700458 if (!no_autodetect) {
Mauro Carvalho Chehab13dd38d2005-11-08 21:37:57 -0800459 switch (addr) {
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800460 case 0x42:
461 case 0x43:
462 case 0x4a:
463 case 0x4b:
464 /* If chip is not tda8290, don't register.
465 since it can be tda9887*/
466 if (tda8290_probe(&t->i2c) != 0) {
Nickolay V. Shmyrevb228ede2005-11-08 21:38:11 -0800467 tuner_dbg("chip at addr %x is not a tda8290\n", addr);
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800468 kfree(t);
469 return 0;
470 }
471 break;
Mauro Carvalho Chehab13dd38d2005-11-08 21:37:57 -0800472 case 0x60:
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700473 if (tea5767_autodetection(&t->i2c) != EINVAL) {
474 t->type = TUNER_TEA5767;
475 t->mode_mask = T_RADIO;
476 t->mode = T_STANDBY;
Hans Verkuil27487d42006-01-15 15:04:52 -0200477 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700478 default_mode_mask &= ~T_RADIO;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700479
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800480 goto register_client;
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700481 }
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800482 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700483 }
484 }
485
486 /* Initializes only the first adapter found */
487 if (default_mode_mask != T_UNINITIALIZED) {
488 tuner_dbg ("Setting mode_mask to 0x%02x\n", default_mode_mask);
489 t->mode_mask = default_mode_mask;
Hans Verkuil27487d42006-01-15 15:04:52 -0200490 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
491 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700492 default_mode_mask = T_UNINITIALIZED;
493 }
494
495 /* Should be just before return */
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800496register_client:
497 tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700498 i2c_attach_client (&t->i2c);
499 set_type (&t->i2c,t->type, t->mode_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return 0;
501}
502
503static int tuner_probe(struct i2c_adapter *adap)
504{
505 if (0 != addr) {
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -0700506 normal_i2c[0] = addr;
507 normal_i2c[1] = I2C_CLIENT_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700510 default_mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (adap->class & I2C_CLASS_TV_ANALOG)
513 return i2c_probe(adap, &addr_data, tuner_attach);
514 return 0;
515}
516
517static int tuner_detach(struct i2c_client *client)
518{
519 struct tuner *t = i2c_get_clientdata(client);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700520 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700522 err = i2c_detach_client(&t->i2c);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700523 if (err) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700524 tuner_warn
525 ("Client deregistration failed, client not detached.\n");
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700526 return err;
527 }
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 kfree(t);
530 return 0;
531}
532
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700533/*
534 * Switch tuner to other mode. If tuner support both tv and radio,
535 * set another frequency to some value (This is needed for some pal
536 * tuners to avoid locking). Otherwise, just put second tuner in
537 * standby mode.
538 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700540static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
541{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800542 if (mode == t->mode)
543 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700544
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800545 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700546
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800547 if (check_mode(t, cmd) == EINVAL) {
548 t->mode = T_STANDBY;
549 if (t->standby)
550 t->standby (client);
551 return EINVAL;
552 }
553 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700554}
555
556#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800557 tuner_dbg("switching to v4l2\n"); \
558 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700559
560static inline int check_v4l2(struct tuner *t)
561{
562 if (t->using_v4l2) {
563 tuner_dbg ("ignore v4l1 call\n");
564 return EINVAL;
565 }
566 return 0;
567}
568
569static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 struct tuner *t = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Hans Verkuilf9195de2006-01-11 19:01:01 -0200573 if (tuner_debug>1)
Michael Krufky5e453dc2006-01-09 15:32:31 -0200574 v4l_i2c_print_ioctl(&(t->i2c),cmd);
575
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700576 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700578 case TUNER_SET_TYPE_ADDR:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700579 tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x\n",
580 ((struct tuner_setup *)arg)->type,
581 ((struct tuner_setup *)arg)->addr,
582 ((struct tuner_setup *)arg)->mode_mask);
583
584 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700585 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200587 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
588 == EINVAL)
589 return 0;
590 if (t->radio_freq)
591 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700593 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200594 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
595 return 0;
596 if (t->standby)
597 t->standby (client);
598 break;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700599 case VIDIOCSAUDIO:
600 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
601 return 0;
602 if (check_v4l2(t) == EINVAL)
603 return 0;
604
605 /* Should be implemented, since bttv calls it */
606 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700607 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /* --- v4l ioctls --- */
609 /* take care: bttv does userspace copying, we'll get a
610 kernel pointer here... */
611 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700612 {
613 static const v4l2_std_id map[] = {
614 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
615 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
616 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
617 [4 /* bttv */ ] = V4L2_STD_PAL_M,
618 [5 /* bttv */ ] = V4L2_STD_PAL_N,
619 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
620 };
621 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700623 if (check_v4l2(t) == EINVAL)
624 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700625
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700626 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700629 if (vc->norm < ARRAY_SIZE(map))
630 t->std = map[vc->norm];
631 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200632 if (t->tv_freq)
633 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700634 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700635 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700636 case VIDIOCSFREQ:
637 {
638 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700639
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700640 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
641 return 0;
642 if (check_v4l2(t) == EINVAL)
643 return 0;
644
645 set_freq(client, *v);
646 return 0;
647 }
648 case VIDIOCGTUNER:
649 {
650 struct video_tuner *vt = arg;
651
652 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
653 return 0;
654 if (check_v4l2(t) == EINVAL)
655 return 0;
656
657 if (V4L2_TUNER_RADIO == t->mode) {
658 if (t->has_signal)
659 vt->signal = t->has_signal(client);
660 if (t->is_stereo) {
661 if (t->is_stereo(client))
662 vt->flags |=
663 VIDEO_TUNER_STEREO_ON;
664 else
665 vt->flags &=
666 ~VIDEO_TUNER_STEREO_ON;
667 }
668 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
669
670 vt->rangelow = radio_range[0] * 16000;
671 vt->rangehigh = radio_range[1] * 16000;
672
673 } else {
674 vt->rangelow = tv_range[0] * 16;
675 vt->rangehigh = tv_range[1] * 16;
676 }
677
678 return 0;
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700681 {
682 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700684 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
685 return 0;
686 if (check_v4l2(t) == EINVAL)
687 return 0;
688
689 if (V4L2_TUNER_RADIO == t->mode && t->is_stereo)
690 va->mode = t->is_stereo(client)
691 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
692 return 0;
693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700696 {
697 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700699 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
700 == EINVAL)
701 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700702
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700703 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700705 t->std = *id;
706 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200707 if (t->tv_freq)
708 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700709 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700710 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700711 case VIDIOC_S_FREQUENCY:
712 {
713 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700714
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700715 switch_v4l2();
716 if (V4L2_TUNER_RADIO == f->type &&
717 V4L2_TUNER_RADIO != t->mode) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800718 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700719 == EINVAL)
720 return 0;
721 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200722 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700723
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700724 break;
725 }
726 case VIDIOC_G_FREQUENCY:
727 {
728 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700729
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700730 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
731 return 0;
732 switch_v4l2();
733 f->type = t->mode;
Hans Verkuil27487d42006-01-15 15:04:52 -0200734 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
735 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700736 break;
737 }
738 case VIDIOC_G_TUNER:
739 {
740 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700741
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700742 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
743 return 0;
744 switch_v4l2();
745
746 if (V4L2_TUNER_RADIO == t->mode) {
747
748 if (t->has_signal)
749 tuner->signal = t->has_signal(client);
750
751 if (t->is_stereo) {
752 if (t->is_stereo(client)) {
753 tuner->rxsubchans =
754 V4L2_TUNER_SUB_STEREO |
755 V4L2_TUNER_SUB_MONO;
756 } else {
757 tuner->rxsubchans =
758 V4L2_TUNER_SUB_MONO;
759 }
760 }
761
762 tuner->capability |=
763 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
764
765 tuner->audmode = t->audmode;
766
767 tuner->rangelow = radio_range[0] * 16000;
768 tuner->rangehigh = radio_range[1] * 16000;
769 } else {
770 tuner->rangelow = tv_range[0] * 16;
771 tuner->rangehigh = tv_range[1] * 16;
772 }
773 break;
774 }
775 case VIDIOC_S_TUNER:
776 {
777 struct v4l2_tuner *tuner = arg;
778
779 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
780 return 0;
781
782 switch_v4l2();
783
784 if (V4L2_TUNER_RADIO == t->mode) {
785 t->audmode = tuner->audmode;
Hans Verkuil27487d42006-01-15 15:04:52 -0200786 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700787 }
788 break;
789 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200790 case VIDIOC_LOG_STATUS:
791 tuner_status(client);
792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794
795 return 0;
796}
797
Russell King9480e302005-10-28 09:52:56 -0700798static int tuner_suspend(struct device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700800 struct i2c_client *c = container_of (dev, struct i2c_client, dev);
801 struct tuner *t = i2c_get_clientdata (c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700803 tuner_dbg ("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /* FIXME: power down ??? */
805 return 0;
806}
807
Russell King9480e302005-10-28 09:52:56 -0700808static int tuner_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700810 struct i2c_client *c = container_of (dev, struct i2c_client, dev);
811 struct tuner *t = i2c_get_clientdata (c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700813 tuner_dbg ("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -0200814 if (V4L2_TUNER_RADIO == t->mode) {
815 if (t->radio_freq)
816 set_freq(c, t->radio_freq);
817 } else {
818 if (t->tv_freq)
819 set_freq(c, t->tv_freq);
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return 0;
822}
823
824/* ----------------------------------------------------------------------- */
825
826static struct i2c_driver driver = {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700827 .id = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700828 .attach_adapter = tuner_probe,
829 .detach_client = tuner_detach,
830 .command = tuner_command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 .driver = {
Mauro Carvalho Chehabcab462f2006-01-09 15:53:26 -0200832 .name = "tuner",
833 .suspend = tuner_suspend,
834 .resume = tuner_resume,
835 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700837static struct i2c_client client_template = {
Jean Delvarefae91e72005-08-15 19:57:04 +0200838 .name = "(tuner unset)",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700839 .driver = &driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840};
841
842static int __init tuner_init_module(void)
843{
844 return i2c_add_driver(&driver);
845}
846
847static void __exit tuner_cleanup_module(void)
848{
849 i2c_del_driver(&driver);
850}
851
852module_init(tuner_init_module);
853module_exit(tuner_cleanup_module);
854
855/*
856 * Overrides for Emacs so that we follow Linus's tabbing style.
857 * ---------------------------------------------------------------------------
858 * Local variables:
859 * c-basic-offset: 8
860 * End:
861 */