blob: f792871582ff16566666234f3ece760e2a9059ce [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 Krufky4524c1a2007-10-22 18:15:39 -0300146 /* DO NOT kfree(fe->analog_demod_priv)
147 *
148 * If we are in this function, analog_demod_priv contains a pointer
149 * to struct tuner *t. This will be kfree'd in tuner_detach().
150 *
151 * Otherwise, fe->ops.analog_demod_ops->release will
152 * handle the cleanup for analog demodulator modules.
153 */
Michael Krufky4e9154b2007-10-21 19:39:50 -0300154 fe->analog_demod_priv = NULL;
Michael Krufkye18f9442007-08-21 01:25:48 -0300155}
156
Michael Krufky4e9154b2007-10-21 19:39:50 -0300157static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300158{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300159 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300160
161 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300162 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300163}
164
Michael Krufky4e9154b2007-10-21 19:39:50 -0300165static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300166{
Michael Krufky14196832007-10-14 18:11:53 -0300167 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300168
Michael Krufky4e9154b2007-10-21 19:39:50 -0300169 if (fe->ops.tuner_ops.get_rf_strength)
170 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300171
172 return strength;
173}
174
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300175static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
176{
177 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
178 struct tuner *t = fe->analog_demod_priv;
179
180 if (fe_tuner_ops->set_config)
181 return fe_tuner_ops->set_config(fe, priv_cfg);
182
183 tuner_warn("Tuner frontend module has no way to set config\n");
184
185 return 0;
186}
187
Michael Krufky4e9154b2007-10-21 19:39:50 -0300188static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300189
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300190static struct analog_demod_ops tuner_core_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300191 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300192 .standby = fe_standby,
193 .release = fe_release,
194 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300195 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300196 .tuner_status = tuner_status
197};
198
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700199/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static void set_tv_freq(struct i2c_client *c, unsigned int freq)
201{
202 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300203 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Michael Krufkyc7919d52007-12-08 17:06:30 -0300205 struct analog_parameters params = {
206 .mode = t->mode,
207 .audmode = t->audmode,
208 .std = t->std
209 };
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700212 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return;
214 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300215 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700216 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return;
218 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700219 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
220 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
221 freq / 16, freq % 16 * 100 / 16, tv_range[0],
222 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200223 /* V4L2 spec: if the freq is not possible then the closest
224 possible value should be selected */
225 if (freq < tv_range[0] * 16)
226 freq = tv_range[0] * 16;
227 else
228 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300230 params.frequency = freq;
231
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300232 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235static void set_radio_freq(struct i2c_client *c, unsigned int freq)
236{
237 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300238 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Michael Krufkyc7919d52007-12-08 17:06:30 -0300240 struct analog_parameters params = {
241 .mode = t->mode,
242 .audmode = t->audmode,
243 .std = t->std
244 };
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700247 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return;
249 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300250 if (analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700251 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return;
253 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200254 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700255 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
256 freq / 16000, freq % 16000 * 100 / 16000,
257 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200258 /* V4L2 spec: if the freq is not possible then the closest
259 possible value should be selected */
260 if (freq < radio_range[0] * 16000)
261 freq = radio_range[0] * 16000;
262 else
263 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300265 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700266
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300267 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270static void set_freq(struct i2c_client *c, unsigned long freq)
271{
272 struct tuner *t = i2c_get_clientdata(c);
273
274 switch (t->mode) {
275 case V4L2_TUNER_RADIO:
276 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700277 freq / 16000, freq % 16000 * 100 / 16000);
278 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200279 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 break;
281 case V4L2_TUNER_ANALOG_TV:
282 case V4L2_TUNER_DIGITAL_TV:
283 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700284 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200286 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300288 default:
289 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Michael Krufky293197c2007-08-28 17:20:42 -0300293static void tuner_i2c_address_check(struct tuner *t)
294{
295 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300296 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
Michael Krufky293197c2007-08-28 17:20:42 -0300297 return;
298
299 tuner_warn("====================== WARNING! ======================\n");
300 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
301 tuner_warn("will soon be dropped. This message indicates that your\n");
302 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300303 t->i2c->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300304 tuner_warn("To ensure continued support for your device, please\n");
305 tuner_warn("send a copy of this message, along with full dmesg\n");
306 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
307 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
308 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300309 t->i2c->adapter->name, t->i2c->addr, t->type,
Michael Krufky293197c2007-08-28 17:20:42 -0300310 tuners[t->type].name);
311 tuner_warn("====================== WARNING! ======================\n");
312}
313
Michael Krufky4adad282007-08-27 21:59:08 -0300314static void attach_simple_tuner(struct tuner *t)
315{
316 struct simple_tuner_config cfg = {
317 .type = t->type,
318 .tun = &tuners[t->type]
319 };
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300320 simple_tuner_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
Michael Krufky4adad282007-08-27 21:59:08 -0300321}
322
Michael Krufkyab166052007-12-09 02:26:48 -0300323static void attach_tda829x(struct tuner *t)
324{
325 struct tda829x_config cfg = {
326 .lna_cfg = &t->config,
327 .tuner_callback = t->tuner_callback,
328 };
329 tda829x_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
330}
331
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700332static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300333 unsigned int new_mode_mask, unsigned int new_config,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300334 int (*tuner_callback) (void *dev, int command,int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkye18f9442007-08-21 01:25:48 -0300337 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300338 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700339 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700341 if (type == UNSET || type == TUNER_ABSENT) {
342 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700346 if (type >= tuner_count) {
347 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
348 return;
349 }
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 t->type = type;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300352 t->config = new_config;
353 if (tuner_callback != NULL) {
354 tuner_dbg("defining GPIO callback\n");
355 t->tuner_callback = tuner_callback;
356 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300357
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300358 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300359 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
360
361 return;
362 }
363
Michael Krufkyb2083192007-05-29 22:54:06 -0300364 /* discard private data, in case set_type() was previously called */
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300365 if (analog_ops->release)
366 analog_ops->release(&t->fe);
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 switch (t->type) {
369 case TUNER_MT2032:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300370 microtune_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 break;
372 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300373 {
Michael Krufkyab166052007-12-09 02:26:48 -0300374 attach_tda829x(t);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300375 break;
376 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700377 case TUNER_TEA5767:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300378 if (tea5767_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700379 t->type = TUNER_ABSENT;
380 t->mode_mask = T_UNINITIALIZED;
381 return;
382 }
383 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700384 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300385 case TUNER_TEA5761:
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300386 if (tea5761_attach(&t->fe, t->i2c->adapter, t->i2c->addr) == NULL) {
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300387 t->type = TUNER_ABSENT;
388 t->mode_mask = T_UNINITIALIZED;
Adrian Bunk9ee476a2007-06-05 05:22:00 -0300389 return;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300390 }
391 t->mode_mask = T_RADIO;
392 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700393 case TUNER_PHILIPS_FMD1216ME_MK3:
394 buffer[0] = 0x0b;
395 buffer[1] = 0xdc;
396 buffer[2] = 0x9c;
397 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700398 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700399 mdelay(1);
400 buffer[2] = 0x86;
401 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700402 i2c_master_send(c, buffer, 4);
Michael Krufky4adad282007-08-27 21:59:08 -0300403 attach_simple_tuner(t);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700404 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800405 case TUNER_PHILIPS_TD1316:
406 buffer[0] = 0x0b;
407 buffer[1] = 0xdc;
408 buffer[2] = 0x86;
409 buffer[3] = 0xa4;
410 i2c_master_send(c,buffer,4);
Michael Krufky4adad282007-08-27 21:59:08 -0300411 attach_simple_tuner(t);
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200412 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300413 case TUNER_XC2028:
414 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300415 struct xc2028_config cfg = {
416 .i2c_adap = t->i2c->adapter,
417 .i2c_addr = t->i2c->addr,
418 .video_dev = c->adapter->algo_data,
419 .callback = t->tuner_callback,
420 };
421 if (!xc2028_attach(&t->fe, &cfg)) {
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300422 t->type = TUNER_ABSENT;
423 t->mode_mask = T_UNINITIALIZED;
424 return;
425 }
426 break;
427 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300428 case TUNER_TDA9887:
Michael Krufky8ca40832007-12-16 20:11:46 -0300429 tda9887_attach(&t->fe, t->i2c->adapter, t->i2c->addr);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 default:
Michael Krufky4adad282007-08-27 21:59:08 -0300432 attach_simple_tuner(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
434 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700435
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300436 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300437 (fe_tuner_ops->set_analog_params)) {
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300438 strlcpy(t->i2c->name, fe_tuner_ops->info.name,
439 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300440
Michael Krufky4e9154b2007-10-21 19:39:50 -0300441 t->fe.analog_demod_priv = t;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300442 memcpy(analog_ops, &tuner_core_ops,
443 sizeof(struct analog_demod_ops));
Michael Krufkya55db8c2007-12-09 13:52:51 -0300444 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300445 strlcpy(t->i2c->name, analog_ops->info.name,
Michael Krufkya55db8c2007-12-09 13:52:51 -0300446 sizeof(t->i2c->name));
Michael Krufkye18f9442007-08-21 01:25:48 -0300447 }
448
Michael Krufky49427442007-10-30 09:44:12 -0300449 tuner_dbg("type set to %s\n", t->i2c->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300450
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700451 if (t->mode_mask == T_UNINITIALIZED)
452 t->mode_mask = new_mode_mask;
453
Hans Verkuil27487d42006-01-15 15:04:52 -0200454 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700455 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100456 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700457 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300458 tuner_i2c_address_check(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700461/*
462 * This function apply tuner config to tuner specified
463 * by tun_setup structure. I addr is unset, then admin status
464 * and tun addr status is more precise then current status,
465 * it's applied. Otherwise status and type are applied only to
466 * tuner with exactly the same addr.
467*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700468
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700469static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700470{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700471 struct tuner *t = i2c_get_clientdata(c);
472
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300473 tuner_dbg("set addr for type %i\n", t->type);
474
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300475 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
476 (t->mode_mask & tun_setup->mode_mask))) ||
477 (tun_setup->addr == c->addr)) {
478 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300479 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700480 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700481}
482
483static inline int check_mode(struct tuner *t, char *cmd)
484{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700485 if ((1 << t->mode & t->mode_mask) == 0) {
486 return EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700487 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700488
489 switch (t->mode) {
490 case V4L2_TUNER_RADIO:
491 tuner_dbg("Cmd %s accepted for radio\n", cmd);
492 break;
493 case V4L2_TUNER_ANALOG_TV:
494 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
495 break;
496 case V4L2_TUNER_DIGITAL_TV:
497 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
498 break;
499 }
500 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700501}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700502
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700503/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504static int tuner_fixup_std(struct tuner *t)
505{
506 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300508 case '6':
509 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
510 t->std = V4L2_STD_PAL_60;
511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 case 'b':
513 case 'B':
514 case 'g':
515 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700516 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 t->std = V4L2_STD_PAL_BG;
518 break;
519 case 'i':
520 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700521 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 t->std = V4L2_STD_PAL_I;
523 break;
524 case 'd':
525 case 'D':
526 case 'k':
527 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700528 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 t->std = V4L2_STD_PAL_DK;
530 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700531 case 'M':
532 case 'm':
533 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
534 t->std = V4L2_STD_PAL_M;
535 break;
536 case 'N':
537 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200538 if (pal[1] == 'c' || pal[1] == 'C') {
539 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
540 t->std = V4L2_STD_PAL_Nc;
541 } else {
542 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
543 t->std = V4L2_STD_PAL_N;
544 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700545 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700546 case '-':
547 /* default parameter, do nothing */
548 break;
549 default:
550 tuner_warn ("pal= argument not recognised\n");
551 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700554 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
555 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200556 case 'b':
557 case 'B':
558 case 'g':
559 case 'G':
560 case 'h':
561 case 'H':
562 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
563 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
564 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700565 case 'd':
566 case 'D':
567 case 'k':
568 case 'K':
569 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
570 t->std = V4L2_STD_SECAM_DK;
571 break;
572 case 'l':
573 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800574 if ((secam[1]=='C')||(secam[1]=='c')) {
575 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
576 t->std = V4L2_STD_SECAM_LC;
577 } else {
578 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
579 t->std = V4L2_STD_SECAM_L;
580 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700581 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700582 case '-':
583 /* default parameter, do nothing */
584 break;
585 default:
586 tuner_warn ("secam= argument not recognised\n");
587 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700588 }
589 }
590
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200591 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
592 switch (ntsc[0]) {
593 case 'm':
594 case 'M':
595 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
596 t->std = V4L2_STD_NTSC_M;
597 break;
598 case 'j':
599 case 'J':
600 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
601 t->std = V4L2_STD_NTSC_M_JP;
602 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200603 case 'k':
604 case 'K':
605 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
606 t->std = V4L2_STD_NTSC_M_KR;
607 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200608 case '-':
609 /* default parameter, do nothing */
610 break;
611 default:
612 tuner_info("ntsc= argument not recognised\n");
613 break;
614 }
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return 0;
617}
618
Michael Krufky4e9154b2007-10-21 19:39:50 -0300619static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200620{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300621 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200622 unsigned long freq, freq_fraction;
Michael Krufkye18f9442007-08-21 01:25:48 -0300623 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300624 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200625 const char *p;
626
627 switch (t->mode) {
628 case V4L2_TUNER_RADIO: p = "radio"; break;
629 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
630 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
631 default: p = "undefined"; break;
632 }
633 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200634 freq = t->radio_freq / 16000;
635 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200636 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200637 freq = t->tv_freq / 16;
638 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200639 }
640 tuner_info("Tuner mode: %s\n", p);
641 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300642 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200643 if (t->mode != V4L2_TUNER_RADIO)
644 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300645 if (fe_tuner_ops->get_status) {
646 u32 tuner_status;
647
648 fe_tuner_ops->get_status(&t->fe, &tuner_status);
649 if (tuner_status & TUNER_STATUS_LOCKED)
650 tuner_info("Tuner is locked.\n");
651 if (tuner_status & TUNER_STATUS_STEREO)
652 tuner_info("Stereo: yes\n");
653 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300654 if (analog_ops->has_signal)
655 tuner_info("Signal strength: %d\n",
656 analog_ops->has_signal(fe));
657 if (analog_ops->is_stereo)
658 tuner_info("Stereo: %s\n",
659 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200660}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662/* ---------------------------------------------------------------------- */
663
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700664/*
665 * Switch tuner to other mode. If tuner support both tv and radio,
666 * set another frequency to some value (This is needed for some pal
667 * tuners to avoid locking). Otherwise, just put second tuner in
668 * standby mode.
669 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700671static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
672{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300673 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300674
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800675 if (mode == t->mode)
676 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700677
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800678 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700679
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800680 if (check_mode(t, cmd) == EINVAL) {
681 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300682 if (analog_ops->standby)
683 analog_ops->standby(&t->fe);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800684 return EINVAL;
685 }
686 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700687}
688
689#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800690 tuner_dbg("switching to v4l2\n"); \
691 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700692
693static inline int check_v4l2(struct tuner *t)
694{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300695 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
696 TV, v4l1 for radio), until that is fixed this code is disabled.
697 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
698 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700699 return 0;
700}
701
702static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkye18f9442007-08-21 01:25:48 -0300705 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300706 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Hans Verkuilf9195de2006-01-11 19:01:01 -0200708 if (tuner_debug>1)
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300709 v4l_i2c_print_ioctl(client,cmd);
Michael Krufky5e453dc2006-01-09 15:32:31 -0200710
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700711 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700713 case TUNER_SET_TYPE_ADDR:
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300714 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 -0700715 ((struct tuner_setup *)arg)->type,
716 ((struct tuner_setup *)arg)->addr,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300717 ((struct tuner_setup *)arg)->mode_mask,
718 ((struct tuner_setup *)arg)->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700719
720 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200723 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
724 == EINVAL)
725 return 0;
726 if (t->radio_freq)
727 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700729 case TUNER_SET_STANDBY:
Hans Verkuil27487d42006-01-15 15:04:52 -0200730 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
731 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300732 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300733 if (analog_ops->standby)
734 analog_ops->standby(&t->fe);
Hans Verkuil27487d42006-01-15 15:04:52 -0200735 break;
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300736#ifdef CONFIG_VIDEO_V4L1
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700737 case VIDIOCSAUDIO:
738 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
739 return 0;
740 if (check_v4l2(t) == EINVAL)
741 return 0;
742
743 /* Should be implemented, since bttv calls it */
744 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700745 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700747 {
748 static const v4l2_std_id map[] = {
749 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
750 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
751 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
752 [4 /* bttv */ ] = V4L2_STD_PAL_M,
753 [5 /* bttv */ ] = V4L2_STD_PAL_N,
754 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
755 };
756 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700758 if (check_v4l2(t) == EINVAL)
759 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700760
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700761 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700764 if (vc->norm < ARRAY_SIZE(map))
765 t->std = map[vc->norm];
766 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200767 if (t->tv_freq)
768 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700769 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700770 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700771 case VIDIOCSFREQ:
772 {
773 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700774
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700775 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
776 return 0;
777 if (check_v4l2(t) == EINVAL)
778 return 0;
779
780 set_freq(client, *v);
781 return 0;
782 }
783 case VIDIOCGTUNER:
784 {
785 struct video_tuner *vt = arg;
786
787 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
788 return 0;
789 if (check_v4l2(t) == EINVAL)
790 return 0;
791
792 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300793 if (fe_tuner_ops->get_status) {
794 u32 tuner_status;
795
796 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300797 if (tuner_status & TUNER_STATUS_STEREO)
798 vt->flags |= VIDEO_TUNER_STEREO_ON;
799 else
800 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300801 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300802 if (analog_ops->is_stereo) {
803 if (analog_ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300804 vt->flags |=
805 VIDEO_TUNER_STEREO_ON;
806 else
807 vt->flags &=
808 ~VIDEO_TUNER_STEREO_ON;
809 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700810 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300811 if (analog_ops->has_signal)
812 vt->signal =
813 analog_ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300814
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700815 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
816
817 vt->rangelow = radio_range[0] * 16000;
818 vt->rangehigh = radio_range[1] * 16000;
819
820 } else {
821 vt->rangelow = tv_range[0] * 16;
822 vt->rangehigh = tv_range[1] * 16;
823 }
824
825 return 0;
826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700828 {
829 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700831 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
832 return 0;
833 if (check_v4l2(t) == EINVAL)
834 return 0;
835
Michael Krufkye18f9442007-08-21 01:25:48 -0300836 if (V4L2_TUNER_RADIO == t->mode) {
837 if (fe_tuner_ops->get_status) {
838 u32 tuner_status;
839
840 fe_tuner_ops->get_status(&t->fe, &tuner_status);
841 va->mode = (tuner_status & TUNER_STATUS_STEREO)
842 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300843 } else if (analog_ops->is_stereo)
844 va->mode = analog_ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300845 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
846 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700847 return 0;
848 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300849#endif
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300850 case TUNER_SET_CONFIG:
851 {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300852 struct v4l2_priv_tun_config *cfg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300854 if (t->type != cfg->tuner)
855 break;
856
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300857 if (analog_ops->set_config) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300858 tuner_warn("Tuner frontend module has no way to "
859 "set config\n");
860 break;
861 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300862
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300863 analog_ops->set_config(&t->fe, cfg->priv);
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300864 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300865 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300866 /* --- v4l ioctls --- */
867 /* take care: bttv does userspace copying, we'll get a
868 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700870 {
871 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700873 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
874 == EINVAL)
875 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700876
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700877 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700879 t->std = *id;
880 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200881 if (t->tv_freq)
882 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700883 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700884 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700885 case VIDIOC_S_FREQUENCY:
886 {
887 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700888
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300889 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
890 == EINVAL)
891 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700892 switch_v4l2();
Hans Verkuil27487d42006-01-15 15:04:52 -0200893 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700894
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700895 break;
896 }
897 case VIDIOC_G_FREQUENCY:
898 {
899 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700900
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700901 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
902 return 0;
903 switch_v4l2();
904 f->type = t->mode;
Michael Krufkye18f9442007-08-21 01:25:48 -0300905 if (fe_tuner_ops->get_frequency) {
906 u32 abs_freq;
907
908 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
909 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
910 (abs_freq * 2 + 125/2) / 125 :
911 (abs_freq + 62500/2) / 62500;
912 break;
913 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200914 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
915 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700916 break;
917 }
918 case VIDIOC_G_TUNER:
919 {
920 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700921
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700922 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
923 return 0;
924 switch_v4l2();
925
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200926 tuner->type = t->mode;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300927 if (analog_ops->get_afc)
928 tuner->afc = analog_ops->get_afc(&t->fe);
Hans Verkuilab4cecf2006-04-01 16:40:21 -0300929 if (t->mode == V4L2_TUNER_ANALOG_TV)
930 tuner->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200931 if (t->mode != V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700932 tuner->rangelow = tv_range[0] * 16;
933 tuner->rangehigh = tv_range[1] * 16;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200934 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700935 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200936
937 /* radio mode */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200938 tuner->rxsubchans =
939 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300940 if (fe_tuner_ops->get_status) {
941 u32 tuner_status;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200942
Michael Krufkye18f9442007-08-21 01:25:48 -0300943 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300944 tuner->rxsubchans =
945 (tuner_status & TUNER_STATUS_STEREO) ?
946 V4L2_TUNER_SUB_STEREO :
947 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300948 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300949 if (analog_ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -0300950 tuner->rxsubchans =
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300951 analog_ops->is_stereo(&t->fe) ?
Michael Krufky4e9154b2007-10-21 19:39:50 -0300952 V4L2_TUNER_SUB_STEREO :
953 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300954 }
Michael Krufkye18f9442007-08-21 01:25:48 -0300955 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300956 if (analog_ops->has_signal)
957 tuner->signal = analog_ops->has_signal(&t->fe);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200958 tuner->capability |=
959 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
960 tuner->audmode = t->audmode;
961 tuner->rangelow = radio_range[0] * 16000;
962 tuner->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700963 break;
964 }
965 case VIDIOC_S_TUNER:
966 {
967 struct v4l2_tuner *tuner = arg;
968
969 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
970 return 0;
971
972 switch_v4l2();
973
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200974 /* do nothing unless we're a radio tuner */
975 if (t->mode != V4L2_TUNER_RADIO)
976 break;
977 t->audmode = tuner->audmode;
978 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700979 break;
980 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200981 case VIDIOC_LOG_STATUS:
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300982 if (analog_ops->tuner_status)
983 analog_ops->tuner_status(&t->fe);
Hans Verkuilcd43c3f2006-01-09 15:25:15 -0200984 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986
987 return 0;
988}
989
Jean Delvare21b48a72007-03-12 19:20:15 -0300990static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300992 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300994 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 /* FIXME: power down ??? */
996 return 0;
997}
998
Jean Delvare21b48a72007-03-12 19:20:15 -0300999static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001001 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001003 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -02001004 if (V4L2_TUNER_RADIO == t->mode) {
1005 if (t->radio_freq)
1006 set_freq(c, t->radio_freq);
1007 } else {
1008 if (t->tv_freq)
1009 set_freq(c, t->tv_freq);
1010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return 0;
1012}
1013
Hans Verkuil92de1f12007-11-04 10:53:09 -03001014/* ---------------------------------------------------------------------- */
1015
1016LIST_HEAD(tuner_list);
1017
1018/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001019 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -03001020 certain no other devices will be added/deleted at the same time, I2C
1021 core protects against that. */
1022static void tuner_lookup(struct i2c_adapter *adap,
1023 struct tuner **radio, struct tuner **tv)
1024{
1025 struct tuner *pos;
1026
1027 *radio = NULL;
1028 *tv = NULL;
1029
1030 list_for_each_entry(pos, &tuner_list, list) {
1031 int mode_mask;
1032
1033 if (pos->i2c->adapter != adap ||
1034 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1035 continue;
1036
1037 mode_mask = pos->mode_mask & ~T_STANDBY;
1038 if (*radio == NULL && mode_mask == T_RADIO)
1039 *radio = pos;
1040 /* Note: currently TDA9887 is the only demod-only
1041 device. If other devices appear then we need to
1042 make this test more general. */
1043 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1044 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1045 *tv = pos;
1046 }
1047}
1048
1049/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001050 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001051 */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001052static int tuner_probe(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001053{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001054 struct tuner *t;
1055 struct tuner *radio;
1056 struct tuner *tv;
1057
Hans Verkuil92de1f12007-11-04 10:53:09 -03001058 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001059 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001060 return -ENOMEM;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001061 t->i2c = client;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001062 strlcpy(client->name, "(tuner unset)", sizeof(client->name));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001063 i2c_set_clientdata(client, t);
1064 t->type = UNSET;
1065 t->audmode = V4L2_TUNER_MODE_STEREO;
1066 t->mode_mask = T_UNINITIALIZED;
1067
1068 if (show_i2c) {
1069 unsigned char buffer[16];
1070 int i, rc;
1071
1072 memset(buffer, 0, sizeof(buffer));
1073 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1074 tuner_info("I2C RECV = ");
1075 for (i = 0; i < rc; i++)
1076 printk(KERN_CONT "%02x ", buffer[i]);
1077 printk("\n");
1078 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001079 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001080 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001081 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1082 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001083 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001084 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001085
1086 /* autodetection code based on the i2c addr */
1087 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001088 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001089 case 0x10:
1090 if (tea5761_autodetection(t->i2c->adapter, t->i2c->addr)
1091 != EINVAL) {
1092 t->type = TUNER_TEA5761;
1093 t->mode_mask = T_RADIO;
1094 t->mode = T_STANDBY;
1095 /* Sets freq to FM range */
1096 t->radio_freq = 87.5 * 16000;
1097 tuner_lookup(t->i2c->adapter, &radio, &tv);
1098 if (tv)
1099 tv->mode_mask &= ~T_RADIO;
1100
1101 goto register_client;
1102 }
1103 break;
1104 case 0x42:
1105 case 0x43:
1106 case 0x4a:
1107 case 0x4b:
1108 /* If chip is not tda8290, don't register.
1109 since it can be tda9887*/
Michael Krufkyab166052007-12-09 02:26:48 -03001110 if (tda829x_probe(t->i2c->adapter,
1111 t->i2c->addr) == 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001112 tuner_dbg("tda829x detected\n");
1113 } else {
1114 /* Default is being tda9887 */
1115 t->type = TUNER_TDA9887;
1116 t->mode_mask = T_RADIO | T_ANALOG_TV |
1117 T_DIGITAL_TV;
1118 t->mode = T_STANDBY;
1119 goto register_client;
1120 }
1121 break;
1122 case 0x60:
1123 if (tea5767_autodetection(t->i2c->adapter, t->i2c->addr)
1124 != EINVAL) {
1125 t->type = TUNER_TEA5767;
1126 t->mode_mask = T_RADIO;
1127 t->mode = T_STANDBY;
1128 /* Sets freq to FM range */
1129 t->radio_freq = 87.5 * 16000;
1130 tuner_lookup(t->i2c->adapter, &radio, &tv);
1131 if (tv)
1132 tv->mode_mask &= ~T_RADIO;
1133
1134 goto register_client;
1135 }
1136 break;
1137 }
1138 }
1139
1140 /* Initializes only the first TV tuner on this adapter. Why only the
1141 first? Because there are some devices (notably the ones with TI
1142 tuners) that have more than one i2c address for the *same* device.
1143 Experience shows that, except for just one case, the first
1144 address is the right one. The exception is a Russian tuner
1145 (ACORP_Y878F). So, the desired behavior is just to enable the
1146 first found TV tuner. */
1147 tuner_lookup(t->i2c->adapter, &radio, &tv);
1148 if (tv == NULL) {
1149 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1150 if (radio == NULL)
1151 t->mode_mask |= T_RADIO;
1152 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1153 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1154 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1155 }
1156
1157 /* Should be just before return */
1158register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001159 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1160 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001161
1162 /* Sets a default mode */
1163 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001164 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001165 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001166 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001167 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001168 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001169 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001170 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001171 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001172 return 0;
1173}
1174
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001175static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001176{
1177 if (0 != addr) {
1178 normal_i2c[0] = addr;
1179 normal_i2c[1] = I2C_CLIENT_END;
1180 }
1181
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001182 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1183 return 0;
1184
Hans Verkuil92de1f12007-11-04 10:53:09 -03001185 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1186 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1187 * and an RTC at 0x6f which can get corrupted if probed.
1188 */
1189 if ((adap->id == I2C_HW_B_CX2388x) ||
1190 (adap->id == I2C_HW_B_CX23885)) {
1191 unsigned int i = 0;
1192
1193 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1194 i += 2;
1195 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1196 ignore[i+0] = adap->nr;
1197 ignore[i+1] = 0x6b;
1198 ignore[i+2] = adap->nr;
1199 ignore[i+3] = 0x6f;
1200 ignore[i+4] = I2C_CLIENT_END;
1201 } else
1202 printk(KERN_WARNING "tuner: "
1203 "too many options specified "
1204 "in i2c probe ignore list!\n");
1205 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001206 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001207}
1208
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001209static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001210{
1211 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001212 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001213
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001214 if (analog_ops->release)
1215 analog_ops->release(&t->fe);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001216
1217 list_del(&t->list);
1218 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001219 return 0;
1220}
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222/* ----------------------------------------------------------------------- */
1223
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001224static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1225 .name = "tuner",
1226 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001227 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001228 .probe = tuner_probe,
1229 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001230 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001231 .resume = tuner_resume,
1232 .legacy_probe = tuner_legacy_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233};
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236/*
1237 * Overrides for Emacs so that we follow Linus's tabbing style.
1238 * ---------------------------------------------------------------------------
1239 * Local variables:
1240 * c-basic-offset: 8
1241 * End:
1242 */