blob: 537594211a90e1ccb6fa49b74e188b642ae0c6ae [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>
Hans Verkuil75b4c262009-04-01 03:32:22 -030018#include <linux/videodev2.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 Verkuil75b4c262009-04-01 03:32:22 -030023#include <media/v4l2-i2c-drv.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
105/* insmod options used at init time => read/only */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300106static unsigned int addr;
107static unsigned int no_autodetect;
108static unsigned int show_i2c;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/* insmod options used at runtime => read/write */
Michael Krufkyab166052007-12-09 02:26:48 -0300111static int tuner_debug;
112
113#define tuner_warn(fmt, arg...) do { \
114 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
115 i2c_adapter_id(t->i2c->adapter), \
116 t->i2c->addr, ##arg); \
117 } while (0)
118
119#define tuner_info(fmt, arg...) do { \
120 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
121 i2c_adapter_id(t->i2c->adapter), \
122 t->i2c->addr, ##arg); \
123 } while (0)
124
125#define tuner_err(fmt, arg...) do { \
126 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
127 i2c_adapter_id(t->i2c->adapter), \
128 t->i2c->addr, ##arg); \
129 } while (0)
130
131#define tuner_dbg(fmt, arg...) do { \
132 if (tuner_debug) \
133 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
134 i2c_adapter_id(t->i2c->adapter), \
135 t->i2c->addr, ##arg); \
136 } while (0)
137
138/* ------------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700140static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static unsigned int radio_range[2] = { 65, 108 };
142
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200143static char pal[] = "--";
144static char secam[] = "--";
145static char ntsc[] = "-";
146
Hans Verkuilf9195de2006-01-11 19:01:01 -0200147
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200148module_param(addr, int, 0444);
149module_param(no_autodetect, int, 0444);
150module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -0200151module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200152module_param_string(pal, pal, sizeof(pal), 0644);
153module_param_string(secam, secam, sizeof(secam), 0644);
154module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700155module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156module_param_array(radio_range, int, NULL, 0644);
157
158MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
159MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
160MODULE_LICENSE("GPL");
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/* ---------------------------------------------------------------------- */
163
Michael Krufkyc7919d52007-12-08 17:06:30 -0300164static void fe_set_params(struct dvb_frontend *fe,
165 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300166{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300167 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
168 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300169
Michael Krufkye18f9442007-08-21 01:25:48 -0300170 if (NULL == fe_tuner_ops->set_analog_params) {
171 tuner_warn("Tuner frontend module has no way to set freq\n");
172 return;
173 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300174 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300175}
176
Michael Krufky4e9154b2007-10-21 19:39:50 -0300177static void fe_standby(struct dvb_frontend *fe)
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;
Michael Krufkye18f9442007-08-21 01:25:48 -0300180
181 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300182 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300183}
184
Michael Krufky4e9154b2007-10-21 19:39:50 -0300185static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300186{
Michael Krufky14196832007-10-14 18:11:53 -0300187 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300188
Michael Krufky4e9154b2007-10-21 19:39:50 -0300189 if (fe->ops.tuner_ops.get_rf_strength)
190 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300191
192 return strength;
193}
194
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300195static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
196{
197 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
198 struct tuner *t = fe->analog_demod_priv;
199
200 if (fe_tuner_ops->set_config)
201 return fe_tuner_ops->set_config(fe, priv_cfg);
202
203 tuner_warn("Tuner frontend module has no way to set config\n");
204
205 return 0;
206}
207
Michael Krufky4e9154b2007-10-21 19:39:50 -0300208static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300209
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300210static struct analog_demod_ops tuner_analog_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300211 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300212 .standby = fe_standby,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300213 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300214 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300215 .tuner_status = tuner_status
216};
217
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700218/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219static void set_tv_freq(struct i2c_client *c, unsigned int freq)
220{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300221 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300222 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Michael Krufkyc7919d52007-12-08 17:06:30 -0300224 struct analog_parameters params = {
225 .mode = t->mode,
226 .audmode = t->audmode,
227 .std = t->std
228 };
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700231 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return;
233 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300234 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700235 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return;
237 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700238 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
239 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
240 freq / 16, freq % 16 * 100 / 16, tv_range[0],
241 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200242 /* V4L2 spec: if the freq is not possible then the closest
243 possible value should be selected */
244 if (freq < tv_range[0] * 16)
245 freq = tv_range[0] * 16;
246 else
247 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300249 params.frequency = freq;
250
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300251 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254static void set_radio_freq(struct i2c_client *c, unsigned int freq)
255{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300256 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300257 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Michael Krufkyc7919d52007-12-08 17:06:30 -0300259 struct analog_parameters params = {
260 .mode = t->mode,
261 .audmode = t->audmode,
262 .std = t->std
263 };
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700266 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return;
268 }
Mauro Carvalho Chehabe545d6e2008-01-05 16:37:04 -0300269 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700270 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return;
272 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200273 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700274 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
275 freq / 16000, freq % 16000 * 100 / 16000,
276 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200277 /* V4L2 spec: if the freq is not possible then the closest
278 possible value should be selected */
279 if (freq < radio_range[0] * 16000)
280 freq = radio_range[0] * 16000;
281 else
282 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300284 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700285
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300286 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289static void set_freq(struct i2c_client *c, unsigned long freq)
290{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300291 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 switch (t->mode) {
294 case V4L2_TUNER_RADIO:
295 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700296 freq / 16000, freq % 16000 * 100 / 16000);
297 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200298 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 break;
300 case V4L2_TUNER_ANALOG_TV:
301 case V4L2_TUNER_DIGITAL_TV:
302 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700303 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200305 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300307 default:
308 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Steven Toth27c685a2008-01-05 16:50:14 -0300312static struct xc5000_config xc5000_cfg;
313
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700314static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300315 unsigned int new_mode_mask, unsigned int new_config,
Michael Krufkyd7cba042008-09-12 13:31:45 -0300316 int (*tuner_callback) (void *dev, int component, int cmd, int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300318 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkye18f9442007-08-21 01:25:48 -0300319 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300320 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700321 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700323 if (type == UNSET || type == TUNER_ABSENT) {
324 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return;
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 t->type = type;
Michael Krufkye7ddcd92009-03-28 15:35:26 -0300329 /* prevent invalid config values */
330 t->config = ((new_config >= 0) && (new_config < 256)) ? new_config : 0;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300331 if (tuner_callback != NULL) {
332 tuner_dbg("defining GPIO callback\n");
Michael Krufkyd7cba042008-09-12 13:31:45 -0300333 t->fe.callback = tuner_callback;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300334 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300335
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300336 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300337 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
338
339 return;
340 }
341
Michael Krufkyb2083192007-05-29 22:54:06 -0300342 /* discard private data, in case set_type() was previously called */
Michael Krufkya07c8772008-04-29 03:54:19 -0300343 tuner_detach(&t->fe);
344 t->fe.analog_demod_priv = NULL;
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 switch (t->type) {
347 case TUNER_MT2032:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300348 if (!dvb_attach(microtune_attach,
349 &t->fe, t->i2c->adapter, t->i2c->addr))
350 goto attach_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 break;
352 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300353 {
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300354 struct tda829x_config cfg = {
355 .lna_cfg = t->config,
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300356 };
357 if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter,
358 t->i2c->addr, &cfg))
359 goto attach_failed;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300360 break;
361 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700362 case TUNER_TEA5767:
Michael Krufkya07c8772008-04-29 03:54:19 -0300363 if (!dvb_attach(tea5767_attach, &t->fe,
364 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300365 goto attach_failed;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700366 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700367 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300368 case TUNER_TEA5761:
Michael Krufkya07c8772008-04-29 03:54:19 -0300369 if (!dvb_attach(tea5761_attach, &t->fe,
370 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300371 goto attach_failed;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300372 t->mode_mask = T_RADIO;
373 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700374 case TUNER_PHILIPS_FMD1216ME_MK3:
375 buffer[0] = 0x0b;
376 buffer[1] = 0xdc;
377 buffer[2] = 0x9c;
378 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700379 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700380 mdelay(1);
381 buffer[2] = 0x86;
382 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700383 i2c_master_send(c, buffer, 4);
Michael Krufkya07c8772008-04-29 03:54:19 -0300384 if (!dvb_attach(simple_tuner_attach, &t->fe,
385 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300386 goto attach_failed;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700387 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800388 case TUNER_PHILIPS_TD1316:
389 buffer[0] = 0x0b;
390 buffer[1] = 0xdc;
391 buffer[2] = 0x86;
392 buffer[3] = 0xa4;
Michael Krufkya07c8772008-04-29 03:54:19 -0300393 i2c_master_send(c, buffer, 4);
394 if (!dvb_attach(simple_tuner_attach, &t->fe,
395 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300396 goto attach_failed;
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200397 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300398 case TUNER_XC2028:
399 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300400 struct xc2028_config cfg = {
401 .i2c_adap = t->i2c->adapter,
402 .i2c_addr = t->i2c->addr,
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300403 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300404 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300405 goto attach_failed;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300406 break;
407 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300408 case TUNER_TDA9887:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300409 if (!dvb_attach(tda9887_attach,
410 &t->fe, t->i2c->adapter, t->i2c->addr))
411 goto attach_failed;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300412 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300413 case TUNER_XC5000:
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300414 {
Steven Toth27c685a2008-01-05 16:50:14 -0300415 xc5000_cfg.i2c_address = t->i2c->addr;
Devin Heitmuellerea227862009-03-11 02:58:53 -0300416 /* if_khz will be set when the digital dvb_attach() occurs */
417 xc5000_cfg.if_khz = 0;
Michael Krufkya07c8772008-04-29 03:54:19 -0300418 if (!dvb_attach(xc5000_attach,
Michael Krufky30650962008-09-06 14:56:58 -0300419 &t->fe, t->i2c->adapter, &xc5000_cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300420 goto attach_failed;
Steven Toth27c685a2008-01-05 16:50:14 -0300421 break;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 default:
Michael Krufkya07c8772008-04-29 03:54:19 -0300424 if (!dvb_attach(simple_tuner_attach, &t->fe,
425 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300426 goto attach_failed;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 break;
429 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700430
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300431 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300432 (fe_tuner_ops->set_analog_params)) {
Michael Krufkya07c8772008-04-29 03:54:19 -0300433
Michael Krufky7271e602008-05-26 16:08:40 +0200434 t->name = fe_tuner_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300435
Michael Krufky4e9154b2007-10-21 19:39:50 -0300436 t->fe.analog_demod_priv = t;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300437 memcpy(analog_ops, &tuner_analog_ops,
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300438 sizeof(struct analog_demod_ops));
Michael Krufkya07c8772008-04-29 03:54:19 -0300439
Michael Krufkya55db8c2007-12-09 13:52:51 -0300440 } else {
Michael Krufky7271e602008-05-26 16:08:40 +0200441 t->name = analog_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300442 }
443
Michael Krufky7271e602008-05-26 16:08:40 +0200444 tuner_dbg("type set to %s\n", t->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300445
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700446 if (t->mode_mask == T_UNINITIALIZED)
447 t->mode_mask = new_mode_mask;
448
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300449 /* xc2028/3028 and xc5000 requires a firmware to be set-up later
450 trying to set a frequency here will just fail
451 FIXME: better to move set_freq to the tuner code. This is needed
452 on analog tuners for PLL to properly work
453 */
454 if (t->type != TUNER_XC2028 && t->type != TUNER_XC5000)
455 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ?
456 t->radio_freq : t->tv_freq);
457
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700458 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100459 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700460 t->mode_mask);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300461 return;
462
463attach_failed:
464 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
465 t->type = TUNER_ABSENT;
466 t->mode_mask = T_UNINITIALIZED;
467
468 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700471/*
472 * This function apply tuner config to tuner specified
473 * by tun_setup structure. I addr is unset, then admin status
474 * and tun addr status is more precise then current status,
475 * it's applied. Otherwise status and type are applied only to
476 * tuner with exactly the same addr.
477*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700478
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700479static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700480{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300481 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700482
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300483 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
484 (t->mode_mask & tun_setup->mode_mask))) ||
485 (tun_setup->addr == c->addr)) {
486 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300487 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300488 } else
489 tuner_dbg("set addr discarded for type %i, mask %x. "
490 "Asked to change tuner at addr 0x%02x, with mask %x\n",
491 t->type, t->mode_mask,
492 tun_setup->addr, tun_setup->mode_mask);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700493}
494
495static inline int check_mode(struct tuner *t, char *cmd)
496{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700497 if ((1 << t->mode & t->mode_mask) == 0) {
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300498 return -EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700499 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700500
501 switch (t->mode) {
502 case V4L2_TUNER_RADIO:
503 tuner_dbg("Cmd %s accepted for radio\n", cmd);
504 break;
505 case V4L2_TUNER_ANALOG_TV:
506 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
507 break;
508 case V4L2_TUNER_DIGITAL_TV:
509 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
510 break;
511 }
512 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700513}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700514
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700515/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516static int tuner_fixup_std(struct tuner *t)
517{
518 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300520 case '6':
521 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
522 t->std = V4L2_STD_PAL_60;
523 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 case 'b':
525 case 'B':
526 case 'g':
527 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700528 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 t->std = V4L2_STD_PAL_BG;
530 break;
531 case 'i':
532 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700533 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 t->std = V4L2_STD_PAL_I;
535 break;
536 case 'd':
537 case 'D':
538 case 'k':
539 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700540 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 t->std = V4L2_STD_PAL_DK;
542 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700543 case 'M':
544 case 'm':
545 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
546 t->std = V4L2_STD_PAL_M;
547 break;
548 case 'N':
549 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200550 if (pal[1] == 'c' || pal[1] == 'C') {
551 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
552 t->std = V4L2_STD_PAL_Nc;
553 } else {
554 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
555 t->std = V4L2_STD_PAL_N;
556 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700557 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700558 case '-':
559 /* default parameter, do nothing */
560 break;
561 default:
562 tuner_warn ("pal= argument not recognised\n");
563 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700566 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
567 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200568 case 'b':
569 case 'B':
570 case 'g':
571 case 'G':
572 case 'h':
573 case 'H':
574 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
575 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
576 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700577 case 'd':
578 case 'D':
579 case 'k':
580 case 'K':
581 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
582 t->std = V4L2_STD_SECAM_DK;
583 break;
584 case 'l':
585 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800586 if ((secam[1]=='C')||(secam[1]=='c')) {
587 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
588 t->std = V4L2_STD_SECAM_LC;
589 } else {
590 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
591 t->std = V4L2_STD_SECAM_L;
592 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700593 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700594 case '-':
595 /* default parameter, do nothing */
596 break;
597 default:
598 tuner_warn ("secam= argument not recognised\n");
599 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700600 }
601 }
602
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200603 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
604 switch (ntsc[0]) {
605 case 'm':
606 case 'M':
607 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
608 t->std = V4L2_STD_NTSC_M;
609 break;
610 case 'j':
611 case 'J':
612 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
613 t->std = V4L2_STD_NTSC_M_JP;
614 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200615 case 'k':
616 case 'K':
617 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
618 t->std = V4L2_STD_NTSC_M_KR;
619 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200620 case '-':
621 /* default parameter, do nothing */
622 break;
623 default:
624 tuner_info("ntsc= argument not recognised\n");
625 break;
626 }
627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return 0;
629}
630
Michael Krufky4e9154b2007-10-21 19:39:50 -0300631static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200632{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300633 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200634 unsigned long freq, freq_fraction;
Michael Krufkya07c8772008-04-29 03:54:19 -0300635 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
636 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200637 const char *p;
638
639 switch (t->mode) {
640 case V4L2_TUNER_RADIO: p = "radio"; break;
641 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
642 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
643 default: p = "undefined"; break;
644 }
645 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200646 freq = t->radio_freq / 16000;
647 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200648 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200649 freq = t->tv_freq / 16;
650 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200651 }
652 tuner_info("Tuner mode: %s\n", p);
653 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300654 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200655 if (t->mode != V4L2_TUNER_RADIO)
656 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300657 if (fe_tuner_ops->get_status) {
658 u32 tuner_status;
659
660 fe_tuner_ops->get_status(&t->fe, &tuner_status);
661 if (tuner_status & TUNER_STATUS_LOCKED)
662 tuner_info("Tuner is locked.\n");
663 if (tuner_status & TUNER_STATUS_STEREO)
664 tuner_info("Stereo: yes\n");
665 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300666 if (analog_ops->has_signal)
667 tuner_info("Signal strength: %d\n",
668 analog_ops->has_signal(fe));
669 if (analog_ops->is_stereo)
670 tuner_info("Stereo: %s\n",
671 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200672}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/* ---------------------------------------------------------------------- */
675
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700676/*
677 * Switch tuner to other mode. If tuner support both tv and radio,
678 * set another frequency to some value (This is needed for some pal
679 * tuners to avoid locking). Otherwise, just put second tuner in
680 * standby mode.
681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700683static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
684{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300685 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300686
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800687 if (mode == t->mode)
688 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700689
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800690 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700691
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300692 if (check_mode(t, cmd) == -EINVAL) {
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -0300693 tuner_dbg("Tuner doesn't support this mode. "
694 "Putting tuner to sleep\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800695 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300696 if (analog_ops->standby)
697 analog_ops->standby(&t->fe);
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300698 return -EINVAL;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800699 }
700 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700701}
702
703#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800704 tuner_dbg("switching to v4l2\n"); \
705 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700706
707static inline int check_v4l2(struct tuner *t)
708{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300709 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
710 TV, v4l1 for radio), until that is fixed this code is disabled.
711 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
712 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700713 return 0;
714}
715
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300716static int tuner_s_type_addr(struct v4l2_subdev *sd, struct tuner_setup *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300718 struct tuner *t = to_tuner(sd);
719 struct i2c_client *client = v4l2_get_subdevdata(sd);
720
721 tuner_dbg("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
722 type->type,
723 type->addr,
724 type->mode_mask,
725 type->config);
726
727 set_addr(client, type);
728 return 0;
729}
730
731static int tuner_s_radio(struct v4l2_subdev *sd)
732{
733 struct tuner *t = to_tuner(sd);
734 struct i2c_client *client = v4l2_get_subdevdata(sd);
735
Hans Verkuilbccfa442009-03-30 06:55:27 -0300736 if (set_mode(client, t, V4L2_TUNER_RADIO, "s_radio") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300737 return 0;
738 if (t->radio_freq)
739 set_freq(client, t->radio_freq);
740 return 0;
741}
742
Hans Verkuil7c9fc9d2009-04-01 03:49:59 -0300743static int tuner_s_standby(struct v4l2_subdev *sd)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300744{
745 struct tuner *t = to_tuner(sd);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300746 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -0300748 tuner_dbg("Putting tuner to sleep\n");
749
Hans Verkuilbccfa442009-03-30 06:55:27 -0300750 if (check_mode(t, "s_standby") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300751 return 0;
752 t->mode = T_STANDBY;
753 if (analog_ops->standby)
754 analog_ops->standby(&t->fe);
755 return 0;
756}
757
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300758static int tuner_s_config(struct v4l2_subdev *sd, const struct v4l2_priv_tun_config *cfg)
759{
760 struct tuner *t = to_tuner(sd);
761 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300762
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300763 if (t->type != cfg->tuner)
764 return 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300765
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300766 if (analog_ops->set_config) {
767 analog_ops->set_config(&t->fe, cfg->priv);
768 return 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300771 tuner_dbg("Tuner frontend module has no way to set config\n");
772 return 0;
773}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700774
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300775/* --- v4l ioctls --- */
776/* take care: bttv does userspace copying, we'll get a
777 kernel pointer here... */
778static int tuner_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
779{
780 struct tuner *t = to_tuner(sd);
781 struct i2c_client *client = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Hans Verkuilbccfa442009-03-30 06:55:27 -0300783 if (set_mode(client, t, V4L2_TUNER_ANALOG_TV, "s_std") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300784 return 0;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700785
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300786 switch_v4l2();
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700787
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300788 t->std = std;
789 tuner_fixup_std(t);
790 if (t->tv_freq)
791 set_freq(client, t->tv_freq);
792 return 0;
793}
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700794
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300795static int tuner_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
796{
797 struct tuner *t = to_tuner(sd);
798 struct i2c_client *client = v4l2_get_subdevdata(sd);
Michael Krufkye18f9442007-08-21 01:25:48 -0300799
Hans Verkuilbccfa442009-03-30 06:55:27 -0300800 if (set_mode(client, t, f->type, "s_frequency") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300801 return 0;
802 switch_v4l2();
803 set_freq(client, f->frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 return 0;
806}
807
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300808static int tuner_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
809{
810 struct tuner *t = to_tuner(sd);
811 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
812
Hans Verkuilbccfa442009-03-30 06:55:27 -0300813 if (check_mode(t, "g_frequency") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300814 return 0;
815 switch_v4l2();
816 f->type = t->mode;
817 if (fe_tuner_ops->get_frequency) {
818 u32 abs_freq;
819
820 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
821 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
822 (abs_freq * 2 + 125/2) / 125 :
823 (abs_freq + 62500/2) / 62500;
824 return 0;
825 }
826 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
827 t->radio_freq : t->tv_freq;
828 return 0;
829}
830
831static int tuner_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
832{
833 struct tuner *t = to_tuner(sd);
834 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
835 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
836
Hans Verkuilbccfa442009-03-30 06:55:27 -0300837 if (check_mode(t, "g_tuner") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300838 return 0;
839 switch_v4l2();
840
841 vt->type = t->mode;
842 if (analog_ops->get_afc)
843 vt->afc = analog_ops->get_afc(&t->fe);
844 if (t->mode == V4L2_TUNER_ANALOG_TV)
845 vt->capability |= V4L2_TUNER_CAP_NORM;
846 if (t->mode != V4L2_TUNER_RADIO) {
847 vt->rangelow = tv_range[0] * 16;
848 vt->rangehigh = tv_range[1] * 16;
849 return 0;
850 }
851
852 /* radio mode */
853 vt->rxsubchans =
854 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
855 if (fe_tuner_ops->get_status) {
856 u32 tuner_status;
857
858 fe_tuner_ops->get_status(&t->fe, &tuner_status);
859 vt->rxsubchans =
860 (tuner_status & TUNER_STATUS_STEREO) ?
861 V4L2_TUNER_SUB_STEREO :
862 V4L2_TUNER_SUB_MONO;
863 } else {
864 if (analog_ops->is_stereo) {
865 vt->rxsubchans =
866 analog_ops->is_stereo(&t->fe) ?
867 V4L2_TUNER_SUB_STEREO :
868 V4L2_TUNER_SUB_MONO;
869 }
870 }
871 if (analog_ops->has_signal)
872 vt->signal = analog_ops->has_signal(&t->fe);
873 vt->capability |=
874 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
875 vt->audmode = t->audmode;
876 vt->rangelow = radio_range[0] * 16000;
877 vt->rangehigh = radio_range[1] * 16000;
878 return 0;
879}
880
881static int tuner_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
882{
883 struct tuner *t = to_tuner(sd);
884 struct i2c_client *client = v4l2_get_subdevdata(sd);
885
Hans Verkuilbccfa442009-03-30 06:55:27 -0300886 if (check_mode(t, "s_tuner") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300887 return 0;
888
889 switch_v4l2();
890
891 /* do nothing unless we're a radio tuner */
892 if (t->mode != V4L2_TUNER_RADIO)
893 return 0;
894 t->audmode = vt->audmode;
895 set_radio_freq(client, t->radio_freq);
896 return 0;
897}
898
899static int tuner_log_status(struct v4l2_subdev *sd)
900{
901 struct tuner *t = to_tuner(sd);
902 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
903
904 if (analog_ops->tuner_status)
905 analog_ops->tuner_status(&t->fe);
906 return 0;
907}
908
Jean Delvare21b48a72007-03-12 19:20:15 -0300909static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300911 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300913 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /* FIXME: power down ??? */
915 return 0;
916}
917
Jean Delvare21b48a72007-03-12 19:20:15 -0300918static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300920 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300922 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -0200923 if (V4L2_TUNER_RADIO == t->mode) {
924 if (t->radio_freq)
925 set_freq(c, t->radio_freq);
926 } else {
927 if (t->tv_freq)
928 set_freq(c, t->tv_freq);
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return 0;
931}
932
Hans Verkuil75b4c262009-04-01 03:32:22 -0300933static int tuner_command(struct i2c_client *client, unsigned cmd, void *arg)
934{
935 struct v4l2_subdev *sd = i2c_get_clientdata(client);
936
937 /* TUNER_SET_CONFIG is still called by tuner-simple.c, so we have
938 to handle it here.
939 There must be a better way of doing this... */
940 switch (cmd) {
941 case TUNER_SET_CONFIG:
942 return tuner_s_config(sd, arg);
943 }
944 return -ENOIOCTLCMD;
945}
946
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300947/* ----------------------------------------------------------------------- */
948
949static const struct v4l2_subdev_core_ops tuner_core_ops = {
950 .log_status = tuner_log_status,
Hans Verkuilf41737e2009-04-01 03:52:39 -0300951 .s_std = tuner_s_std,
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300952};
953
954static const struct v4l2_subdev_tuner_ops tuner_tuner_ops = {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300955 .s_radio = tuner_s_radio,
956 .g_tuner = tuner_g_tuner,
957 .s_tuner = tuner_s_tuner,
958 .s_frequency = tuner_s_frequency,
959 .g_frequency = tuner_g_frequency,
960 .s_type_addr = tuner_s_type_addr,
961 .s_config = tuner_s_config,
Hans Verkuil7c9fc9d2009-04-01 03:49:59 -0300962 .s_standby = tuner_s_standby,
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300963};
964
965static const struct v4l2_subdev_ops tuner_ops = {
966 .core = &tuner_core_ops,
967 .tuner = &tuner_tuner_ops,
968};
969
Hans Verkuil92de1f12007-11-04 10:53:09 -0300970/* ---------------------------------------------------------------------- */
971
Adrian Bunkc52c4d02008-01-28 22:11:15 -0300972static LIST_HEAD(tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -0300973
974/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300975 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -0300976 certain no other devices will be added/deleted at the same time, I2C
977 core protects against that. */
978static void tuner_lookup(struct i2c_adapter *adap,
979 struct tuner **radio, struct tuner **tv)
980{
981 struct tuner *pos;
982
983 *radio = NULL;
984 *tv = NULL;
985
986 list_for_each_entry(pos, &tuner_list, list) {
987 int mode_mask;
988
989 if (pos->i2c->adapter != adap ||
Hans Verkuil0c846742009-03-29 19:40:01 -0300990 strcmp(pos->i2c->driver->driver.name, "tuner"))
Hans Verkuil92de1f12007-11-04 10:53:09 -0300991 continue;
992
993 mode_mask = pos->mode_mask & ~T_STANDBY;
994 if (*radio == NULL && mode_mask == T_RADIO)
995 *radio = pos;
996 /* Note: currently TDA9887 is the only demod-only
997 device. If other devices appear then we need to
998 make this test more general. */
999 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1000 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1001 *tv = pos;
1002 }
1003}
1004
1005/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001006 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001007 */
Jean Delvared2653e92008-04-29 23:11:39 +02001008static int tuner_probe(struct i2c_client *client,
1009 const struct i2c_device_id *id)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001010{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001011 struct tuner *t;
1012 struct tuner *radio;
1013 struct tuner *tv;
1014
Hans Verkuil92de1f12007-11-04 10:53:09 -03001015 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001016 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001017 return -ENOMEM;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001018 v4l2_i2c_subdev_init(&t->sd, client, &tuner_ops);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001019 t->i2c = client;
Michael Krufky7271e602008-05-26 16:08:40 +02001020 t->name = "(tuner unset)";
Hans Verkuil92de1f12007-11-04 10:53:09 -03001021 t->type = UNSET;
1022 t->audmode = V4L2_TUNER_MODE_STEREO;
1023 t->mode_mask = T_UNINITIALIZED;
1024
1025 if (show_i2c) {
1026 unsigned char buffer[16];
1027 int i, rc;
1028
1029 memset(buffer, 0, sizeof(buffer));
1030 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1031 tuner_info("I2C RECV = ");
1032 for (i = 0; i < rc; i++)
1033 printk(KERN_CONT "%02x ", buffer[i]);
1034 printk("\n");
1035 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001036 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001037 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001038 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1039 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001040 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001041 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001042
1043 /* autodetection code based on the i2c addr */
1044 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001045 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001046 case 0x10:
Michael Krufkya07c8772008-04-29 03:54:19 -03001047 if (tuner_symbol_probe(tea5761_autodetection,
1048 t->i2c->adapter,
1049 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001050 t->type = TUNER_TEA5761;
1051 t->mode_mask = T_RADIO;
1052 t->mode = T_STANDBY;
1053 /* Sets freq to FM range */
1054 t->radio_freq = 87.5 * 16000;
1055 tuner_lookup(t->i2c->adapter, &radio, &tv);
1056 if (tv)
1057 tv->mode_mask &= ~T_RADIO;
1058
1059 goto register_client;
1060 }
Mauro Carvalho Chehab867e8352008-04-23 17:27:27 -03001061 return -ENODEV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001062 case 0x42:
1063 case 0x43:
1064 case 0x4a:
1065 case 0x4b:
1066 /* If chip is not tda8290, don't register.
1067 since it can be tda9887*/
Michael Krufkya07c8772008-04-29 03:54:19 -03001068 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001069 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001070 tuner_dbg("tda829x detected\n");
1071 } else {
1072 /* Default is being tda9887 */
1073 t->type = TUNER_TDA9887;
1074 t->mode_mask = T_RADIO | T_ANALOG_TV |
1075 T_DIGITAL_TV;
1076 t->mode = T_STANDBY;
1077 goto register_client;
1078 }
1079 break;
1080 case 0x60:
Michael Krufkya07c8772008-04-29 03:54:19 -03001081 if (tuner_symbol_probe(tea5767_autodetection,
1082 t->i2c->adapter, t->i2c->addr)
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001083 >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001084 t->type = TUNER_TEA5767;
1085 t->mode_mask = T_RADIO;
1086 t->mode = T_STANDBY;
1087 /* Sets freq to FM range */
1088 t->radio_freq = 87.5 * 16000;
1089 tuner_lookup(t->i2c->adapter, &radio, &tv);
1090 if (tv)
1091 tv->mode_mask &= ~T_RADIO;
1092
1093 goto register_client;
1094 }
1095 break;
1096 }
1097 }
1098
1099 /* Initializes only the first TV tuner on this adapter. Why only the
1100 first? Because there are some devices (notably the ones with TI
1101 tuners) that have more than one i2c address for the *same* device.
1102 Experience shows that, except for just one case, the first
1103 address is the right one. The exception is a Russian tuner
1104 (ACORP_Y878F). So, the desired behavior is just to enable the
1105 first found TV tuner. */
1106 tuner_lookup(t->i2c->adapter, &radio, &tv);
1107 if (tv == NULL) {
1108 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1109 if (radio == NULL)
1110 t->mode_mask |= T_RADIO;
1111 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1112 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1113 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1114 }
1115
1116 /* Should be just before return */
1117register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001118 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1119 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001120
1121 /* Sets a default mode */
1122 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001123 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001124 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001125 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001126 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001127 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001128 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001129 set_type(client, t->type, t->mode_mask, t->config, t->fe.callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001130 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001131 return 0;
1132}
1133
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001134static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001135{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001136 struct tuner *t = to_tuner(i2c_get_clientdata(client));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001137
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001138 v4l2_device_unregister_subdev(&t->sd);
Michael Krufkya07c8772008-04-29 03:54:19 -03001139 tuner_detach(&t->fe);
1140 t->fe.analog_demod_priv = NULL;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001141
1142 list_del(&t->list);
1143 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001144 return 0;
1145}
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147/* ----------------------------------------------------------------------- */
1148
Jean Delvareaf294862008-05-18 20:49:40 +02001149/* This driver supports many devices and the idea is to let the driver
1150 detect which device is present. So rather than listing all supported
1151 devices here, we pretend to support a single, fake device type. */
1152static const struct i2c_device_id tuner_id[] = {
1153 { "tuner", }, /* autodetect */
1154 { }
1155};
1156MODULE_DEVICE_TABLE(i2c, tuner_id);
1157
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001158static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1159 .name = "tuner",
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001160 .probe = tuner_probe,
1161 .remove = tuner_remove,
Hans Verkuil75b4c262009-04-01 03:32:22 -03001162 .command = tuner_command,
Jean Delvare21b48a72007-03-12 19:20:15 -03001163 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001164 .resume = tuner_resume,
Jean Delvareaf294862008-05-18 20:49:40 +02001165 .id_table = tuner_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166};
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168/*
1169 * Overrides for Emacs so that we follow Linus's tabbing style.
1170 * ---------------------------------------------------------------------------
1171 * Local variables:
1172 * c-basic-offset: 8
1173 * End:
1174 */