blob: ad20af84809dfd1463306f3157a1cbd0f6b6a101 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#define UNSET (-1U)
32
Hans Verkuil9dd659d2007-11-04 11:03:36 -030033#define PREFIX t->i2c->driver->driver.name
Michael Krufky241020d2007-10-30 09:46:10 -030034
Michael Krufkyf7f427e2007-12-16 22:02:26 -030035struct tuner {
36 /* device */
37 struct dvb_frontend fe;
38 struct i2c_client *i2c;
39 struct list_head list;
40 unsigned int using_v4l2:1;
41
42 /* keep track of the current settings */
43 v4l2_std_id std;
44 unsigned int tv_freq;
45 unsigned int radio_freq;
46 unsigned int audmode;
47
48 unsigned int mode;
49 unsigned int mode_mask; /* Combination of allowable modes */
50
51 unsigned int type; /* chip type id */
52 unsigned int config;
53 int (*tuner_callback) (void *dev, int command, int arg);
54};
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* standard i2c insmod options */
57static unsigned short normal_i2c[] = {
Adrian Bunk04d934f2007-10-24 09:06:47 -030058#if defined(CONFIG_TUNER_TEA5761) || (defined(CONFIG_TUNER_TEA5761_MODULE) && defined(MODULE))
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -030059 0x10,
60#endif
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080061 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -070062 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
63 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 I2C_CLIENT_END
65};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067I2C_CLIENT_INSMOD;
68
69/* insmod options used at init time => read/only */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070070static unsigned int addr = 0;
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -070071static unsigned int no_autodetect = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070072static unsigned int show_i2c = 0;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* insmod options used at runtime => read/write */
Michael Krufkyab166052007-12-09 02:26:48 -030075static int tuner_debug;
76
77#define tuner_warn(fmt, arg...) do { \
78 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
79 i2c_adapter_id(t->i2c->adapter), \
80 t->i2c->addr, ##arg); \
81 } while (0)
82
83#define tuner_info(fmt, arg...) do { \
84 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
85 i2c_adapter_id(t->i2c->adapter), \
86 t->i2c->addr, ##arg); \
87 } while (0)
88
89#define tuner_err(fmt, arg...) do { \
90 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
91 i2c_adapter_id(t->i2c->adapter), \
92 t->i2c->addr, ##arg); \
93 } while (0)
94
95#define tuner_dbg(fmt, arg...) do { \
96 if (tuner_debug) \
97 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
98 i2c_adapter_id(t->i2c->adapter), \
99 t->i2c->addr, ##arg); \
100 } while (0)
101
102/* ------------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700104static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static unsigned int radio_range[2] = { 65, 108 };
106
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200107static char pal[] = "--";
108static char secam[] = "--";
109static char ntsc[] = "-";
110
Hans Verkuilf9195de2006-01-11 19:01:01 -0200111
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200112module_param(addr, int, 0444);
113module_param(no_autodetect, int, 0444);
114module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -0200115module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200116module_param_string(pal, pal, sizeof(pal), 0644);
117module_param_string(secam, secam, sizeof(secam), 0644);
118module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700119module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120module_param_array(radio_range, int, NULL, 0644);
121
122MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
123MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
124MODULE_LICENSE("GPL");
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/* ---------------------------------------------------------------------- */
127
Michael Krufkyc7919d52007-12-08 17:06:30 -0300128static void fe_set_params(struct dvb_frontend *fe,
129 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300130{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300131 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
132 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300133
Michael Krufkye18f9442007-08-21 01:25:48 -0300134 if (NULL == fe_tuner_ops->set_analog_params) {
135 tuner_warn("Tuner frontend module has no way to set freq\n");
136 return;
137 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300138 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300139}
140
Michael Krufky4e9154b2007-10-21 19:39:50 -0300141static void fe_release(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300142{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300143 if (fe->ops.tuner_ops.release)
144 fe->ops.tuner_ops.release(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300145
Michael Krufky4e9154b2007-10-21 19:39:50 -0300146 fe->ops.analog_demod_ops = NULL;
Michael Krufky4524c1a2007-10-22 18:15:39 -0300147
148 /* DO NOT kfree(fe->analog_demod_priv)
149 *
150 * If we are in this function, analog_demod_priv contains a pointer
151 * to struct tuner *t. This will be kfree'd in tuner_detach().
152 *
153 * Otherwise, fe->ops.analog_demod_ops->release will
154 * handle the cleanup for analog demodulator modules.
155 */
Michael Krufky4e9154b2007-10-21 19:39:50 -0300156 fe->analog_demod_priv = NULL;
Michael Krufkye18f9442007-08-21 01:25:48 -0300157}
158
Michael Krufky4e9154b2007-10-21 19:39:50 -0300159static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300160{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300161 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300162
163 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300164 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300165}
166
Michael Krufky4e9154b2007-10-21 19:39:50 -0300167static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300168{
Michael Krufky14196832007-10-14 18:11:53 -0300169 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300170
Michael Krufky4e9154b2007-10-21 19:39:50 -0300171 if (fe->ops.tuner_ops.get_rf_strength)
172 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300173
174 return strength;
175}
176
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300177static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
178{
179 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
180 struct tuner *t = fe->analog_demod_priv;
181
182 if (fe_tuner_ops->set_config)
183 return fe_tuner_ops->set_config(fe, priv_cfg);
184
185 tuner_warn("Tuner frontend module has no way to set config\n");
186
187 return 0;
188}
189
Michael Krufky4e9154b2007-10-21 19:39:50 -0300190static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300191
192static struct analog_tuner_ops tuner_core_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300193 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300194 .standby = fe_standby,
195 .release = fe_release,
196 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300197 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300198 .tuner_status = tuner_status
199};
200
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700201/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static void set_tv_freq(struct i2c_client *c, unsigned int freq)
203{
204 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300205 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Michael Krufkyc7919d52007-12-08 17:06:30 -0300207 struct analog_parameters params = {
208 .mode = t->mode,
209 .audmode = t->audmode,
210 .std = t->std
211 };
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700214 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return;
216 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300217 if ((NULL == ops) || (NULL == ops->set_params)) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700218 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return;
220 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700221 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
222 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
223 freq / 16, freq % 16 * 100 / 16, tv_range[0],
224 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200225 /* V4L2 spec: if the freq is not possible then the closest
226 possible value should be selected */
227 if (freq < tv_range[0] * 16)
228 freq = tv_range[0] * 16;
229 else
230 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300232 params.frequency = freq;
233
234 ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237static void set_radio_freq(struct i2c_client *c, unsigned int freq)
238{
239 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300240 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Michael Krufkyc7919d52007-12-08 17:06:30 -0300242 struct analog_parameters params = {
243 .mode = t->mode,
244 .audmode = t->audmode,
245 .std = t->std
246 };
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700249 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return;
251 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300252 if ((NULL == ops) || (NULL == ops->set_params)) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700253 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return;
255 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200256 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700257 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
258 freq / 16000, freq % 16000 * 100 / 16000,
259 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200260 /* V4L2 spec: if the freq is not possible then the closest
261 possible value should be selected */
262 if (freq < radio_range[0] * 16000)
263 freq = radio_range[0] * 16000;
264 else
265 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300267 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700268
Michael Krufkyc7919d52007-12-08 17:06:30 -0300269 ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272static void set_freq(struct i2c_client *c, unsigned long freq)
273{
274 struct tuner *t = i2c_get_clientdata(c);
275
276 switch (t->mode) {
277 case V4L2_TUNER_RADIO:
278 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700279 freq / 16000, freq % 16000 * 100 / 16000);
280 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200281 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 break;
283 case V4L2_TUNER_ANALOG_TV:
284 case V4L2_TUNER_DIGITAL_TV:
285 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700286 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200288 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300290 default:
291 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Michael Krufky293197c2007-08-28 17:20:42 -0300295static void tuner_i2c_address_check(struct tuner *t)
296{
297 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300298 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
Michael Krufky293197c2007-08-28 17:20:42 -0300299 return;
300
301 tuner_warn("====================== WARNING! ======================\n");
302 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
303 tuner_warn("will soon be dropped. This message indicates that your\n");
304 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300305 t->i2c->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300306 tuner_warn("To ensure continued support for your device, please\n");
307 tuner_warn("send a copy of this message, along with full dmesg\n");
308 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
309 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
310 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300311 t->i2c->adapter->name, t->i2c->addr, t->type,
Michael Krufky293197c2007-08-28 17:20:42 -0300312 tuners[t->type].name);
313 tuner_warn("====================== WARNING! ======================\n");
314}
315
Michael Krufky4adad282007-08-27 21:59:08 -0300316static void attach_simple_tuner(struct tuner *t)
317{
318 struct simple_tuner_config cfg = {
319 .type = t->type,
320 .tun = &tuners[t->type]
321 };
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300322 simple_tuner_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
Michael Krufky4adad282007-08-27 21:59:08 -0300323}
324
Michael Krufkyab166052007-12-09 02:26:48 -0300325static void attach_tda829x(struct tuner *t)
326{
327 struct tda829x_config cfg = {
328 .lna_cfg = &t->config,
329 .tuner_callback = t->tuner_callback,
330 };
331 tda829x_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
332}
333
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700334static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300335 unsigned int new_mode_mask, unsigned int new_config,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300336 int (*tuner_callback) (void *dev, int command,int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkye18f9442007-08-21 01:25:48 -0300339 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300340 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700341 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700343 if (type == UNSET || type == TUNER_ABSENT) {
344 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return;
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700348 if (type >= tuner_count) {
349 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
350 return;
351 }
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 t->type = type;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300354 t->config = new_config;
355 if (tuner_callback != NULL) {
356 tuner_dbg("defining GPIO callback\n");
357 t->tuner_callback = tuner_callback;
358 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300359
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300360 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300361 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
362
363 return;
364 }
365
Michael Krufkyb2083192007-05-29 22:54:06 -0300366 /* discard private data, in case set_type() was previously called */
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300367 if (ops && ops->release)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300368 ops->release(&t->fe);
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 switch (t->type) {
371 case TUNER_MT2032:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300372 microtune_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 break;
374 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300375 {
Michael Krufkyab166052007-12-09 02:26:48 -0300376 attach_tda829x(t);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300377 break;
378 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700379 case TUNER_TEA5767:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300380 if (tea5767_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700381 t->type = TUNER_ABSENT;
382 t->mode_mask = T_UNINITIALIZED;
383 return;
384 }
385 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700386 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300387 case TUNER_TEA5761:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300388 if (tea5761_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300389 t->type = TUNER_ABSENT;
390 t->mode_mask = T_UNINITIALIZED;
Adrian Bunk9ee476a2007-06-05 05:22:00 -0300391 return;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300392 }
393 t->mode_mask = T_RADIO;
394 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700395 case TUNER_PHILIPS_FMD1216ME_MK3:
396 buffer[0] = 0x0b;
397 buffer[1] = 0xdc;
398 buffer[2] = 0x9c;
399 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700400 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700401 mdelay(1);
402 buffer[2] = 0x86;
403 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700404 i2c_master_send(c, buffer, 4);
Michael Krufky4adad282007-08-27 21:59:08 -0300405 attach_simple_tuner(t);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700406 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800407 case TUNER_PHILIPS_TD1316:
408 buffer[0] = 0x0b;
409 buffer[1] = 0xdc;
410 buffer[2] = 0x86;
411 buffer[3] = 0xa4;
412 i2c_master_send(c,buffer,4);
Michael Krufky4adad282007-08-27 21:59:08 -0300413 attach_simple_tuner(t);
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200414 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300415 case TUNER_XC2028:
416 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300417 struct xc2028_config cfg = {
418 .i2c_adap = t->i2c->adapter,
419 .i2c_addr = t->i2c->addr,
420 .video_dev = c->adapter->algo_data,
421 .callback = t->tuner_callback,
422 };
423 if (!xc2028_attach(&t->fe, &cfg)) {
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300424 t->type = TUNER_ABSENT;
425 t->mode_mask = T_UNINITIALIZED;
426 return;
427 }
428 break;
429 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300430 case TUNER_TDA9887:
Michael Krufky8ca40832007-12-16 20:11:46 -0300431 tda9887_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300432 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 default:
Michael Krufky4adad282007-08-27 21:59:08 -0300434 attach_simple_tuner(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 break;
436 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700437
Michael Krufkye2be32a2007-10-21 14:35:21 -0300438 ops = t->fe.ops.analog_demod_ops;
439
Michael Krufkyc7919d52007-12-08 17:06:30 -0300440 if (((NULL == ops) || (NULL == ops->set_params)) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300441 (fe_tuner_ops->set_analog_params)) {
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300442 strlcpy(t->i2c->name, fe_tuner_ops->info.name,
443 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300444
Michael Krufky1dde7a42007-10-21 13:40:56 -0300445 t->fe.ops.analog_demod_ops = &tuner_core_ops;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300446 t->fe.analog_demod_priv = t;
Michael Krufkya55db8c2007-12-09 13:52:51 -0300447 } else {
448 strlcpy(t->i2c->name, ops->info.name,
449 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300450 }
451
Michael Krufky49427442007-10-30 09:44:12 -0300452 tuner_dbg("type set to %s\n", t->i2c->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300453
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700454 if (t->mode_mask == T_UNINITIALIZED)
455 t->mode_mask = new_mode_mask;
456
Hans Verkuil27487d42006-01-15 15:04:52 -0200457 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700458 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100459 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700460 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300461 tuner_i2c_address_check(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700464/*
465 * This function apply tuner config to tuner specified
466 * by tun_setup structure. I addr is unset, then admin status
467 * and tun addr status is more precise then current status,
468 * it's applied. Otherwise status and type are applied only to
469 * tuner with exactly the same addr.
470*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700471
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700472static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700473{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700474 struct tuner *t = i2c_get_clientdata(c);
475
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300476 tuner_dbg("set addr for type %i\n", t->type);
477
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300478 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
479 (t->mode_mask & tun_setup->mode_mask))) ||
480 (tun_setup->addr == c->addr)) {
481 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300482 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700483 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700484}
485
486static inline int check_mode(struct tuner *t, char *cmd)
487{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700488 if ((1 << t->mode & t->mode_mask) == 0) {
489 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700490 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700491
492 switch (t->mode) {
493 case V4L2_TUNER_RADIO:
494 tuner_dbg("Cmd %s accepted for radio\n", cmd);
495 break;
496 case V4L2_TUNER_ANALOG_TV:
497 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
498 break;
499 case V4L2_TUNER_DIGITAL_TV:
500 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
501 break;
502 }
503 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700504}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700505
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700506/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507static int tuner_fixup_std(struct tuner *t)
508{
509 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300511 case '6':
512 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
513 t->std = V4L2_STD_PAL_60;
514 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 case 'b':
516 case 'B':
517 case 'g':
518 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700519 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 t->std = V4L2_STD_PAL_BG;
521 break;
522 case 'i':
523 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700524 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 t->std = V4L2_STD_PAL_I;
526 break;
527 case 'd':
528 case 'D':
529 case 'k':
530 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700531 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 t->std = V4L2_STD_PAL_DK;
533 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700534 case 'M':
535 case 'm':
536 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
537 t->std = V4L2_STD_PAL_M;
538 break;
539 case 'N':
540 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200541 if (pal[1] == 'c' || pal[1] == 'C') {
542 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
543 t->std = V4L2_STD_PAL_Nc;
544 } else {
545 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
546 t->std = V4L2_STD_PAL_N;
547 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700548 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700549 case '-':
550 /* default parameter, do nothing */
551 break;
552 default:
553 tuner_warn ("pal= argument not recognised\n");
554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700557 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
558 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200559 case 'b':
560 case 'B':
561 case 'g':
562 case 'G':
563 case 'h':
564 case 'H':
565 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
566 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
567 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700568 case 'd':
569 case 'D':
570 case 'k':
571 case 'K':
572 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
573 t->std = V4L2_STD_SECAM_DK;
574 break;
575 case 'l':
576 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800577 if ((secam[1]=='C')||(secam[1]=='c')) {
578 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
579 t->std = V4L2_STD_SECAM_LC;
580 } else {
581 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
582 t->std = V4L2_STD_SECAM_L;
583 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700584 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700585 case '-':
586 /* default parameter, do nothing */
587 break;
588 default:
589 tuner_warn ("secam= argument not recognised\n");
590 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700591 }
592 }
593
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200594 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
595 switch (ntsc[0]) {
596 case 'm':
597 case 'M':
598 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
599 t->std = V4L2_STD_NTSC_M;
600 break;
601 case 'j':
602 case 'J':
603 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
604 t->std = V4L2_STD_NTSC_M_JP;
605 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200606 case 'k':
607 case 'K':
608 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
609 t->std = V4L2_STD_NTSC_M_KR;
610 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200611 case '-':
612 /* default parameter, do nothing */
613 break;
614 default:
615 tuner_info("ntsc= argument not recognised\n");
616 break;
617 }
618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return 0;
620}
621
Michael Krufky4e9154b2007-10-21 19:39:50 -0300622static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200623{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300624 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200625 unsigned long freq, freq_fraction;
Michael Krufkye18f9442007-08-21 01:25:48 -0300626 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300627 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200628 const char *p;
629
630 switch (t->mode) {
631 case V4L2_TUNER_RADIO: p = "radio"; break;
632 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
633 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
634 default: p = "undefined"; break;
635 }
636 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200637 freq = t->radio_freq / 16000;
638 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200639 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200640 freq = t->tv_freq / 16;
641 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200642 }
643 tuner_info("Tuner mode: %s\n", p);
644 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300645 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200646 if (t->mode != V4L2_TUNER_RADIO)
647 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300648 if (fe_tuner_ops->get_status) {
649 u32 tuner_status;
650
651 fe_tuner_ops->get_status(&t->fe, &tuner_status);
652 if (tuner_status & TUNER_STATUS_LOCKED)
653 tuner_info("Tuner is locked.\n");
654 if (tuner_status & TUNER_STATUS_STEREO)
655 tuner_info("Stereo: yes\n");
656 }
Michael Krufky1b29ced2007-10-22 01:44:03 -0300657 if (ops) {
658 if (ops->has_signal)
659 tuner_info("Signal strength: %d\n",
660 ops->has_signal(fe));
661 if (ops->is_stereo)
662 tuner_info("Stereo: %s\n",
663 ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200664 }
665}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667/* ---------------------------------------------------------------------- */
668
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700669/*
670 * Switch tuner to other mode. If tuner support both tv and radio,
671 * set another frequency to some value (This is needed for some pal
672 * tuners to avoid locking). Otherwise, just put second tuner in
673 * standby mode.
674 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700676static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
677{
Michael Krufky1dde7a42007-10-21 13:40:56 -0300678 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
679
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800680 if (mode == t->mode)
681 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700682
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800683 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700684
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800685 if (check_mode(t, cmd) == EINVAL) {
686 t->mode = T_STANDBY;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300687 if (ops && ops->standby)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300688 ops->standby(&t->fe);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800689 return EINVAL;
690 }
691 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700692}
693
694#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800695 tuner_dbg("switching to v4l2\n"); \
696 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700697
698static inline int check_v4l2(struct tuner *t)
699{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300700 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
701 TV, v4l1 for radio), until that is fixed this code is disabled.
702 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
703 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700704 return 0;
705}
706
707static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
709 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkye18f9442007-08-21 01:25:48 -0300710 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300711 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Hans Verkuilf9195de2006-01-11 19:01:01 -0200713 if (tuner_debug>1)
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300714 v4l_i2c_print_ioctl(client,cmd);
Michael Krufky5e453dc2006-01-09 15:32:31 -0200715
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700716 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700718 case TUNER_SET_TYPE_ADDR:
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300719 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 -0700720 ((struct tuner_setup *)arg)->type,
721 ((struct tuner_setup *)arg)->addr,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300722 ((struct tuner_setup *)arg)->mode_mask,
723 ((struct tuner_setup *)arg)->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700724
725 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700726 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200728 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
729 == EINVAL)
730 return 0;
731 if (t->radio_freq)
732 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700734 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200735 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
736 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300737 t->mode = T_STANDBY;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300738 if (ops && ops->standby)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300739 ops->standby(&t->fe);
Hans Verkuil27487d42006-01-15 15:04:52 -0200740 break;
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300741#ifdef CONFIG_VIDEO_V4L1
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700742 case VIDIOCSAUDIO:
743 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
744 return 0;
745 if (check_v4l2(t) == EINVAL)
746 return 0;
747
748 /* Should be implemented, since bttv calls it */
749 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700750 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700752 {
753 static const v4l2_std_id map[] = {
754 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
755 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
756 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
757 [4 /* bttv */ ] = V4L2_STD_PAL_M,
758 [5 /* bttv */ ] = V4L2_STD_PAL_N,
759 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
760 };
761 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700763 if (check_v4l2(t) == EINVAL)
764 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700765
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700766 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700769 if (vc->norm < ARRAY_SIZE(map))
770 t->std = map[vc->norm];
771 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200772 if (t->tv_freq)
773 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700774 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700775 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700776 case VIDIOCSFREQ:
777 {
778 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700779
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700780 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
781 return 0;
782 if (check_v4l2(t) == EINVAL)
783 return 0;
784
785 set_freq(client, *v);
786 return 0;
787 }
788 case VIDIOCGTUNER:
789 {
790 struct video_tuner *vt = arg;
791
792 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
793 return 0;
794 if (check_v4l2(t) == EINVAL)
795 return 0;
796
797 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300798 if (fe_tuner_ops->get_status) {
799 u32 tuner_status;
800
801 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300802 if (tuner_status & TUNER_STATUS_STEREO)
803 vt->flags |= VIDEO_TUNER_STEREO_ON;
804 else
805 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300806 } else {
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300807 if (ops && ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -0300808 if (ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300809 vt->flags |=
810 VIDEO_TUNER_STEREO_ON;
811 else
812 vt->flags &=
813 ~VIDEO_TUNER_STEREO_ON;
814 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700815 }
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300816 if (ops && ops->has_signal)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300817 vt->signal = ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300818
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700819 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
820
821 vt->rangelow = radio_range[0] * 16000;
822 vt->rangehigh = radio_range[1] * 16000;
823
824 } else {
825 vt->rangelow = tv_range[0] * 16;
826 vt->rangehigh = tv_range[1] * 16;
827 }
828
829 return 0;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700832 {
833 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700835 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
836 return 0;
837 if (check_v4l2(t) == EINVAL)
838 return 0;
839
Michael Krufkye18f9442007-08-21 01:25:48 -0300840 if (V4L2_TUNER_RADIO == t->mode) {
841 if (fe_tuner_ops->get_status) {
842 u32 tuner_status;
843
844 fe_tuner_ops->get_status(&t->fe, &tuner_status);
845 va->mode = (tuner_status & TUNER_STATUS_STEREO)
846 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300847 } else if (ops && ops->is_stereo)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300848 va->mode = ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300849 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
850 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700851 return 0;
852 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300853#endif
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300854 case TUNER_SET_CONFIG:
855 {
Michael Krufky710401b2007-12-16 19:53:32 -0300856 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300857 struct v4l2_priv_tun_config *cfg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300859 if (t->type != cfg->tuner)
860 break;
861
Michael Krufky710401b2007-12-16 19:53:32 -0300862 if ((NULL == ops) || (NULL == ops->set_config)) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300863 tuner_warn("Tuner frontend module has no way to "
864 "set config\n");
865 break;
866 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300867
Michael Krufky710401b2007-12-16 19:53:32 -0300868 ops->set_config(&t->fe, cfg->priv);
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300869 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300870 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300871 /* --- v4l ioctls --- */
872 /* take care: bttv does userspace copying, we'll get a
873 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700875 {
876 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700878 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
879 == EINVAL)
880 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700881
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700882 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700884 t->std = *id;
885 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200886 if (t->tv_freq)
887 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700888 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700889 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700890 case VIDIOC_S_FREQUENCY:
891 {
892 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700893
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300894 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
895 == EINVAL)
896 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700897 switch_v4l2();
Hans Verkuil27487d42006-01-15 15:04:52 -0200898 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700899
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700900 break;
901 }
902 case VIDIOC_G_FREQUENCY:
903 {
904 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700905
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700906 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
907 return 0;
908 switch_v4l2();
909 f->type = t->mode;
Michael Krufkye18f9442007-08-21 01:25:48 -0300910 if (fe_tuner_ops->get_frequency) {
911 u32 abs_freq;
912
913 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
914 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
915 (abs_freq * 2 + 125/2) / 125 :
916 (abs_freq + 62500/2) / 62500;
917 break;
918 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200919 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
920 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700921 break;
922 }
923 case VIDIOC_G_TUNER:
924 {
925 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700926
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700927 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
928 return 0;
929 switch_v4l2();
930
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200931 tuner->type = t->mode;
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300932 if (ops && ops->get_afc)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300933 tuner->afc = ops->get_afc(&t->fe);
Hans Verkuilab4cecf2006-04-01 16:40:21 -0300934 if (t->mode == V4L2_TUNER_ANALOG_TV)
935 tuner->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200936 if (t->mode != V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700937 tuner->rangelow = tv_range[0] * 16;
938 tuner->rangehigh = tv_range[1] * 16;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200939 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700940 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200941
942 /* radio mode */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200943 tuner->rxsubchans =
944 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300945 if (fe_tuner_ops->get_status) {
946 u32 tuner_status;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200947
Michael Krufkye18f9442007-08-21 01:25:48 -0300948 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300949 tuner->rxsubchans =
950 (tuner_status & TUNER_STATUS_STEREO) ?
951 V4L2_TUNER_SUB_STEREO :
952 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300953 } else {
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300954 if (ops && ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -0300955 tuner->rxsubchans =
956 ops->is_stereo(&t->fe) ?
957 V4L2_TUNER_SUB_STEREO :
958 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300959 }
Michael Krufkye18f9442007-08-21 01:25:48 -0300960 }
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300961 if (ops && ops->has_signal)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300962 tuner->signal = ops->has_signal(&t->fe);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200963 tuner->capability |=
964 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
965 tuner->audmode = t->audmode;
966 tuner->rangelow = radio_range[0] * 16000;
967 tuner->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700968 break;
969 }
970 case VIDIOC_S_TUNER:
971 {
972 struct v4l2_tuner *tuner = arg;
973
974 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
975 return 0;
976
977 switch_v4l2();
978
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200979 /* do nothing unless we're a radio tuner */
980 if (t->mode != V4L2_TUNER_RADIO)
981 break;
982 t->audmode = tuner->audmode;
983 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700984 break;
985 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200986 case VIDIOC_LOG_STATUS:
Michael Krufkyaf3b0f32007-10-22 18:03:29 -0300987 if (ops && ops->tuner_status)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300988 ops->tuner_status(&t->fe);
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200989 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991
992 return 0;
993}
994
Jean Delvare21b48a72007-03-12 19:20:15 -0300995static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300997 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300999 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /* FIXME: power down ??? */
1001 return 0;
1002}
1003
Jean Delvare21b48a72007-03-12 19:20:15 -03001004static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001006 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001008 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -02001009 if (V4L2_TUNER_RADIO == t->mode) {
1010 if (t->radio_freq)
1011 set_freq(c, t->radio_freq);
1012 } else {
1013 if (t->tv_freq)
1014 set_freq(c, t->tv_freq);
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return 0;
1017}
1018
Hans Verkuil92de1f12007-11-04 10:53:09 -03001019/* ---------------------------------------------------------------------- */
1020
1021LIST_HEAD(tuner_list);
1022
1023/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001024 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -03001025 certain no other devices will be added/deleted at the same time, I2C
1026 core protects against that. */
1027static void tuner_lookup(struct i2c_adapter *adap,
1028 struct tuner **radio, struct tuner **tv)
1029{
1030 struct tuner *pos;
1031
1032 *radio = NULL;
1033 *tv = NULL;
1034
1035 list_for_each_entry(pos, &tuner_list, list) {
1036 int mode_mask;
1037
1038 if (pos->i2c->adapter != adap ||
1039 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1040 continue;
1041
1042 mode_mask = pos->mode_mask & ~T_STANDBY;
1043 if (*radio == NULL && mode_mask == T_RADIO)
1044 *radio = pos;
1045 /* Note: currently TDA9887 is the only demod-only
1046 device. If other devices appear then we need to
1047 make this test more general. */
1048 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1049 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1050 *tv = pos;
1051 }
1052}
1053
1054/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001055 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001056 */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001057static int tuner_probe(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001058{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001059 struct tuner *t;
1060 struct tuner *radio;
1061 struct tuner *tv;
1062
Hans Verkuil92de1f12007-11-04 10:53:09 -03001063 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001064 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001065 return -ENOMEM;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001066 t->i2c = client;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001067 strlcpy(client->name, "(tuner unset)", sizeof(client->name));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001068 i2c_set_clientdata(client, t);
1069 t->type = UNSET;
1070 t->audmode = V4L2_TUNER_MODE_STEREO;
1071 t->mode_mask = T_UNINITIALIZED;
1072
1073 if (show_i2c) {
1074 unsigned char buffer[16];
1075 int i, rc;
1076
1077 memset(buffer, 0, sizeof(buffer));
1078 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1079 tuner_info("I2C RECV = ");
1080 for (i = 0; i < rc; i++)
1081 printk(KERN_CONT "%02x ", buffer[i]);
1082 printk("\n");
1083 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001084 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001085 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001086 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1087 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001088 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001089 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001090
1091 /* autodetection code based on the i2c addr */
1092 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001093 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001094 case 0x10:
1095 if (tea5761_autodetection(t->i2c->adapter, t->i2c->addr)
1096 != EINVAL) {
1097 t->type = TUNER_TEA5761;
1098 t->mode_mask = T_RADIO;
1099 t->mode = T_STANDBY;
1100 /* Sets freq to FM range */
1101 t->radio_freq = 87.5 * 16000;
1102 tuner_lookup(t->i2c->adapter, &radio, &tv);
1103 if (tv)
1104 tv->mode_mask &= ~T_RADIO;
1105
1106 goto register_client;
1107 }
1108 break;
1109 case 0x42:
1110 case 0x43:
1111 case 0x4a:
1112 case 0x4b:
1113 /* If chip is not tda8290, don't register.
1114 since it can be tda9887*/
Michael Krufkyab166052007-12-09 02:26:48 -03001115 if (tda829x_probe(t->i2c->adapter,
1116 t->i2c->addr) == 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001117 tuner_dbg("tda829x detected\n");
1118 } else {
1119 /* Default is being tda9887 */
1120 t->type = TUNER_TDA9887;
1121 t->mode_mask = T_RADIO | T_ANALOG_TV |
1122 T_DIGITAL_TV;
1123 t->mode = T_STANDBY;
1124 goto register_client;
1125 }
1126 break;
1127 case 0x60:
1128 if (tea5767_autodetection(t->i2c->adapter, t->i2c->addr)
1129 != EINVAL) {
1130 t->type = TUNER_TEA5767;
1131 t->mode_mask = T_RADIO;
1132 t->mode = T_STANDBY;
1133 /* Sets freq to FM range */
1134 t->radio_freq = 87.5 * 16000;
1135 tuner_lookup(t->i2c->adapter, &radio, &tv);
1136 if (tv)
1137 tv->mode_mask &= ~T_RADIO;
1138
1139 goto register_client;
1140 }
1141 break;
1142 }
1143 }
1144
1145 /* Initializes only the first TV tuner on this adapter. Why only the
1146 first? Because there are some devices (notably the ones with TI
1147 tuners) that have more than one i2c address for the *same* device.
1148 Experience shows that, except for just one case, the first
1149 address is the right one. The exception is a Russian tuner
1150 (ACORP_Y878F). So, the desired behavior is just to enable the
1151 first found TV tuner. */
1152 tuner_lookup(t->i2c->adapter, &radio, &tv);
1153 if (tv == NULL) {
1154 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1155 if (radio == NULL)
1156 t->mode_mask |= T_RADIO;
1157 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1158 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1159 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1160 }
1161
1162 /* Should be just before return */
1163register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001164 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1165 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001166
1167 /* Sets a default mode */
1168 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001169 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001170 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001171 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001172 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001173 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001174 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001175 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001176 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001177 return 0;
1178}
1179
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001180static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001181{
1182 if (0 != addr) {
1183 normal_i2c[0] = addr;
1184 normal_i2c[1] = I2C_CLIENT_END;
1185 }
1186
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001187 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1188 return 0;
1189
Hans Verkuil92de1f12007-11-04 10:53:09 -03001190 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1191 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1192 * and an RTC at 0x6f which can get corrupted if probed.
1193 */
1194 if ((adap->id == I2C_HW_B_CX2388x) ||
1195 (adap->id == I2C_HW_B_CX23885)) {
1196 unsigned int i = 0;
1197
1198 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1199 i += 2;
1200 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1201 ignore[i+0] = adap->nr;
1202 ignore[i+1] = 0x6b;
1203 ignore[i+2] = adap->nr;
1204 ignore[i+3] = 0x6f;
1205 ignore[i+4] = I2C_CLIENT_END;
1206 } else
1207 printk(KERN_WARNING "tuner: "
1208 "too many options specified "
1209 "in i2c probe ignore list!\n");
1210 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001211 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001212}
1213
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001214static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001215{
1216 struct tuner *t = i2c_get_clientdata(client);
1217 struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001218
1219 if (ops && ops->release)
1220 ops->release(&t->fe);
1221
1222 list_del(&t->list);
1223 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001224 return 0;
1225}
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227/* ----------------------------------------------------------------------- */
1228
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001229static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1230 .name = "tuner",
1231 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001232 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001233 .probe = tuner_probe,
1234 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001235 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001236 .resume = tuner_resume,
1237 .legacy_probe = tuner_legacy_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238};
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241/*
1242 * Overrides for Emacs so that we follow Linus's tabbing style.
1243 * ---------------------------------------------------------------------------
1244 * Local variables:
1245 * c-basic-offset: 8
1246 * End:
1247 */