blob: bbf1f488a164d7dc90e2dd35932070dfc44f0fa0 [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>
Hans Verkuile8a4a9e2008-11-24 18:21:40 -030021#include <media/v4l2-device.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;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -030081 struct v4l2_subdev sd;
Michael Krufkyf7f427e2007-12-16 22:02:26 -030082 struct list_head list;
83 unsigned int using_v4l2:1;
84
85 /* keep track of the current settings */
86 v4l2_std_id std;
87 unsigned int tv_freq;
88 unsigned int radio_freq;
89 unsigned int audmode;
90
91 unsigned int mode;
92 unsigned int mode_mask; /* Combination of allowable modes */
93
94 unsigned int type; /* chip type id */
95 unsigned int config;
Michael Krufky7271e602008-05-26 16:08:40 +020096 const char *name;
Michael Krufkyf7f427e2007-12-16 22:02:26 -030097};
98
Hans Verkuile8a4a9e2008-11-24 18:21:40 -030099static inline struct tuner *to_tuner(struct v4l2_subdev *sd)
100{
101 return container_of(sd, struct tuner, sd);
102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* standard i2c insmod options */
105static unsigned short normal_i2c[] = {
Mauro Carvalho Chehab149ef722008-04-29 21:38:46 -0300106#if defined(CONFIG_MEDIA_TUNER_TEA5761) || (defined(CONFIG_MEDIA_TUNER_TEA5761_MODULE) && defined(MODULE))
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300107 0x10,
108#endif
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800109 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Mauro Carvalho Chehabf5bec392005-06-23 22:05:13 -0700110 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
111 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 I2C_CLIENT_END
113};
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115I2C_CLIENT_INSMOD;
116
117/* insmod options used at init time => read/only */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300118static unsigned int addr;
119static unsigned int no_autodetect;
120static unsigned int show_i2c;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/* insmod options used at runtime => read/write */
Michael Krufkyab166052007-12-09 02:26:48 -0300123static int tuner_debug;
124
125#define tuner_warn(fmt, arg...) do { \
126 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
127 i2c_adapter_id(t->i2c->adapter), \
128 t->i2c->addr, ##arg); \
129 } while (0)
130
131#define tuner_info(fmt, arg...) do { \
132 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
133 i2c_adapter_id(t->i2c->adapter), \
134 t->i2c->addr, ##arg); \
135 } while (0)
136
137#define tuner_err(fmt, arg...) do { \
138 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
139 i2c_adapter_id(t->i2c->adapter), \
140 t->i2c->addr, ##arg); \
141 } while (0)
142
143#define tuner_dbg(fmt, arg...) do { \
144 if (tuner_debug) \
145 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
146 i2c_adapter_id(t->i2c->adapter), \
147 t->i2c->addr, ##arg); \
148 } while (0)
149
150/* ------------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700152static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static unsigned int radio_range[2] = { 65, 108 };
154
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200155static char pal[] = "--";
156static char secam[] = "--";
157static char ntsc[] = "-";
158
Hans Verkuilf9195de2006-01-11 19:01:01 -0200159
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200160module_param(addr, int, 0444);
161module_param(no_autodetect, int, 0444);
162module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -0200163module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200164module_param_string(pal, pal, sizeof(pal), 0644);
165module_param_string(secam, secam, sizeof(secam), 0644);
166module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700167module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168module_param_array(radio_range, int, NULL, 0644);
169
170MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
171MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
172MODULE_LICENSE("GPL");
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/* ---------------------------------------------------------------------- */
175
Michael Krufkyc7919d52007-12-08 17:06:30 -0300176static void fe_set_params(struct dvb_frontend *fe,
177 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300178{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300179 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
180 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300181
Michael Krufkye18f9442007-08-21 01:25:48 -0300182 if (NULL == fe_tuner_ops->set_analog_params) {
183 tuner_warn("Tuner frontend module has no way to set freq\n");
184 return;
185 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300186 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300187}
188
Michael Krufky4e9154b2007-10-21 19:39:50 -0300189static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300190{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300191 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300192
193 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300194 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300195}
196
Michael Krufky4e9154b2007-10-21 19:39:50 -0300197static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300198{
Michael Krufky14196832007-10-14 18:11:53 -0300199 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300200
Michael Krufky4e9154b2007-10-21 19:39:50 -0300201 if (fe->ops.tuner_ops.get_rf_strength)
202 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300203
204 return strength;
205}
206
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300207static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
208{
209 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
210 struct tuner *t = fe->analog_demod_priv;
211
212 if (fe_tuner_ops->set_config)
213 return fe_tuner_ops->set_config(fe, priv_cfg);
214
215 tuner_warn("Tuner frontend module has no way to set config\n");
216
217 return 0;
218}
219
Michael Krufky4e9154b2007-10-21 19:39:50 -0300220static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300221
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300222static struct analog_demod_ops tuner_analog_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300223 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300224 .standby = fe_standby,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300225 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300226 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300227 .tuner_status = tuner_status
228};
229
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700230/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231static void set_tv_freq(struct i2c_client *c, unsigned int freq)
232{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300233 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300234 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Michael Krufkyc7919d52007-12-08 17:06:30 -0300236 struct analog_parameters params = {
237 .mode = t->mode,
238 .audmode = t->audmode,
239 .std = t->std
240 };
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700243 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return;
245 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300246 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700247 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return;
249 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700250 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
251 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
252 freq / 16, freq % 16 * 100 / 16, tv_range[0],
253 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200254 /* V4L2 spec: if the freq is not possible then the closest
255 possible value should be selected */
256 if (freq < tv_range[0] * 16)
257 freq = tv_range[0] * 16;
258 else
259 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300261 params.frequency = freq;
262
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300263 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static void set_radio_freq(struct i2c_client *c, unsigned int freq)
267{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300268 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300269 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Michael Krufkyc7919d52007-12-08 17:06:30 -0300271 struct analog_parameters params = {
272 .mode = t->mode,
273 .audmode = t->audmode,
274 .std = t->std
275 };
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700278 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return;
280 }
Mauro Carvalho Chehabe545d6e2008-01-05 16:37:04 -0300281 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700282 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return;
284 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200285 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700286 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
287 freq / 16000, freq % 16000 * 100 / 16000,
288 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200289 /* V4L2 spec: if the freq is not possible then the closest
290 possible value should be selected */
291 if (freq < radio_range[0] * 16000)
292 freq = radio_range[0] * 16000;
293 else
294 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300296 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700297
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300298 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
301static void set_freq(struct i2c_client *c, unsigned long freq)
302{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300303 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 switch (t->mode) {
306 case V4L2_TUNER_RADIO:
307 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700308 freq / 16000, freq % 16000 * 100 / 16000);
309 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200310 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 break;
312 case V4L2_TUNER_ANALOG_TV:
313 case V4L2_TUNER_DIGITAL_TV:
314 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700315 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200317 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300319 default:
320 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Michael Krufky293197c2007-08-28 17:20:42 -0300324static void tuner_i2c_address_check(struct tuner *t)
325{
326 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
Hans Verkuil1cba97d72007-09-14 05:13:54 -0300327 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
Michael Krufky293197c2007-08-28 17:20:42 -0300328 return;
329
Michael Krufky16410022008-01-21 12:01:34 -0300330 /* We already know that the XC5000 can only be located at
331 * i2c address 0x61, 0x62, 0x63 or 0x64 */
332 if ((t->type == TUNER_XC5000) &&
333 ((t->i2c->addr <= 0x64)) && (t->i2c->addr >= 0x61))
334 return;
335
Michael Krufky293197c2007-08-28 17:20:42 -0300336 tuner_warn("====================== WARNING! ======================\n");
337 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
338 tuner_warn("will soon be dropped. This message indicates that your\n");
339 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
Michael Krufky7271e602008-05-26 16:08:40 +0200340 t->name, t->i2c->addr);
Michael Krufky293197c2007-08-28 17:20:42 -0300341 tuner_warn("To ensure continued support for your device, please\n");
342 tuner_warn("send a copy of this message, along with full dmesg\n");
343 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
344 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
345 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
Michael Krufky7271e602008-05-26 16:08:40 +0200346 t->i2c->adapter->name, t->i2c->addr, t->type, t->name);
Michael Krufky293197c2007-08-28 17:20:42 -0300347 tuner_warn("====================== WARNING! ======================\n");
348}
349
Steven Toth27c685a2008-01-05 16:50:14 -0300350static struct xc5000_config xc5000_cfg;
351
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700352static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300353 unsigned int new_mode_mask, unsigned int new_config,
Michael Krufkyd7cba042008-09-12 13:31:45 -0300354 int (*tuner_callback) (void *dev, int component, int cmd, int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300356 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkye18f9442007-08-21 01:25:48 -0300357 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300358 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700359 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700361 if (type == UNSET || type == TUNER_ABSENT) {
362 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return;
364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 t->type = type;
Michael Krufkye7ddcd92009-03-28 15:35:26 -0300367 /* prevent invalid config values */
368 t->config = ((new_config >= 0) && (new_config < 256)) ? new_config : 0;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300369 if (tuner_callback != NULL) {
370 tuner_dbg("defining GPIO callback\n");
Michael Krufkyd7cba042008-09-12 13:31:45 -0300371 t->fe.callback = tuner_callback;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300372 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300373
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300374 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300375 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
376
377 return;
378 }
379
Michael Krufkyb2083192007-05-29 22:54:06 -0300380 /* discard private data, in case set_type() was previously called */
Michael Krufkya07c8772008-04-29 03:54:19 -0300381 tuner_detach(&t->fe);
382 t->fe.analog_demod_priv = NULL;
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 switch (t->type) {
385 case TUNER_MT2032:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300386 if (!dvb_attach(microtune_attach,
387 &t->fe, t->i2c->adapter, t->i2c->addr))
388 goto attach_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 break;
390 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300391 {
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300392 struct tda829x_config cfg = {
393 .lna_cfg = t->config,
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300394 };
395 if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter,
396 t->i2c->addr, &cfg))
397 goto attach_failed;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300398 break;
399 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700400 case TUNER_TEA5767:
Michael Krufkya07c8772008-04-29 03:54:19 -0300401 if (!dvb_attach(tea5767_attach, &t->fe,
402 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300403 goto attach_failed;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700404 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700405 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300406 case TUNER_TEA5761:
Michael Krufkya07c8772008-04-29 03:54:19 -0300407 if (!dvb_attach(tea5761_attach, &t->fe,
408 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300409 goto attach_failed;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300410 t->mode_mask = T_RADIO;
411 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700412 case TUNER_PHILIPS_FMD1216ME_MK3:
413 buffer[0] = 0x0b;
414 buffer[1] = 0xdc;
415 buffer[2] = 0x9c;
416 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700417 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700418 mdelay(1);
419 buffer[2] = 0x86;
420 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700421 i2c_master_send(c, buffer, 4);
Michael Krufkya07c8772008-04-29 03:54:19 -0300422 if (!dvb_attach(simple_tuner_attach, &t->fe,
423 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300424 goto attach_failed;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700425 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800426 case TUNER_PHILIPS_TD1316:
427 buffer[0] = 0x0b;
428 buffer[1] = 0xdc;
429 buffer[2] = 0x86;
430 buffer[3] = 0xa4;
Michael Krufkya07c8772008-04-29 03:54:19 -0300431 i2c_master_send(c, buffer, 4);
432 if (!dvb_attach(simple_tuner_attach, &t->fe,
433 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300434 goto attach_failed;
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200435 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300436 case TUNER_XC2028:
437 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300438 struct xc2028_config cfg = {
439 .i2c_adap = t->i2c->adapter,
440 .i2c_addr = t->i2c->addr,
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300441 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300442 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300443 goto attach_failed;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300444 break;
445 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300446 case TUNER_TDA9887:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300447 if (!dvb_attach(tda9887_attach,
448 &t->fe, t->i2c->adapter, t->i2c->addr))
449 goto attach_failed;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300450 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300451 case TUNER_XC5000:
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300452 {
453 struct dvb_tuner_ops *xc_tuner_ops;
454
Steven Toth27c685a2008-01-05 16:50:14 -0300455 xc5000_cfg.i2c_address = t->i2c->addr;
Devin Heitmuellerea227862009-03-11 02:58:53 -0300456 /* if_khz will be set when the digital dvb_attach() occurs */
457 xc5000_cfg.if_khz = 0;
Michael Krufkya07c8772008-04-29 03:54:19 -0300458 if (!dvb_attach(xc5000_attach,
Michael Krufky30650962008-09-06 14:56:58 -0300459 &t->fe, t->i2c->adapter, &xc5000_cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300460 goto attach_failed;
461
Steven Toth27c685a2008-01-05 16:50:14 -0300462 xc_tuner_ops = &t->fe.ops.tuner_ops;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300463 if (xc_tuner_ops->init)
Steven Toth27c685a2008-01-05 16:50:14 -0300464 xc_tuner_ops->init(&t->fe);
Steven Toth27c685a2008-01-05 16:50:14 -0300465 break;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 default:
Michael Krufkya07c8772008-04-29 03:54:19 -0300468 if (!dvb_attach(simple_tuner_attach, &t->fe,
469 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300470 goto attach_failed;
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700474
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300475 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300476 (fe_tuner_ops->set_analog_params)) {
Michael Krufkya07c8772008-04-29 03:54:19 -0300477
Michael Krufky7271e602008-05-26 16:08:40 +0200478 t->name = fe_tuner_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300479
Michael Krufky4e9154b2007-10-21 19:39:50 -0300480 t->fe.analog_demod_priv = t;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300481 memcpy(analog_ops, &tuner_analog_ops,
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300482 sizeof(struct analog_demod_ops));
Michael Krufkya07c8772008-04-29 03:54:19 -0300483
Michael Krufkya55db8c2007-12-09 13:52:51 -0300484 } else {
Michael Krufky7271e602008-05-26 16:08:40 +0200485 t->name = analog_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300486 }
487
Michael Krufky7271e602008-05-26 16:08:40 +0200488 tuner_dbg("type set to %s\n", t->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300489
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700490 if (t->mode_mask == T_UNINITIALIZED)
491 t->mode_mask = new_mode_mask;
492
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300493 /* xc2028/3028 and xc5000 requires a firmware to be set-up later
494 trying to set a frequency here will just fail
495 FIXME: better to move set_freq to the tuner code. This is needed
496 on analog tuners for PLL to properly work
497 */
498 if (t->type != TUNER_XC2028 && t->type != TUNER_XC5000)
499 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ?
500 t->radio_freq : t->tv_freq);
501
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700502 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100503 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700504 t->mode_mask);
Michael Krufky293197c2007-08-28 17:20:42 -0300505 tuner_i2c_address_check(t);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300506 return;
507
508attach_failed:
509 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
510 t->type = TUNER_ABSENT;
511 t->mode_mask = T_UNINITIALIZED;
512
513 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700516/*
517 * This function apply tuner config to tuner specified
518 * by tun_setup structure. I addr is unset, then admin status
519 * and tun addr status is more precise then current status,
520 * it's applied. Otherwise status and type are applied only to
521 * tuner with exactly the same addr.
522*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700523
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700524static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700525{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300526 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700527
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300528 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
529 (t->mode_mask & tun_setup->mode_mask))) ||
530 (tun_setup->addr == c->addr)) {
531 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300532 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300533 } else
534 tuner_dbg("set addr discarded for type %i, mask %x. "
535 "Asked to change tuner at addr 0x%02x, with mask %x\n",
536 t->type, t->mode_mask,
537 tun_setup->addr, tun_setup->mode_mask);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700538}
539
540static inline int check_mode(struct tuner *t, char *cmd)
541{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700542 if ((1 << t->mode & t->mode_mask) == 0) {
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300543 return -EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700544 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700545
546 switch (t->mode) {
547 case V4L2_TUNER_RADIO:
548 tuner_dbg("Cmd %s accepted for radio\n", cmd);
549 break;
550 case V4L2_TUNER_ANALOG_TV:
551 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
552 break;
553 case V4L2_TUNER_DIGITAL_TV:
554 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
555 break;
556 }
557 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700558}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700559
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700560/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561static int tuner_fixup_std(struct tuner *t)
562{
563 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300565 case '6':
566 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
567 t->std = V4L2_STD_PAL_60;
568 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 case 'b':
570 case 'B':
571 case 'g':
572 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700573 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 t->std = V4L2_STD_PAL_BG;
575 break;
576 case 'i':
577 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700578 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 t->std = V4L2_STD_PAL_I;
580 break;
581 case 'd':
582 case 'D':
583 case 'k':
584 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700585 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 t->std = V4L2_STD_PAL_DK;
587 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700588 case 'M':
589 case 'm':
590 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
591 t->std = V4L2_STD_PAL_M;
592 break;
593 case 'N':
594 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200595 if (pal[1] == 'c' || pal[1] == 'C') {
596 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
597 t->std = V4L2_STD_PAL_Nc;
598 } else {
599 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
600 t->std = V4L2_STD_PAL_N;
601 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700602 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700603 case '-':
604 /* default parameter, do nothing */
605 break;
606 default:
607 tuner_warn ("pal= argument not recognised\n");
608 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700611 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
612 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200613 case 'b':
614 case 'B':
615 case 'g':
616 case 'G':
617 case 'h':
618 case 'H':
619 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
620 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
621 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700622 case 'd':
623 case 'D':
624 case 'k':
625 case 'K':
626 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
627 t->std = V4L2_STD_SECAM_DK;
628 break;
629 case 'l':
630 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800631 if ((secam[1]=='C')||(secam[1]=='c')) {
632 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
633 t->std = V4L2_STD_SECAM_LC;
634 } else {
635 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
636 t->std = V4L2_STD_SECAM_L;
637 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700638 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700639 case '-':
640 /* default parameter, do nothing */
641 break;
642 default:
643 tuner_warn ("secam= argument not recognised\n");
644 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700645 }
646 }
647
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200648 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
649 switch (ntsc[0]) {
650 case 'm':
651 case 'M':
652 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
653 t->std = V4L2_STD_NTSC_M;
654 break;
655 case 'j':
656 case 'J':
657 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
658 t->std = V4L2_STD_NTSC_M_JP;
659 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200660 case 'k':
661 case 'K':
662 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
663 t->std = V4L2_STD_NTSC_M_KR;
664 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200665 case '-':
666 /* default parameter, do nothing */
667 break;
668 default:
669 tuner_info("ntsc= argument not recognised\n");
670 break;
671 }
672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return 0;
674}
675
Michael Krufky4e9154b2007-10-21 19:39:50 -0300676static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200677{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300678 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200679 unsigned long freq, freq_fraction;
Michael Krufkya07c8772008-04-29 03:54:19 -0300680 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
681 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200682 const char *p;
683
684 switch (t->mode) {
685 case V4L2_TUNER_RADIO: p = "radio"; break;
686 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
687 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
688 default: p = "undefined"; break;
689 }
690 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200691 freq = t->radio_freq / 16000;
692 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200693 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200694 freq = t->tv_freq / 16;
695 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200696 }
697 tuner_info("Tuner mode: %s\n", p);
698 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300699 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200700 if (t->mode != V4L2_TUNER_RADIO)
701 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300702 if (fe_tuner_ops->get_status) {
703 u32 tuner_status;
704
705 fe_tuner_ops->get_status(&t->fe, &tuner_status);
706 if (tuner_status & TUNER_STATUS_LOCKED)
707 tuner_info("Tuner is locked.\n");
708 if (tuner_status & TUNER_STATUS_STEREO)
709 tuner_info("Stereo: yes\n");
710 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300711 if (analog_ops->has_signal)
712 tuner_info("Signal strength: %d\n",
713 analog_ops->has_signal(fe));
714 if (analog_ops->is_stereo)
715 tuner_info("Stereo: %s\n",
716 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200717}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719/* ---------------------------------------------------------------------- */
720
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700721/*
722 * Switch tuner to other mode. If tuner support both tv and radio,
723 * set another frequency to some value (This is needed for some pal
724 * tuners to avoid locking). Otherwise, just put second tuner in
725 * standby mode.
726 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700728static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
729{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300730 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300731
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800732 if (mode == t->mode)
733 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700734
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800735 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700736
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300737 if (check_mode(t, cmd) == -EINVAL) {
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -0300738 tuner_dbg("Tuner doesn't support this mode. "
739 "Putting tuner to sleep\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800740 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300741 if (analog_ops->standby)
742 analog_ops->standby(&t->fe);
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300743 return -EINVAL;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800744 }
745 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700746}
747
748#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800749 tuner_dbg("switching to v4l2\n"); \
750 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700751
752static inline int check_v4l2(struct tuner *t)
753{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300754 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
755 TV, v4l1 for radio), until that is fixed this code is disabled.
756 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
757 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700758 return 0;
759}
760
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300761static int tuner_s_type_addr(struct v4l2_subdev *sd, struct tuner_setup *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300763 struct tuner *t = to_tuner(sd);
764 struct i2c_client *client = v4l2_get_subdevdata(sd);
765
766 tuner_dbg("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
767 type->type,
768 type->addr,
769 type->mode_mask,
770 type->config);
771
772 set_addr(client, type);
773 return 0;
774}
775
776static int tuner_s_radio(struct v4l2_subdev *sd)
777{
778 struct tuner *t = to_tuner(sd);
779 struct i2c_client *client = v4l2_get_subdevdata(sd);
780
Hans Verkuilbccfa442009-03-30 06:55:27 -0300781 if (set_mode(client, t, V4L2_TUNER_RADIO, "s_radio") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300782 return 0;
783 if (t->radio_freq)
784 set_freq(client, t->radio_freq);
785 return 0;
786}
787
788static int tuner_s_standby(struct v4l2_subdev *sd, u32 standby)
789{
790 struct tuner *t = to_tuner(sd);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300791 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -0300793 tuner_dbg("Putting tuner to sleep\n");
794
Hans Verkuilbccfa442009-03-30 06:55:27 -0300795 if (check_mode(t, "s_standby") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300796 return 0;
797 t->mode = T_STANDBY;
798 if (analog_ops->standby)
799 analog_ops->standby(&t->fe);
800 return 0;
801}
802
803#ifdef CONFIG_VIDEO_ALLOW_V4L1
Hans Verkuil069b7472008-12-30 07:04:34 -0300804static long tuner_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300805{
806 struct tuner *t = to_tuner(sd);
807 struct i2c_client *client = v4l2_get_subdevdata(sd);
808 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
809 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufky5e453dc2006-01-09 15:32:31 -0200810
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700811 switch (cmd) {
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700812 case VIDIOCSAUDIO:
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300813 if (check_mode(t, "VIDIOCSAUDIO") == -EINVAL)
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700814 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300815 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700816 return 0;
817
818 /* Should be implemented, since bttv calls it */
819 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700820 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 case VIDIOCSCHAN:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700822 {
823 static const v4l2_std_id map[] = {
824 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
825 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
826 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
827 [4 /* bttv */ ] = V4L2_STD_PAL_M,
828 [5 /* bttv */ ] = V4L2_STD_PAL_N,
829 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
830 };
831 struct video_channel *vc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Marcin Slusarz427aad62008-05-11 19:58:59 -0300833 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700834 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700835
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300836 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==-EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700839 if (vc->norm < ARRAY_SIZE(map))
840 t->std = map[vc->norm];
841 tuner_fixup_std(t);
Hans Verkuil27487d42006-01-15 15:04:52 -0200842 if (t->tv_freq)
843 set_tv_freq(client, t->tv_freq);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700844 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700845 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700846 case VIDIOCSFREQ:
847 {
848 unsigned long *v = arg;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700849
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300850 if (check_mode(t, "VIDIOCSFREQ") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700851 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300852 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700853 return 0;
854
855 set_freq(client, *v);
856 return 0;
857 }
858 case VIDIOCGTUNER:
859 {
860 struct video_tuner *vt = arg;
861
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300862 if (check_mode(t, "VIDIOCGTUNER") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700863 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300864 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700865 return 0;
866
867 if (V4L2_TUNER_RADIO == t->mode) {
Michael Krufkye18f9442007-08-21 01:25:48 -0300868 if (fe_tuner_ops->get_status) {
869 u32 tuner_status;
870
871 fe_tuner_ops->get_status(&t->fe, &tuner_status);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300872 if (tuner_status & TUNER_STATUS_STEREO)
873 vt->flags |= VIDEO_TUNER_STEREO_ON;
874 else
875 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
Michael Krufkye18f9442007-08-21 01:25:48 -0300876 } else {
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300877 if (analog_ops->is_stereo) {
878 if (analog_ops->is_stereo(&t->fe))
Michael Krufkye18f9442007-08-21 01:25:48 -0300879 vt->flags |=
880 VIDEO_TUNER_STEREO_ON;
881 else
882 vt->flags &=
883 ~VIDEO_TUNER_STEREO_ON;
884 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700885 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300886 if (analog_ops->has_signal)
887 vt->signal =
888 analog_ops->has_signal(&t->fe);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300889
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700890 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
891
892 vt->rangelow = radio_range[0] * 16000;
893 vt->rangehigh = radio_range[1] * 16000;
894
895 } else {
896 vt->rangelow = tv_range[0] * 16;
897 vt->rangehigh = tv_range[1] * 16;
898 }
899
900 return 0;
901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 case VIDIOCGAUDIO:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700903 {
904 struct video_audio *va = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300906 if (check_mode(t, "VIDIOCGAUDIO") == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700907 return 0;
Marcin Slusarz427aad62008-05-11 19:58:59 -0300908 if (check_v4l2(t) == -EINVAL)
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700909 return 0;
910
Michael Krufkye18f9442007-08-21 01:25:48 -0300911 if (V4L2_TUNER_RADIO == t->mode) {
912 if (fe_tuner_ops->get_status) {
913 u32 tuner_status;
914
915 fe_tuner_ops->get_status(&t->fe, &tuner_status);
916 va->mode = (tuner_status & TUNER_STATUS_STEREO)
917 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300918 } else if (analog_ops->is_stereo)
919 va->mode = analog_ops->is_stereo(&t->fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300920 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
921 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700922 return 0;
923 }
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300924 }
925 return -ENOIOCTLCMD;
926}
Mauro Carvalho Chehab985bc962006-07-23 06:31:19 -0300927#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300929static int tuner_s_config(struct v4l2_subdev *sd, const struct v4l2_priv_tun_config *cfg)
930{
931 struct tuner *t = to_tuner(sd);
932 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300933
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300934 if (t->type != cfg->tuner)
935 return 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300936
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300937 if (analog_ops->set_config) {
938 analog_ops->set_config(&t->fe, cfg->priv);
939 return 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300942 tuner_dbg("Tuner frontend module has no way to set config\n");
943 return 0;
944}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700945
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300946/* --- v4l ioctls --- */
947/* take care: bttv does userspace copying, we'll get a
948 kernel pointer here... */
949static int tuner_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
950{
951 struct tuner *t = to_tuner(sd);
952 struct i2c_client *client = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Hans Verkuilbccfa442009-03-30 06:55:27 -0300954 if (set_mode(client, t, V4L2_TUNER_ANALOG_TV, "s_std") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300955 return 0;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700956
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300957 switch_v4l2();
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700958
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300959 t->std = std;
960 tuner_fixup_std(t);
961 if (t->tv_freq)
962 set_freq(client, t->tv_freq);
963 return 0;
964}
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700965
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300966static int tuner_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
967{
968 struct tuner *t = to_tuner(sd);
969 struct i2c_client *client = v4l2_get_subdevdata(sd);
Michael Krufkye18f9442007-08-21 01:25:48 -0300970
Hans Verkuilbccfa442009-03-30 06:55:27 -0300971 if (set_mode(client, t, f->type, "s_frequency") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300972 return 0;
973 switch_v4l2();
974 set_freq(client, f->frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 return 0;
977}
978
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300979static int tuner_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
980{
981 struct tuner *t = to_tuner(sd);
982 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
983
Hans Verkuilbccfa442009-03-30 06:55:27 -0300984 if (check_mode(t, "g_frequency") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300985 return 0;
986 switch_v4l2();
987 f->type = t->mode;
988 if (fe_tuner_ops->get_frequency) {
989 u32 abs_freq;
990
991 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
992 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
993 (abs_freq * 2 + 125/2) / 125 :
994 (abs_freq + 62500/2) / 62500;
995 return 0;
996 }
997 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
998 t->radio_freq : t->tv_freq;
999 return 0;
1000}
1001
1002static int tuner_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1003{
1004 struct tuner *t = to_tuner(sd);
1005 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1006 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
1007
Hans Verkuilbccfa442009-03-30 06:55:27 -03001008 if (check_mode(t, "g_tuner") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001009 return 0;
1010 switch_v4l2();
1011
1012 vt->type = t->mode;
1013 if (analog_ops->get_afc)
1014 vt->afc = analog_ops->get_afc(&t->fe);
1015 if (t->mode == V4L2_TUNER_ANALOG_TV)
1016 vt->capability |= V4L2_TUNER_CAP_NORM;
1017 if (t->mode != V4L2_TUNER_RADIO) {
1018 vt->rangelow = tv_range[0] * 16;
1019 vt->rangehigh = tv_range[1] * 16;
1020 return 0;
1021 }
1022
1023 /* radio mode */
1024 vt->rxsubchans =
1025 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
1026 if (fe_tuner_ops->get_status) {
1027 u32 tuner_status;
1028
1029 fe_tuner_ops->get_status(&t->fe, &tuner_status);
1030 vt->rxsubchans =
1031 (tuner_status & TUNER_STATUS_STEREO) ?
1032 V4L2_TUNER_SUB_STEREO :
1033 V4L2_TUNER_SUB_MONO;
1034 } else {
1035 if (analog_ops->is_stereo) {
1036 vt->rxsubchans =
1037 analog_ops->is_stereo(&t->fe) ?
1038 V4L2_TUNER_SUB_STEREO :
1039 V4L2_TUNER_SUB_MONO;
1040 }
1041 }
1042 if (analog_ops->has_signal)
1043 vt->signal = analog_ops->has_signal(&t->fe);
1044 vt->capability |=
1045 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
1046 vt->audmode = t->audmode;
1047 vt->rangelow = radio_range[0] * 16000;
1048 vt->rangehigh = radio_range[1] * 16000;
1049 return 0;
1050}
1051
1052static int tuner_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1053{
1054 struct tuner *t = to_tuner(sd);
1055 struct i2c_client *client = v4l2_get_subdevdata(sd);
1056
Hans Verkuilbccfa442009-03-30 06:55:27 -03001057 if (check_mode(t, "s_tuner") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001058 return 0;
1059
1060 switch_v4l2();
1061
1062 /* do nothing unless we're a radio tuner */
1063 if (t->mode != V4L2_TUNER_RADIO)
1064 return 0;
1065 t->audmode = vt->audmode;
1066 set_radio_freq(client, t->radio_freq);
1067 return 0;
1068}
1069
1070static int tuner_log_status(struct v4l2_subdev *sd)
1071{
1072 struct tuner *t = to_tuner(sd);
1073 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1074
1075 if (analog_ops->tuner_status)
1076 analog_ops->tuner_status(&t->fe);
1077 return 0;
1078}
1079
1080static int tuner_command(struct i2c_client *client, unsigned cmd, void *arg)
1081{
1082 return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg);
1083}
1084
Jean Delvare21b48a72007-03-12 19:20:15 -03001085static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001087 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001089 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /* FIXME: power down ??? */
1091 return 0;
1092}
1093
Jean Delvare21b48a72007-03-12 19:20:15 -03001094static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001096 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001098 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -02001099 if (V4L2_TUNER_RADIO == t->mode) {
1100 if (t->radio_freq)
1101 set_freq(c, t->radio_freq);
1102 } else {
1103 if (t->tv_freq)
1104 set_freq(c, t->tv_freq);
1105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return 0;
1107}
1108
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001109/* ----------------------------------------------------------------------- */
1110
1111static const struct v4l2_subdev_core_ops tuner_core_ops = {
1112 .log_status = tuner_log_status,
1113 .s_standby = tuner_s_standby,
Hans Verkuil49dd1312008-12-19 07:07:56 -03001114#ifdef CONFIG_VIDEO_ALLOW_V4L1
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001115 .ioctl = tuner_ioctl,
Hans Verkuil49dd1312008-12-19 07:07:56 -03001116#endif
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001117};
1118
1119static const struct v4l2_subdev_tuner_ops tuner_tuner_ops = {
1120 .s_std = tuner_s_std,
1121 .s_radio = tuner_s_radio,
1122 .g_tuner = tuner_g_tuner,
1123 .s_tuner = tuner_s_tuner,
1124 .s_frequency = tuner_s_frequency,
1125 .g_frequency = tuner_g_frequency,
1126 .s_type_addr = tuner_s_type_addr,
1127 .s_config = tuner_s_config,
1128};
1129
1130static const struct v4l2_subdev_ops tuner_ops = {
1131 .core = &tuner_core_ops,
1132 .tuner = &tuner_tuner_ops,
1133};
1134
Hans Verkuil92de1f12007-11-04 10:53:09 -03001135/* ---------------------------------------------------------------------- */
1136
Adrian Bunkc52c4d02008-01-28 22:11:15 -03001137static LIST_HEAD(tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001138
1139/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001140 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -03001141 certain no other devices will be added/deleted at the same time, I2C
1142 core protects against that. */
1143static void tuner_lookup(struct i2c_adapter *adap,
1144 struct tuner **radio, struct tuner **tv)
1145{
1146 struct tuner *pos;
1147
1148 *radio = NULL;
1149 *tv = NULL;
1150
1151 list_for_each_entry(pos, &tuner_list, list) {
1152 int mode_mask;
1153
1154 if (pos->i2c->adapter != adap ||
1155 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1156 continue;
1157
1158 mode_mask = pos->mode_mask & ~T_STANDBY;
1159 if (*radio == NULL && mode_mask == T_RADIO)
1160 *radio = pos;
1161 /* Note: currently TDA9887 is the only demod-only
1162 device. If other devices appear then we need to
1163 make this test more general. */
1164 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1165 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1166 *tv = pos;
1167 }
1168}
1169
1170/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001171 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001172 */
Jean Delvared2653e92008-04-29 23:11:39 +02001173static int tuner_probe(struct i2c_client *client,
1174 const struct i2c_device_id *id)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001175{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001176 struct tuner *t;
1177 struct tuner *radio;
1178 struct tuner *tv;
1179
Hans Verkuil92de1f12007-11-04 10:53:09 -03001180 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001181 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001182 return -ENOMEM;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001183 v4l2_i2c_subdev_init(&t->sd, client, &tuner_ops);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001184 t->i2c = client;
Michael Krufky7271e602008-05-26 16:08:40 +02001185 t->name = "(tuner unset)";
Hans Verkuil92de1f12007-11-04 10:53:09 -03001186 t->type = UNSET;
1187 t->audmode = V4L2_TUNER_MODE_STEREO;
1188 t->mode_mask = T_UNINITIALIZED;
1189
1190 if (show_i2c) {
1191 unsigned char buffer[16];
1192 int i, rc;
1193
1194 memset(buffer, 0, sizeof(buffer));
1195 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1196 tuner_info("I2C RECV = ");
1197 for (i = 0; i < rc; i++)
1198 printk(KERN_CONT "%02x ", buffer[i]);
1199 printk("\n");
1200 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001201 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001202 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001203 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1204 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001205 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001206 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001207
1208 /* autodetection code based on the i2c addr */
1209 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001210 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001211 case 0x10:
Michael Krufkya07c8772008-04-29 03:54:19 -03001212 if (tuner_symbol_probe(tea5761_autodetection,
1213 t->i2c->adapter,
1214 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001215 t->type = TUNER_TEA5761;
1216 t->mode_mask = T_RADIO;
1217 t->mode = T_STANDBY;
1218 /* Sets freq to FM range */
1219 t->radio_freq = 87.5 * 16000;
1220 tuner_lookup(t->i2c->adapter, &radio, &tv);
1221 if (tv)
1222 tv->mode_mask &= ~T_RADIO;
1223
1224 goto register_client;
1225 }
Mauro Carvalho Chehab867e8352008-04-23 17:27:27 -03001226 return -ENODEV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001227 case 0x42:
1228 case 0x43:
1229 case 0x4a:
1230 case 0x4b:
1231 /* If chip is not tda8290, don't register.
1232 since it can be tda9887*/
Michael Krufkya07c8772008-04-29 03:54:19 -03001233 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001234 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001235 tuner_dbg("tda829x detected\n");
1236 } else {
1237 /* Default is being tda9887 */
1238 t->type = TUNER_TDA9887;
1239 t->mode_mask = T_RADIO | T_ANALOG_TV |
1240 T_DIGITAL_TV;
1241 t->mode = T_STANDBY;
1242 goto register_client;
1243 }
1244 break;
1245 case 0x60:
Michael Krufkya07c8772008-04-29 03:54:19 -03001246 if (tuner_symbol_probe(tea5767_autodetection,
1247 t->i2c->adapter, t->i2c->addr)
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001248 >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001249 t->type = TUNER_TEA5767;
1250 t->mode_mask = T_RADIO;
1251 t->mode = T_STANDBY;
1252 /* Sets freq to FM range */
1253 t->radio_freq = 87.5 * 16000;
1254 tuner_lookup(t->i2c->adapter, &radio, &tv);
1255 if (tv)
1256 tv->mode_mask &= ~T_RADIO;
1257
1258 goto register_client;
1259 }
1260 break;
1261 }
1262 }
1263
1264 /* Initializes only the first TV tuner on this adapter. Why only the
1265 first? Because there are some devices (notably the ones with TI
1266 tuners) that have more than one i2c address for the *same* device.
1267 Experience shows that, except for just one case, the first
1268 address is the right one. The exception is a Russian tuner
1269 (ACORP_Y878F). So, the desired behavior is just to enable the
1270 first found TV tuner. */
1271 tuner_lookup(t->i2c->adapter, &radio, &tv);
1272 if (tv == NULL) {
1273 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1274 if (radio == NULL)
1275 t->mode_mask |= T_RADIO;
1276 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1277 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1278 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1279 }
1280
1281 /* Should be just before return */
1282register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001283 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1284 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001285
1286 /* Sets a default mode */
1287 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001288 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001289 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001290 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001291 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001292 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001293 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001294 set_type(client, t->type, t->mode_mask, t->config, t->fe.callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001295 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001296 return 0;
1297}
1298
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001299static int tuner_legacy_probe(struct i2c_adapter *adap)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001300{
1301 if (0 != addr) {
1302 normal_i2c[0] = addr;
1303 normal_i2c[1] = I2C_CLIENT_END;
1304 }
1305
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001306 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1307 return 0;
1308
Hans Verkuil92de1f12007-11-04 10:53:09 -03001309 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1310 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1311 * and an RTC at 0x6f which can get corrupted if probed.
1312 */
1313 if ((adap->id == I2C_HW_B_CX2388x) ||
1314 (adap->id == I2C_HW_B_CX23885)) {
1315 unsigned int i = 0;
1316
1317 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1318 i += 2;
1319 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1320 ignore[i+0] = adap->nr;
1321 ignore[i+1] = 0x6b;
1322 ignore[i+2] = adap->nr;
1323 ignore[i+3] = 0x6f;
1324 ignore[i+4] = I2C_CLIENT_END;
1325 } else
1326 printk(KERN_WARNING "tuner: "
1327 "too many options specified "
1328 "in i2c probe ignore list!\n");
1329 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001330 return 1;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001331}
1332
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001333static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001334{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001335 struct tuner *t = to_tuner(i2c_get_clientdata(client));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001336
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001337 v4l2_device_unregister_subdev(&t->sd);
Michael Krufkya07c8772008-04-29 03:54:19 -03001338 tuner_detach(&t->fe);
1339 t->fe.analog_demod_priv = NULL;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001340
1341 list_del(&t->list);
1342 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001343 return 0;
1344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/* ----------------------------------------------------------------------- */
1347
Jean Delvareaf294862008-05-18 20:49:40 +02001348/* This driver supports many devices and the idea is to let the driver
1349 detect which device is present. So rather than listing all supported
1350 devices here, we pretend to support a single, fake device type. */
1351static const struct i2c_device_id tuner_id[] = {
1352 { "tuner", }, /* autodetect */
1353 { }
1354};
1355MODULE_DEVICE_TABLE(i2c, tuner_id);
1356
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001357static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1358 .name = "tuner",
1359 .driverid = I2C_DRIVERID_TUNER,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07001360 .command = tuner_command,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001361 .probe = tuner_probe,
1362 .remove = tuner_remove,
Jean Delvare21b48a72007-03-12 19:20:15 -03001363 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001364 .resume = tuner_resume,
1365 .legacy_probe = tuner_legacy_probe,
Jean Delvareaf294862008-05-18 20:49:40 +02001366 .id_table = tuner_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367};
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369/*
1370 * Overrides for Emacs so that we follow Linus's tabbing style.
1371 * ---------------------------------------------------------------------------
1372 * Local variables:
1373 * c-basic-offset: 8
1374 * End:
1375 */