blob: 6bf104ea051da24c06c8b7d7bfe470555bd2f964 [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 Krufkya07c8772008-04-29 03:54:19 -030036/** This macro allows us to probe dynamically, avoiding static links */
Mauro Carvalho Chehabff138172008-04-29 23:02:33 -030037#ifdef CONFIG_MEDIA_ATTACH
Michael Krufkya07c8772008-04-29 03:54:19 -030038#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
39 int __r = -EINVAL; \
40 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
41 if (__a) { \
42 __r = (int) __a(ARGS); \
43 } else { \
44 printk(KERN_ERR "TUNER: Unable to find " \
45 "symbol "#FUNCTION"()\n"); \
46 } \
47 symbol_put(FUNCTION); \
48 __r; \
49})
50
51static void tuner_detach(struct dvb_frontend *fe)
52{
53 if (fe->ops.tuner_ops.release) {
54 fe->ops.tuner_ops.release(fe);
55 symbol_put_addr(fe->ops.tuner_ops.release);
56 }
57 if (fe->ops.analog_ops.release) {
58 fe->ops.analog_ops.release(fe);
59 symbol_put_addr(fe->ops.analog_ops.release);
60 }
61}
62#else
63#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
64 FUNCTION(ARGS); \
65})
66
67static void tuner_detach(struct dvb_frontend *fe)
68{
69 if (fe->ops.tuner_ops.release)
70 fe->ops.tuner_ops.release(fe);
71 if (fe->ops.analog_ops.release)
72 fe->ops.analog_ops.release(fe);
73}
74#endif
75
Michael Krufkyf7f427e2007-12-16 22:02:26 -030076struct tuner {
77 /* device */
78 struct dvb_frontend fe;
79 struct i2c_client *i2c;
80 struct list_head list;
81 unsigned int using_v4l2:1;
82
83 /* keep track of the current settings */
84 v4l2_std_id std;
85 unsigned int tv_freq;
86 unsigned int radio_freq;
87 unsigned int audmode;
88
89 unsigned int mode;
90 unsigned int mode_mask; /* Combination of allowable modes */
91
92 unsigned int type; /* chip type id */
93 unsigned int config;
94 int (*tuner_callback) (void *dev, int command, int arg);
95};
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* standard i2c insmod options */
98static unsigned short normal_i2c[] = {
Mauro Carvalho Chehab149ef722008-04-29 21:38:46 -030099#if defined(CONFIG_MEDIA_TUNER_TEA5761) || (defined(CONFIG_MEDIA_TUNER_TEA5761_MODULE) && defined(MODULE))
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300100 0x10,
101#endif
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800102 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -0700103 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
104 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 I2C_CLIENT_END
106};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108I2C_CLIENT_INSMOD;
109
110/* insmod options used at init time => read/only */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300111static unsigned int addr;
112static unsigned int no_autodetect;
113static unsigned int show_i2c;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* insmod options used at runtime => read/write */
Michael Krufkyab166052007-12-09 02:26:48 -0300116static int tuner_debug;
117
118#define tuner_warn(fmt, arg...) do { \
119 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
120 i2c_adapter_id(t->i2c->adapter), \
121 t->i2c->addr, ##arg); \
122 } while (0)
123
124#define tuner_info(fmt, arg...) do { \
125 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
126 i2c_adapter_id(t->i2c->adapter), \
127 t->i2c->addr, ##arg); \
128 } while (0)
129
130#define tuner_err(fmt, arg...) do { \
131 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
132 i2c_adapter_id(t->i2c->adapter), \
133 t->i2c->addr, ##arg); \
134 } while (0)
135
136#define tuner_dbg(fmt, arg...) do { \
137 if (tuner_debug) \
138 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
139 i2c_adapter_id(t->i2c->adapter), \
140 t->i2c->addr, ##arg); \
141 } while (0)
142
143/* ------------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700145static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static unsigned int radio_range[2] = { 65, 108 };
147
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200148static char pal[] = "--";
149static char secam[] = "--";
150static char ntsc[] = "-";
151
Hans Verkuilf9195de2006-01-11 19:01:01 -0200152
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200153module_param(addr, int, 0444);
154module_param(no_autodetect, int, 0444);
155module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -0200156module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200157module_param_string(pal, pal, sizeof(pal), 0644);
158module_param_string(secam, secam, sizeof(secam), 0644);
159module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700160module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161module_param_array(radio_range, int, NULL, 0644);
162
163MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
164MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
165MODULE_LICENSE("GPL");
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* ---------------------------------------------------------------------- */
168
Michael Krufkyc7919d52007-12-08 17:06:30 -0300169static void fe_set_params(struct dvb_frontend *fe,
170 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300171{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300172 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
173 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300174
Michael Krufkye18f9442007-08-21 01:25:48 -0300175 if (NULL == fe_tuner_ops->set_analog_params) {
176 tuner_warn("Tuner frontend module has no way to set freq\n");
177 return;
178 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300179 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300180}
181
Michael Krufky4e9154b2007-10-21 19:39:50 -0300182static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300183{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300184 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300185
186 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300187 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300188}
189
Michael Krufky4e9154b2007-10-21 19:39:50 -0300190static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300191{
Michael Krufky14196832007-10-14 18:11:53 -0300192 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300193
Michael Krufky4e9154b2007-10-21 19:39:50 -0300194 if (fe->ops.tuner_ops.get_rf_strength)
195 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300196
197 return strength;
198}
199
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300200static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
201{
202 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
203 struct tuner *t = fe->analog_demod_priv;
204
205 if (fe_tuner_ops->set_config)
206 return fe_tuner_ops->set_config(fe, priv_cfg);
207
208 tuner_warn("Tuner frontend module has no way to set config\n");
209
210 return 0;
211}
212
Michael Krufky4e9154b2007-10-21 19:39:50 -0300213static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300214
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300215static struct analog_demod_ops tuner_core_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300216 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300217 .standby = fe_standby,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300218 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300219 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300220 .tuner_status = tuner_status
221};
222
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700223/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static void set_tv_freq(struct i2c_client *c, unsigned int freq)
225{
226 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300227 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Michael Krufkyc7919d52007-12-08 17:06:30 -0300229 struct analog_parameters params = {
230 .mode = t->mode,
231 .audmode = t->audmode,
232 .std = t->std
233 };
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700236 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return;
238 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300239 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700240 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return;
242 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700243 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
244 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
245 freq / 16, freq % 16 * 100 / 16, tv_range[0],
246 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200247 /* V4L2 spec: if the freq is not possible then the closest
248 possible value should be selected */
249 if (freq < tv_range[0] * 16)
250 freq = tv_range[0] * 16;
251 else
252 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300254 params.frequency = freq;
255
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300256 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
259static void set_radio_freq(struct i2c_client *c, unsigned int freq)
260{
261 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300262 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Michael Krufkyc7919d52007-12-08 17:06:30 -0300264 struct analog_parameters params = {
265 .mode = t->mode,
266 .audmode = t->audmode,
267 .std = t->std
268 };
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700271 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return;
273 }
Mauro Carvalho Chehabe545d6e2008-01-05 16:37:04 -0300274 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700275 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return;
277 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200278 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700279 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
280 freq / 16000, freq % 16000 * 100 / 16000,
281 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200282 /* V4L2 spec: if the freq is not possible then the closest
283 possible value should be selected */
284 if (freq < radio_range[0] * 16000)
285 freq = radio_range[0] * 16000;
286 else
287 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300289 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700290
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300291 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static void set_freq(struct i2c_client *c, unsigned long freq)
295{
296 struct tuner *t = i2c_get_clientdata(c);
297
298 switch (t->mode) {
299 case V4L2_TUNER_RADIO:
300 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700301 freq / 16000, freq % 16000 * 100 / 16000);
302 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200303 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 break;
305 case V4L2_TUNER_ANALOG_TV:
306 case V4L2_TUNER_DIGITAL_TV:
307 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700308 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200310 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300312 default:
313 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Michael Krufky293197c2007-08-28 17:20:42 -0300317static void tuner_i2c_address_check(struct tuner *t)
318{
319 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300320 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
Michael Krufky293197c2007-08-28 17:20:42 -0300321 return;
322
Michael Krufky16410022008-01-21 12:01:34 -0300323 /* We already know that the XC5000 can only be located at
324 * i2c address 0x61, 0x62, 0x63 or 0x64 */
325 if ((t->type == TUNER_XC5000) &&
326 ((t->i2c->addr <= 0x64)) && (t->i2c->addr >= 0x61))
327 return;
328
Michael Krufky293197c2007-08-28 17:20:42 -0300329 tuner_warn("====================== WARNING! ======================\n");
330 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
331 tuner_warn("will soon be dropped. This message indicates that your\n");
332 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300333 t->i2c->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300334 tuner_warn("To ensure continued support for your device, please\n");
335 tuner_warn("send a copy of this message, along with full dmesg\n");
336 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
337 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
338 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Michael Krufky060a5bd2008-04-22 14:41:51 -0300339 t->i2c->adapter->name, t->i2c->addr, t->type, t->i2c->name);
Michael Krufky293197c2007-08-28 17:20:42 -0300340 tuner_warn("====================== WARNING! ======================\n");
341}
342
Michael Krufkyab166052007-12-09 02:26:48 -0300343static void attach_tda829x(struct tuner *t)
344{
345 struct tda829x_config cfg = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300346 .lna_cfg = t->config,
Michael Krufkyab166052007-12-09 02:26:48 -0300347 .tuner_callback = t->tuner_callback,
348 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300349 dvb_attach(tda829x_attach,
350 &t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
Michael Krufkyab166052007-12-09 02:26:48 -0300351}
352
Steven Toth27c685a2008-01-05 16:50:14 -0300353static struct xc5000_config xc5000_cfg;
354
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700355static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300356 unsigned int new_mode_mask, unsigned int new_config,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300357 int (*tuner_callback) (void *dev, int command,int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkye18f9442007-08-21 01:25:48 -0300360 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300361 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700362 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700364 if (type == UNSET || type == TUNER_ABSENT) {
365 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return;
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 t->type = type;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300370 t->config = new_config;
371 if (tuner_callback != NULL) {
372 tuner_dbg("defining GPIO callback\n");
373 t->tuner_callback = tuner_callback;
374 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300375
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300376 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300377 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
378
379 return;
380 }
381
Michael Krufkyb2083192007-05-29 22:54:06 -0300382 /* discard private data, in case set_type() was previously called */
Michael Krufkya07c8772008-04-29 03:54:19 -0300383 tuner_detach(&t->fe);
384 t->fe.analog_demod_priv = NULL;
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 switch (t->type) {
387 case TUNER_MT2032:
Michael Krufkya07c8772008-04-29 03:54:19 -0300388 dvb_attach(microtune_attach,
389 &t->fe, t->i2c->adapter, t->i2c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 break;
391 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300392 {
Michael Krufkyab166052007-12-09 02:26:48 -0300393 attach_tda829x(t);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300394 break;
395 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700396 case TUNER_TEA5767:
Michael Krufkya07c8772008-04-29 03:54:19 -0300397 if (!dvb_attach(tea5767_attach, &t->fe,
398 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300399 goto attach_failed;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700400 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700401 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300402 case TUNER_TEA5761:
Michael Krufkya07c8772008-04-29 03:54:19 -0300403 if (!dvb_attach(tea5761_attach, &t->fe,
404 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300405 goto attach_failed;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300406 t->mode_mask = T_RADIO;
407 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700408 case TUNER_PHILIPS_FMD1216ME_MK3:
409 buffer[0] = 0x0b;
410 buffer[1] = 0xdc;
411 buffer[2] = 0x9c;
412 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700413 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700414 mdelay(1);
415 buffer[2] = 0x86;
416 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700417 i2c_master_send(c, buffer, 4);
Michael Krufkya07c8772008-04-29 03:54:19 -0300418 if (!dvb_attach(simple_tuner_attach, &t->fe,
419 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300420 goto attach_failed;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700421 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800422 case TUNER_PHILIPS_TD1316:
423 buffer[0] = 0x0b;
424 buffer[1] = 0xdc;
425 buffer[2] = 0x86;
426 buffer[3] = 0xa4;
Michael Krufkya07c8772008-04-29 03:54:19 -0300427 i2c_master_send(c, buffer, 4);
428 if (!dvb_attach(simple_tuner_attach, &t->fe,
429 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300430 goto attach_failed;
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200431 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300432 case TUNER_XC2028:
433 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300434 struct xc2028_config cfg = {
435 .i2c_adap = t->i2c->adapter,
436 .i2c_addr = t->i2c->addr,
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300437 .callback = t->tuner_callback,
438 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300439 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300440 goto attach_failed;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300441 break;
442 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300443 case TUNER_TDA9887:
Michael Krufkya07c8772008-04-29 03:54:19 -0300444 dvb_attach(tda9887_attach,
445 &t->fe, t->i2c->adapter, t->i2c->addr);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300446 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300447 case TUNER_XC5000:
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300448 {
449 struct dvb_tuner_ops *xc_tuner_ops;
450
Steven Toth27c685a2008-01-05 16:50:14 -0300451 xc5000_cfg.i2c_address = t->i2c->addr;
452 xc5000_cfg.if_khz = 5380;
Steven Toth73c993a2008-01-05 17:08:05 -0300453 xc5000_cfg.priv = c->adapter->algo_data;
Steven Toth27c685a2008-01-05 16:50:14 -0300454 xc5000_cfg.tuner_callback = t->tuner_callback;
Michael Krufkya07c8772008-04-29 03:54:19 -0300455 if (!dvb_attach(xc5000_attach,
456 &t->fe, t->i2c->adapter, &xc5000_cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300457 goto attach_failed;
458
Steven Toth27c685a2008-01-05 16:50:14 -0300459 xc_tuner_ops = &t->fe.ops.tuner_ops;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300460 if (xc_tuner_ops->init)
Steven Toth27c685a2008-01-05 16:50:14 -0300461 xc_tuner_ops->init(&t->fe);
Steven Toth27c685a2008-01-05 16:50:14 -0300462 break;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 default:
Michael Krufkya07c8772008-04-29 03:54:19 -0300465 if (!dvb_attach(simple_tuner_attach, &t->fe,
466 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300467 goto attach_failed;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700471
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300472 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300473 (fe_tuner_ops->set_analog_params)) {
Michael Krufkya07c8772008-04-29 03:54:19 -0300474
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300475 strlcpy(t->i2c->name, fe_tuner_ops->info.name,
476 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300477
Michael Krufky4e9154b2007-10-21 19:39:50 -0300478 t->fe.analog_demod_priv = t;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300479 memcpy(analog_ops, &tuner_core_ops,
480 sizeof(struct analog_demod_ops));
Michael Krufkya07c8772008-04-29 03:54:19 -0300481
Michael Krufkya55db8c2007-12-09 13:52:51 -0300482 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300483 strlcpy(t->i2c->name, analog_ops->info.name,
Michael Krufkya55db8c2007-12-09 13:52:51 -0300484 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300485 }
486
Michael Krufky49427442007-10-30 09:44:12 -0300487 tuner_dbg("type set to %s\n", t->i2c->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300488
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700489 if (t->mode_mask == T_UNINITIALIZED)
490 t->mode_mask = new_mode_mask;
491
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300492 /* xc2028/3028 and xc5000 requires a firmware to be set-up later
493 trying to set a frequency here will just fail
494 FIXME: better to move set_freq to the tuner code. This is needed
495 on analog tuners for PLL to properly work
496 */
497 if (t->type != TUNER_XC2028 && t->type != TUNER_XC5000)
498 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ?
499 t->radio_freq : t->tv_freq);
500
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700501 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100502 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700503 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300504 tuner_i2c_address_check(t);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300505 return;
506
507attach_failed:
508 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
509 t->type = TUNER_ABSENT;
510 t->mode_mask = T_UNINITIALIZED;
511
512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700515/*
516 * This function apply tuner config to tuner specified
517 * by tun_setup structure. I addr is unset, then admin status
518 * and tun addr status is more precise then current status,
519 * it's applied. Otherwise status and type are applied only to
520 * tuner with exactly the same addr.
521*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700522
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700523static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700524{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700525 struct tuner *t = i2c_get_clientdata(c);
526
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300527 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
528 (t->mode_mask & tun_setup->mode_mask))) ||
529 (tun_setup->addr == c->addr)) {
530 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300531 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300532 } else
533 tuner_dbg("set addr discarded for type %i, mask %x. "
534 "Asked to change tuner at addr 0x%02x, with mask %x\n",
535 t->type, t->mode_mask,
536 tun_setup->addr, tun_setup->mode_mask);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700537}
538
539static inline int check_mode(struct tuner *t, char *cmd)
540{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700541 if ((1 << t->mode & t->mode_mask) == 0) {
542 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700543 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700544
545 switch (t->mode) {
546 case V4L2_TUNER_RADIO:
547 tuner_dbg("Cmd %s accepted for radio\n", cmd);
548 break;
549 case V4L2_TUNER_ANALOG_TV:
550 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
551 break;
552 case V4L2_TUNER_DIGITAL_TV:
553 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
554 break;
555 }
556 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700557}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700558
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700559/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static int tuner_fixup_std(struct tuner *t)
561{
562 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300564 case '6':
565 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
566 t->std = V4L2_STD_PAL_60;
567 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 case 'b':
569 case 'B':
570 case 'g':
571 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700572 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 t->std = V4L2_STD_PAL_BG;
574 break;
575 case 'i':
576 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700577 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 t->std = V4L2_STD_PAL_I;
579 break;
580 case 'd':
581 case 'D':
582 case 'k':
583 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700584 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 t->std = V4L2_STD_PAL_DK;
586 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700587 case 'M':
588 case 'm':
589 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
590 t->std = V4L2_STD_PAL_M;
591 break;
592 case 'N':
593 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200594 if (pal[1] == 'c' || pal[1] == 'C') {
595 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
596 t->std = V4L2_STD_PAL_Nc;
597 } else {
598 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
599 t->std = V4L2_STD_PAL_N;
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 ("pal= argument not recognised\n");
607 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700610 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
611 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200612 case 'b':
613 case 'B':
614 case 'g':
615 case 'G':
616 case 'h':
617 case 'H':
618 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
619 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
620 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700621 case 'd':
622 case 'D':
623 case 'k':
624 case 'K':
625 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
626 t->std = V4L2_STD_SECAM_DK;
627 break;
628 case 'l':
629 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800630 if ((secam[1]=='C')||(secam[1]=='c')) {
631 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
632 t->std = V4L2_STD_SECAM_LC;
633 } else {
634 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
635 t->std = V4L2_STD_SECAM_L;
636 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700637 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700638 case '-':
639 /* default parameter, do nothing */
640 break;
641 default:
642 tuner_warn ("secam= argument not recognised\n");
643 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700644 }
645 }
646
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200647 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
648 switch (ntsc[0]) {
649 case 'm':
650 case 'M':
651 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
652 t->std = V4L2_STD_NTSC_M;
653 break;
654 case 'j':
655 case 'J':
656 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
657 t->std = V4L2_STD_NTSC_M_JP;
658 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200659 case 'k':
660 case 'K':
661 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
662 t->std = V4L2_STD_NTSC_M_KR;
663 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200664 case '-':
665 /* default parameter, do nothing */
666 break;
667 default:
668 tuner_info("ntsc= argument not recognised\n");
669 break;
670 }
671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return 0;
673}
674
Michael Krufky4e9154b2007-10-21 19:39:50 -0300675static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200676{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300677 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200678 unsigned long freq, freq_fraction;
Michael Krufkya07c8772008-04-29 03:54:19 -0300679 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
680 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200681 const char *p;
682
683 switch (t->mode) {
684 case V4L2_TUNER_RADIO: p = "radio"; break;
685 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
686 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
687 default: p = "undefined"; break;
688 }
689 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200690 freq = t->radio_freq / 16000;
691 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200692 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200693 freq = t->tv_freq / 16;
694 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200695 }
696 tuner_info("Tuner mode: %s\n", p);
697 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300698 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200699 if (t->mode != V4L2_TUNER_RADIO)
700 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300701 if (fe_tuner_ops->get_status) {
702 u32 tuner_status;
703
704 fe_tuner_ops->get_status(&t->fe, &tuner_status);
705 if (tuner_status & TUNER_STATUS_LOCKED)
706 tuner_info("Tuner is locked.\n");
707 if (tuner_status & TUNER_STATUS_STEREO)
708 tuner_info("Stereo: yes\n");
709 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300710 if (analog_ops->has_signal)
711 tuner_info("Signal strength: %d\n",
712 analog_ops->has_signal(fe));
713 if (analog_ops->is_stereo)
714 tuner_info("Stereo: %s\n",
715 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200716}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/* ---------------------------------------------------------------------- */
719
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700720/*
721 * Switch tuner to other mode. If tuner support both tv and radio,
722 * set another frequency to some value (This is needed for some pal
723 * tuners to avoid locking). Otherwise, just put second tuner in
724 * standby mode.
725 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700727static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
728{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300729 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300730
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800731 if (mode == t->mode)
732 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700733
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800734 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700735
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800736 if (check_mode(t, cmd) == EINVAL) {
737 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300738 if (analog_ops->standby)
739 analog_ops->standby(&t->fe);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800740 return EINVAL;
741 }
742 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700743}
744
745#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800746 tuner_dbg("switching to v4l2\n"); \
747 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700748
749static inline int check_v4l2(struct tuner *t)
750{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300751 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
752 TV, v4l1 for radio), until that is fixed this code is disabled.
753 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
754 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700755 return 0;
756}
757
758static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkye18f9442007-08-21 01:25:48 -0300761 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300762 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Mauro Carvalho Chehab397be5c2008-04-26 14:04:10 -0300764 if (tuner_debug > 1) {
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300765 v4l_i2c_print_ioctl(client,cmd);
Mauro Carvalho Chehab397be5c2008-04-26 14:04:10 -0300766 printk("\n");
767 }
Michael Krufky5e453dc2006-01-09 15:32:31 -0200768
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700769 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700771 case TUNER_SET_TYPE_ADDR:
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300772 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 -0700773 ((struct tuner_setup *)arg)->type,
774 ((struct tuner_setup *)arg)->addr,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300775 ((struct tuner_setup *)arg)->mode_mask,
776 ((struct tuner_setup *)arg)->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700777
778 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700779 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200781 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
782 == EINVAL)
783 return 0;
784 if (t->radio_freq)
785 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700787 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200788 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
789 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300790 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300791 if (analog_ops->standby)
792 analog_ops->standby(&t->fe);
Hans Verkuil27487d42006-01-15 15:04:52 -0200793 break;
Mauro Carvalho Chehab17de9a42008-04-15 18:11:50 -0300794#ifdef CONFIG_VIDEO_ALLOW_V4L1
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700795 case VIDIOCSAUDIO:
796 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
797 return 0;
798 if (check_v4l2(t) == EINVAL)
799 return 0;
800
801 /* Should be implemented, since bttv calls it */
802 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700803 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700805 {
806 static const v4l2_std_id map[] = {
807 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
808 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
809 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
810 [4 /* bttv */ ] = V4L2_STD_PAL_M,
811 [5 /* bttv */ ] = V4L2_STD_PAL_N,
812 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
813 };
814 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700816 if (check_v4l2(t) == EINVAL)
817 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700818
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700819 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700822 if (vc->norm < ARRAY_SIZE(map))
823 t->std = map[vc->norm];
824 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200825 if (t->tv_freq)
826 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700827 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700828 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700829 case VIDIOCSFREQ:
830 {
831 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700832
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700833 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
834 return 0;
835 if (check_v4l2(t) == EINVAL)
836 return 0;
837
838 set_freq(client, *v);
839 return 0;
840 }
841 case VIDIOCGTUNER:
842 {
843 struct video_tuner *vt = arg;
844
845 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
846 return 0;
847 if (check_v4l2(t) == EINVAL)
848 return 0;
849
850 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300851 if (fe_tuner_ops->get_status) {
852 u32 tuner_status;
853
854 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300855 if (tuner_status & TUNER_STATUS_STEREO)
856 vt->flags |= VIDEO_TUNER_STEREO_ON;
857 else
858 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300859 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300860 if (analog_ops->is_stereo) {
861 if (analog_ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300862 vt->flags |=
863 VIDEO_TUNER_STEREO_ON;
864 else
865 vt->flags &=
866 ~VIDEO_TUNER_STEREO_ON;
867 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700868 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300869 if (analog_ops->has_signal)
870 vt->signal =
871 analog_ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300872
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700873 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
874
875 vt->rangelow = radio_range[0] * 16000;
876 vt->rangehigh = radio_range[1] * 16000;
877
878 } else {
879 vt->rangelow = tv_range[0] * 16;
880 vt->rangehigh = tv_range[1] * 16;
881 }
882
883 return 0;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700886 {
887 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700889 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
890 return 0;
891 if (check_v4l2(t) == EINVAL)
892 return 0;
893
Michael Krufkye18f9442007-08-21 01:25:48 -0300894 if (V4L2_TUNER_RADIO == t->mode) {
895 if (fe_tuner_ops->get_status) {
896 u32 tuner_status;
897
898 fe_tuner_ops->get_status(&t->fe, &tuner_status);
899 va->mode = (tuner_status & TUNER_STATUS_STEREO)
900 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300901 } else if (analog_ops->is_stereo)
902 va->mode = analog_ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300903 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
904 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700905 return 0;
906 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300907#endif
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300908 case TUNER_SET_CONFIG:
909 {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300910 struct v4l2_priv_tun_config *cfg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300912 if (t->type != cfg->tuner)
913 break;
914
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300915 if (analog_ops->set_config) {
Michael Krufky67d52e22007-12-24 16:05:39 -0300916 analog_ops->set_config(&t->fe, cfg->priv);
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300917 break;
918 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300919
Michael Krufky67d52e22007-12-24 16:05:39 -0300920 tuner_dbg("Tuner frontend module has no way to set config\n");
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300921 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300922 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300923 /* --- v4l ioctls --- */
924 /* take care: bttv does userspace copying, we'll get a
925 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700927 {
928 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700930 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
931 == EINVAL)
932 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700933
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700934 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700936 t->std = *id;
937 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200938 if (t->tv_freq)
939 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700940 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700941 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700942 case VIDIOC_S_FREQUENCY:
943 {
944 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700945
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300946 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
947 == EINVAL)
948 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700949 switch_v4l2();
Hans Verkuil27487d42006-01-15 15:04:52 -0200950 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700951
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700952 break;
953 }
954 case VIDIOC_G_FREQUENCY:
955 {
956 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700957
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700958 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
959 return 0;
960 switch_v4l2();
961 f->type = t->mode;
Michael Krufkye18f9442007-08-21 01:25:48 -0300962 if (fe_tuner_ops->get_frequency) {
963 u32 abs_freq;
964
965 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
966 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
967 (abs_freq * 2 + 125/2) / 125 :
968 (abs_freq + 62500/2) / 62500;
969 break;
970 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200971 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
972 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700973 break;
974 }
975 case VIDIOC_G_TUNER:
976 {
977 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700978
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700979 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
980 return 0;
981 switch_v4l2();
982
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200983 tuner->type = t->mode;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300984 if (analog_ops->get_afc)
985 tuner->afc = analog_ops->get_afc(&t->fe);
Hans Verkuilab4cecf2006-04-01 16:40:21 -0300986 if (t->mode == V4L2_TUNER_ANALOG_TV)
987 tuner->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200988 if (t->mode != V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700989 tuner->rangelow = tv_range[0] * 16;
990 tuner->rangehigh = tv_range[1] * 16;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200991 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700992 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200993
994 /* radio mode */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200995 tuner->rxsubchans =
996 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300997 if (fe_tuner_ops->get_status) {
998 u32 tuner_status;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200999
Michael Krufkye18f9442007-08-21 01:25:48 -03001000 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky4e9154b2007-10-21 19:39:50 -03001001 tuner->rxsubchans =
1002 (tuner_status & TUNER_STATUS_STEREO) ?
1003 V4L2_TUNER_SUB_STEREO :
1004 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -03001005 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001006 if (analog_ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -03001007 tuner->rxsubchans =
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001008 analog_ops->is_stereo(&t->fe) ?
Michael Krufky4e9154b2007-10-21 19:39:50 -03001009 V4L2_TUNER_SUB_STEREO :
1010 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -03001011 }
Michael Krufkye18f9442007-08-21 01:25:48 -03001012 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001013 if (analog_ops->has_signal)
1014 tuner->signal = analog_ops->has_signal(&t->fe);
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001015 tuner->capability |=
1016 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
1017 tuner->audmode = t->audmode;
1018 tuner->rangelow = radio_range[0] * 16000;
1019 tuner->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001020 break;
1021 }
1022 case VIDIOC_S_TUNER:
1023 {
1024 struct v4l2_tuner *tuner = arg;
1025
1026 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
1027 return 0;
1028
1029 switch_v4l2();
1030
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001031 /* do nothing unless we're a radio tuner */
1032 if (t->mode != V4L2_TUNER_RADIO)
1033 break;
1034 t->audmode = tuner->audmode;
1035 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001036 break;
1037 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001038 case VIDIOC_LOG_STATUS:
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001039 if (analog_ops->tuner_status)
1040 analog_ops->tuner_status(&t->fe);
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001041 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
1044 return 0;
1045}
1046
Jean Delvare21b48a72007-03-12 19:20:15 -03001047static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001049 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001051 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 /* FIXME: power down ??? */
1053 return 0;
1054}
1055
Jean Delvare21b48a72007-03-12 19:20:15 -03001056static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001058 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001060 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -02001061 if (V4L2_TUNER_RADIO == t->mode) {
1062 if (t->radio_freq)
1063 set_freq(c, t->radio_freq);
1064 } else {
1065 if (t->tv_freq)
1066 set_freq(c, t->tv_freq);
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return 0;
1069}
1070
Hans Verkuil92de1f12007-11-04 10:53:09 -03001071/* ---------------------------------------------------------------------- */
1072
Adrian Bunkc52c4d02008-01-28 22:11:15 -03001073static LIST_HEAD(tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001074
1075/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001076 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -03001077 certain no other devices will be added/deleted at the same time, I2C
1078 core protects against that. */
1079static void tuner_lookup(struct i2c_adapter *adap,
1080 struct tuner **radio, struct tuner **tv)
1081{
1082 struct tuner *pos;
1083
1084 *radio = NULL;
1085 *tv = NULL;
1086
1087 list_for_each_entry(pos, &tuner_list, list) {
1088 int mode_mask;
1089
1090 if (pos->i2c->adapter != adap ||
1091 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1092 continue;
1093
1094 mode_mask = pos->mode_mask & ~T_STANDBY;
1095 if (*radio == NULL && mode_mask == T_RADIO)
1096 *radio = pos;
1097 /* Note: currently TDA9887 is the only demod-only
1098 device. If other devices appear then we need to
1099 make this test more general. */
1100 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1101 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1102 *tv = pos;
1103 }
1104}
1105
1106/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001107 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001108 */
Jean Delvared2653e92008-04-29 23:11:39 +02001109static int tuner_probe(struct i2c_client *client,
1110 const struct i2c_device_id *id)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001111{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001112 struct tuner *t;
1113 struct tuner *radio;
1114 struct tuner *tv;
1115
Hans Verkuil92de1f12007-11-04 10:53:09 -03001116 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001117 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001118 return -ENOMEM;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001119 t->i2c = client;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001120 strlcpy(client->name, "(tuner unset)", sizeof(client->name));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001121 i2c_set_clientdata(client, t);
1122 t->type = UNSET;
1123 t->audmode = V4L2_TUNER_MODE_STEREO;
1124 t->mode_mask = T_UNINITIALIZED;
1125
1126 if (show_i2c) {
1127 unsigned char buffer[16];
1128 int i, rc;
1129
1130 memset(buffer, 0, sizeof(buffer));
1131 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1132 tuner_info("I2C RECV = ");
1133 for (i = 0; i < rc; i++)
1134 printk(KERN_CONT "%02x ", buffer[i]);
1135 printk("\n");
1136 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001137 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001138 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001139 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1140 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001141 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001142 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001143
1144 /* autodetection code based on the i2c addr */
1145 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001146 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001147 case 0x10:
Michael Krufkya07c8772008-04-29 03:54:19 -03001148 if (tuner_symbol_probe(tea5761_autodetection,
1149 t->i2c->adapter,
1150 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001151 t->type = TUNER_TEA5761;
1152 t->mode_mask = T_RADIO;
1153 t->mode = T_STANDBY;
1154 /* Sets freq to FM range */
1155 t->radio_freq = 87.5 * 16000;
1156 tuner_lookup(t->i2c->adapter, &radio, &tv);
1157 if (tv)
1158 tv->mode_mask &= ~T_RADIO;
1159
1160 goto register_client;
1161 }
Mauro Carvalho Chehab867e8352008-04-23 17:27:27 -03001162 return -ENODEV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001163 case 0x42:
1164 case 0x43:
1165 case 0x4a:
1166 case 0x4b:
1167 /* If chip is not tda8290, don't register.
1168 since it can be tda9887*/
Michael Krufkya07c8772008-04-29 03:54:19 -03001169 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
1170 t->i2c->addr) == 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001171 tuner_dbg("tda829x detected\n");
1172 } else {
1173 /* Default is being tda9887 */
1174 t->type = TUNER_TDA9887;
1175 t->mode_mask = T_RADIO | T_ANALOG_TV |
1176 T_DIGITAL_TV;
1177 t->mode = T_STANDBY;
1178 goto register_client;
1179 }
1180 break;
1181 case 0x60:
Michael Krufkya07c8772008-04-29 03:54:19 -03001182 if (tuner_symbol_probe(tea5767_autodetection,
1183 t->i2c->adapter, t->i2c->addr)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001184 != EINVAL) {
1185 t->type = TUNER_TEA5767;
1186 t->mode_mask = T_RADIO;
1187 t->mode = T_STANDBY;
1188 /* Sets freq to FM range */
1189 t->radio_freq = 87.5 * 16000;
1190 tuner_lookup(t->i2c->adapter, &radio, &tv);
1191 if (tv)
1192 tv->mode_mask &= ~T_RADIO;
1193
1194 goto register_client;
1195 }
1196 break;
1197 }
1198 }
1199
1200 /* Initializes only the first TV tuner on this adapter. Why only the
1201 first? Because there are some devices (notably the ones with TI
1202 tuners) that have more than one i2c address for the *same* device.
1203 Experience shows that, except for just one case, the first
1204 address is the right one. The exception is a Russian tuner
1205 (ACORP_Y878F). So, the desired behavior is just to enable the
1206 first found TV tuner. */
1207 tuner_lookup(t->i2c->adapter, &radio, &tv);
1208 if (tv == NULL) {
1209 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1210 if (radio == NULL)
1211 t->mode_mask |= T_RADIO;
1212 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1213 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1214 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1215 }
1216
1217 /* Should be just before return */
1218register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001219 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1220 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001221
1222 /* Sets a default mode */
1223 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001224 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001225 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001226 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001227 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001228 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001229 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001230 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001231 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001232 return 0;
1233}
1234
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001235static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001236{
1237 if (0 != addr) {
1238 normal_i2c[0] = addr;
1239 normal_i2c[1] = I2C_CLIENT_END;
1240 }
1241
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001242 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1243 return 0;
1244
Hans Verkuil92de1f12007-11-04 10:53:09 -03001245 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1246 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1247 * and an RTC at 0x6f which can get corrupted if probed.
1248 */
1249 if ((adap->id == I2C_HW_B_CX2388x) ||
1250 (adap->id == I2C_HW_B_CX23885)) {
1251 unsigned int i = 0;
1252
1253 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1254 i += 2;
1255 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1256 ignore[i+0] = adap->nr;
1257 ignore[i+1] = 0x6b;
1258 ignore[i+2] = adap->nr;
1259 ignore[i+3] = 0x6f;
1260 ignore[i+4] = I2C_CLIENT_END;
1261 } else
1262 printk(KERN_WARNING "tuner: "
1263 "too many options specified "
1264 "in i2c probe ignore list!\n");
1265 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001266 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001267}
1268
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001269static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001270{
1271 struct tuner *t = i2c_get_clientdata(client);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001272
Michael Krufkya07c8772008-04-29 03:54:19 -03001273 tuner_detach(&t->fe);
1274 t->fe.analog_demod_priv = NULL;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001275
1276 list_del(&t->list);
1277 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001278 return 0;
1279}
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281/* ----------------------------------------------------------------------- */
1282
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001283static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1284 .name = "tuner",
1285 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001286 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001287 .probe = tuner_probe,
1288 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001289 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001290 .resume = tuner_resume,
1291 .legacy_probe = tuner_legacy_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292};
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295/*
1296 * Overrides for Emacs so that we follow Linus's tabbing style.
1297 * ---------------------------------------------------------------------------
1298 * Local variables:
1299 * c-basic-offset: 8
1300 * End:
1301 */