blob: 1b0d28a0ca78282a43014d39b53b3fa3141dec5d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/string.h>
10#include <linux/timer.h>
11#include <linux/delay.h>
12#include <linux/errno.h>
13#include <linux/slab.h>
14#include <linux/poll.h>
15#include <linux/i2c.h>
16#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
Michael Krufkyffbb8072007-08-21 01:14:12 -030018#include <linux/videodev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <media/tuner.h>
Michael Krufky4adad282007-08-27 21:59:08 -030020#include <media/tuner-types.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020021#include <media/v4l2-common.h>
Hans Verkuil9dd659d2007-11-04 11:03:36 -030022#include <media/v4l2-i2c-drv-legacy.h>
Michael Krufky8218b0b2007-06-26 13:12:08 -030023#include "tuner-driver.h"
Michael Krufky96c0b7c2007-08-27 21:23:08 -030024#include "mt20xx.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030025#include "tda8290.h"
Michael Krufky7ab10bf2007-08-27 21:23:40 -030026#include "tea5761.h"
Michael Krufky8d0936e2007-08-27 21:24:27 -030027#include "tea5767.h"
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030028#include "tuner-xc2028.h"
Michael Krufky4adad282007-08-27 21:59:08 -030029#include "tuner-simple.h"
Michael Krufky31c95842007-10-21 20:48:48 -030030#include "tda9887.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#define UNSET (-1U)
33
Hans Verkuil9dd659d2007-11-04 11:03:36 -030034#define PREFIX t->i2c->driver->driver.name
Michael Krufky241020d2007-10-30 09:46:10 -030035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* standard i2c insmod options */
37static unsigned short normal_i2c[] = {
Adrian Bunk04d934f2007-10-24 09:06:47 -030038#if defined(CONFIG_TUNER_TEA5761) || (defined(CONFIG_TUNER_TEA5761_MODULE) && defined(MODULE))
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -030039 0x10,
40#endif
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080041 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -070042 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
43 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 I2C_CLIENT_END
45};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047I2C_CLIENT_INSMOD;
48
49/* insmod options used at init time => read/only */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070050static unsigned int addr = 0;
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -070051static unsigned int no_autodetect = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070052static unsigned int show_i2c = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* insmod options used at runtime => read/write */
Hans Verkuilf9195de2006-01-11 19:01:01 -020055int tuner_debug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070057static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static unsigned int radio_range[2] = { 65, 108 };
59
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -020060static char pal[] = "--";
61static char secam[] = "--";
62static char ntsc[] = "-";
63
Hans Verkuilf9195de2006-01-11 19:01:01 -020064
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -020065module_param(addr, int, 0444);
66module_param(no_autodetect, int, 0444);
67module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -020068module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -020069module_param_string(pal, pal, sizeof(pal), 0644);
70module_param_string(secam, secam, sizeof(secam), 0644);
71module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070072module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073module_param_array(radio_range, int, NULL, 0644);
74
75MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
76MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
77MODULE_LICENSE("GPL");
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* ---------------------------------------------------------------------- */
80
Michael Krufky4e9154b2007-10-21 19:39:50 -030081static void fe_set_freq(struct dvb_frontend *fe, unsigned int freq)
Michael Krufkye18f9442007-08-21 01:25:48 -030082{
Michael Krufky4e9154b2007-10-21 19:39:50 -030083 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
84 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -030085
86 struct analog_parameters params = {
87 .frequency = freq,
88 .mode = t->mode,
89 .audmode = t->audmode,
90 .std = t->std
91 };
92
93 if (NULL == fe_tuner_ops->set_analog_params) {
94 tuner_warn("Tuner frontend module has no way to set freq\n");
95 return;
96 }
Michael Krufky4e9154b2007-10-21 19:39:50 -030097 fe_tuner_ops->set_analog_params(fe, &params);
Michael Krufkye18f9442007-08-21 01:25:48 -030098}
99
Michael Krufky4e9154b2007-10-21 19:39:50 -0300100static void fe_release(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300101{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300102 if (fe->ops.tuner_ops.release)
103 fe->ops.tuner_ops.release(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300104
Michael Krufky4e9154b2007-10-21 19:39:50 -0300105 fe->ops.analog_demod_ops = NULL;
Michael Krufky4524c1a2007-10-22 18:15:39 -0300106
107 /* DO NOT kfree(fe->analog_demod_priv)
108 *
109 * If we are in this function, analog_demod_priv contains a pointer
110 * to struct tuner *t. This will be kfree'd in tuner_detach().
111 *
112 * Otherwise, fe->ops.analog_demod_ops->release will
113 * handle the cleanup for analog demodulator modules.
114 */
Michael Krufky4e9154b2007-10-21 19:39:50 -0300115 fe->analog_demod_priv = NULL;
Michael Krufkye18f9442007-08-21 01:25:48 -0300116}
117
Michael Krufky4e9154b2007-10-21 19:39:50 -0300118static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300119{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300120 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300121
122 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300123 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300124}
125
Michael Krufky4e9154b2007-10-21 19:39:50 -0300126static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300127{
Michael Krufky14196832007-10-14 18:11:53 -0300128 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300129
Michael Krufky4e9154b2007-10-21 19:39:50 -0300130 if (fe->ops.tuner_ops.get_rf_strength)
131 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300132
133 return strength;
134}
135
Michael Krufky4e9154b2007-10-21 19:39:50 -0300136static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300137
138static struct analog_tuner_ops tuner_core_ops = {
139 .set_tv_freq = fe_set_freq,
140 .set_radio_freq = fe_set_freq,
141 .standby = fe_standby,
142 .release = fe_release,
143 .has_signal = fe_has_signal,
144 .tuner_status = tuner_status
145};
146
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700147/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static void set_tv_freq(struct i2c_client *c, unsigned int freq)
149{
150 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300151 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700154 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return;
156 }
Michael Krufky1dde7a42007-10-21 13:40:56 -0300157 if ((NULL == ops) || (NULL == ops->set_tv_freq)) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700158 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return;
160 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700161 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
162 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
163 freq / 16, freq % 16 * 100 / 16, tv_range[0],
164 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200165 /* V4L2 spec: if the freq is not possible then the closest
166 possible value should be selected */
167 if (freq < tv_range[0] * 16)
168 freq = tv_range[0] * 16;
169 else
170 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
Michael Krufky4e9154b2007-10-21 19:39:50 -0300172 ops->set_tv_freq(&t->fe, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175static void set_radio_freq(struct i2c_client *c, unsigned int freq)
176{
177 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300178 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700181 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return;
183 }
Michael Krufky1dde7a42007-10-21 13:40:56 -0300184 if ((NULL == ops) || (NULL == ops->set_radio_freq)) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700185 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return;
187 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200188 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700189 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
190 freq / 16000, freq % 16000 * 100 / 16000,
191 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200192 /* V4L2 spec: if the freq is not possible then the closest
193 possible value should be selected */
194 if (freq < radio_range[0] * 16000)
195 freq = radio_range[0] * 16000;
196 else
197 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700199
Michael Krufky4e9154b2007-10-21 19:39:50 -0300200 ops->set_radio_freq(&t->fe, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203static void set_freq(struct i2c_client *c, unsigned long freq)
204{
205 struct tuner *t = i2c_get_clientdata(c);
206
207 switch (t->mode) {
208 case V4L2_TUNER_RADIO:
209 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700210 freq / 16000, freq % 16000 * 100 / 16000);
211 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200212 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
214 case V4L2_TUNER_ANALOG_TV:
215 case V4L2_TUNER_DIGITAL_TV:
216 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700217 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200219 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300221 default:
222 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Michael Krufky293197c2007-08-28 17:20:42 -0300226static void tuner_i2c_address_check(struct tuner *t)
227{
228 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300229 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
Michael Krufky293197c2007-08-28 17:20:42 -0300230 return;
231
232 tuner_warn("====================== WARNING! ======================\n");
233 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
234 tuner_warn("will soon be dropped. This message indicates that your\n");
235 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300236 t->i2c->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300237 tuner_warn("To ensure continued support for your device, please\n");
238 tuner_warn("send a copy of this message, along with full dmesg\n");
239 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
240 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
241 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300242 t->i2c->adapter->name, t->i2c->addr, t->type,
Michael Krufky293197c2007-08-28 17:20:42 -0300243 tuners[t->type].name);
244 tuner_warn("====================== WARNING! ======================\n");
245}
246
Michael Krufky4adad282007-08-27 21:59:08 -0300247static void attach_simple_tuner(struct tuner *t)
248{
249 struct simple_tuner_config cfg = {
250 .type = t->type,
251 .tun = &tuners[t->type]
252 };
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300253 simple_tuner_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
Michael Krufky4adad282007-08-27 21:59:08 -0300254}
255
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700256static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300257 unsigned int new_mode_mask, unsigned int new_config,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300258 int (*tuner_callback) (void *dev, int command,int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkye18f9442007-08-21 01:25:48 -0300261 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300262 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700263 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700265 if (type == UNSET || type == TUNER_ABSENT) {
266 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return;
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700270 if (type >= tuner_count) {
271 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
272 return;
273 }
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 t->type = type;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300276 t->config = new_config;
277 if (tuner_callback != NULL) {
278 tuner_dbg("defining GPIO callback\n");
279 t->tuner_callback = tuner_callback;
280 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300281
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300282 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300283 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
284
285 return;
286 }
287
Michael Krufkyb2083192007-05-29 22:54:06 -0300288 /* discard private data, in case set_type() was previously called */
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300289 if (ops && ops->release)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300290 ops->release(&t->fe);
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 switch (t->type) {
293 case TUNER_MT2032:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300294 microtune_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 break;
296 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300297 {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300298 tda829x_attach(t);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300299 break;
300 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700301 case TUNER_TEA5767:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300302 if (tea5767_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700303 t->type = TUNER_ABSENT;
304 t->mode_mask = T_UNINITIALIZED;
305 return;
306 }
307 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700308 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300309 case TUNER_TEA5761:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300310 if (tea5761_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300311 t->type = TUNER_ABSENT;
312 t->mode_mask = T_UNINITIALIZED;
Adrian Bunk9ee476a2007-06-05 05:22:00 -0300313 return;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300314 }
315 t->mode_mask = T_RADIO;
316 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700317 case TUNER_PHILIPS_FMD1216ME_MK3:
318 buffer[0] = 0x0b;
319 buffer[1] = 0xdc;
320 buffer[2] = 0x9c;
321 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700322 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700323 mdelay(1);
324 buffer[2] = 0x86;
325 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700326 i2c_master_send(c, buffer, 4);
Michael Krufky4adad282007-08-27 21:59:08 -0300327 attach_simple_tuner(t);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700328 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800329 case TUNER_PHILIPS_TD1316:
330 buffer[0] = 0x0b;
331 buffer[1] = 0xdc;
332 buffer[2] = 0x86;
333 buffer[3] = 0xa4;
334 i2c_master_send(c,buffer,4);
Michael Krufky4adad282007-08-27 21:59:08 -0300335 attach_simple_tuner(t);
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200336 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300337 case TUNER_XC2028:
338 {
339 int rc=xc2028_attach(&t->fe, t->i2c->adapter, t->i2c->addr,
340 &c->dev, c->adapter->algo_data,
341 t->tuner_callback);
342 if (rc<0) {
343 t->type = TUNER_ABSENT;
344 t->mode_mask = T_UNINITIALIZED;
345 return;
346 }
347 break;
348 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300349 case TUNER_TDA9887:
Michael Krufky31c95842007-10-21 20:48:48 -0300350 tda9887_attach(t);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300351 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 default:
Michael Krufky4adad282007-08-27 21:59:08 -0300353 attach_simple_tuner(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 break;
355 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700356
Michael Krufkye2be32a2007-10-21 14:35:21 -0300357 ops = t->fe.ops.analog_demod_ops;
358
Michael Krufky1dde7a42007-10-21 13:40:56 -0300359 if (((NULL == ops) ||
360 ((NULL == ops->set_tv_freq) && (NULL == ops->set_radio_freq))) &&
361 (fe_tuner_ops->set_analog_params)) {
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300362 strlcpy(t->i2c->name, fe_tuner_ops->info.name,
363 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300364
Michael Krufky1dde7a42007-10-21 13:40:56 -0300365 t->fe.ops.analog_demod_ops = &tuner_core_ops;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300366 t->fe.analog_demod_priv = t;
Michael Krufkye18f9442007-08-21 01:25:48 -0300367 }
368
Michael Krufky49427442007-10-30 09:44:12 -0300369 tuner_dbg("type set to %s\n", t->i2c->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300370
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700371 if (t->mode_mask == T_UNINITIALIZED)
372 t->mode_mask = new_mode_mask;
373
Hans Verkuil27487d42006-01-15 15:04:52 -0200374 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700375 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100376 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700377 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300378 tuner_i2c_address_check(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700381/*
382 * This function apply tuner config to tuner specified
383 * by tun_setup structure. I addr is unset, then admin status
384 * and tun addr status is more precise then current status,
385 * it's applied. Otherwise status and type are applied only to
386 * tuner with exactly the same addr.
387*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700388
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700389static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700390{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700391 struct tuner *t = i2c_get_clientdata(c);
392
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300393 tuner_dbg("set addr for type %i\n", t->type);
394
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300395 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
396 (t->mode_mask & tun_setup->mode_mask))) ||
397 (tun_setup->addr == c->addr)) {
398 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300399 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700400 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700401}
402
403static inline int check_mode(struct tuner *t, char *cmd)
404{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700405 if ((1 << t->mode & t->mode_mask) == 0) {
406 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700407 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700408
409 switch (t->mode) {
410 case V4L2_TUNER_RADIO:
411 tuner_dbg("Cmd %s accepted for radio\n", cmd);
412 break;
413 case V4L2_TUNER_ANALOG_TV:
414 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
415 break;
416 case V4L2_TUNER_DIGITAL_TV:
417 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
418 break;
419 }
420 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700421}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700422
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700423/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static int tuner_fixup_std(struct tuner *t)
425{
426 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300428 case '6':
429 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
430 t->std = V4L2_STD_PAL_60;
431 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 case 'b':
433 case 'B':
434 case 'g':
435 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700436 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 t->std = V4L2_STD_PAL_BG;
438 break;
439 case 'i':
440 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700441 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 t->std = V4L2_STD_PAL_I;
443 break;
444 case 'd':
445 case 'D':
446 case 'k':
447 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700448 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 t->std = V4L2_STD_PAL_DK;
450 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700451 case 'M':
452 case 'm':
453 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
454 t->std = V4L2_STD_PAL_M;
455 break;
456 case 'N':
457 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200458 if (pal[1] == 'c' || pal[1] == 'C') {
459 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
460 t->std = V4L2_STD_PAL_Nc;
461 } else {
462 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
463 t->std = V4L2_STD_PAL_N;
464 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700465 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700466 case '-':
467 /* default parameter, do nothing */
468 break;
469 default:
470 tuner_warn ("pal= argument not recognised\n");
471 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700474 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
475 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200476 case 'b':
477 case 'B':
478 case 'g':
479 case 'G':
480 case 'h':
481 case 'H':
482 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
483 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
484 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700485 case 'd':
486 case 'D':
487 case 'k':
488 case 'K':
489 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
490 t->std = V4L2_STD_SECAM_DK;
491 break;
492 case 'l':
493 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800494 if ((secam[1]=='C')||(secam[1]=='c')) {
495 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
496 t->std = V4L2_STD_SECAM_LC;
497 } else {
498 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
499 t->std = V4L2_STD_SECAM_L;
500 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700501 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700502 case '-':
503 /* default parameter, do nothing */
504 break;
505 default:
506 tuner_warn ("secam= argument not recognised\n");
507 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700508 }
509 }
510
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200511 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
512 switch (ntsc[0]) {
513 case 'm':
514 case 'M':
515 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
516 t->std = V4L2_STD_NTSC_M;
517 break;
518 case 'j':
519 case 'J':
520 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
521 t->std = V4L2_STD_NTSC_M_JP;
522 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200523 case 'k':
524 case 'K':
525 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
526 t->std = V4L2_STD_NTSC_M_KR;
527 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200528 case '-':
529 /* default parameter, do nothing */
530 break;
531 default:
532 tuner_info("ntsc= argument not recognised\n");
533 break;
534 }
535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return 0;
537}
538
Michael Krufky4e9154b2007-10-21 19:39:50 -0300539static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200540{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300541 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200542 unsigned long freq, freq_fraction;
Michael Krufkye18f9442007-08-21 01:25:48 -0300543 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300544 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200545 const char *p;
546
547 switch (t->mode) {
548 case V4L2_TUNER_RADIO: p = "radio"; break;
549 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
550 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
551 default: p = "undefined"; break;
552 }
553 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200554 freq = t->radio_freq / 16000;
555 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200556 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200557 freq = t->tv_freq / 16;
558 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200559 }
560 tuner_info("Tuner mode: %s\n", p);
561 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300562 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200563 if (t->mode != V4L2_TUNER_RADIO)
564 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300565 if (fe_tuner_ops->get_status) {
566 u32 tuner_status;
567
568 fe_tuner_ops->get_status(&t->fe, &tuner_status);
569 if (tuner_status & TUNER_STATUS_LOCKED)
570 tuner_info("Tuner is locked.\n");
571 if (tuner_status & TUNER_STATUS_STEREO)
572 tuner_info("Stereo: yes\n");
573 }
Michael Krufky1b29ced2007-10-22 01:44:03 -0300574 if (ops) {
575 if (ops->has_signal)
576 tuner_info("Signal strength: %d\n",
577 ops->has_signal(fe));
578 if (ops->is_stereo)
579 tuner_info("Stereo: %s\n",
580 ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200581 }
582}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/* ---------------------------------------------------------------------- */
585
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700586/*
587 * Switch tuner to other mode. If tuner support both tv and radio,
588 * set another frequency to some value (This is needed for some pal
589 * tuners to avoid locking). Otherwise, just put second tuner in
590 * standby mode.
591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700593static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
594{
Michael Krufky1dde7a42007-10-21 13:40:56 -0300595 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
596
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800597 if (mode == t->mode)
598 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700599
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800600 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700601
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800602 if (check_mode(t, cmd) == EINVAL) {
603 t->mode = T_STANDBY;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300604 if (ops && ops->standby)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300605 ops->standby(&t->fe);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800606 return EINVAL;
607 }
608 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700609}
610
611#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800612 tuner_dbg("switching to v4l2\n"); \
613 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700614
615static inline int check_v4l2(struct tuner *t)
616{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300617 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
618 TV, v4l1 for radio), until that is fixed this code is disabled.
619 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
620 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700621 return 0;
622}
623
624static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
626 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkye18f9442007-08-21 01:25:48 -0300627 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300628 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Hans Verkuilf9195de2006-01-11 19:01:01 -0200630 if (tuner_debug>1)
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300631 v4l_i2c_print_ioctl(client,cmd);
Michael Krufky5e453dc2006-01-09 15:32:31 -0200632
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700633 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700635 case TUNER_SET_TYPE_ADDR:
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300636 tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700637 ((struct tuner_setup *)arg)->type,
638 ((struct tuner_setup *)arg)->addr,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300639 ((struct tuner_setup *)arg)->mode_mask,
640 ((struct tuner_setup *)arg)->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700641
642 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700643 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200645 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
646 == EINVAL)
647 return 0;
648 if (t->radio_freq)
649 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700651 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200652 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
653 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300654 t->mode = T_STANDBY;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300655 if (ops && ops->standby)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300656 ops->standby(&t->fe);
Hans Verkuil27487d42006-01-15 15:04:52 -0200657 break;
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300658#ifdef CONFIG_VIDEO_V4L1
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700659 case VIDIOCSAUDIO:
660 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
661 return 0;
662 if (check_v4l2(t) == EINVAL)
663 return 0;
664
665 /* Should be implemented, since bttv calls it */
666 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700667 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700669 {
670 static const v4l2_std_id map[] = {
671 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
672 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
673 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
674 [4 /* bttv */ ] = V4L2_STD_PAL_M,
675 [5 /* bttv */ ] = V4L2_STD_PAL_N,
676 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
677 };
678 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700680 if (check_v4l2(t) == EINVAL)
681 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700682
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700683 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700686 if (vc->norm < ARRAY_SIZE(map))
687 t->std = map[vc->norm];
688 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200689 if (t->tv_freq)
690 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700691 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700692 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700693 case VIDIOCSFREQ:
694 {
695 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700696
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700697 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
698 return 0;
699 if (check_v4l2(t) == EINVAL)
700 return 0;
701
702 set_freq(client, *v);
703 return 0;
704 }
705 case VIDIOCGTUNER:
706 {
707 struct video_tuner *vt = arg;
708
709 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
710 return 0;
711 if (check_v4l2(t) == EINVAL)
712 return 0;
713
714 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300715 if (fe_tuner_ops->get_status) {
716 u32 tuner_status;
717
718 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300719 if (tuner_status & TUNER_STATUS_STEREO)
720 vt->flags |= VIDEO_TUNER_STEREO_ON;
721 else
722 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300723 } else {
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300724 if (ops && ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -0300725 if (ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300726 vt->flags |=
727 VIDEO_TUNER_STEREO_ON;
728 else
729 vt->flags &=
730 ~VIDEO_TUNER_STEREO_ON;
731 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700732 }
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300733 if (ops && ops->has_signal)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300734 vt->signal = ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300735
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700736 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
737
738 vt->rangelow = radio_range[0] * 16000;
739 vt->rangehigh = radio_range[1] * 16000;
740
741 } else {
742 vt->rangelow = tv_range[0] * 16;
743 vt->rangehigh = tv_range[1] * 16;
744 }
745
746 return 0;
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700749 {
750 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700752 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
753 return 0;
754 if (check_v4l2(t) == EINVAL)
755 return 0;
756
Michael Krufkye18f9442007-08-21 01:25:48 -0300757 if (V4L2_TUNER_RADIO == t->mode) {
758 if (fe_tuner_ops->get_status) {
759 u32 tuner_status;
760
761 fe_tuner_ops->get_status(&t->fe, &tuner_status);
762 va->mode = (tuner_status & TUNER_STATUS_STEREO)
763 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300764 } else if (ops && ops->is_stereo)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300765 va->mode = ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300766 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
767 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700768 return 0;
769 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300770#endif
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300771 case TUNER_SET_CONFIG:
772 {
773 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
774 struct v4l2_priv_tun_config *cfg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300776 if (t->type != cfg->tuner)
777 break;
778
779 if (t->type == TUNER_TDA9887) {
780 t->tda9887_config = *(unsigned int *)cfg->priv;
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300781 set_freq(client, t->tv_freq);
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300782 break;
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300783 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300784
785 if (NULL == fe_tuner_ops->set_config) {
786 tuner_warn("Tuner frontend module has no way to "
787 "set config\n");
788 break;
789 }
790 fe_tuner_ops->set_config(&t->fe, cfg->priv);
791
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300792 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300793 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300794 /* --- v4l ioctls --- */
795 /* take care: bttv does userspace copying, we'll get a
796 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700798 {
799 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700801 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
802 == EINVAL)
803 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700804
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700805 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700807 t->std = *id;
808 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200809 if (t->tv_freq)
810 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700811 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700812 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700813 case VIDIOC_S_FREQUENCY:
814 {
815 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700816
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300817 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
818 == EINVAL)
819 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700820 switch_v4l2();
Hans Verkuil27487d42006-01-15 15:04:52 -0200821 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700822
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700823 break;
824 }
825 case VIDIOC_G_FREQUENCY:
826 {
827 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700828
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700829 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
830 return 0;
831 switch_v4l2();
832 f->type = t->mode;
Michael Krufkye18f9442007-08-21 01:25:48 -0300833 if (fe_tuner_ops->get_frequency) {
834 u32 abs_freq;
835
836 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
837 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
838 (abs_freq * 2 + 125/2) / 125 :
839 (abs_freq + 62500/2) / 62500;
840 break;
841 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200842 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
843 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700844 break;
845 }
846 case VIDIOC_G_TUNER:
847 {
848 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700849
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700850 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
851 return 0;
852 switch_v4l2();
853
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200854 tuner->type = t->mode;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300855 if (ops && ops->get_afc)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300856 tuner->afc = ops->get_afc(&t->fe);
Hans Verkuilab4cecf2006-04-01 16:40:21 -0300857 if (t->mode == V4L2_TUNER_ANALOG_TV)
858 tuner->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200859 if (t->mode != V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700860 tuner->rangelow = tv_range[0] * 16;
861 tuner->rangehigh = tv_range[1] * 16;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200862 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700863 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200864
865 /* radio mode */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200866 tuner->rxsubchans =
867 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300868 if (fe_tuner_ops->get_status) {
869 u32 tuner_status;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200870
Michael Krufkye18f9442007-08-21 01:25:48 -0300871 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300872 tuner->rxsubchans =
873 (tuner_status & TUNER_STATUS_STEREO) ?
874 V4L2_TUNER_SUB_STEREO :
875 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300876 } else {
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300877 if (ops && ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -0300878 tuner->rxsubchans =
879 ops->is_stereo(&t->fe) ?
880 V4L2_TUNER_SUB_STEREO :
881 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300882 }
Michael Krufkye18f9442007-08-21 01:25:48 -0300883 }
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300884 if (ops && ops->has_signal)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300885 tuner->signal = ops->has_signal(&t->fe);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200886 tuner->capability |=
887 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
888 tuner->audmode = t->audmode;
889 tuner->rangelow = radio_range[0] * 16000;
890 tuner->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700891 break;
892 }
893 case VIDIOC_S_TUNER:
894 {
895 struct v4l2_tuner *tuner = arg;
896
897 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
898 return 0;
899
900 switch_v4l2();
901
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200902 /* do nothing unless we're a radio tuner */
903 if (t->mode != V4L2_TUNER_RADIO)
904 break;
905 t->audmode = tuner->audmode;
906 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700907 break;
908 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200909 case VIDIOC_LOG_STATUS:
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300910 if (ops && ops->tuner_status)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300911 ops->tuner_status(&t->fe);
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200912 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914
915 return 0;
916}
917
Jean Delvare21b48a72007-03-12 19:20:15 -0300918static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300920 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300922 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 /* FIXME: power down ??? */
924 return 0;
925}
926
Jean Delvare21b48a72007-03-12 19:20:15 -0300927static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300929 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300931 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -0200932 if (V4L2_TUNER_RADIO == t->mode) {
933 if (t->radio_freq)
934 set_freq(c, t->radio_freq);
935 } else {
936 if (t->tv_freq)
937 set_freq(c, t->tv_freq);
938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return 0;
940}
941
Hans Verkuil92de1f12007-11-04 10:53:09 -0300942/* ---------------------------------------------------------------------- */
943
944LIST_HEAD(tuner_list);
945
946/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300947 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -0300948 certain no other devices will be added/deleted at the same time, I2C
949 core protects against that. */
950static void tuner_lookup(struct i2c_adapter *adap,
951 struct tuner **radio, struct tuner **tv)
952{
953 struct tuner *pos;
954
955 *radio = NULL;
956 *tv = NULL;
957
958 list_for_each_entry(pos, &tuner_list, list) {
959 int mode_mask;
960
961 if (pos->i2c->adapter != adap ||
962 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
963 continue;
964
965 mode_mask = pos->mode_mask & ~T_STANDBY;
966 if (*radio == NULL && mode_mask == T_RADIO)
967 *radio = pos;
968 /* Note: currently TDA9887 is the only demod-only
969 device. If other devices appear then we need to
970 make this test more general. */
971 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
972 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
973 *tv = pos;
974 }
975}
976
977/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300978 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -0300979 */
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300980static int tuner_probe(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -0300981{
Hans Verkuil92de1f12007-11-04 10:53:09 -0300982 struct tuner *t;
983 struct tuner *radio;
984 struct tuner *tv;
985
Hans Verkuil92de1f12007-11-04 10:53:09 -0300986 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300987 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -0300988 return -ENOMEM;
Hans Verkuil92de1f12007-11-04 10:53:09 -0300989 t->i2c = client;
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300990 strlcpy(client->name, "(tuner unset)", sizeof(client->name));
Hans Verkuil92de1f12007-11-04 10:53:09 -0300991 i2c_set_clientdata(client, t);
992 t->type = UNSET;
993 t->audmode = V4L2_TUNER_MODE_STEREO;
994 t->mode_mask = T_UNINITIALIZED;
995
996 if (show_i2c) {
997 unsigned char buffer[16];
998 int i, rc;
999
1000 memset(buffer, 0, sizeof(buffer));
1001 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1002 tuner_info("I2C RECV = ");
1003 for (i = 0; i < rc; i++)
1004 printk(KERN_CONT "%02x ", buffer[i]);
1005 printk("\n");
1006 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001007 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001008 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001009 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1010 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001011 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001012 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001013
1014 /* autodetection code based on the i2c addr */
1015 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001016 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001017 case 0x10:
1018 if (tea5761_autodetection(t->i2c->adapter, t->i2c->addr)
1019 != EINVAL) {
1020 t->type = TUNER_TEA5761;
1021 t->mode_mask = T_RADIO;
1022 t->mode = T_STANDBY;
1023 /* Sets freq to FM range */
1024 t->radio_freq = 87.5 * 16000;
1025 tuner_lookup(t->i2c->adapter, &radio, &tv);
1026 if (tv)
1027 tv->mode_mask &= ~T_RADIO;
1028
1029 goto register_client;
1030 }
1031 break;
1032 case 0x42:
1033 case 0x43:
1034 case 0x4a:
1035 case 0x4b:
1036 /* If chip is not tda8290, don't register.
1037 since it can be tda9887*/
1038 if (tda829x_probe(t) == 0) {
1039 tuner_dbg("tda829x detected\n");
1040 } else {
1041 /* Default is being tda9887 */
1042 t->type = TUNER_TDA9887;
1043 t->mode_mask = T_RADIO | T_ANALOG_TV |
1044 T_DIGITAL_TV;
1045 t->mode = T_STANDBY;
1046 goto register_client;
1047 }
1048 break;
1049 case 0x60:
1050 if (tea5767_autodetection(t->i2c->adapter, t->i2c->addr)
1051 != EINVAL) {
1052 t->type = TUNER_TEA5767;
1053 t->mode_mask = T_RADIO;
1054 t->mode = T_STANDBY;
1055 /* Sets freq to FM range */
1056 t->radio_freq = 87.5 * 16000;
1057 tuner_lookup(t->i2c->adapter, &radio, &tv);
1058 if (tv)
1059 tv->mode_mask &= ~T_RADIO;
1060
1061 goto register_client;
1062 }
1063 break;
1064 }
1065 }
1066
1067 /* Initializes only the first TV tuner on this adapter. Why only the
1068 first? Because there are some devices (notably the ones with TI
1069 tuners) that have more than one i2c address for the *same* device.
1070 Experience shows that, except for just one case, the first
1071 address is the right one. The exception is a Russian tuner
1072 (ACORP_Y878F). So, the desired behavior is just to enable the
1073 first found TV tuner. */
1074 tuner_lookup(t->i2c->adapter, &radio, &tv);
1075 if (tv == NULL) {
1076 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1077 if (radio == NULL)
1078 t->mode_mask |= T_RADIO;
1079 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1080 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1081 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1082 }
1083
1084 /* Should be just before return */
1085register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001086 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1087 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001088
1089 /* Sets a default mode */
1090 if (t->mode_mask & T_ANALOG_TV) {
1091 t->mode = T_ANALOG_TV;
1092 } else if (t->mode_mask & T_RADIO) {
1093 t->mode = T_RADIO;
1094 } else {
1095 t->mode = T_DIGITAL_TV;
1096 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001097 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001098 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001099 return 0;
1100}
1101
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001102static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001103{
1104 if (0 != addr) {
1105 normal_i2c[0] = addr;
1106 normal_i2c[1] = I2C_CLIENT_END;
1107 }
1108
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001109 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1110 return 0;
1111
Hans Verkuil92de1f12007-11-04 10:53:09 -03001112 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1113 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1114 * and an RTC at 0x6f which can get corrupted if probed.
1115 */
1116 if ((adap->id == I2C_HW_B_CX2388x) ||
1117 (adap->id == I2C_HW_B_CX23885)) {
1118 unsigned int i = 0;
1119
1120 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1121 i += 2;
1122 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1123 ignore[i+0] = adap->nr;
1124 ignore[i+1] = 0x6b;
1125 ignore[i+2] = adap->nr;
1126 ignore[i+3] = 0x6f;
1127 ignore[i+4] = I2C_CLIENT_END;
1128 } else
1129 printk(KERN_WARNING "tuner: "
1130 "too many options specified "
1131 "in i2c probe ignore list!\n");
1132 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001133 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001134}
1135
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001136static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001137{
1138 struct tuner *t = i2c_get_clientdata(client);
1139 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001140
1141 if (ops && ops->release)
1142 ops->release(&t->fe);
1143
1144 list_del(&t->list);
1145 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001146 return 0;
1147}
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149/* ----------------------------------------------------------------------- */
1150
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001151static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1152 .name = "tuner",
1153 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001154 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001155 .probe = tuner_probe,
1156 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001157 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001158 .resume = tuner_resume,
1159 .legacy_probe = tuner_legacy_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160};
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163/*
1164 * Overrides for Emacs so that we follow Linus's tabbing style.
1165 * ---------------------------------------------------------------------------
1166 * Local variables:
1167 * c-basic-offset: 8
1168 * End:
1169 */