blob: 2995b22acb4354728c93fa2af5e07bfb1ab56846 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 default:
220 default_tuner_init(c);
221 break;
222 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700223
224 if (t->mode_mask == T_UNINITIALIZED)
225 t->mode_mask = new_mode_mask;
226
Hans Verkuil27487d42006-01-15 15:04:52 -0200227 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700228 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100229 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700230 t->mode_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700233/*
234 * This function apply tuner config to tuner specified
235 * by tun_setup structure. I addr is unset, then admin status
236 * and tun addr status is more precise then current status,
237 * it's applied. Otherwise status and type are applied only to
238 * tuner with exactly the same addr.
239*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700240
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700241static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700242{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700243 struct tuner *t = i2c_get_clientdata(c);
244
Ricardo Cerqueira291d1d72005-11-08 21:38:33 -0800245 if ( t->type == UNSET && ((tun_setup->addr == ADDR_UNSET &&
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700246 (t->mode_mask & tun_setup->mode_mask)) ||
Ricardo Cerqueira291d1d72005-11-08 21:38:33 -0800247 tun_setup->addr == c->addr)) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700248 set_type(c, tun_setup->type, tun_setup->mode_mask);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700249 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700250}
251
252static inline int check_mode(struct tuner *t, char *cmd)
253{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700254 if ((1 << t->mode & t->mode_mask) == 0) {
255 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700256 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700257
258 switch (t->mode) {
259 case V4L2_TUNER_RADIO:
260 tuner_dbg("Cmd %s accepted for radio\n", cmd);
261 break;
262 case V4L2_TUNER_ANALOG_TV:
263 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
264 break;
265 case V4L2_TUNER_DIGITAL_TV:
266 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
267 break;
268 }
269 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700270}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700271
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700272/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static int tuner_fixup_std(struct tuner *t)
274{
275 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 switch (pal[0]) {
277 case 'b':
278 case 'B':
279 case 'g':
280 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700281 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 t->std = V4L2_STD_PAL_BG;
283 break;
284 case 'i':
285 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700286 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 t->std = V4L2_STD_PAL_I;
288 break;
289 case 'd':
290 case 'D':
291 case 'k':
292 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700293 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 t->std = V4L2_STD_PAL_DK;
295 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700296 case 'M':
297 case 'm':
298 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
299 t->std = V4L2_STD_PAL_M;
300 break;
301 case 'N':
302 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200303 if (pal[1] == 'c' || pal[1] == 'C') {
304 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
305 t->std = V4L2_STD_PAL_Nc;
306 } else {
307 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
308 t->std = V4L2_STD_PAL_N;
309 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700310 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700311 case '-':
312 /* default parameter, do nothing */
313 break;
314 default:
315 tuner_warn ("pal= argument not recognised\n");
316 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700319 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
320 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200321 case 'b':
322 case 'B':
323 case 'g':
324 case 'G':
325 case 'h':
326 case 'H':
327 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
328 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
329 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700330 case 'd':
331 case 'D':
332 case 'k':
333 case 'K':
334 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
335 t->std = V4L2_STD_SECAM_DK;
336 break;
337 case 'l':
338 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800339 if ((secam[1]=='C')||(secam[1]=='c')) {
340 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
341 t->std = V4L2_STD_SECAM_LC;
342 } else {
343 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
344 t->std = V4L2_STD_SECAM_L;
345 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700346 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700347 case '-':
348 /* default parameter, do nothing */
349 break;
350 default:
351 tuner_warn ("secam= argument not recognised\n");
352 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700353 }
354 }
355
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200356 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
357 switch (ntsc[0]) {
358 case 'm':
359 case 'M':
360 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
361 t->std = V4L2_STD_NTSC_M;
362 break;
363 case 'j':
364 case 'J':
365 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
366 t->std = V4L2_STD_NTSC_M_JP;
367 break;
368 case '-':
369 /* default parameter, do nothing */
370 break;
371 default:
372 tuner_info("ntsc= argument not recognised\n");
373 break;
374 }
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377}
378
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200379static void tuner_status(struct i2c_client *client)
380{
381 struct tuner *t = i2c_get_clientdata(client);
382 unsigned long freq, freq_fraction;
383 const char *p;
384
385 switch (t->mode) {
386 case V4L2_TUNER_RADIO: p = "radio"; break;
387 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
388 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
389 default: p = "undefined"; break;
390 }
391 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200392 freq = t->radio_freq / 16000;
393 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200394 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200395 freq = t->tv_freq / 16;
396 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200397 }
398 tuner_info("Tuner mode: %s\n", p);
399 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
400 tuner_info("Standard: 0x%08llx\n", t->std);
401 if (t->mode == V4L2_TUNER_RADIO) {
402 if (t->has_signal) {
403 tuner_info("Signal strength: %d\n", t->has_signal(client));
404 }
405 if (t->is_stereo) {
406 tuner_info("Stereo: %s\n", t->is_stereo(client) ? "yes" : "no");
407 }
408 }
409}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/* ---------------------------------------------------------------------- */
411
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700412/* static var Used only in tuner_attach and tuner_probe */
413static unsigned default_mode_mask;
414
415/* During client attach, set_type is called by adapter's attach_inform callback.
416 set_type must then be completed by tuner_attach.
417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static int tuner_attach(struct i2c_adapter *adap, int addr, int kind)
419{
420 struct tuner *t;
421
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700422 client_template.adapter = adap;
423 client_template.addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Panagiotis Issaris74081872006-01-11 19:40:56 -0200425 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700426 if (NULL == t)
427 return -ENOMEM;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700428 memcpy(&t->i2c, &client_template, sizeof(struct i2c_client));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 i2c_set_clientdata(&t->i2c, t);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700430 t->type = UNSET;
431 t->radio_if2 = 10700 * 1000; /* 10.7MHz - FM radio */
432 t->audmode = V4L2_TUNER_MODE_STEREO;
433 t->mode_mask = T_UNINITIALIZED;
Hans Verkuilf9195de2006-01-11 19:01:01 -0200434 if (tuner_debug_old) {
435 tuner_debug = tuner_debug_old;
Hans Verkuilfac9e892006-01-09 15:32:40 -0200436 printk(KERN_ERR "tuner: tuner_debug is deprecated and will be removed in 2.6.17.\n");
437 printk(KERN_ERR "tuner: use the debug option instead.\n");
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700440 if (show_i2c) {
441 unsigned char buffer[16];
442 int i,rc;
443
444 memset(buffer, 0, sizeof(buffer));
445 rc = i2c_master_recv(&t->i2c, buffer, sizeof(buffer));
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800446 tuner_info("I2C RECV = ");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700447 for (i=0;i<rc;i++)
448 printk("%02x ",buffer[i]);
449 printk("\n");
450 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700451 /* TEA5767 autodetection code - only for addr = 0xc0 */
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700452 if (!no_autodetect) {
Mauro Carvalho Chehab13dd38d2005-11-08 21:37:57 -0800453 switch (addr) {
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800454 case 0x42:
455 case 0x43:
456 case 0x4a:
457 case 0x4b:
458 /* If chip is not tda8290, don't register.
459 since it can be tda9887*/
460 if (tda8290_probe(&t->i2c) != 0) {
Nickolay V. Shmyrevb228ede2005-11-08 21:38:11 -0800461 tuner_dbg("chip at addr %x is not a tda8290\n", addr);
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800462 kfree(t);
463 return 0;
464 }
465 break;
Mauro Carvalho Chehab13dd38d2005-11-08 21:37:57 -0800466 case 0x60:
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700467 if (tea5767_autodetection(&t->i2c) != EINVAL) {
468 t->type = TUNER_TEA5767;
469 t->mode_mask = T_RADIO;
470 t->mode = T_STANDBY;
Hans Verkuil27487d42006-01-15 15:04:52 -0200471 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700472 default_mode_mask &= ~T_RADIO;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700473
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800474 goto register_client;
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700475 }
Hartmut Hackmann07345f52005-11-08 21:38:09 -0800476 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700477 }
478 }
479
480 /* Initializes only the first adapter found */
481 if (default_mode_mask != T_UNINITIALIZED) {
482 tuner_dbg ("Setting mode_mask to 0x%02x\n", default_mode_mask);
483 t->mode_mask = default_mode_mask;
Hans Verkuil27487d42006-01-15 15:04:52 -0200484 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
485 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700486 default_mode_mask = T_UNINITIALIZED;
487 }
488
489 /* Should be just before return */
Mauro Carvalho Chehab67678362005-11-08 21:38:02 -0800490register_client:
491 tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700492 i2c_attach_client (&t->i2c);
493 set_type (&t->i2c,t->type, t->mode_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return 0;
495}
496
497static int tuner_probe(struct i2c_adapter *adap)
498{
499 if (0 != addr) {
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -0700500 normal_i2c[0] = addr;
501 normal_i2c[1] = I2C_CLIENT_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700504 default_mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (adap->class & I2C_CLASS_TV_ANALOG)
507 return i2c_probe(adap, &addr_data, tuner_attach);
508 return 0;
509}
510
511static int tuner_detach(struct i2c_client *client)
512{
513 struct tuner *t = i2c_get_clientdata(client);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700514 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700516 err = i2c_detach_client(&t->i2c);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700517 if (err) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700518 tuner_warn
519 ("Client deregistration failed, client not detached.\n");
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700520 return err;
521 }
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 kfree(t);
524 return 0;
525}
526
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700527/*
528 * Switch tuner to other mode. If tuner support both tv and radio,
529 * set another frequency to some value (This is needed for some pal
530 * tuners to avoid locking). Otherwise, just put second tuner in
531 * standby mode.
532 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700534static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
535{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800536 if (mode == t->mode)
537 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700538
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800539 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700540
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800541 if (check_mode(t, cmd) == EINVAL) {
542 t->mode = T_STANDBY;
543 if (t->standby)
544 t->standby (client);
545 return EINVAL;
546 }
547 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700548}
549
550#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800551 tuner_dbg("switching to v4l2\n"); \
552 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700553
554static inline int check_v4l2(struct tuner *t)
555{
556 if (t->using_v4l2) {
557 tuner_dbg ("ignore v4l1 call\n");
558 return EINVAL;
559 }
560 return 0;
561}
562
563static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 struct tuner *t = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Hans Verkuilf9195de2006-01-11 19:01:01 -0200567 if (tuner_debug>1)
Michael Krufky5e453dc2006-01-09 15:32:31 -0200568 v4l_i2c_print_ioctl(&(t->i2c),cmd);
569
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700570 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700572 case TUNER_SET_TYPE_ADDR:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700573 tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x\n",
574 ((struct tuner_setup *)arg)->type,
575 ((struct tuner_setup *)arg)->addr,
576 ((struct tuner_setup *)arg)->mode_mask);
577
578 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700579 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200581 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
582 == EINVAL)
583 return 0;
584 if (t->radio_freq)
585 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700587 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200588 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
589 return 0;
590 if (t->standby)
591 t->standby (client);
592 break;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700593 case VIDIOCSAUDIO:
594 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
595 return 0;
596 if (check_v4l2(t) == EINVAL)
597 return 0;
598
599 /* Should be implemented, since bttv calls it */
600 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700601 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* --- v4l ioctls --- */
603 /* take care: bttv does userspace copying, we'll get a
604 kernel pointer here... */
605 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700606 {
607 static const v4l2_std_id map[] = {
608 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
609 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
610 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
611 [4 /* bttv */ ] = V4L2_STD_PAL_M,
612 [5 /* bttv */ ] = V4L2_STD_PAL_N,
613 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
614 };
615 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700617 if (check_v4l2(t) == EINVAL)
618 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700619
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700620 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700623 if (vc->norm < ARRAY_SIZE(map))
624 t->std = map[vc->norm];
625 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200626 if (t->tv_freq)
627 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700628 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700629 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700630 case VIDIOCSFREQ:
631 {
632 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700633
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700634 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
635 return 0;
636 if (check_v4l2(t) == EINVAL)
637 return 0;
638
639 set_freq(client, *v);
640 return 0;
641 }
642 case VIDIOCGTUNER:
643 {
644 struct video_tuner *vt = arg;
645
646 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
647 return 0;
648 if (check_v4l2(t) == EINVAL)
649 return 0;
650
651 if (V4L2_TUNER_RADIO == t->mode) {
652 if (t->has_signal)
653 vt->signal = t->has_signal(client);
654 if (t->is_stereo) {
655 if (t->is_stereo(client))
656 vt->flags |=
657 VIDEO_TUNER_STEREO_ON;
658 else
659 vt->flags &=
660 ~VIDEO_TUNER_STEREO_ON;
661 }
662 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
663
664 vt->rangelow = radio_range[0] * 16000;
665 vt->rangehigh = radio_range[1] * 16000;
666
667 } else {
668 vt->rangelow = tv_range[0] * 16;
669 vt->rangehigh = tv_range[1] * 16;
670 }
671
672 return 0;
673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700675 {
676 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700678 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
679 return 0;
680 if (check_v4l2(t) == EINVAL)
681 return 0;
682
683 if (V4L2_TUNER_RADIO == t->mode && t->is_stereo)
684 va->mode = t->is_stereo(client)
685 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
686 return 0;
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700690 {
691 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700693 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
694 == EINVAL)
695 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700696
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700697 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700699 t->std = *id;
700 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200701 if (t->tv_freq)
702 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700703 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700704 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700705 case VIDIOC_S_FREQUENCY:
706 {
707 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700708
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700709 switch_v4l2();
710 if (V4L2_TUNER_RADIO == f->type &&
711 V4L2_TUNER_RADIO != t->mode) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800712 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700713 == EINVAL)
714 return 0;
715 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200716 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700717
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700718 break;
719 }
720 case VIDIOC_G_FREQUENCY:
721 {
722 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700723
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700724 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
725 return 0;
726 switch_v4l2();
727 f->type = t->mode;
Hans Verkuil27487d42006-01-15 15:04:52 -0200728 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
729 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700730 break;
731 }
732 case VIDIOC_G_TUNER:
733 {
734 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700735
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700736 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
737 return 0;
738 switch_v4l2();
739
740 if (V4L2_TUNER_RADIO == t->mode) {
741
742 if (t->has_signal)
743 tuner->signal = t->has_signal(client);
744
745 if (t->is_stereo) {
746 if (t->is_stereo(client)) {
747 tuner->rxsubchans =
748 V4L2_TUNER_SUB_STEREO |
749 V4L2_TUNER_SUB_MONO;
750 } else {
751 tuner->rxsubchans =
752 V4L2_TUNER_SUB_MONO;
753 }
754 }
755
756 tuner->capability |=
757 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
758
759 tuner->audmode = t->audmode;
760
761 tuner->rangelow = radio_range[0] * 16000;
762 tuner->rangehigh = radio_range[1] * 16000;
763 } else {
764 tuner->rangelow = tv_range[0] * 16;
765 tuner->rangehigh = tv_range[1] * 16;
766 }
767 break;
768 }
769 case VIDIOC_S_TUNER:
770 {
771 struct v4l2_tuner *tuner = arg;
772
773 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
774 return 0;
775
776 switch_v4l2();
777
778 if (V4L2_TUNER_RADIO == t->mode) {
779 t->audmode = tuner->audmode;
Hans Verkuil27487d42006-01-15 15:04:52 -0200780 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700781 }
782 break;
783 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200784 case VIDIOC_LOG_STATUS:
785 tuner_status(client);
786 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
789 return 0;
790}
791
Russell King9480e302005-10-28 09:52:56 -0700792static int tuner_suspend(struct device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700794 struct i2c_client *c = container_of (dev, struct i2c_client, dev);
795 struct tuner *t = i2c_get_clientdata (c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700797 tuner_dbg ("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /* FIXME: power down ??? */
799 return 0;
800}
801
Russell King9480e302005-10-28 09:52:56 -0700802static int tuner_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700804 struct i2c_client *c = container_of (dev, struct i2c_client, dev);
805 struct tuner *t = i2c_get_clientdata (c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700807 tuner_dbg ("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -0200808 if (V4L2_TUNER_RADIO == t->mode) {
809 if (t->radio_freq)
810 set_freq(c, t->radio_freq);
811 } else {
812 if (t->tv_freq)
813 set_freq(c, t->tv_freq);
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return 0;
816}
817
818/* ----------------------------------------------------------------------- */
819
820static struct i2c_driver driver = {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700821 .id = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700822 .attach_adapter = tuner_probe,
823 .detach_client = tuner_detach,
824 .command = tuner_command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 .driver = {
Mauro Carvalho Chehabcab462f2006-01-09 15:53:26 -0200826 .name = "tuner",
827 .suspend = tuner_suspend,
828 .resume = tuner_resume,
829 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700831static struct i2c_client client_template = {
Jean Delvarefae91e72005-08-15 19:57:04 +0200832 .name = "(tuner unset)",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700833 .driver = &driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834};
835
836static int __init tuner_init_module(void)
837{
838 return i2c_add_driver(&driver);
839}
840
841static void __exit tuner_cleanup_module(void)
842{
843 i2c_del_driver(&driver);
844}
845
846module_init(tuner_init_module);
847module_exit(tuner_cleanup_module);
848
849/*
850 * Overrides for Emacs so that we follow Linus's tabbing style.
851 * ---------------------------------------------------------------------------
852 * Local variables:
853 * c-basic-offset: 8
854 * End:
855 */