blob: 16cdeeafeb6c833298a67fffdf280f2c1bd50671 [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
300 tuner_warn("====================== WARNING! ======================\n");
301 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
302 tuner_warn("will soon be dropped. This message indicates that your\n");
303 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300304 t->i2c->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300305 tuner_warn("To ensure continued support for your device, please\n");
306 tuner_warn("send a copy of this message, along with full dmesg\n");
307 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
308 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
309 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300310 t->i2c->adapter->name, t->i2c->addr, t->type,
Michael Krufky293197c2007-08-28 17:20:42 -0300311 tuners[t->type].name);
312 tuner_warn("====================== WARNING! ======================\n");
313}
314
Michael Krufky4adad282007-08-27 21:59:08 -0300315static void attach_simple_tuner(struct tuner *t)
316{
317 struct simple_tuner_config cfg = {
318 .type = t->type,
319 .tun = &tuners[t->type]
320 };
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300321 simple_tuner_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
Michael Krufky4adad282007-08-27 21:59:08 -0300322}
323
Michael Krufkyab166052007-12-09 02:26:48 -0300324static void attach_tda829x(struct tuner *t)
325{
326 struct tda829x_config cfg = {
327 .lna_cfg = &t->config,
328 .tuner_callback = t->tuner_callback,
329 };
330 tda829x_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
331}
332
Steven Toth27c685a2008-01-05 16:50:14 -0300333static struct xc5000_config xc5000_cfg;
334
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700335static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300336 unsigned int new_mode_mask, unsigned int new_config,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300337 int (*tuner_callback) (void *dev, int command,int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkye18f9442007-08-21 01:25:48 -0300340 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300341 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700342 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700344 if (type == UNSET || type == TUNER_ABSENT) {
345 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return;
347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700349 if (type >= tuner_count) {
350 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
351 return;
352 }
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 t->type = type;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300355 t->config = new_config;
356 if (tuner_callback != NULL) {
357 tuner_dbg("defining GPIO callback\n");
358 t->tuner_callback = tuner_callback;
359 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300360
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300361 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300362 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
363
364 return;
365 }
366
Michael Krufkyb2083192007-05-29 22:54:06 -0300367 /* discard private data, in case set_type() was previously called */
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300368 if (analog_ops->release)
369 analog_ops->release(&t->fe);
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 switch (t->type) {
372 case TUNER_MT2032:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300373 microtune_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 break;
375 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300376 {
Michael Krufkyab166052007-12-09 02:26:48 -0300377 attach_tda829x(t);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300378 break;
379 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700380 case TUNER_TEA5767:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300381 if (tea5767_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700382 t->type = TUNER_ABSENT;
383 t->mode_mask = T_UNINITIALIZED;
384 return;
385 }
386 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700387 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300388 case TUNER_TEA5761:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300389 if (tea5761_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300390 t->type = TUNER_ABSENT;
391 t->mode_mask = T_UNINITIALIZED;
Adrian Bunk9ee476a2007-06-05 05:22:00 -0300392 return;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300393 }
394 t->mode_mask = T_RADIO;
395 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700396 case TUNER_PHILIPS_FMD1216ME_MK3:
397 buffer[0] = 0x0b;
398 buffer[1] = 0xdc;
399 buffer[2] = 0x9c;
400 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700401 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700402 mdelay(1);
403 buffer[2] = 0x86;
404 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700405 i2c_master_send(c, buffer, 4);
Michael Krufky4adad282007-08-27 21:59:08 -0300406 attach_simple_tuner(t);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700407 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800408 case TUNER_PHILIPS_TD1316:
409 buffer[0] = 0x0b;
410 buffer[1] = 0xdc;
411 buffer[2] = 0x86;
412 buffer[3] = 0xa4;
413 i2c_master_send(c,buffer,4);
Michael Krufky4adad282007-08-27 21:59:08 -0300414 attach_simple_tuner(t);
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200415 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300416 case TUNER_XC2028:
417 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300418 struct xc2028_config cfg = {
419 .i2c_adap = t->i2c->adapter,
420 .i2c_addr = t->i2c->addr,
421 .video_dev = c->adapter->algo_data,
422 .callback = t->tuner_callback,
423 };
424 if (!xc2028_attach(&t->fe, &cfg)) {
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300425 t->type = TUNER_ABSENT;
426 t->mode_mask = T_UNINITIALIZED;
427 return;
428 }
429 break;
430 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300431 case TUNER_TDA9887:
Michael Krufky8ca40832007-12-16 20:11:46 -0300432 tda9887_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300433 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300434 case TUNER_XC5000:
435 xc5000_cfg.i2c_address = t->i2c->addr;
436 xc5000_cfg.if_khz = 5380;
437 xc5000_cfg.video_dev = c->adapter->algo_data;
438 xc5000_cfg.tuner_callback = t->tuner_callback;
439 if (!xc5000_attach(&t->fe, t->i2c->adapter, &xc5000_cfg)) {
440 t->type = TUNER_ABSENT;
441 t->mode_mask = T_UNINITIALIZED;
442 return;
443 }
444 {
445 struct dvb_tuner_ops *xc_tuner_ops;
446 xc_tuner_ops = &t->fe.ops.tuner_ops;
447 if(xc_tuner_ops->init != NULL)
448 xc_tuner_ops->init(&t->fe);
449 }
450 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 default:
Michael Krufky4adad282007-08-27 21:59:08 -0300452 attach_simple_tuner(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700455
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300456 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300457 (fe_tuner_ops->set_analog_params)) {
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300458 strlcpy(t->i2c->name, fe_tuner_ops->info.name,
459 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300460
Michael Krufky4e9154b2007-10-21 19:39:50 -0300461 t->fe.analog_demod_priv = t;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300462 memcpy(analog_ops, &tuner_core_ops,
463 sizeof(struct analog_demod_ops));
Michael Krufkya55db8c2007-12-09 13:52:51 -0300464 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300465 strlcpy(t->i2c->name, analog_ops->info.name,
Michael Krufkya55db8c2007-12-09 13:52:51 -0300466 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300467 }
468
Michael Krufky49427442007-10-30 09:44:12 -0300469 tuner_dbg("type set to %s\n", t->i2c->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300470
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700471 if (t->mode_mask == T_UNINITIALIZED)
472 t->mode_mask = new_mode_mask;
473
Hans Verkuil27487d42006-01-15 15:04:52 -0200474 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700475 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100476 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700477 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300478 tuner_i2c_address_check(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700481/*
482 * This function apply tuner config to tuner specified
483 * by tun_setup structure. I addr is unset, then admin status
484 * and tun addr status is more precise then current status,
485 * it's applied. Otherwise status and type are applied only to
486 * tuner with exactly the same addr.
487*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700488
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700489static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700490{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700491 struct tuner *t = i2c_get_clientdata(c);
492
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300493 tuner_dbg("set addr for type %i\n", t->type);
494
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300495 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
496 (t->mode_mask & tun_setup->mode_mask))) ||
497 (tun_setup->addr == c->addr)) {
498 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300499 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700500 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700501}
502
503static inline int check_mode(struct tuner *t, char *cmd)
504{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700505 if ((1 << t->mode & t->mode_mask) == 0) {
506 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700507 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700508
509 switch (t->mode) {
510 case V4L2_TUNER_RADIO:
511 tuner_dbg("Cmd %s accepted for radio\n", cmd);
512 break;
513 case V4L2_TUNER_ANALOG_TV:
514 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
515 break;
516 case V4L2_TUNER_DIGITAL_TV:
517 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
518 break;
519 }
520 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700521}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700522
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700523/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524static int tuner_fixup_std(struct tuner *t)
525{
526 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300528 case '6':
529 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
530 t->std = V4L2_STD_PAL_60;
531 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 case 'b':
533 case 'B':
534 case 'g':
535 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700536 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 t->std = V4L2_STD_PAL_BG;
538 break;
539 case 'i':
540 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700541 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 t->std = V4L2_STD_PAL_I;
543 break;
544 case 'd':
545 case 'D':
546 case 'k':
547 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700548 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 t->std = V4L2_STD_PAL_DK;
550 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700551 case 'M':
552 case 'm':
553 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
554 t->std = V4L2_STD_PAL_M;
555 break;
556 case 'N':
557 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200558 if (pal[1] == 'c' || pal[1] == 'C') {
559 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
560 t->std = V4L2_STD_PAL_Nc;
561 } else {
562 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
563 t->std = V4L2_STD_PAL_N;
564 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700565 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700566 case '-':
567 /* default parameter, do nothing */
568 break;
569 default:
570 tuner_warn ("pal= argument not recognised\n");
571 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
573 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700574 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
575 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200576 case 'b':
577 case 'B':
578 case 'g':
579 case 'G':
580 case 'h':
581 case 'H':
582 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
583 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
584 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700585 case 'd':
586 case 'D':
587 case 'k':
588 case 'K':
589 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
590 t->std = V4L2_STD_SECAM_DK;
591 break;
592 case 'l':
593 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800594 if ((secam[1]=='C')||(secam[1]=='c')) {
595 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
596 t->std = V4L2_STD_SECAM_LC;
597 } else {
598 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
599 t->std = V4L2_STD_SECAM_L;
600 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700601 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700602 case '-':
603 /* default parameter, do nothing */
604 break;
605 default:
606 tuner_warn ("secam= argument not recognised\n");
607 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700608 }
609 }
610
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200611 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
612 switch (ntsc[0]) {
613 case 'm':
614 case 'M':
615 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
616 t->std = V4L2_STD_NTSC_M;
617 break;
618 case 'j':
619 case 'J':
620 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
621 t->std = V4L2_STD_NTSC_M_JP;
622 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200623 case 'k':
624 case 'K':
625 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
626 t->std = V4L2_STD_NTSC_M_KR;
627 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200628 case '-':
629 /* default parameter, do nothing */
630 break;
631 default:
632 tuner_info("ntsc= argument not recognised\n");
633 break;
634 }
635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
637}
638
Michael Krufky4e9154b2007-10-21 19:39:50 -0300639static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200640{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300641 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200642 unsigned long freq, freq_fraction;
Michael Krufkye18f9442007-08-21 01:25:48 -0300643 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300644 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200645 const char *p;
646
647 switch (t->mode) {
648 case V4L2_TUNER_RADIO: p = "radio"; break;
649 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
650 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
651 default: p = "undefined"; break;
652 }
653 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200654 freq = t->radio_freq / 16000;
655 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200656 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200657 freq = t->tv_freq / 16;
658 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200659 }
660 tuner_info("Tuner mode: %s\n", p);
661 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300662 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200663 if (t->mode != V4L2_TUNER_RADIO)
664 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300665 if (fe_tuner_ops->get_status) {
666 u32 tuner_status;
667
668 fe_tuner_ops->get_status(&t->fe, &tuner_status);
669 if (tuner_status & TUNER_STATUS_LOCKED)
670 tuner_info("Tuner is locked.\n");
671 if (tuner_status & TUNER_STATUS_STEREO)
672 tuner_info("Stereo: yes\n");
673 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300674 if (analog_ops->has_signal)
675 tuner_info("Signal strength: %d\n",
676 analog_ops->has_signal(fe));
677 if (analog_ops->is_stereo)
678 tuner_info("Stereo: %s\n",
679 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200680}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/* ---------------------------------------------------------------------- */
683
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700684/*
685 * Switch tuner to other mode. If tuner support both tv and radio,
686 * set another frequency to some value (This is needed for some pal
687 * tuners to avoid locking). Otherwise, just put second tuner in
688 * standby mode.
689 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700691static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
692{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300693 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300694
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800695 if (mode == t->mode)
696 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700697
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800698 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700699
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800700 if (check_mode(t, cmd) == EINVAL) {
701 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300702 if (analog_ops->standby)
703 analog_ops->standby(&t->fe);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800704 return EINVAL;
705 }
706 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700707}
708
709#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800710 tuner_dbg("switching to v4l2\n"); \
711 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700712
713static inline int check_v4l2(struct tuner *t)
714{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300715 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
716 TV, v4l1 for radio), until that is fixed this code is disabled.
717 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
718 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700719 return 0;
720}
721
722static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkye18f9442007-08-21 01:25:48 -0300725 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300726 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Hans Verkuilf9195de2006-01-11 19:01:01 -0200728 if (tuner_debug>1)
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300729 v4l_i2c_print_ioctl(client,cmd);
Michael Krufky5e453dc2006-01-09 15:32:31 -0200730
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700731 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700733 case TUNER_SET_TYPE_ADDR:
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300734 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 -0700735 ((struct tuner_setup *)arg)->type,
736 ((struct tuner_setup *)arg)->addr,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300737 ((struct tuner_setup *)arg)->mode_mask,
738 ((struct tuner_setup *)arg)->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700739
740 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700741 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200743 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
744 == EINVAL)
745 return 0;
746 if (t->radio_freq)
747 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700749 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200750 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
751 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300752 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300753 if (analog_ops->standby)
754 analog_ops->standby(&t->fe);
Hans Verkuil27487d42006-01-15 15:04:52 -0200755 break;
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300756#ifdef CONFIG_VIDEO_V4L1
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700757 case VIDIOCSAUDIO:
758 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
759 return 0;
760 if (check_v4l2(t) == EINVAL)
761 return 0;
762
763 /* Should be implemented, since bttv calls it */
764 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700765 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700767 {
768 static const v4l2_std_id map[] = {
769 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
770 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
771 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
772 [4 /* bttv */ ] = V4L2_STD_PAL_M,
773 [5 /* bttv */ ] = V4L2_STD_PAL_N,
774 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
775 };
776 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700778 if (check_v4l2(t) == EINVAL)
779 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700780
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700781 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700784 if (vc->norm < ARRAY_SIZE(map))
785 t->std = map[vc->norm];
786 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200787 if (t->tv_freq)
788 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700789 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700790 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700791 case VIDIOCSFREQ:
792 {
793 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700794
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700795 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
796 return 0;
797 if (check_v4l2(t) == EINVAL)
798 return 0;
799
800 set_freq(client, *v);
801 return 0;
802 }
803 case VIDIOCGTUNER:
804 {
805 struct video_tuner *vt = arg;
806
807 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
808 return 0;
809 if (check_v4l2(t) == EINVAL)
810 return 0;
811
812 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300813 if (fe_tuner_ops->get_status) {
814 u32 tuner_status;
815
816 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300817 if (tuner_status & TUNER_STATUS_STEREO)
818 vt->flags |= VIDEO_TUNER_STEREO_ON;
819 else
820 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300821 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300822 if (analog_ops->is_stereo) {
823 if (analog_ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300824 vt->flags |=
825 VIDEO_TUNER_STEREO_ON;
826 else
827 vt->flags &=
828 ~VIDEO_TUNER_STEREO_ON;
829 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700830 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300831 if (analog_ops->has_signal)
832 vt->signal =
833 analog_ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300834
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700835 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
836
837 vt->rangelow = radio_range[0] * 16000;
838 vt->rangehigh = radio_range[1] * 16000;
839
840 } else {
841 vt->rangelow = tv_range[0] * 16;
842 vt->rangehigh = tv_range[1] * 16;
843 }
844
845 return 0;
846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700848 {
849 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700851 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
852 return 0;
853 if (check_v4l2(t) == EINVAL)
854 return 0;
855
Michael Krufkye18f9442007-08-21 01:25:48 -0300856 if (V4L2_TUNER_RADIO == t->mode) {
857 if (fe_tuner_ops->get_status) {
858 u32 tuner_status;
859
860 fe_tuner_ops->get_status(&t->fe, &tuner_status);
861 va->mode = (tuner_status & TUNER_STATUS_STEREO)
862 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300863 } else if (analog_ops->is_stereo)
864 va->mode = analog_ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300865 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
866 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700867 return 0;
868 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300869#endif
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300870 case TUNER_SET_CONFIG:
871 {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300872 struct v4l2_priv_tun_config *cfg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300874 if (t->type != cfg->tuner)
875 break;
876
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300877 if (analog_ops->set_config) {
Michael Krufky67d52e22007-12-24 16:05:39 -0300878 analog_ops->set_config(&t->fe, cfg->priv);
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300879 break;
880 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300881
Michael Krufky67d52e22007-12-24 16:05:39 -0300882 tuner_dbg("Tuner frontend module has no way to set config\n");
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300883 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300884 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300885 /* --- v4l ioctls --- */
886 /* take care: bttv does userspace copying, we'll get a
887 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700889 {
890 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700892 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
893 == EINVAL)
894 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700895
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700896 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700898 t->std = *id;
899 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200900 if (t->tv_freq)
901 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700902 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700903 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700904 case VIDIOC_S_FREQUENCY:
905 {
906 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700907
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300908 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
909 == EINVAL)
910 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700911 switch_v4l2();
Hans Verkuil27487d42006-01-15 15:04:52 -0200912 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700913
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700914 break;
915 }
916 case VIDIOC_G_FREQUENCY:
917 {
918 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700919
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700920 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
921 return 0;
922 switch_v4l2();
923 f->type = t->mode;
Michael Krufkye18f9442007-08-21 01:25:48 -0300924 if (fe_tuner_ops->get_frequency) {
925 u32 abs_freq;
926
927 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
928 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
929 (abs_freq * 2 + 125/2) / 125 :
930 (abs_freq + 62500/2) / 62500;
931 break;
932 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200933 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
934 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700935 break;
936 }
937 case VIDIOC_G_TUNER:
938 {
939 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700940
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700941 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
942 return 0;
943 switch_v4l2();
944
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200945 tuner->type = t->mode;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300946 if (analog_ops->get_afc)
947 tuner->afc = analog_ops->get_afc(&t->fe);
Hans Verkuilab4cecf2006-04-01 16:40:21 -0300948 if (t->mode == V4L2_TUNER_ANALOG_TV)
949 tuner->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200950 if (t->mode != V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700951 tuner->rangelow = tv_range[0] * 16;
952 tuner->rangehigh = tv_range[1] * 16;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200953 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700954 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200955
956 /* radio mode */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200957 tuner->rxsubchans =
958 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300959 if (fe_tuner_ops->get_status) {
960 u32 tuner_status;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200961
Michael Krufkye18f9442007-08-21 01:25:48 -0300962 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300963 tuner->rxsubchans =
964 (tuner_status & TUNER_STATUS_STEREO) ?
965 V4L2_TUNER_SUB_STEREO :
966 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300967 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300968 if (analog_ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -0300969 tuner->rxsubchans =
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300970 analog_ops->is_stereo(&t->fe) ?
Michael Krufky4e9154b2007-10-21 19:39:50 -0300971 V4L2_TUNER_SUB_STEREO :
972 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300973 }
Michael Krufkye18f9442007-08-21 01:25:48 -0300974 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300975 if (analog_ops->has_signal)
976 tuner->signal = analog_ops->has_signal(&t->fe);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200977 tuner->capability |=
978 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
979 tuner->audmode = t->audmode;
980 tuner->rangelow = radio_range[0] * 16000;
981 tuner->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700982 break;
983 }
984 case VIDIOC_S_TUNER:
985 {
986 struct v4l2_tuner *tuner = arg;
987
988 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
989 return 0;
990
991 switch_v4l2();
992
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200993 /* do nothing unless we're a radio tuner */
994 if (t->mode != V4L2_TUNER_RADIO)
995 break;
996 t->audmode = tuner->audmode;
997 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700998 break;
999 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001000 case VIDIOC_LOG_STATUS:
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001001 if (analog_ops->tuner_status)
1002 analog_ops->tuner_status(&t->fe);
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001003 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005
1006 return 0;
1007}
1008
Jean Delvare21b48a72007-03-12 19:20:15 -03001009static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001011 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001013 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* FIXME: power down ??? */
1015 return 0;
1016}
1017
Jean Delvare21b48a72007-03-12 19:20:15 -03001018static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001020 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001022 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -02001023 if (V4L2_TUNER_RADIO == t->mode) {
1024 if (t->radio_freq)
1025 set_freq(c, t->radio_freq);
1026 } else {
1027 if (t->tv_freq)
1028 set_freq(c, t->tv_freq);
1029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return 0;
1031}
1032
Hans Verkuil92de1f12007-11-04 10:53:09 -03001033/* ---------------------------------------------------------------------- */
1034
1035LIST_HEAD(tuner_list);
1036
1037/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001038 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -03001039 certain no other devices will be added/deleted at the same time, I2C
1040 core protects against that. */
1041static void tuner_lookup(struct i2c_adapter *adap,
1042 struct tuner **radio, struct tuner **tv)
1043{
1044 struct tuner *pos;
1045
1046 *radio = NULL;
1047 *tv = NULL;
1048
1049 list_for_each_entry(pos, &tuner_list, list) {
1050 int mode_mask;
1051
1052 if (pos->i2c->adapter != adap ||
1053 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1054 continue;
1055
1056 mode_mask = pos->mode_mask & ~T_STANDBY;
1057 if (*radio == NULL && mode_mask == T_RADIO)
1058 *radio = pos;
1059 /* Note: currently TDA9887 is the only demod-only
1060 device. If other devices appear then we need to
1061 make this test more general. */
1062 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1063 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1064 *tv = pos;
1065 }
1066}
1067
1068/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001069 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001070 */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001071static int tuner_probe(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001072{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001073 struct tuner *t;
1074 struct tuner *radio;
1075 struct tuner *tv;
1076
Hans Verkuil92de1f12007-11-04 10:53:09 -03001077 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001078 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001079 return -ENOMEM;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001080 t->i2c = client;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001081 strlcpy(client->name, "(tuner unset)", sizeof(client->name));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001082 i2c_set_clientdata(client, t);
1083 t->type = UNSET;
1084 t->audmode = V4L2_TUNER_MODE_STEREO;
1085 t->mode_mask = T_UNINITIALIZED;
1086
1087 if (show_i2c) {
1088 unsigned char buffer[16];
1089 int i, rc;
1090
1091 memset(buffer, 0, sizeof(buffer));
1092 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1093 tuner_info("I2C RECV = ");
1094 for (i = 0; i < rc; i++)
1095 printk(KERN_CONT "%02x ", buffer[i]);
1096 printk("\n");
1097 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001098 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001099 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001100 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1101 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001102 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001103 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001104
1105 /* autodetection code based on the i2c addr */
1106 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001107 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001108 case 0x10:
1109 if (tea5761_autodetection(t->i2c->adapter, t->i2c->addr)
1110 != EINVAL) {
1111 t->type = TUNER_TEA5761;
1112 t->mode_mask = T_RADIO;
1113 t->mode = T_STANDBY;
1114 /* Sets freq to FM range */
1115 t->radio_freq = 87.5 * 16000;
1116 tuner_lookup(t->i2c->adapter, &radio, &tv);
1117 if (tv)
1118 tv->mode_mask &= ~T_RADIO;
1119
1120 goto register_client;
1121 }
1122 break;
1123 case 0x42:
1124 case 0x43:
1125 case 0x4a:
1126 case 0x4b:
1127 /* If chip is not tda8290, don't register.
1128 since it can be tda9887*/
Michael Krufkyab166052007-12-09 02:26:48 -03001129 if (tda829x_probe(t->i2c->adapter,
1130 t->i2c->addr) == 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001131 tuner_dbg("tda829x detected\n");
1132 } else {
1133 /* Default is being tda9887 */
1134 t->type = TUNER_TDA9887;
1135 t->mode_mask = T_RADIO | T_ANALOG_TV |
1136 T_DIGITAL_TV;
1137 t->mode = T_STANDBY;
1138 goto register_client;
1139 }
1140 break;
1141 case 0x60:
1142 if (tea5767_autodetection(t->i2c->adapter, t->i2c->addr)
1143 != EINVAL) {
1144 t->type = TUNER_TEA5767;
1145 t->mode_mask = T_RADIO;
1146 t->mode = T_STANDBY;
1147 /* Sets freq to FM range */
1148 t->radio_freq = 87.5 * 16000;
1149 tuner_lookup(t->i2c->adapter, &radio, &tv);
1150 if (tv)
1151 tv->mode_mask &= ~T_RADIO;
1152
1153 goto register_client;
1154 }
1155 break;
1156 }
1157 }
1158
1159 /* Initializes only the first TV tuner on this adapter. Why only the
1160 first? Because there are some devices (notably the ones with TI
1161 tuners) that have more than one i2c address for the *same* device.
1162 Experience shows that, except for just one case, the first
1163 address is the right one. The exception is a Russian tuner
1164 (ACORP_Y878F). So, the desired behavior is just to enable the
1165 first found TV tuner. */
1166 tuner_lookup(t->i2c->adapter, &radio, &tv);
1167 if (tv == NULL) {
1168 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1169 if (radio == NULL)
1170 t->mode_mask |= T_RADIO;
1171 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1172 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1173 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1174 }
1175
1176 /* Should be just before return */
1177register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001178 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1179 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001180
1181 /* Sets a default mode */
1182 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001183 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001184 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001185 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001186 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001187 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001188 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001189 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001190 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001191 return 0;
1192}
1193
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001194static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001195{
1196 if (0 != addr) {
1197 normal_i2c[0] = addr;
1198 normal_i2c[1] = I2C_CLIENT_END;
1199 }
1200
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001201 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1202 return 0;
1203
Hans Verkuil92de1f12007-11-04 10:53:09 -03001204 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1205 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1206 * and an RTC at 0x6f which can get corrupted if probed.
1207 */
1208 if ((adap->id == I2C_HW_B_CX2388x) ||
1209 (adap->id == I2C_HW_B_CX23885)) {
1210 unsigned int i = 0;
1211
1212 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1213 i += 2;
1214 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1215 ignore[i+0] = adap->nr;
1216 ignore[i+1] = 0x6b;
1217 ignore[i+2] = adap->nr;
1218 ignore[i+3] = 0x6f;
1219 ignore[i+4] = I2C_CLIENT_END;
1220 } else
1221 printk(KERN_WARNING "tuner: "
1222 "too many options specified "
1223 "in i2c probe ignore list!\n");
1224 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001225 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001226}
1227
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001228static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001229{
1230 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001231 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001232
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001233 if (analog_ops->release)
1234 analog_ops->release(&t->fe);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001235
1236 list_del(&t->list);
1237 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001238 return 0;
1239}
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241/* ----------------------------------------------------------------------- */
1242
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001243static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1244 .name = "tuner",
1245 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001246 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001247 .probe = tuner_probe,
1248 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001249 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001250 .resume = tuner_resume,
1251 .legacy_probe = tuner_legacy_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252};
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255/*
1256 * Overrides for Emacs so that we follow Linus's tabbing style.
1257 * ---------------------------------------------------------------------------
1258 * Local variables:
1259 * c-basic-offset: 8
1260 * End:
1261 */