blob: 78a09a2a4857b94028e7eadbbecb37dea0c91908 [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 Krufky96c0b7c2007-08-27 21:23:08 -030023#include "mt20xx.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030024#include "tda8290.h"
Michael Krufky7ab10bf2007-08-27 21:23:40 -030025#include "tea5761.h"
Michael Krufky8d0936e2007-08-27 21:24:27 -030026#include "tea5767.h"
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030027#include "tuner-xc2028.h"
Michael Krufky4adad282007-08-27 21:59:08 -030028#include "tuner-simple.h"
Michael Krufky31c95842007-10-21 20:48:48 -030029#include "tda9887.h"
Steven Toth27c685a2008-01-05 16:50:14 -030030#include "xc5000.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
Michael Krufkyf7f427e2007-12-16 22:02:26 -030036struct tuner {
37 /* device */
38 struct dvb_frontend fe;
39 struct i2c_client *i2c;
40 struct list_head list;
41 unsigned int using_v4l2:1;
42
43 /* keep track of the current settings */
44 v4l2_std_id std;
45 unsigned int tv_freq;
46 unsigned int radio_freq;
47 unsigned int audmode;
48
49 unsigned int mode;
50 unsigned int mode_mask; /* Combination of allowable modes */
51
52 unsigned int type; /* chip type id */
53 unsigned int config;
54 int (*tuner_callback) (void *dev, int command, int arg);
55};
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* standard i2c insmod options */
58static unsigned short normal_i2c[] = {
Adrian Bunk04d934f2007-10-24 09:06:47 -030059#if defined(CONFIG_TUNER_TEA5761) || (defined(CONFIG_TUNER_TEA5761_MODULE) && defined(MODULE))
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -030060 0x10,
61#endif
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080062 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -070063 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
64 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 I2C_CLIENT_END
66};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068I2C_CLIENT_INSMOD;
69
70/* insmod options used at init time => read/only */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070071static unsigned int addr = 0;
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -070072static unsigned int no_autodetect = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070073static unsigned int show_i2c = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* insmod options used at runtime => read/write */
Michael Krufkyab166052007-12-09 02:26:48 -030076static int tuner_debug;
77
78#define tuner_warn(fmt, arg...) do { \
79 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
80 i2c_adapter_id(t->i2c->adapter), \
81 t->i2c->addr, ##arg); \
82 } while (0)
83
84#define tuner_info(fmt, arg...) do { \
85 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
86 i2c_adapter_id(t->i2c->adapter), \
87 t->i2c->addr, ##arg); \
88 } while (0)
89
90#define tuner_err(fmt, arg...) do { \
91 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
92 i2c_adapter_id(t->i2c->adapter), \
93 t->i2c->addr, ##arg); \
94 } while (0)
95
96#define tuner_dbg(fmt, arg...) do { \
97 if (tuner_debug) \
98 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
99 i2c_adapter_id(t->i2c->adapter), \
100 t->i2c->addr, ##arg); \
101 } while (0)
102
103/* ------------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700105static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static unsigned int radio_range[2] = { 65, 108 };
107
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200108static char pal[] = "--";
109static char secam[] = "--";
110static char ntsc[] = "-";
111
Hans Verkuilf9195de2006-01-11 19:01:01 -0200112
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200113module_param(addr, int, 0444);
114module_param(no_autodetect, int, 0444);
115module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -0200116module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200117module_param_string(pal, pal, sizeof(pal), 0644);
118module_param_string(secam, secam, sizeof(secam), 0644);
119module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700120module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121module_param_array(radio_range, int, NULL, 0644);
122
123MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
124MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
125MODULE_LICENSE("GPL");
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/* ---------------------------------------------------------------------- */
128
Michael Krufkyc7919d52007-12-08 17:06:30 -0300129static void fe_set_params(struct dvb_frontend *fe,
130 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300131{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300132 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
133 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300134
Michael Krufkye18f9442007-08-21 01:25:48 -0300135 if (NULL == fe_tuner_ops->set_analog_params) {
136 tuner_warn("Tuner frontend module has no way to set freq\n");
137 return;
138 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300139 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300140}
141
Michael Krufky4e9154b2007-10-21 19:39:50 -0300142static void fe_release(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300143{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300144 if (fe->ops.tuner_ops.release)
145 fe->ops.tuner_ops.release(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300146
Michael Krufky4524c1a2007-10-22 18:15:39 -0300147 /* DO NOT kfree(fe->analog_demod_priv)
148 *
149 * If we are in this function, analog_demod_priv contains a pointer
150 * to struct tuner *t. This will be kfree'd in tuner_detach().
151 *
152 * Otherwise, fe->ops.analog_demod_ops->release will
153 * handle the cleanup for analog demodulator modules.
154 */
Michael Krufky4e9154b2007-10-21 19:39:50 -0300155 fe->analog_demod_priv = NULL;
Michael Krufkye18f9442007-08-21 01:25:48 -0300156}
157
Michael Krufky4e9154b2007-10-21 19:39:50 -0300158static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300159{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300160 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300161
162 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300163 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300164}
165
Michael Krufky4e9154b2007-10-21 19:39:50 -0300166static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300167{
Michael Krufky14196832007-10-14 18:11:53 -0300168 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300169
Michael Krufky4e9154b2007-10-21 19:39:50 -0300170 if (fe->ops.tuner_ops.get_rf_strength)
171 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300172
173 return strength;
174}
175
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300176static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
177{
178 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
179 struct tuner *t = fe->analog_demod_priv;
180
181 if (fe_tuner_ops->set_config)
182 return fe_tuner_ops->set_config(fe, priv_cfg);
183
184 tuner_warn("Tuner frontend module has no way to set config\n");
185
186 return 0;
187}
188
Michael Krufky4e9154b2007-10-21 19:39:50 -0300189static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300190
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300191static struct analog_demod_ops tuner_core_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300192 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300193 .standby = fe_standby,
194 .release = fe_release,
195 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300196 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300197 .tuner_status = tuner_status
198};
199
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700200/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201static void set_tv_freq(struct i2c_client *c, unsigned int freq)
202{
203 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300204 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Michael Krufkyc7919d52007-12-08 17:06:30 -0300206 struct analog_parameters params = {
207 .mode = t->mode,
208 .audmode = t->audmode,
209 .std = t->std
210 };
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700213 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return;
215 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300216 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700217 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return;
219 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700220 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
221 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
222 freq / 16, freq % 16 * 100 / 16, tv_range[0],
223 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200224 /* V4L2 spec: if the freq is not possible then the closest
225 possible value should be selected */
226 if (freq < tv_range[0] * 16)
227 freq = tv_range[0] * 16;
228 else
229 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300231 params.frequency = freq;
232
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300233 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236static void set_radio_freq(struct i2c_client *c, unsigned int freq)
237{
238 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300239 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Michael Krufkyc7919d52007-12-08 17:06:30 -0300241 struct analog_parameters params = {
242 .mode = t->mode,
243 .audmode = t->audmode,
244 .std = t->std
245 };
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700248 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return;
250 }
Mauro Carvalho Chehabe545d6e2008-01-05 16:37:04 -0300251 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700252 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return;
254 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200255 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700256 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
257 freq / 16000, freq % 16000 * 100 / 16000,
258 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200259 /* V4L2 spec: if the freq is not possible then the closest
260 possible value should be selected */
261 if (freq < radio_range[0] * 16000)
262 freq = radio_range[0] * 16000;
263 else
264 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300266 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700267
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300268 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271static void set_freq(struct i2c_client *c, unsigned long freq)
272{
273 struct tuner *t = i2c_get_clientdata(c);
274
275 switch (t->mode) {
276 case V4L2_TUNER_RADIO:
277 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700278 freq / 16000, freq % 16000 * 100 / 16000);
279 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200280 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 break;
282 case V4L2_TUNER_ANALOG_TV:
283 case V4L2_TUNER_DIGITAL_TV:
284 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700285 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200287 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300289 default:
290 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Michael Krufky293197c2007-08-28 17:20:42 -0300294static void tuner_i2c_address_check(struct tuner *t)
295{
296 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300297 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
Michael Krufky293197c2007-08-28 17:20:42 -0300298 return;
299
Michael Krufky16410022008-01-21 12:01:34 -0300300 /* We already know that the XC5000 can only be located at
301 * i2c address 0x61, 0x62, 0x63 or 0x64 */
302 if ((t->type == TUNER_XC5000) &&
303 ((t->i2c->addr <= 0x64)) && (t->i2c->addr >= 0x61))
304 return;
305
Michael Krufky293197c2007-08-28 17:20:42 -0300306 tuner_warn("====================== WARNING! ======================\n");
307 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
308 tuner_warn("will soon be dropped. This message indicates that your\n");
309 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300310 t->i2c->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300311 tuner_warn("To ensure continued support for your device, please\n");
312 tuner_warn("send a copy of this message, along with full dmesg\n");
313 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
314 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
315 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300316 t->i2c->adapter->name, t->i2c->addr, t->type,
Michael Krufky293197c2007-08-28 17:20:42 -0300317 tuners[t->type].name);
318 tuner_warn("====================== WARNING! ======================\n");
319}
320
Michael Krufky4adad282007-08-27 21:59:08 -0300321static void attach_simple_tuner(struct tuner *t)
322{
323 struct simple_tuner_config cfg = {
324 .type = t->type,
325 .tun = &tuners[t->type]
326 };
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300327 simple_tuner_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
Michael Krufky4adad282007-08-27 21:59:08 -0300328}
329
Michael Krufkyab166052007-12-09 02:26:48 -0300330static void attach_tda829x(struct tuner *t)
331{
332 struct tda829x_config cfg = {
333 .lna_cfg = &t->config,
334 .tuner_callback = t->tuner_callback,
335 };
336 tda829x_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
337}
338
Steven Toth27c685a2008-01-05 16:50:14 -0300339static struct xc5000_config xc5000_cfg;
340
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700341static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300342 unsigned int new_mode_mask, unsigned int new_config,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300343 int (*tuner_callback) (void *dev, int command,int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkye18f9442007-08-21 01:25:48 -0300346 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300347 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700348 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700350 if (type == UNSET || type == TUNER_ABSENT) {
351 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return;
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700355 if (type >= tuner_count) {
356 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
357 return;
358 }
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 t->type = type;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300361 t->config = new_config;
362 if (tuner_callback != NULL) {
363 tuner_dbg("defining GPIO callback\n");
364 t->tuner_callback = tuner_callback;
365 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300366
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300367 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300368 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
369
370 return;
371 }
372
Michael Krufkyb2083192007-05-29 22:54:06 -0300373 /* discard private data, in case set_type() was previously called */
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300374 if (analog_ops->release)
375 analog_ops->release(&t->fe);
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 switch (t->type) {
378 case TUNER_MT2032:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300379 microtune_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 break;
381 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300382 {
Michael Krufkyab166052007-12-09 02:26:48 -0300383 attach_tda829x(t);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300384 break;
385 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700386 case TUNER_TEA5767:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300387 if (tea5767_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700388 t->type = TUNER_ABSENT;
389 t->mode_mask = T_UNINITIALIZED;
390 return;
391 }
392 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700393 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300394 case TUNER_TEA5761:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300395 if (tea5761_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300396 t->type = TUNER_ABSENT;
397 t->mode_mask = T_UNINITIALIZED;
Adrian Bunk9ee476a2007-06-05 05:22:00 -0300398 return;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300399 }
400 t->mode_mask = T_RADIO;
401 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700402 case TUNER_PHILIPS_FMD1216ME_MK3:
403 buffer[0] = 0x0b;
404 buffer[1] = 0xdc;
405 buffer[2] = 0x9c;
406 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700407 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700408 mdelay(1);
409 buffer[2] = 0x86;
410 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700411 i2c_master_send(c, buffer, 4);
Michael Krufky4adad282007-08-27 21:59:08 -0300412 attach_simple_tuner(t);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700413 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800414 case TUNER_PHILIPS_TD1316:
415 buffer[0] = 0x0b;
416 buffer[1] = 0xdc;
417 buffer[2] = 0x86;
418 buffer[3] = 0xa4;
419 i2c_master_send(c,buffer,4);
Michael Krufky4adad282007-08-27 21:59:08 -0300420 attach_simple_tuner(t);
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200421 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300422 case TUNER_XC2028:
423 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300424 struct xc2028_config cfg = {
425 .i2c_adap = t->i2c->adapter,
426 .i2c_addr = t->i2c->addr,
427 .video_dev = c->adapter->algo_data,
428 .callback = t->tuner_callback,
429 };
430 if (!xc2028_attach(&t->fe, &cfg)) {
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300431 t->type = TUNER_ABSENT;
432 t->mode_mask = T_UNINITIALIZED;
433 return;
434 }
435 break;
436 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300437 case TUNER_TDA9887:
Michael Krufky8ca40832007-12-16 20:11:46 -0300438 tda9887_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300439 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300440 case TUNER_XC5000:
441 xc5000_cfg.i2c_address = t->i2c->addr;
442 xc5000_cfg.if_khz = 5380;
Steven Toth73c993a2008-01-05 17:08:05 -0300443 xc5000_cfg.priv = c->adapter->algo_data;
Steven Toth27c685a2008-01-05 16:50:14 -0300444 xc5000_cfg.tuner_callback = t->tuner_callback;
445 if (!xc5000_attach(&t->fe, t->i2c->adapter, &xc5000_cfg)) {
446 t->type = TUNER_ABSENT;
447 t->mode_mask = T_UNINITIALIZED;
448 return;
449 }
450 {
451 struct dvb_tuner_ops *xc_tuner_ops;
452 xc_tuner_ops = &t->fe.ops.tuner_ops;
453 if(xc_tuner_ops->init != NULL)
454 xc_tuner_ops->init(&t->fe);
455 }
456 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 default:
Michael Krufky4adad282007-08-27 21:59:08 -0300458 attach_simple_tuner(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
460 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700461
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300462 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300463 (fe_tuner_ops->set_analog_params)) {
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300464 strlcpy(t->i2c->name, fe_tuner_ops->info.name,
465 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300466
Michael Krufky4e9154b2007-10-21 19:39:50 -0300467 t->fe.analog_demod_priv = t;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300468 memcpy(analog_ops, &tuner_core_ops,
469 sizeof(struct analog_demod_ops));
Michael Krufkya55db8c2007-12-09 13:52:51 -0300470 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300471 strlcpy(t->i2c->name, analog_ops->info.name,
Michael Krufkya55db8c2007-12-09 13:52:51 -0300472 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300473 }
474
Michael Krufky49427442007-10-30 09:44:12 -0300475 tuner_dbg("type set to %s\n", t->i2c->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300476
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700477 if (t->mode_mask == T_UNINITIALIZED)
478 t->mode_mask = new_mode_mask;
479
Hans Verkuil27487d42006-01-15 15:04:52 -0200480 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700481 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100482 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700483 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300484 tuner_i2c_address_check(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700487/*
488 * This function apply tuner config to tuner specified
489 * by tun_setup structure. I addr is unset, then admin status
490 * and tun addr status is more precise then current status,
491 * it's applied. Otherwise status and type are applied only to
492 * tuner with exactly the same addr.
493*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700494
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700495static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700496{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700497 struct tuner *t = i2c_get_clientdata(c);
498
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300499 tuner_dbg("set addr for type %i\n", t->type);
500
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300501 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
502 (t->mode_mask & tun_setup->mode_mask))) ||
503 (tun_setup->addr == c->addr)) {
504 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300505 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700506 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700507}
508
509static inline int check_mode(struct tuner *t, char *cmd)
510{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700511 if ((1 << t->mode & t->mode_mask) == 0) {
512 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700513 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700514
515 switch (t->mode) {
516 case V4L2_TUNER_RADIO:
517 tuner_dbg("Cmd %s accepted for radio\n", cmd);
518 break;
519 case V4L2_TUNER_ANALOG_TV:
520 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
521 break;
522 case V4L2_TUNER_DIGITAL_TV:
523 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
524 break;
525 }
526 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700527}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700528
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700529/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530static int tuner_fixup_std(struct tuner *t)
531{
532 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300534 case '6':
535 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
536 t->std = V4L2_STD_PAL_60;
537 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 case 'b':
539 case 'B':
540 case 'g':
541 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700542 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 t->std = V4L2_STD_PAL_BG;
544 break;
545 case 'i':
546 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700547 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 t->std = V4L2_STD_PAL_I;
549 break;
550 case 'd':
551 case 'D':
552 case 'k':
553 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700554 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 t->std = V4L2_STD_PAL_DK;
556 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700557 case 'M':
558 case 'm':
559 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
560 t->std = V4L2_STD_PAL_M;
561 break;
562 case 'N':
563 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200564 if (pal[1] == 'c' || pal[1] == 'C') {
565 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
566 t->std = V4L2_STD_PAL_Nc;
567 } else {
568 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
569 t->std = V4L2_STD_PAL_N;
570 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700571 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700572 case '-':
573 /* default parameter, do nothing */
574 break;
575 default:
576 tuner_warn ("pal= argument not recognised\n");
577 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700580 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
581 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200582 case 'b':
583 case 'B':
584 case 'g':
585 case 'G':
586 case 'h':
587 case 'H':
588 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
589 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
590 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700591 case 'd':
592 case 'D':
593 case 'k':
594 case 'K':
595 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
596 t->std = V4L2_STD_SECAM_DK;
597 break;
598 case 'l':
599 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800600 if ((secam[1]=='C')||(secam[1]=='c')) {
601 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
602 t->std = V4L2_STD_SECAM_LC;
603 } else {
604 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
605 t->std = V4L2_STD_SECAM_L;
606 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700607 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700608 case '-':
609 /* default parameter, do nothing */
610 break;
611 default:
612 tuner_warn ("secam= argument not recognised\n");
613 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700614 }
615 }
616
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200617 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
618 switch (ntsc[0]) {
619 case 'm':
620 case 'M':
621 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
622 t->std = V4L2_STD_NTSC_M;
623 break;
624 case 'j':
625 case 'J':
626 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
627 t->std = V4L2_STD_NTSC_M_JP;
628 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200629 case 'k':
630 case 'K':
631 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
632 t->std = V4L2_STD_NTSC_M_KR;
633 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200634 case '-':
635 /* default parameter, do nothing */
636 break;
637 default:
638 tuner_info("ntsc= argument not recognised\n");
639 break;
640 }
641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
643}
644
Michael Krufky4e9154b2007-10-21 19:39:50 -0300645static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200646{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300647 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200648 unsigned long freq, freq_fraction;
Michael Krufkye18f9442007-08-21 01:25:48 -0300649 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300650 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200651 const char *p;
652
653 switch (t->mode) {
654 case V4L2_TUNER_RADIO: p = "radio"; break;
655 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
656 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
657 default: p = "undefined"; break;
658 }
659 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200660 freq = t->radio_freq / 16000;
661 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200662 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200663 freq = t->tv_freq / 16;
664 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200665 }
666 tuner_info("Tuner mode: %s\n", p);
667 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300668 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200669 if (t->mode != V4L2_TUNER_RADIO)
670 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300671 if (fe_tuner_ops->get_status) {
672 u32 tuner_status;
673
674 fe_tuner_ops->get_status(&t->fe, &tuner_status);
675 if (tuner_status & TUNER_STATUS_LOCKED)
676 tuner_info("Tuner is locked.\n");
677 if (tuner_status & TUNER_STATUS_STEREO)
678 tuner_info("Stereo: yes\n");
679 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300680 if (analog_ops->has_signal)
681 tuner_info("Signal strength: %d\n",
682 analog_ops->has_signal(fe));
683 if (analog_ops->is_stereo)
684 tuner_info("Stereo: %s\n",
685 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200686}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/* ---------------------------------------------------------------------- */
689
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700690/*
691 * Switch tuner to other mode. If tuner support both tv and radio,
692 * set another frequency to some value (This is needed for some pal
693 * tuners to avoid locking). Otherwise, just put second tuner in
694 * standby mode.
695 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700697static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
698{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300699 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300700
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800701 if (mode == t->mode)
702 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700703
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800704 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700705
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800706 if (check_mode(t, cmd) == EINVAL) {
707 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300708 if (analog_ops->standby)
709 analog_ops->standby(&t->fe);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800710 return EINVAL;
711 }
712 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700713}
714
715#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800716 tuner_dbg("switching to v4l2\n"); \
717 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700718
719static inline int check_v4l2(struct tuner *t)
720{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300721 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
722 TV, v4l1 for radio), until that is fixed this code is disabled.
723 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
724 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700725 return 0;
726}
727
728static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkye18f9442007-08-21 01:25:48 -0300731 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300732 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Hans Verkuilf9195de2006-01-11 19:01:01 -0200734 if (tuner_debug>1)
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300735 v4l_i2c_print_ioctl(client,cmd);
Michael Krufky5e453dc2006-01-09 15:32:31 -0200736
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700737 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700739 case TUNER_SET_TYPE_ADDR:
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300740 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 -0700741 ((struct tuner_setup *)arg)->type,
742 ((struct tuner_setup *)arg)->addr,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300743 ((struct tuner_setup *)arg)->mode_mask,
744 ((struct tuner_setup *)arg)->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700745
746 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700747 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200749 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
750 == EINVAL)
751 return 0;
752 if (t->radio_freq)
753 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700755 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200756 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
757 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300758 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300759 if (analog_ops->standby)
760 analog_ops->standby(&t->fe);
Hans Verkuil27487d42006-01-15 15:04:52 -0200761 break;
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300762#ifdef CONFIG_VIDEO_V4L1
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700763 case VIDIOCSAUDIO:
764 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
765 return 0;
766 if (check_v4l2(t) == EINVAL)
767 return 0;
768
769 /* Should be implemented, since bttv calls it */
770 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700771 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700773 {
774 static const v4l2_std_id map[] = {
775 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
776 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
777 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
778 [4 /* bttv */ ] = V4L2_STD_PAL_M,
779 [5 /* bttv */ ] = V4L2_STD_PAL_N,
780 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
781 };
782 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700784 if (check_v4l2(t) == EINVAL)
785 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700786
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700787 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
788 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700790 if (vc->norm < ARRAY_SIZE(map))
791 t->std = map[vc->norm];
792 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200793 if (t->tv_freq)
794 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700795 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700796 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700797 case VIDIOCSFREQ:
798 {
799 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700800
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700801 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
802 return 0;
803 if (check_v4l2(t) == EINVAL)
804 return 0;
805
806 set_freq(client, *v);
807 return 0;
808 }
809 case VIDIOCGTUNER:
810 {
811 struct video_tuner *vt = arg;
812
813 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
814 return 0;
815 if (check_v4l2(t) == EINVAL)
816 return 0;
817
818 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300819 if (fe_tuner_ops->get_status) {
820 u32 tuner_status;
821
822 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300823 if (tuner_status & TUNER_STATUS_STEREO)
824 vt->flags |= VIDEO_TUNER_STEREO_ON;
825 else
826 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300827 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300828 if (analog_ops->is_stereo) {
829 if (analog_ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300830 vt->flags |=
831 VIDEO_TUNER_STEREO_ON;
832 else
833 vt->flags &=
834 ~VIDEO_TUNER_STEREO_ON;
835 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700836 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300837 if (analog_ops->has_signal)
838 vt->signal =
839 analog_ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300840
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700841 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
842
843 vt->rangelow = radio_range[0] * 16000;
844 vt->rangehigh = radio_range[1] * 16000;
845
846 } else {
847 vt->rangelow = tv_range[0] * 16;
848 vt->rangehigh = tv_range[1] * 16;
849 }
850
851 return 0;
852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700854 {
855 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700857 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
858 return 0;
859 if (check_v4l2(t) == EINVAL)
860 return 0;
861
Michael Krufkye18f9442007-08-21 01:25:48 -0300862 if (V4L2_TUNER_RADIO == t->mode) {
863 if (fe_tuner_ops->get_status) {
864 u32 tuner_status;
865
866 fe_tuner_ops->get_status(&t->fe, &tuner_status);
867 va->mode = (tuner_status & TUNER_STATUS_STEREO)
868 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300869 } else if (analog_ops->is_stereo)
870 va->mode = analog_ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300871 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
872 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700873 return 0;
874 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300875#endif
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300876 case TUNER_SET_CONFIG:
877 {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300878 struct v4l2_priv_tun_config *cfg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300880 if (t->type != cfg->tuner)
881 break;
882
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300883 if (analog_ops->set_config) {
Michael Krufky67d52e22007-12-24 16:05:39 -0300884 analog_ops->set_config(&t->fe, cfg->priv);
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300885 break;
886 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300887
Michael Krufky67d52e22007-12-24 16:05:39 -0300888 tuner_dbg("Tuner frontend module has no way to set config\n");
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300889 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300890 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300891 /* --- v4l ioctls --- */
892 /* take care: bttv does userspace copying, we'll get a
893 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700895 {
896 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700898 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
899 == EINVAL)
900 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700901
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700902 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700904 t->std = *id;
905 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200906 if (t->tv_freq)
907 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700908 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700909 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700910 case VIDIOC_S_FREQUENCY:
911 {
912 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700913
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300914 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
915 == EINVAL)
916 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700917 switch_v4l2();
Hans Verkuil27487d42006-01-15 15:04:52 -0200918 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700919
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700920 break;
921 }
922 case VIDIOC_G_FREQUENCY:
923 {
924 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700925
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700926 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
927 return 0;
928 switch_v4l2();
929 f->type = t->mode;
Michael Krufkye18f9442007-08-21 01:25:48 -0300930 if (fe_tuner_ops->get_frequency) {
931 u32 abs_freq;
932
933 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
934 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
935 (abs_freq * 2 + 125/2) / 125 :
936 (abs_freq + 62500/2) / 62500;
937 break;
938 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200939 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
940 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700941 break;
942 }
943 case VIDIOC_G_TUNER:
944 {
945 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700946
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700947 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
948 return 0;
949 switch_v4l2();
950
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200951 tuner->type = t->mode;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300952 if (analog_ops->get_afc)
953 tuner->afc = analog_ops->get_afc(&t->fe);
Hans Verkuilab4cecf2006-04-01 16:40:21 -0300954 if (t->mode == V4L2_TUNER_ANALOG_TV)
955 tuner->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200956 if (t->mode != V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700957 tuner->rangelow = tv_range[0] * 16;
958 tuner->rangehigh = tv_range[1] * 16;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200959 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700960 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200961
962 /* radio mode */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200963 tuner->rxsubchans =
964 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300965 if (fe_tuner_ops->get_status) {
966 u32 tuner_status;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200967
Michael Krufkye18f9442007-08-21 01:25:48 -0300968 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300969 tuner->rxsubchans =
970 (tuner_status & TUNER_STATUS_STEREO) ?
971 V4L2_TUNER_SUB_STEREO :
972 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300973 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300974 if (analog_ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -0300975 tuner->rxsubchans =
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300976 analog_ops->is_stereo(&t->fe) ?
Michael Krufky4e9154b2007-10-21 19:39:50 -0300977 V4L2_TUNER_SUB_STEREO :
978 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300979 }
Michael Krufkye18f9442007-08-21 01:25:48 -0300980 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300981 if (analog_ops->has_signal)
982 tuner->signal = analog_ops->has_signal(&t->fe);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200983 tuner->capability |=
984 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
985 tuner->audmode = t->audmode;
986 tuner->rangelow = radio_range[0] * 16000;
987 tuner->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700988 break;
989 }
990 case VIDIOC_S_TUNER:
991 {
992 struct v4l2_tuner *tuner = arg;
993
994 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
995 return 0;
996
997 switch_v4l2();
998
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200999 /* do nothing unless we're a radio tuner */
1000 if (t->mode != V4L2_TUNER_RADIO)
1001 break;
1002 t->audmode = tuner->audmode;
1003 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001004 break;
1005 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001006 case VIDIOC_LOG_STATUS:
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001007 if (analog_ops->tuner_status)
1008 analog_ops->tuner_status(&t->fe);
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001009 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011
1012 return 0;
1013}
1014
Jean Delvare21b48a72007-03-12 19:20:15 -03001015static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001017 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001019 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* FIXME: power down ??? */
1021 return 0;
1022}
1023
Jean Delvare21b48a72007-03-12 19:20:15 -03001024static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001026 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001028 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -02001029 if (V4L2_TUNER_RADIO == t->mode) {
1030 if (t->radio_freq)
1031 set_freq(c, t->radio_freq);
1032 } else {
1033 if (t->tv_freq)
1034 set_freq(c, t->tv_freq);
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
1037}
1038
Hans Verkuil92de1f12007-11-04 10:53:09 -03001039/* ---------------------------------------------------------------------- */
1040
Adrian Bunkc52c4d02008-01-28 22:11:15 -03001041static LIST_HEAD(tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001042
1043/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001044 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -03001045 certain no other devices will be added/deleted at the same time, I2C
1046 core protects against that. */
1047static void tuner_lookup(struct i2c_adapter *adap,
1048 struct tuner **radio, struct tuner **tv)
1049{
1050 struct tuner *pos;
1051
1052 *radio = NULL;
1053 *tv = NULL;
1054
1055 list_for_each_entry(pos, &tuner_list, list) {
1056 int mode_mask;
1057
1058 if (pos->i2c->adapter != adap ||
1059 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1060 continue;
1061
1062 mode_mask = pos->mode_mask & ~T_STANDBY;
1063 if (*radio == NULL && mode_mask == T_RADIO)
1064 *radio = pos;
1065 /* Note: currently TDA9887 is the only demod-only
1066 device. If other devices appear then we need to
1067 make this test more general. */
1068 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1069 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1070 *tv = pos;
1071 }
1072}
1073
1074/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001075 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001076 */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001077static int tuner_probe(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001078{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001079 struct tuner *t;
1080 struct tuner *radio;
1081 struct tuner *tv;
1082
Hans Verkuil92de1f12007-11-04 10:53:09 -03001083 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001084 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001085 return -ENOMEM;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001086 t->i2c = client;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001087 strlcpy(client->name, "(tuner unset)", sizeof(client->name));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001088 i2c_set_clientdata(client, t);
1089 t->type = UNSET;
1090 t->audmode = V4L2_TUNER_MODE_STEREO;
1091 t->mode_mask = T_UNINITIALIZED;
1092
1093 if (show_i2c) {
1094 unsigned char buffer[16];
1095 int i, rc;
1096
1097 memset(buffer, 0, sizeof(buffer));
1098 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1099 tuner_info("I2C RECV = ");
1100 for (i = 0; i < rc; i++)
1101 printk(KERN_CONT "%02x ", buffer[i]);
1102 printk("\n");
1103 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001104 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001105 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001106 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1107 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001108 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001109 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001110
1111 /* autodetection code based on the i2c addr */
1112 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001113 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001114 case 0x10:
1115 if (tea5761_autodetection(t->i2c->adapter, t->i2c->addr)
1116 != EINVAL) {
1117 t->type = TUNER_TEA5761;
1118 t->mode_mask = T_RADIO;
1119 t->mode = T_STANDBY;
1120 /* Sets freq to FM range */
1121 t->radio_freq = 87.5 * 16000;
1122 tuner_lookup(t->i2c->adapter, &radio, &tv);
1123 if (tv)
1124 tv->mode_mask &= ~T_RADIO;
1125
1126 goto register_client;
1127 }
1128 break;
1129 case 0x42:
1130 case 0x43:
1131 case 0x4a:
1132 case 0x4b:
1133 /* If chip is not tda8290, don't register.
1134 since it can be tda9887*/
Michael Krufkyab166052007-12-09 02:26:48 -03001135 if (tda829x_probe(t->i2c->adapter,
1136 t->i2c->addr) == 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001137 tuner_dbg("tda829x detected\n");
1138 } else {
1139 /* Default is being tda9887 */
1140 t->type = TUNER_TDA9887;
1141 t->mode_mask = T_RADIO | T_ANALOG_TV |
1142 T_DIGITAL_TV;
1143 t->mode = T_STANDBY;
1144 goto register_client;
1145 }
1146 break;
1147 case 0x60:
1148 if (tea5767_autodetection(t->i2c->adapter, t->i2c->addr)
1149 != EINVAL) {
1150 t->type = TUNER_TEA5767;
1151 t->mode_mask = T_RADIO;
1152 t->mode = T_STANDBY;
1153 /* Sets freq to FM range */
1154 t->radio_freq = 87.5 * 16000;
1155 tuner_lookup(t->i2c->adapter, &radio, &tv);
1156 if (tv)
1157 tv->mode_mask &= ~T_RADIO;
1158
1159 goto register_client;
1160 }
1161 break;
1162 }
1163 }
1164
1165 /* Initializes only the first TV tuner on this adapter. Why only the
1166 first? Because there are some devices (notably the ones with TI
1167 tuners) that have more than one i2c address for the *same* device.
1168 Experience shows that, except for just one case, the first
1169 address is the right one. The exception is a Russian tuner
1170 (ACORP_Y878F). So, the desired behavior is just to enable the
1171 first found TV tuner. */
1172 tuner_lookup(t->i2c->adapter, &radio, &tv);
1173 if (tv == NULL) {
1174 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1175 if (radio == NULL)
1176 t->mode_mask |= T_RADIO;
1177 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1178 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1179 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1180 }
1181
1182 /* Should be just before return */
1183register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001184 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1185 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001186
1187 /* Sets a default mode */
1188 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001189 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001190 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001191 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001192 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001193 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001194 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001195 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001196 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001197 return 0;
1198}
1199
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001200static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001201{
1202 if (0 != addr) {
1203 normal_i2c[0] = addr;
1204 normal_i2c[1] = I2C_CLIENT_END;
1205 }
1206
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001207 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1208 return 0;
1209
Hans Verkuil92de1f12007-11-04 10:53:09 -03001210 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1211 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1212 * and an RTC at 0x6f which can get corrupted if probed.
1213 */
1214 if ((adap->id == I2C_HW_B_CX2388x) ||
1215 (adap->id == I2C_HW_B_CX23885)) {
1216 unsigned int i = 0;
1217
1218 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1219 i += 2;
1220 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1221 ignore[i+0] = adap->nr;
1222 ignore[i+1] = 0x6b;
1223 ignore[i+2] = adap->nr;
1224 ignore[i+3] = 0x6f;
1225 ignore[i+4] = I2C_CLIENT_END;
1226 } else
1227 printk(KERN_WARNING "tuner: "
1228 "too many options specified "
1229 "in i2c probe ignore list!\n");
1230 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001231 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001232}
1233
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001234static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001235{
1236 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001237 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001238
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001239 if (analog_ops->release)
1240 analog_ops->release(&t->fe);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001241
1242 list_del(&t->list);
1243 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001244 return 0;
1245}
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247/* ----------------------------------------------------------------------- */
1248
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001249static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1250 .name = "tuner",
1251 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001252 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001253 .probe = tuner_probe,
1254 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001255 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001256 .resume = tuner_resume,
1257 .legacy_probe = tuner_legacy_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258};
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261/*
1262 * Overrides for Emacs so that we follow Linus's tabbing style.
1263 * ---------------------------------------------------------------------------
1264 * Local variables:
1265 * c-basic-offset: 8
1266 * End:
1267 */