blob: 39c7b9b835a3ab2cce776ef52061f5a5b3be11b9 [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 Verkuil35ea11f2008-07-20 08:12:02 -030022#include <media/v4l2-ioctl.h>
Hans Verkuil9dd659d2007-11-04 11:03:36 -030023#include <media/v4l2-i2c-drv-legacy.h>
Michael Krufky96c0b7c2007-08-27 21:23:08 -030024#include "mt20xx.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030025#include "tda8290.h"
Michael Krufky7ab10bf2007-08-27 21:23:40 -030026#include "tea5761.h"
Michael Krufky8d0936e2007-08-27 21:24:27 -030027#include "tea5767.h"
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030028#include "tuner-xc2028.h"
Michael Krufky4adad282007-08-27 21:59:08 -030029#include "tuner-simple.h"
Michael Krufky31c95842007-10-21 20:48:48 -030030#include "tda9887.h"
Steven Toth27c685a2008-01-05 16:50:14 -030031#include "xc5000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#define UNSET (-1U)
34
Hans Verkuil9dd659d2007-11-04 11:03:36 -030035#define PREFIX t->i2c->driver->driver.name
Michael Krufky241020d2007-10-30 09:46:10 -030036
Michael Krufkya07c8772008-04-29 03:54:19 -030037/** This macro allows us to probe dynamically, avoiding static links */
Mauro Carvalho Chehabff138172008-04-29 23:02:33 -030038#ifdef CONFIG_MEDIA_ATTACH
Michael Krufkya07c8772008-04-29 03:54:19 -030039#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
40 int __r = -EINVAL; \
41 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
42 if (__a) { \
43 __r = (int) __a(ARGS); \
Andrew Mortona1355e52008-04-30 11:40:17 -030044 symbol_put(FUNCTION); \
Michael Krufkya07c8772008-04-29 03:54:19 -030045 } else { \
46 printk(KERN_ERR "TUNER: Unable to find " \
47 "symbol "#FUNCTION"()\n"); \
48 } \
Michael Krufkya07c8772008-04-29 03:54:19 -030049 __r; \
50})
51
52static void tuner_detach(struct dvb_frontend *fe)
53{
54 if (fe->ops.tuner_ops.release) {
55 fe->ops.tuner_ops.release(fe);
56 symbol_put_addr(fe->ops.tuner_ops.release);
57 }
58 if (fe->ops.analog_ops.release) {
59 fe->ops.analog_ops.release(fe);
60 symbol_put_addr(fe->ops.analog_ops.release);
61 }
62}
63#else
64#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
65 FUNCTION(ARGS); \
66})
67
68static void tuner_detach(struct dvb_frontend *fe)
69{
70 if (fe->ops.tuner_ops.release)
71 fe->ops.tuner_ops.release(fe);
72 if (fe->ops.analog_ops.release)
73 fe->ops.analog_ops.release(fe);
74}
75#endif
76
Michael Krufkyf7f427e2007-12-16 22:02:26 -030077struct tuner {
78 /* device */
79 struct dvb_frontend fe;
80 struct i2c_client *i2c;
81 struct list_head list;
82 unsigned int using_v4l2:1;
83
84 /* keep track of the current settings */
85 v4l2_std_id std;
86 unsigned int tv_freq;
87 unsigned int radio_freq;
88 unsigned int audmode;
89
90 unsigned int mode;
91 unsigned int mode_mask; /* Combination of allowable modes */
92
93 unsigned int type; /* chip type id */
94 unsigned int config;
95 int (*tuner_callback) (void *dev, int command, int arg);
Michael Krufky7271e602008-05-26 16:08:40 +020096 const char *name;
Michael Krufkyf7f427e2007-12-16 22:02:26 -030097};
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* standard i2c insmod options */
100static unsigned short normal_i2c[] = {
Mauro Carvalho Chehab149ef722008-04-29 21:38:46 -0300101#if defined(CONFIG_MEDIA_TUNER_TEA5761) || (defined(CONFIG_MEDIA_TUNER_TEA5761_MODULE) && defined(MODULE))
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300102 0x10,
103#endif
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800104 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -0700105 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
106 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 I2C_CLIENT_END
108};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110I2C_CLIENT_INSMOD;
111
112/* insmod options used at init time => read/only */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300113static unsigned int addr;
114static unsigned int no_autodetect;
115static unsigned int show_i2c;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/* insmod options used at runtime => read/write */
Michael Krufkyab166052007-12-09 02:26:48 -0300118static int tuner_debug;
119
120#define tuner_warn(fmt, arg...) do { \
121 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
122 i2c_adapter_id(t->i2c->adapter), \
123 t->i2c->addr, ##arg); \
124 } while (0)
125
126#define tuner_info(fmt, arg...) do { \
127 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
128 i2c_adapter_id(t->i2c->adapter), \
129 t->i2c->addr, ##arg); \
130 } while (0)
131
132#define tuner_err(fmt, arg...) do { \
133 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
134 i2c_adapter_id(t->i2c->adapter), \
135 t->i2c->addr, ##arg); \
136 } while (0)
137
138#define tuner_dbg(fmt, arg...) do { \
139 if (tuner_debug) \
140 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
141 i2c_adapter_id(t->i2c->adapter), \
142 t->i2c->addr, ##arg); \
143 } while (0)
144
145/* ------------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700147static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static unsigned int radio_range[2] = { 65, 108 };
149
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200150static char pal[] = "--";
151static char secam[] = "--";
152static char ntsc[] = "-";
153
Hans Verkuilf9195de2006-01-11 19:01:01 -0200154
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200155module_param(addr, int, 0444);
156module_param(no_autodetect, int, 0444);
157module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -0200158module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200159module_param_string(pal, pal, sizeof(pal), 0644);
160module_param_string(secam, secam, sizeof(secam), 0644);
161module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700162module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163module_param_array(radio_range, int, NULL, 0644);
164
165MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
166MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
167MODULE_LICENSE("GPL");
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/* ---------------------------------------------------------------------- */
170
Michael Krufkyc7919d52007-12-08 17:06:30 -0300171static void fe_set_params(struct dvb_frontend *fe,
172 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300173{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300174 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
175 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300176
Michael Krufkye18f9442007-08-21 01:25:48 -0300177 if (NULL == fe_tuner_ops->set_analog_params) {
178 tuner_warn("Tuner frontend module has no way to set freq\n");
179 return;
180 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300181 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300182}
183
Michael Krufky4e9154b2007-10-21 19:39:50 -0300184static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300185{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300186 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300187
188 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300189 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300190}
191
Michael Krufky4e9154b2007-10-21 19:39:50 -0300192static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300193{
Michael Krufky14196832007-10-14 18:11:53 -0300194 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300195
Michael Krufky4e9154b2007-10-21 19:39:50 -0300196 if (fe->ops.tuner_ops.get_rf_strength)
197 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300198
199 return strength;
200}
201
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300202static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
203{
204 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
205 struct tuner *t = fe->analog_demod_priv;
206
207 if (fe_tuner_ops->set_config)
208 return fe_tuner_ops->set_config(fe, priv_cfg);
209
210 tuner_warn("Tuner frontend module has no way to set config\n");
211
212 return 0;
213}
214
Michael Krufky4e9154b2007-10-21 19:39:50 -0300215static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300216
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300217static struct analog_demod_ops tuner_core_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300218 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300219 .standby = fe_standby,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300220 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300221 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300222 .tuner_status = tuner_status
223};
224
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700225/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static void set_tv_freq(struct i2c_client *c, unsigned int freq)
227{
228 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300229 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Michael Krufkyc7919d52007-12-08 17:06:30 -0300231 struct analog_parameters params = {
232 .mode = t->mode,
233 .audmode = t->audmode,
234 .std = t->std
235 };
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700238 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return;
240 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300241 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700242 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return;
244 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700245 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
246 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
247 freq / 16, freq % 16 * 100 / 16, tv_range[0],
248 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200249 /* V4L2 spec: if the freq is not possible then the closest
250 possible value should be selected */
251 if (freq < tv_range[0] * 16)
252 freq = tv_range[0] * 16;
253 else
254 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300256 params.frequency = freq;
257
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300258 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static void set_radio_freq(struct i2c_client *c, unsigned int freq)
262{
263 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300264 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Michael Krufkyc7919d52007-12-08 17:06:30 -0300266 struct analog_parameters params = {
267 .mode = t->mode,
268 .audmode = t->audmode,
269 .std = t->std
270 };
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700273 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return;
275 }
Mauro Carvalho Chehabe545d6e2008-01-05 16:37:04 -0300276 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700277 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return;
279 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200280 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700281 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
282 freq / 16000, freq % 16000 * 100 / 16000,
283 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200284 /* V4L2 spec: if the freq is not possible then the closest
285 possible value should be selected */
286 if (freq < radio_range[0] * 16000)
287 freq = radio_range[0] * 16000;
288 else
289 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300291 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700292
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300293 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296static void set_freq(struct i2c_client *c, unsigned long freq)
297{
298 struct tuner *t = i2c_get_clientdata(c);
299
300 switch (t->mode) {
301 case V4L2_TUNER_RADIO:
302 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700303 freq / 16000, freq % 16000 * 100 / 16000);
304 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200305 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 break;
307 case V4L2_TUNER_ANALOG_TV:
308 case V4L2_TUNER_DIGITAL_TV:
309 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700310 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200312 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300314 default:
315 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Michael Krufky293197c2007-08-28 17:20:42 -0300319static void tuner_i2c_address_check(struct tuner *t)
320{
321 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300322 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
Michael Krufky293197c2007-08-28 17:20:42 -0300323 return;
324
Michael Krufky16410022008-01-21 12:01:34 -0300325 /* We already know that the XC5000 can only be located at
326 * i2c address 0x61, 0x62, 0x63 or 0x64 */
327 if ((t->type == TUNER_XC5000) &&
328 ((t->i2c->addr <= 0x64)) && (t->i2c->addr >= 0x61))
329 return;
330
Michael Krufky293197c2007-08-28 17:20:42 -0300331 tuner_warn("====================== WARNING! ======================\n");
332 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
333 tuner_warn("will soon be dropped. This message indicates that your\n");
334 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Michael Krufky7271e602008-05-26 16:08:40 +0200335 t->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300336 tuner_warn("To ensure continued support for your device, please\n");
337 tuner_warn("send a copy of this message, along with full dmesg\n");
338 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
339 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
340 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Michael Krufky7271e602008-05-26 16:08:40 +0200341 t->i2c->adapter->name, t->i2c->addr, t->type, t->name);
Michael Krufky293197c2007-08-28 17:20:42 -0300342 tuner_warn("====================== WARNING! ======================\n");
343}
344
Steven Toth27c685a2008-01-05 16:50:14 -0300345static struct xc5000_config xc5000_cfg;
346
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700347static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300348 unsigned int new_mode_mask, unsigned int new_config,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300349 int (*tuner_callback) (void *dev, int command,int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct tuner *t = i2c_get_clientdata(c);
Michael Krufkye18f9442007-08-21 01:25:48 -0300352 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300353 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700354 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700356 if (type == UNSET || type == TUNER_ABSENT) {
357 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return;
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 t->type = type;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300362 t->config = new_config;
363 if (tuner_callback != NULL) {
364 tuner_dbg("defining GPIO callback\n");
365 t->tuner_callback = tuner_callback;
366 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300367
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300368 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300369 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
370
371 return;
372 }
373
Michael Krufkyb2083192007-05-29 22:54:06 -0300374 /* discard private data, in case set_type() was previously called */
Michael Krufkya07c8772008-04-29 03:54:19 -0300375 tuner_detach(&t->fe);
376 t->fe.analog_demod_priv = NULL;
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 switch (t->type) {
379 case TUNER_MT2032:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300380 if (!dvb_attach(microtune_attach,
381 &t->fe, t->i2c->adapter, t->i2c->addr))
382 goto attach_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 break;
384 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300385 {
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300386 struct tda829x_config cfg = {
387 .lna_cfg = t->config,
388 .tuner_callback = t->tuner_callback,
389 };
390 if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter,
391 t->i2c->addr, &cfg))
392 goto attach_failed;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300393 break;
394 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700395 case TUNER_TEA5767:
Michael Krufkya07c8772008-04-29 03:54:19 -0300396 if (!dvb_attach(tea5767_attach, &t->fe,
397 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300398 goto attach_failed;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700399 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700400 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300401 case TUNER_TEA5761:
Michael Krufkya07c8772008-04-29 03:54:19 -0300402 if (!dvb_attach(tea5761_attach, &t->fe,
403 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300404 goto attach_failed;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300405 t->mode_mask = T_RADIO;
406 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700407 case TUNER_PHILIPS_FMD1216ME_MK3:
408 buffer[0] = 0x0b;
409 buffer[1] = 0xdc;
410 buffer[2] = 0x9c;
411 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700412 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700413 mdelay(1);
414 buffer[2] = 0x86;
415 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700416 i2c_master_send(c, buffer, 4);
Michael Krufkya07c8772008-04-29 03:54:19 -0300417 if (!dvb_attach(simple_tuner_attach, &t->fe,
418 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300419 goto attach_failed;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700420 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800421 case TUNER_PHILIPS_TD1316:
422 buffer[0] = 0x0b;
423 buffer[1] = 0xdc;
424 buffer[2] = 0x86;
425 buffer[3] = 0xa4;
Michael Krufkya07c8772008-04-29 03:54:19 -0300426 i2c_master_send(c, buffer, 4);
427 if (!dvb_attach(simple_tuner_attach, &t->fe,
428 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300429 goto attach_failed;
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200430 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300431 case TUNER_XC2028:
432 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300433 struct xc2028_config cfg = {
434 .i2c_adap = t->i2c->adapter,
435 .i2c_addr = t->i2c->addr,
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300436 .callback = t->tuner_callback,
437 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300438 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300439 goto attach_failed;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300440 break;
441 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300442 case TUNER_TDA9887:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300443 if (!dvb_attach(tda9887_attach,
444 &t->fe, t->i2c->adapter, t->i2c->addr))
445 goto attach_failed;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300446 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300447 case TUNER_XC5000:
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300448 {
449 struct dvb_tuner_ops *xc_tuner_ops;
450
Steven Toth27c685a2008-01-05 16:50:14 -0300451 xc5000_cfg.i2c_address = t->i2c->addr;
452 xc5000_cfg.if_khz = 5380;
Steven Toth27c685a2008-01-05 16:50:14 -0300453 xc5000_cfg.tuner_callback = t->tuner_callback;
Michael Krufkya07c8772008-04-29 03:54:19 -0300454 if (!dvb_attach(xc5000_attach,
Michael Krufky30650962008-09-06 14:56:58 -0300455 &t->fe, t->i2c->adapter, &xc5000_cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300456 goto attach_failed;
457
Steven Toth27c685a2008-01-05 16:50:14 -0300458 xc_tuner_ops = &t->fe.ops.tuner_ops;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300459 if (xc_tuner_ops->init)
Steven Toth27c685a2008-01-05 16:50:14 -0300460 xc_tuner_ops->init(&t->fe);
Steven Toth27c685a2008-01-05 16:50:14 -0300461 break;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 default:
Michael Krufkya07c8772008-04-29 03:54:19 -0300464 if (!dvb_attach(simple_tuner_attach, &t->fe,
465 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300466 goto attach_failed;
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 break;
469 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700470
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300471 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300472 (fe_tuner_ops->set_analog_params)) {
Michael Krufkya07c8772008-04-29 03:54:19 -0300473
Michael Krufky7271e602008-05-26 16:08:40 +0200474 t->name = fe_tuner_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300475
Michael Krufky4e9154b2007-10-21 19:39:50 -0300476 t->fe.analog_demod_priv = t;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300477 memcpy(analog_ops, &tuner_core_ops,
478 sizeof(struct analog_demod_ops));
Michael Krufkya07c8772008-04-29 03:54:19 -0300479
Michael Krufkya55db8c2007-12-09 13:52:51 -0300480 } else {
Michael Krufky7271e602008-05-26 16:08:40 +0200481 t->name = analog_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300482 }
483
Michael Krufky7271e602008-05-26 16:08:40 +0200484 tuner_dbg("type set to %s\n", t->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300485
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700486 if (t->mode_mask == T_UNINITIALIZED)
487 t->mode_mask = new_mode_mask;
488
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300489 /* xc2028/3028 and xc5000 requires a firmware to be set-up later
490 trying to set a frequency here will just fail
491 FIXME: better to move set_freq to the tuner code. This is needed
492 on analog tuners for PLL to properly work
493 */
494 if (t->type != TUNER_XC2028 && t->type != TUNER_XC5000)
495 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ?
496 t->radio_freq : t->tv_freq);
497
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700498 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100499 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700500 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300501 tuner_i2c_address_check(t);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300502 return;
503
504attach_failed:
505 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
506 t->type = TUNER_ABSENT;
507 t->mode_mask = T_UNINITIALIZED;
508
509 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700512/*
513 * This function apply tuner config to tuner specified
514 * by tun_setup structure. I addr is unset, then admin status
515 * and tun addr status is more precise then current status,
516 * it's applied. Otherwise status and type are applied only to
517 * tuner with exactly the same addr.
518*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700519
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700520static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700521{
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700522 struct tuner *t = i2c_get_clientdata(c);
523
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300524 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
525 (t->mode_mask & tun_setup->mode_mask))) ||
526 (tun_setup->addr == c->addr)) {
527 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300528 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300529 } else
530 tuner_dbg("set addr discarded for type %i, mask %x. "
531 "Asked to change tuner at addr 0x%02x, with mask %x\n",
532 t->type, t->mode_mask,
533 tun_setup->addr, tun_setup->mode_mask);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700534}
535
536static inline int check_mode(struct tuner *t, char *cmd)
537{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700538 if ((1 << t->mode & t->mode_mask) == 0) {
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300539 return -EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700540 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700541
542 switch (t->mode) {
543 case V4L2_TUNER_RADIO:
544 tuner_dbg("Cmd %s accepted for radio\n", cmd);
545 break;
546 case V4L2_TUNER_ANALOG_TV:
547 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
548 break;
549 case V4L2_TUNER_DIGITAL_TV:
550 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
551 break;
552 }
553 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700554}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700555
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700556/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557static int tuner_fixup_std(struct tuner *t)
558{
559 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300561 case '6':
562 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
563 t->std = V4L2_STD_PAL_60;
564 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 case 'b':
566 case 'B':
567 case 'g':
568 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700569 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 t->std = V4L2_STD_PAL_BG;
571 break;
572 case 'i':
573 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700574 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 t->std = V4L2_STD_PAL_I;
576 break;
577 case 'd':
578 case 'D':
579 case 'k':
580 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700581 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 t->std = V4L2_STD_PAL_DK;
583 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700584 case 'M':
585 case 'm':
586 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
587 t->std = V4L2_STD_PAL_M;
588 break;
589 case 'N':
590 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200591 if (pal[1] == 'c' || pal[1] == 'C') {
592 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
593 t->std = V4L2_STD_PAL_Nc;
594 } else {
595 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
596 t->std = V4L2_STD_PAL_N;
597 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700598 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700599 case '-':
600 /* default parameter, do nothing */
601 break;
602 default:
603 tuner_warn ("pal= argument not recognised\n");
604 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700607 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
608 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200609 case 'b':
610 case 'B':
611 case 'g':
612 case 'G':
613 case 'h':
614 case 'H':
615 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
616 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
617 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700618 case 'd':
619 case 'D':
620 case 'k':
621 case 'K':
622 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
623 t->std = V4L2_STD_SECAM_DK;
624 break;
625 case 'l':
626 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800627 if ((secam[1]=='C')||(secam[1]=='c')) {
628 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
629 t->std = V4L2_STD_SECAM_LC;
630 } else {
631 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
632 t->std = V4L2_STD_SECAM_L;
633 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700634 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700635 case '-':
636 /* default parameter, do nothing */
637 break;
638 default:
639 tuner_warn ("secam= argument not recognised\n");
640 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700641 }
642 }
643
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200644 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
645 switch (ntsc[0]) {
646 case 'm':
647 case 'M':
648 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
649 t->std = V4L2_STD_NTSC_M;
650 break;
651 case 'j':
652 case 'J':
653 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
654 t->std = V4L2_STD_NTSC_M_JP;
655 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200656 case 'k':
657 case 'K':
658 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
659 t->std = V4L2_STD_NTSC_M_KR;
660 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200661 case '-':
662 /* default parameter, do nothing */
663 break;
664 default:
665 tuner_info("ntsc= argument not recognised\n");
666 break;
667 }
668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 0;
670}
671
Michael Krufky4e9154b2007-10-21 19:39:50 -0300672static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200673{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300674 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200675 unsigned long freq, freq_fraction;
Michael Krufkya07c8772008-04-29 03:54:19 -0300676 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
677 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200678 const char *p;
679
680 switch (t->mode) {
681 case V4L2_TUNER_RADIO: p = "radio"; break;
682 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
683 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
684 default: p = "undefined"; break;
685 }
686 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200687 freq = t->radio_freq / 16000;
688 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200689 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200690 freq = t->tv_freq / 16;
691 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200692 }
693 tuner_info("Tuner mode: %s\n", p);
694 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300695 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200696 if (t->mode != V4L2_TUNER_RADIO)
697 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300698 if (fe_tuner_ops->get_status) {
699 u32 tuner_status;
700
701 fe_tuner_ops->get_status(&t->fe, &tuner_status);
702 if (tuner_status & TUNER_STATUS_LOCKED)
703 tuner_info("Tuner is locked.\n");
704 if (tuner_status & TUNER_STATUS_STEREO)
705 tuner_info("Stereo: yes\n");
706 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300707 if (analog_ops->has_signal)
708 tuner_info("Signal strength: %d\n",
709 analog_ops->has_signal(fe));
710 if (analog_ops->is_stereo)
711 tuner_info("Stereo: %s\n",
712 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200713}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715/* ---------------------------------------------------------------------- */
716
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700717/*
718 * Switch tuner to other mode. If tuner support both tv and radio,
719 * set another frequency to some value (This is needed for some pal
720 * tuners to avoid locking). Otherwise, just put second tuner in
721 * standby mode.
722 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700724static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
725{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300726 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300727
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800728 if (mode == t->mode)
729 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700730
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800731 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700732
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300733 if (check_mode(t, cmd) == -EINVAL) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800734 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300735 if (analog_ops->standby)
736 analog_ops->standby(&t->fe);
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300737 return -EINVAL;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800738 }
739 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700740}
741
742#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800743 tuner_dbg("switching to v4l2\n"); \
744 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700745
746static inline int check_v4l2(struct tuner *t)
747{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300748 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
749 TV, v4l1 for radio), until that is fixed this code is disabled.
750 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
751 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700752 return 0;
753}
754
755static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 struct tuner *t = i2c_get_clientdata(client);
Michael Krufkye18f9442007-08-21 01:25:48 -0300758 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300759 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Mauro Carvalho Chehab397be5c2008-04-26 14:04:10 -0300761 if (tuner_debug > 1) {
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300762 v4l_i2c_print_ioctl(client,cmd);
Mauro Carvalho Chehab397be5c2008-04-26 14:04:10 -0300763 printk("\n");
764 }
Michael Krufky5e453dc2006-01-09 15:32:31 -0200765
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700766 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /* --- configuration --- */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700768 case TUNER_SET_TYPE_ADDR:
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300769 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 -0700770 ((struct tuner_setup *)arg)->type,
771 ((struct tuner_setup *)arg)->addr,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300772 ((struct tuner_setup *)arg)->mode_mask,
773 ((struct tuner_setup *)arg)->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700774
775 set_addr(client, (struct tuner_setup *)arg);
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700776 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 case AUDC_SET_RADIO:
Hans Verkuil27487d42006-01-15 15:04:52 -0200778 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300779 == -EINVAL)
Hans Verkuil27487d42006-01-15 15:04:52 -0200780 return 0;
781 if (t->radio_freq)
782 set_freq(client, t->radio_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 break;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700784 case TUNER_SET_STANDBY:
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300785 if (check_mode(t, "TUNER_SET_STANDBY") == -EINVAL)
Hans Verkuil27487d42006-01-15 15:04:52 -0200786 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300787 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300788 if (analog_ops->standby)
789 analog_ops->standby(&t->fe);
Hans Verkuil27487d42006-01-15 15:04:52 -0200790 break;
Mauro Carvalho Chehab17de9a42008-04-15 18:11:50 -0300791#ifdef CONFIG_VIDEO_ALLOW_V4L1
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700792 case VIDIOCSAUDIO:
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300793 if (check_mode(t, "VIDIOCSAUDIO") == -EINVAL)
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700794 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300795 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700796 return 0;
797
798 /* Should be implemented, since bttv calls it */
799 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700800 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700802 {
803 static const v4l2_std_id map[] = {
804 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
805 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
806 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
807 [4 /* bttv */ ] = V4L2_STD_PAL_M,
808 [5 /* bttv */ ] = V4L2_STD_PAL_N,
809 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
810 };
811 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Marcin Slusarz427aad62008-05-11 19:58:59 -0300813 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700814 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700815
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300816 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==-EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700817 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700819 if (vc->norm < ARRAY_SIZE(map))
820 t->std = map[vc->norm];
821 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200822 if (t->tv_freq)
823 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700824 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700825 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700826 case VIDIOCSFREQ:
827 {
828 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700829
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300830 if (check_mode(t, "VIDIOCSFREQ") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700831 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300832 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700833 return 0;
834
835 set_freq(client, *v);
836 return 0;
837 }
838 case VIDIOCGTUNER:
839 {
840 struct video_tuner *vt = arg;
841
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300842 if (check_mode(t, "VIDIOCGTUNER") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700843 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300844 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700845 return 0;
846
847 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300848 if (fe_tuner_ops->get_status) {
849 u32 tuner_status;
850
851 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300852 if (tuner_status & TUNER_STATUS_STEREO)
853 vt->flags |= VIDEO_TUNER_STEREO_ON;
854 else
855 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300856 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300857 if (analog_ops->is_stereo) {
858 if (analog_ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300859 vt->flags |=
860 VIDEO_TUNER_STEREO_ON;
861 else
862 vt->flags &=
863 ~VIDEO_TUNER_STEREO_ON;
864 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700865 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300866 if (analog_ops->has_signal)
867 vt->signal =
868 analog_ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300869
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700870 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
871
872 vt->rangelow = radio_range[0] * 16000;
873 vt->rangehigh = radio_range[1] * 16000;
874
875 } else {
876 vt->rangelow = tv_range[0] * 16;
877 vt->rangehigh = tv_range[1] * 16;
878 }
879
880 return 0;
881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700883 {
884 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300886 if (check_mode(t, "VIDIOCGAUDIO") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700887 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300888 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700889 return 0;
890
Michael Krufkye18f9442007-08-21 01:25:48 -0300891 if (V4L2_TUNER_RADIO == t->mode) {
892 if (fe_tuner_ops->get_status) {
893 u32 tuner_status;
894
895 fe_tuner_ops->get_status(&t->fe, &tuner_status);
896 va->mode = (tuner_status & TUNER_STATUS_STEREO)
897 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300898 } else if (analog_ops->is_stereo)
899 va->mode = analog_ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300900 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
901 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700902 return 0;
903 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300904#endif
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300905 case TUNER_SET_CONFIG:
906 {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300907 struct v4l2_priv_tun_config *cfg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300909 if (t->type != cfg->tuner)
910 break;
911
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300912 if (analog_ops->set_config) {
Michael Krufky67d52e22007-12-24 16:05:39 -0300913 analog_ops->set_config(&t->fe, cfg->priv);
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300914 break;
915 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300916
Michael Krufky67d52e22007-12-24 16:05:39 -0300917 tuner_dbg("Tuner frontend module has no way to set config\n");
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300918 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300919 }
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300920 /* --- v4l ioctls --- */
921 /* take care: bttv does userspace copying, we'll get a
922 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 case VIDIOC_S_STD:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700924 {
925 v4l2_std_id *id = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700927 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300928 == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700929 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700930
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700931 switch_v4l2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700933 t->std = *id;
934 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200935 if (t->tv_freq)
936 set_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700937 break;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700938 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700939 case VIDIOC_S_FREQUENCY:
940 {
941 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700942
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300943 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300944 == -EINVAL)
Hans Verkuil4f725cb2006-06-24 09:47:56 -0300945 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700946 switch_v4l2();
Hans Verkuil27487d42006-01-15 15:04:52 -0200947 set_freq(client,f->frequency);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700948
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700949 break;
950 }
951 case VIDIOC_G_FREQUENCY:
952 {
953 struct v4l2_frequency *f = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700954
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300955 if (check_mode(t, "VIDIOC_G_FREQUENCY") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700956 return 0;
957 switch_v4l2();
958 f->type = t->mode;
Michael Krufkye18f9442007-08-21 01:25:48 -0300959 if (fe_tuner_ops->get_frequency) {
960 u32 abs_freq;
961
962 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
963 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
964 (abs_freq * 2 + 125/2) / 125 :
965 (abs_freq + 62500/2) / 62500;
966 break;
967 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200968 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
969 t->radio_freq : t->tv_freq;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700970 break;
971 }
972 case VIDIOC_G_TUNER:
973 {
974 struct v4l2_tuner *tuner = arg;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700975
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300976 if (check_mode(t, "VIDIOC_G_TUNER") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700977 return 0;
978 switch_v4l2();
979
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200980 tuner->type = t->mode;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300981 if (analog_ops->get_afc)
982 tuner->afc = analog_ops->get_afc(&t->fe);
Hans Verkuilab4cecf2006-04-01 16:40:21 -0300983 if (t->mode == V4L2_TUNER_ANALOG_TV)
984 tuner->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200985 if (t->mode != V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700986 tuner->rangelow = tv_range[0] * 16;
987 tuner->rangehigh = tv_range[1] * 16;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200988 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700989 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200990
991 /* radio mode */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200992 tuner->rxsubchans =
993 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Michael Krufkye18f9442007-08-21 01:25:48 -0300994 if (fe_tuner_ops->get_status) {
995 u32 tuner_status;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200996
Michael Krufkye18f9442007-08-21 01:25:48 -0300997 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300998 tuner->rxsubchans =
999 (tuner_status & TUNER_STATUS_STEREO) ?
1000 V4L2_TUNER_SUB_STEREO :
1001 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -03001002 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001003 if (analog_ops->is_stereo) {
Michael Krufky4e9154b2007-10-21 19:39:50 -03001004 tuner->rxsubchans =
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001005 analog_ops->is_stereo(&t->fe) ?
Michael Krufky4e9154b2007-10-21 19:39:50 -03001006 V4L2_TUNER_SUB_STEREO :
1007 V4L2_TUNER_SUB_MONO;
Michael Krufkye18f9442007-08-21 01:25:48 -03001008 }
Michael Krufkye18f9442007-08-21 01:25:48 -03001009 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001010 if (analog_ops->has_signal)
1011 tuner->signal = analog_ops->has_signal(&t->fe);
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001012 tuner->capability |=
1013 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
1014 tuner->audmode = t->audmode;
1015 tuner->rangelow = radio_range[0] * 16000;
1016 tuner->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001017 break;
1018 }
1019 case VIDIOC_S_TUNER:
1020 {
1021 struct v4l2_tuner *tuner = arg;
1022
Marcin Slusarz4d3437d2008-05-26 14:03:02 -03001023 if (check_mode(t, "VIDIOC_S_TUNER") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001024 return 0;
1025
1026 switch_v4l2();
1027
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001028 /* do nothing unless we're a radio tuner */
1029 if (t->mode != V4L2_TUNER_RADIO)
1030 break;
1031 t->audmode = tuner->audmode;
1032 set_radio_freq(client, t->radio_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001033 break;
1034 }
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001035 case VIDIOC_LOG_STATUS:
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001036 if (analog_ops->tuner_status)
1037 analog_ops->tuner_status(&t->fe);
Hans Verkuilcd43c3f2006-01-09 15:25:15 -02001038 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040
1041 return 0;
1042}
1043
Jean Delvare21b48a72007-03-12 19:20:15 -03001044static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001046 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001048 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /* FIXME: power down ??? */
1050 return 0;
1051}
1052
Jean Delvare21b48a72007-03-12 19:20:15 -03001053static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001055 struct tuner *t = i2c_get_clientdata(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001057 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -02001058 if (V4L2_TUNER_RADIO == t->mode) {
1059 if (t->radio_freq)
1060 set_freq(c, t->radio_freq);
1061 } else {
1062 if (t->tv_freq)
1063 set_freq(c, t->tv_freq);
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return 0;
1066}
1067
Hans Verkuil92de1f12007-11-04 10:53:09 -03001068/* ---------------------------------------------------------------------- */
1069
Adrian Bunkc52c4d02008-01-28 22:11:15 -03001070static LIST_HEAD(tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001071
1072/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001073 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -03001074 certain no other devices will be added/deleted at the same time, I2C
1075 core protects against that. */
1076static void tuner_lookup(struct i2c_adapter *adap,
1077 struct tuner **radio, struct tuner **tv)
1078{
1079 struct tuner *pos;
1080
1081 *radio = NULL;
1082 *tv = NULL;
1083
1084 list_for_each_entry(pos, &tuner_list, list) {
1085 int mode_mask;
1086
1087 if (pos->i2c->adapter != adap ||
1088 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1089 continue;
1090
1091 mode_mask = pos->mode_mask & ~T_STANDBY;
1092 if (*radio == NULL && mode_mask == T_RADIO)
1093 *radio = pos;
1094 /* Note: currently TDA9887 is the only demod-only
1095 device. If other devices appear then we need to
1096 make this test more general. */
1097 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1098 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1099 *tv = pos;
1100 }
1101}
1102
1103/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001104 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001105 */
Jean Delvared2653e92008-04-29 23:11:39 +02001106static int tuner_probe(struct i2c_client *client,
1107 const struct i2c_device_id *id)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001108{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001109 struct tuner *t;
1110 struct tuner *radio;
1111 struct tuner *tv;
1112
Hans Verkuil92de1f12007-11-04 10:53:09 -03001113 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001114 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001115 return -ENOMEM;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001116 t->i2c = client;
Michael Krufky7271e602008-05-26 16:08:40 +02001117 t->name = "(tuner unset)";
Hans Verkuil92de1f12007-11-04 10:53:09 -03001118 i2c_set_clientdata(client, t);
1119 t->type = UNSET;
1120 t->audmode = V4L2_TUNER_MODE_STEREO;
1121 t->mode_mask = T_UNINITIALIZED;
1122
1123 if (show_i2c) {
1124 unsigned char buffer[16];
1125 int i, rc;
1126
1127 memset(buffer, 0, sizeof(buffer));
1128 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1129 tuner_info("I2C RECV = ");
1130 for (i = 0; i < rc; i++)
1131 printk(KERN_CONT "%02x ", buffer[i]);
1132 printk("\n");
1133 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001134 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001135 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001136 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1137 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001138 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001139 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001140
1141 /* autodetection code based on the i2c addr */
1142 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001143 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001144 case 0x10:
Michael Krufkya07c8772008-04-29 03:54:19 -03001145 if (tuner_symbol_probe(tea5761_autodetection,
1146 t->i2c->adapter,
1147 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001148 t->type = TUNER_TEA5761;
1149 t->mode_mask = T_RADIO;
1150 t->mode = T_STANDBY;
1151 /* Sets freq to FM range */
1152 t->radio_freq = 87.5 * 16000;
1153 tuner_lookup(t->i2c->adapter, &radio, &tv);
1154 if (tv)
1155 tv->mode_mask &= ~T_RADIO;
1156
1157 goto register_client;
1158 }
Mauro Carvalho Chehab867e8352008-04-23 17:27:27 -03001159 return -ENODEV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001160 case 0x42:
1161 case 0x43:
1162 case 0x4a:
1163 case 0x4b:
1164 /* If chip is not tda8290, don't register.
1165 since it can be tda9887*/
Michael Krufkya07c8772008-04-29 03:54:19 -03001166 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001167 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001168 tuner_dbg("tda829x detected\n");
1169 } else {
1170 /* Default is being tda9887 */
1171 t->type = TUNER_TDA9887;
1172 t->mode_mask = T_RADIO | T_ANALOG_TV |
1173 T_DIGITAL_TV;
1174 t->mode = T_STANDBY;
1175 goto register_client;
1176 }
1177 break;
1178 case 0x60:
Michael Krufkya07c8772008-04-29 03:54:19 -03001179 if (tuner_symbol_probe(tea5767_autodetection,
1180 t->i2c->adapter, t->i2c->addr)
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001181 >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001182 t->type = TUNER_TEA5767;
1183 t->mode_mask = T_RADIO;
1184 t->mode = T_STANDBY;
1185 /* Sets freq to FM range */
1186 t->radio_freq = 87.5 * 16000;
1187 tuner_lookup(t->i2c->adapter, &radio, &tv);
1188 if (tv)
1189 tv->mode_mask &= ~T_RADIO;
1190
1191 goto register_client;
1192 }
1193 break;
1194 }
1195 }
1196
1197 /* Initializes only the first TV tuner on this adapter. Why only the
1198 first? Because there are some devices (notably the ones with TI
1199 tuners) that have more than one i2c address for the *same* device.
1200 Experience shows that, except for just one case, the first
1201 address is the right one. The exception is a Russian tuner
1202 (ACORP_Y878F). So, the desired behavior is just to enable the
1203 first found TV tuner. */
1204 tuner_lookup(t->i2c->adapter, &radio, &tv);
1205 if (tv == NULL) {
1206 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1207 if (radio == NULL)
1208 t->mode_mask |= T_RADIO;
1209 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1210 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1211 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1212 }
1213
1214 /* Should be just before return */
1215register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001216 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1217 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001218
1219 /* Sets a default mode */
1220 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001221 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001222 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001223 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001224 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001225 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001226 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001227 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001228 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001229 return 0;
1230}
1231
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001232static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001233{
1234 if (0 != addr) {
1235 normal_i2c[0] = addr;
1236 normal_i2c[1] = I2C_CLIENT_END;
1237 }
1238
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001239 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1240 return 0;
1241
Hans Verkuil92de1f12007-11-04 10:53:09 -03001242 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1243 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1244 * and an RTC at 0x6f which can get corrupted if probed.
1245 */
1246 if ((adap->id == I2C_HW_B_CX2388x) ||
1247 (adap->id == I2C_HW_B_CX23885)) {
1248 unsigned int i = 0;
1249
1250 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1251 i += 2;
1252 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1253 ignore[i+0] = adap->nr;
1254 ignore[i+1] = 0x6b;
1255 ignore[i+2] = adap->nr;
1256 ignore[i+3] = 0x6f;
1257 ignore[i+4] = I2C_CLIENT_END;
1258 } else
1259 printk(KERN_WARNING "tuner: "
1260 "too many options specified "
1261 "in i2c probe ignore list!\n");
1262 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001263 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001264}
1265
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001266static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001267{
1268 struct tuner *t = i2c_get_clientdata(client);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001269
Michael Krufkya07c8772008-04-29 03:54:19 -03001270 tuner_detach(&t->fe);
1271 t->fe.analog_demod_priv = NULL;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001272
1273 list_del(&t->list);
1274 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001275 return 0;
1276}
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278/* ----------------------------------------------------------------------- */
1279
Jean Delvareaf294862008-05-18 20:49:40 +02001280/* This driver supports many devices and the idea is to let the driver
1281 detect which device is present. So rather than listing all supported
1282 devices here, we pretend to support a single, fake device type. */
1283static const struct i2c_device_id tuner_id[] = {
1284 { "tuner", }, /* autodetect */
1285 { }
1286};
1287MODULE_DEVICE_TABLE(i2c, tuner_id);
1288
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001289static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1290 .name = "tuner",
1291 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001292 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001293 .probe = tuner_probe,
1294 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001295 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001296 .resume = tuner_resume,
1297 .legacy_probe = tuner_legacy_probe,
Jean Delvareaf294862008-05-18 20:49:40 +02001298 .id_table = tuner_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299};
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301/*
1302 * Overrides for Emacs so that we follow Linus's tabbing style.
1303 * ---------------------------------------------------------------------------
1304 * Local variables:
1305 * c-basic-offset: 8
1306 * End:
1307 */