blob: a9c9703113c2fa3b8dee0dae96adceb88c7157c7 [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"
Michael Krufky93463892009-09-15 23:04:18 -030032#include "tda18271.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#define UNSET (-1U)
35
Hans Verkuil9dd659d2007-11-04 11:03:36 -030036#define PREFIX t->i2c->driver->driver.name
Michael Krufky241020d2007-10-30 09:46:10 -030037
Michael Krufkya07c8772008-04-29 03:54:19 -030038/** This macro allows us to probe dynamically, avoiding static links */
Mauro Carvalho Chehabff138172008-04-29 23:02:33 -030039#ifdef CONFIG_MEDIA_ATTACH
Michael Krufkya07c8772008-04-29 03:54:19 -030040#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
41 int __r = -EINVAL; \
42 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
43 if (__a) { \
44 __r = (int) __a(ARGS); \
Andrew Mortona1355e52008-04-30 11:40:17 -030045 symbol_put(FUNCTION); \
Michael Krufkya07c8772008-04-29 03:54:19 -030046 } else { \
47 printk(KERN_ERR "TUNER: Unable to find " \
48 "symbol "#FUNCTION"()\n"); \
49 } \
Michael Krufkya07c8772008-04-29 03:54:19 -030050 __r; \
51})
52
53static void tuner_detach(struct dvb_frontend *fe)
54{
55 if (fe->ops.tuner_ops.release) {
56 fe->ops.tuner_ops.release(fe);
57 symbol_put_addr(fe->ops.tuner_ops.release);
58 }
59 if (fe->ops.analog_ops.release) {
60 fe->ops.analog_ops.release(fe);
61 symbol_put_addr(fe->ops.analog_ops.release);
62 }
63}
64#else
65#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
66 FUNCTION(ARGS); \
67})
68
69static void tuner_detach(struct dvb_frontend *fe)
70{
71 if (fe->ops.tuner_ops.release)
72 fe->ops.tuner_ops.release(fe);
73 if (fe->ops.analog_ops.release)
74 fe->ops.analog_ops.release(fe);
75}
76#endif
77
Michael Krufkyf7f427e2007-12-16 22:02:26 -030078struct tuner {
79 /* device */
80 struct dvb_frontend fe;
81 struct i2c_client *i2c;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -030082 struct v4l2_subdev sd;
Michael Krufkyf7f427e2007-12-16 22:02:26 -030083 struct list_head list;
84 unsigned int using_v4l2:1;
85
86 /* keep track of the current settings */
87 v4l2_std_id std;
88 unsigned int tv_freq;
89 unsigned int radio_freq;
90 unsigned int audmode;
91
92 unsigned int mode;
93 unsigned int mode_mask; /* Combination of allowable modes */
94
95 unsigned int type; /* chip type id */
96 unsigned int config;
Michael Krufky7271e602008-05-26 16:08:40 +020097 const char *name;
Michael Krufkyf7f427e2007-12-16 22:02:26 -030098};
99
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300100static inline struct tuner *to_tuner(struct v4l2_subdev *sd)
101{
102 return container_of(sd, struct tuner, sd);
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* insmod options used at init time => read/only */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300107static unsigned int addr;
108static unsigned int no_autodetect;
109static unsigned int show_i2c;
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/* insmod options used at runtime => read/write */
Michael Krufkyab166052007-12-09 02:26:48 -0300112static int tuner_debug;
113
114#define tuner_warn(fmt, arg...) do { \
115 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
116 i2c_adapter_id(t->i2c->adapter), \
117 t->i2c->addr, ##arg); \
118 } while (0)
119
120#define tuner_info(fmt, arg...) do { \
121 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
122 i2c_adapter_id(t->i2c->adapter), \
123 t->i2c->addr, ##arg); \
124 } while (0)
125
126#define tuner_err(fmt, arg...) do { \
127 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
128 i2c_adapter_id(t->i2c->adapter), \
129 t->i2c->addr, ##arg); \
130 } while (0)
131
132#define tuner_dbg(fmt, arg...) do { \
133 if (tuner_debug) \
134 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
135 i2c_adapter_id(t->i2c->adapter), \
136 t->i2c->addr, ##arg); \
137 } while (0)
138
139/* ------------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700141static unsigned int tv_range[2] = { 44, 958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static unsigned int radio_range[2] = { 65, 108 };
143
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200144static char pal[] = "--";
145static char secam[] = "--";
146static char ntsc[] = "-";
147
Hans Verkuilf9195de2006-01-11 19:01:01 -0200148
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200149module_param(addr, int, 0444);
150module_param(no_autodetect, int, 0444);
151module_param(show_i2c, int, 0444);
Hans Verkuilf9195de2006-01-11 19:01:01 -0200152module_param_named(debug,tuner_debug, int, 0644);
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200153module_param_string(pal, pal, sizeof(pal), 0644);
154module_param_string(secam, secam, sizeof(secam), 0644);
155module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700156module_param_array(tv_range, int, NULL, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157module_param_array(radio_range, int, NULL, 0644);
158
159MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
160MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
161MODULE_LICENSE("GPL");
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/* ---------------------------------------------------------------------- */
164
Michael Krufkyc7919d52007-12-08 17:06:30 -0300165static void fe_set_params(struct dvb_frontend *fe,
166 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300167{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300168 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
169 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300170
Michael Krufkye18f9442007-08-21 01:25:48 -0300171 if (NULL == fe_tuner_ops->set_analog_params) {
172 tuner_warn("Tuner frontend module has no way to set freq\n");
173 return;
174 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300175 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300176}
177
Michael Krufky4e9154b2007-10-21 19:39:50 -0300178static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300179{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300180 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300181
182 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300183 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300184}
185
Michael Krufky4e9154b2007-10-21 19:39:50 -0300186static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300187{
Michael Krufky14196832007-10-14 18:11:53 -0300188 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300189
Michael Krufky4e9154b2007-10-21 19:39:50 -0300190 if (fe->ops.tuner_ops.get_rf_strength)
191 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300192
193 return strength;
194}
195
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300196static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
197{
198 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
199 struct tuner *t = fe->analog_demod_priv;
200
201 if (fe_tuner_ops->set_config)
202 return fe_tuner_ops->set_config(fe, priv_cfg);
203
204 tuner_warn("Tuner frontend module has no way to set config\n");
205
206 return 0;
207}
208
Michael Krufky4e9154b2007-10-21 19:39:50 -0300209static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300210
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300211static struct analog_demod_ops tuner_analog_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300212 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300213 .standby = fe_standby,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300214 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300215 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300216 .tuner_status = tuner_status
217};
218
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700219/* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static void set_tv_freq(struct i2c_client *c, unsigned int freq)
221{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300222 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300223 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Michael Krufkyc7919d52007-12-08 17:06:30 -0300225 struct analog_parameters params = {
226 .mode = t->mode,
227 .audmode = t->audmode,
228 .std = t->std
229 };
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700232 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return;
234 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300235 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700236 tuner_warn ("Tuner has no way to set tv freq\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return;
238 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700239 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
240 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
241 freq / 16, freq % 16 * 100 / 16, tv_range[0],
242 tv_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200243 /* V4L2 spec: if the freq is not possible then the closest
244 possible value should be selected */
245 if (freq < tv_range[0] * 16)
246 freq = tv_range[0] * 16;
247 else
248 freq = tv_range[1] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300250 params.frequency = freq;
251
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300252 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255static void set_radio_freq(struct i2c_client *c, unsigned int freq)
256{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300257 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300258 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Michael Krufkyc7919d52007-12-08 17:06:30 -0300260 struct analog_parameters params = {
261 .mode = t->mode,
262 .audmode = t->audmode,
263 .std = t->std
264 };
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (t->type == UNSET) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700267 tuner_warn ("tuner type not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return;
269 }
Mauro Carvalho Chehabe545d6e2008-01-05 16:37:04 -0300270 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700271 tuner_warn ("tuner has no way to set radio frequency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return;
273 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200274 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700275 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
276 freq / 16000, freq % 16000 * 100 / 16000,
277 radio_range[0], radio_range[1]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200278 /* V4L2 spec: if the freq is not possible then the closest
279 possible value should be selected */
280 if (freq < radio_range[0] * 16000)
281 freq = radio_range[0] * 16000;
282 else
283 freq = radio_range[1] * 16000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300285 params.frequency = freq;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700286
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300287 analog_ops->set_params(&t->fe, &params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290static void set_freq(struct i2c_client *c, unsigned long freq)
291{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300292 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 switch (t->mode) {
295 case V4L2_TUNER_RADIO:
296 tuner_dbg("radio freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700297 freq / 16000, freq % 16000 * 100 / 16000);
298 set_radio_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200299 t->radio_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 break;
301 case V4L2_TUNER_ANALOG_TV:
302 case V4L2_TUNER_DIGITAL_TV:
303 tuner_dbg("tv freq set to %lu.%02lu\n",
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700304 freq / 16, freq % 16 * 100 / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 set_tv_freq(c, freq);
Hans Verkuil27487d42006-01-15 15:04:52 -0200306 t->tv_freq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 break;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300308 default:
309 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Steven Toth27c685a2008-01-05 16:50:14 -0300313static struct xc5000_config xc5000_cfg;
314
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700315static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300316 unsigned int new_mode_mask, unsigned int new_config,
Michael Krufkyd7cba042008-09-12 13:31:45 -0300317 int (*tuner_callback) (void *dev, int component, int cmd, int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300319 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkye18f9442007-08-21 01:25:48 -0300320 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300321 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700322 unsigned char buffer[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700324 if (type == UNSET || type == TUNER_ABSENT) {
325 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return;
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 t->type = type;
Michael Krufkye7ddcd92009-03-28 15:35:26 -0300330 /* prevent invalid config values */
Roel Kluinf14a2972009-10-23 07:59:42 -0300331 t->config = new_config < 256 ? new_config : 0;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300332 if (tuner_callback != NULL) {
333 tuner_dbg("defining GPIO callback\n");
Michael Krufkyd7cba042008-09-12 13:31:45 -0300334 t->fe.callback = tuner_callback;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300335 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300336
Mauro Carvalho Chehab48aa3362007-10-29 11:33:18 -0300337 if (t->mode == T_UNINITIALIZED) {
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300338 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
339
340 return;
341 }
342
Michael Krufkyb2083192007-05-29 22:54:06 -0300343 /* discard private data, in case set_type() was previously called */
Michael Krufkya07c8772008-04-29 03:54:19 -0300344 tuner_detach(&t->fe);
345 t->fe.analog_demod_priv = NULL;
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 switch (t->type) {
348 case TUNER_MT2032:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300349 if (!dvb_attach(microtune_attach,
350 &t->fe, t->i2c->adapter, t->i2c->addr))
351 goto attach_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 break;
353 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300354 {
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300355 struct tda829x_config cfg = {
356 .lna_cfg = t->config,
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300357 };
358 if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter,
359 t->i2c->addr, &cfg))
360 goto attach_failed;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300361 break;
362 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700363 case TUNER_TEA5767:
Michael Krufkya07c8772008-04-29 03:54:19 -0300364 if (!dvb_attach(tea5767_attach, &t->fe,
365 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300366 goto attach_failed;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700367 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700368 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300369 case TUNER_TEA5761:
Michael Krufkya07c8772008-04-29 03:54:19 -0300370 if (!dvb_attach(tea5761_attach, &t->fe,
371 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300372 goto attach_failed;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300373 t->mode_mask = T_RADIO;
374 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700375 case TUNER_PHILIPS_FMD1216ME_MK3:
376 buffer[0] = 0x0b;
377 buffer[1] = 0xdc;
378 buffer[2] = 0x9c;
379 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700380 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700381 mdelay(1);
382 buffer[2] = 0x86;
383 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700384 i2c_master_send(c, buffer, 4);
Michael Krufkya07c8772008-04-29 03:54:19 -0300385 if (!dvb_attach(simple_tuner_attach, &t->fe,
386 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300387 goto attach_failed;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700388 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800389 case TUNER_PHILIPS_TD1316:
390 buffer[0] = 0x0b;
391 buffer[1] = 0xdc;
392 buffer[2] = 0x86;
393 buffer[3] = 0xa4;
Michael Krufkya07c8772008-04-29 03:54:19 -0300394 i2c_master_send(c, buffer, 4);
395 if (!dvb_attach(simple_tuner_attach, &t->fe,
396 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300397 goto attach_failed;
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200398 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300399 case TUNER_XC2028:
400 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300401 struct xc2028_config cfg = {
402 .i2c_adap = t->i2c->adapter,
403 .i2c_addr = t->i2c->addr,
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300404 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300405 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300406 goto attach_failed;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300407 break;
408 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300409 case TUNER_TDA9887:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300410 if (!dvb_attach(tda9887_attach,
411 &t->fe, t->i2c->adapter, t->i2c->addr))
412 goto attach_failed;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300413 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300414 case TUNER_XC5000:
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300415 {
Steven Toth27c685a2008-01-05 16:50:14 -0300416 xc5000_cfg.i2c_address = t->i2c->addr;
Devin Heitmuellerea227862009-03-11 02:58:53 -0300417 /* if_khz will be set when the digital dvb_attach() occurs */
418 xc5000_cfg.if_khz = 0;
Michael Krufkya07c8772008-04-29 03:54:19 -0300419 if (!dvb_attach(xc5000_attach,
Michael Krufky30650962008-09-06 14:56:58 -0300420 &t->fe, t->i2c->adapter, &xc5000_cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300421 goto attach_failed;
Steven Toth27c685a2008-01-05 16:50:14 -0300422 break;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300423 }
Michael Krufky93463892009-09-15 23:04:18 -0300424 case TUNER_NXP_TDA18271:
425 {
426 struct tda18271_config cfg = {
427 .config = t->config,
428 };
429
430 if (!dvb_attach(tda18271_attach, &t->fe, t->i2c->addr,
431 t->i2c->adapter, &cfg))
432 goto attach_failed;
433 break;
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 default:
Michael Krufkya07c8772008-04-29 03:54:19 -0300436 if (!dvb_attach(simple_tuner_attach, &t->fe,
437 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300438 goto attach_failed;
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 break;
441 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700442
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300443 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300444 (fe_tuner_ops->set_analog_params)) {
Michael Krufkya07c8772008-04-29 03:54:19 -0300445
Michael Krufky7271e602008-05-26 16:08:40 +0200446 t->name = fe_tuner_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300447
Michael Krufky4e9154b2007-10-21 19:39:50 -0300448 t->fe.analog_demod_priv = t;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300449 memcpy(analog_ops, &tuner_analog_ops,
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300450 sizeof(struct analog_demod_ops));
Michael Krufkya07c8772008-04-29 03:54:19 -0300451
Michael Krufkya55db8c2007-12-09 13:52:51 -0300452 } else {
Michael Krufky7271e602008-05-26 16:08:40 +0200453 t->name = analog_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300454 }
455
Michael Krufky7271e602008-05-26 16:08:40 +0200456 tuner_dbg("type set to %s\n", t->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300457
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700458 if (t->mode_mask == T_UNINITIALIZED)
459 t->mode_mask = new_mode_mask;
460
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300461 /* xc2028/3028 and xc5000 requires a firmware to be set-up later
462 trying to set a frequency here will just fail
463 FIXME: better to move set_freq to the tuner code. This is needed
464 on analog tuners for PLL to properly work
465 */
466 if (t->type != TUNER_XC2028 && t->type != TUNER_XC5000)
467 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ?
468 t->radio_freq : t->tv_freq);
469
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700470 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100471 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700472 t->mode_mask);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300473 return;
474
475attach_failed:
476 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
477 t->type = TUNER_ABSENT;
478 t->mode_mask = T_UNINITIALIZED;
479
480 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700483/*
484 * This function apply tuner config to tuner specified
485 * by tun_setup structure. I addr is unset, then admin status
486 * and tun addr status is more precise then current status,
487 * it's applied. Otherwise status and type are applied only to
488 * tuner with exactly the same addr.
489*/
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700490
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700491static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700492{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300493 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700494
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300495 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
496 (t->mode_mask & tun_setup->mode_mask))) ||
497 (tun_setup->addr == c->addr)) {
498 set_type(c, tun_setup->type, tun_setup->mode_mask,
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300499 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300500 } else
501 tuner_dbg("set addr discarded for type %i, mask %x. "
502 "Asked to change tuner at addr 0x%02x, with mask %x\n",
503 t->type, t->mode_mask,
504 tun_setup->addr, tun_setup->mode_mask);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700505}
506
507static inline int check_mode(struct tuner *t, char *cmd)
508{
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700509 if ((1 << t->mode & t->mode_mask) == 0) {
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300510 return -EINVAL;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700511 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700512
513 switch (t->mode) {
514 case V4L2_TUNER_RADIO:
515 tuner_dbg("Cmd %s accepted for radio\n", cmd);
516 break;
517 case V4L2_TUNER_ANALOG_TV:
518 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
519 break;
520 case V4L2_TUNER_DIGITAL_TV:
521 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
522 break;
523 }
524 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700525}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700526
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700527/* get more precise norm info from insmod option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528static int tuner_fixup_std(struct tuner *t)
529{
530 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300532 case '6':
533 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
534 t->std = V4L2_STD_PAL_60;
535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 case 'b':
537 case 'B':
538 case 'g':
539 case 'G':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700540 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 t->std = V4L2_STD_PAL_BG;
542 break;
543 case 'i':
544 case 'I':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700545 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 t->std = V4L2_STD_PAL_I;
547 break;
548 case 'd':
549 case 'D':
550 case 'k':
551 case 'K':
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700552 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 t->std = V4L2_STD_PAL_DK;
554 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700555 case 'M':
556 case 'm':
557 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
558 t->std = V4L2_STD_PAL_M;
559 break;
560 case 'N':
561 case 'n':
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200562 if (pal[1] == 'c' || pal[1] == 'C') {
563 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
564 t->std = V4L2_STD_PAL_Nc;
565 } else {
566 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
567 t->std = V4L2_STD_PAL_N;
568 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700569 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700570 case '-':
571 /* default parameter, do nothing */
572 break;
573 default:
574 tuner_warn ("pal= argument not recognised\n");
575 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700578 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
579 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200580 case 'b':
581 case 'B':
582 case 'g':
583 case 'G':
584 case 'h':
585 case 'H':
586 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
587 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
588 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700589 case 'd':
590 case 'D':
591 case 'k':
592 case 'K':
593 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
594 t->std = V4L2_STD_SECAM_DK;
595 break;
596 case 'l':
597 case 'L':
Mauro Carvalho Chehab800d3c62005-11-13 16:07:48 -0800598 if ((secam[1]=='C')||(secam[1]=='c')) {
599 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
600 t->std = V4L2_STD_SECAM_LC;
601 } else {
602 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
603 t->std = V4L2_STD_SECAM_L;
604 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700605 break;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700606 case '-':
607 /* default parameter, do nothing */
608 break;
609 default:
610 tuner_warn ("secam= argument not recognised\n");
611 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700612 }
613 }
614
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200615 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
616 switch (ntsc[0]) {
617 case 'm':
618 case 'M':
619 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
620 t->std = V4L2_STD_NTSC_M;
621 break;
622 case 'j':
623 case 'J':
624 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
625 t->std = V4L2_STD_NTSC_M_JP;
626 break;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200627 case 'k':
628 case 'K':
629 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
630 t->std = V4L2_STD_NTSC_M_KR;
631 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200632 case '-':
633 /* default parameter, do nothing */
634 break;
635 default:
636 tuner_info("ntsc= argument not recognised\n");
637 break;
638 }
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return 0;
641}
642
Michael Krufky4e9154b2007-10-21 19:39:50 -0300643static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200644{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300645 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200646 unsigned long freq, freq_fraction;
Michael Krufkya07c8772008-04-29 03:54:19 -0300647 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
648 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200649 const char *p;
650
651 switch (t->mode) {
652 case V4L2_TUNER_RADIO: p = "radio"; break;
653 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
654 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
655 default: p = "undefined"; break;
656 }
657 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200658 freq = t->radio_freq / 16000;
659 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200660 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200661 freq = t->tv_freq / 16;
662 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200663 }
664 tuner_info("Tuner mode: %s\n", p);
665 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -0300666 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200667 if (t->mode != V4L2_TUNER_RADIO)
668 return;
Michael Krufkye18f9442007-08-21 01:25:48 -0300669 if (fe_tuner_ops->get_status) {
670 u32 tuner_status;
671
672 fe_tuner_ops->get_status(&t->fe, &tuner_status);
673 if (tuner_status & TUNER_STATUS_LOCKED)
674 tuner_info("Tuner is locked.\n");
675 if (tuner_status & TUNER_STATUS_STEREO)
676 tuner_info("Stereo: yes\n");
677 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300678 if (analog_ops->has_signal)
679 tuner_info("Signal strength: %d\n",
680 analog_ops->has_signal(fe));
681 if (analog_ops->is_stereo)
682 tuner_info("Stereo: %s\n",
683 analog_ops->is_stereo(fe) ? "yes" : "no");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200684}
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/* ---------------------------------------------------------------------- */
687
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700688/*
689 * Switch tuner to other mode. If tuner support both tv and radio,
690 * set another frequency to some value (This is needed for some pal
691 * tuners to avoid locking). Otherwise, just put second tuner in
692 * standby mode.
693 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700695static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
696{
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300697 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Michael Krufky1dde7a42007-10-21 13:40:56 -0300698
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800699 if (mode == t->mode)
700 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700701
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800702 t->mode = mode;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700703
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300704 if (check_mode(t, cmd) == -EINVAL) {
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -0300705 tuner_dbg("Tuner doesn't support this mode. "
706 "Putting tuner to sleep\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800707 t->mode = T_STANDBY;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300708 if (analog_ops->standby)
709 analog_ops->standby(&t->fe);
Marcin Slusarz4d3437d2008-05-26 14:03:02 -0300710 return -EINVAL;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800711 }
712 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700713}
714
715#define switch_v4l2() if (!t->using_v4l2) \
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800716 tuner_dbg("switching to v4l2\n"); \
717 t->using_v4l2 = 1;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700718
719static inline int check_v4l2(struct tuner *t)
720{
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300721 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
722 TV, v4l1 for radio), until that is fixed this code is disabled.
723 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
724 first. */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700725 return 0;
726}
727
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300728static int tuner_s_type_addr(struct v4l2_subdev *sd, struct tuner_setup *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300730 struct tuner *t = to_tuner(sd);
731 struct i2c_client *client = v4l2_get_subdevdata(sd);
732
733 tuner_dbg("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
734 type->type,
735 type->addr,
736 type->mode_mask,
737 type->config);
738
739 set_addr(client, type);
740 return 0;
741}
742
743static int tuner_s_radio(struct v4l2_subdev *sd)
744{
745 struct tuner *t = to_tuner(sd);
746 struct i2c_client *client = v4l2_get_subdevdata(sd);
747
Hans Verkuilbccfa442009-03-30 06:55:27 -0300748 if (set_mode(client, t, V4L2_TUNER_RADIO, "s_radio") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300749 return 0;
750 if (t->radio_freq)
751 set_freq(client, t->radio_freq);
752 return 0;
753}
754
Laurent Pinchart622b8282009-10-05 10:48:17 -0300755static int tuner_s_power(struct v4l2_subdev *sd, int on)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300756{
757 struct tuner *t = to_tuner(sd);
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300758 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Laurent Pinchart622b8282009-10-05 10:48:17 -0300760 if (on)
761 return 0;
762
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -0300763 tuner_dbg("Putting tuner to sleep\n");
764
Laurent Pinchart622b8282009-10-05 10:48:17 -0300765 if (check_mode(t, "s_power") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300766 return 0;
767 t->mode = T_STANDBY;
768 if (analog_ops->standby)
769 analog_ops->standby(&t->fe);
770 return 0;
771}
772
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300773static int tuner_s_config(struct v4l2_subdev *sd, const struct v4l2_priv_tun_config *cfg)
774{
775 struct tuner *t = to_tuner(sd);
776 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300777
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300778 if (t->type != cfg->tuner)
779 return 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300780
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300781 if (analog_ops->set_config) {
782 analog_ops->set_config(&t->fe, cfg->priv);
783 return 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300786 tuner_dbg("Tuner frontend module has no way to set config\n");
787 return 0;
788}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700789
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300790/* --- v4l ioctls --- */
791/* take care: bttv does userspace copying, we'll get a
792 kernel pointer here... */
793static int tuner_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
794{
795 struct tuner *t = to_tuner(sd);
796 struct i2c_client *client = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Hans Verkuilbccfa442009-03-30 06:55:27 -0300798 if (set_mode(client, t, V4L2_TUNER_ANALOG_TV, "s_std") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300799 return 0;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700800
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300801 switch_v4l2();
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700802
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300803 t->std = std;
804 tuner_fixup_std(t);
805 if (t->tv_freq)
806 set_freq(client, t->tv_freq);
807 return 0;
808}
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700809
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300810static int tuner_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
811{
812 struct tuner *t = to_tuner(sd);
813 struct i2c_client *client = v4l2_get_subdevdata(sd);
Michael Krufkye18f9442007-08-21 01:25:48 -0300814
Hans Verkuilbccfa442009-03-30 06:55:27 -0300815 if (set_mode(client, t, f->type, "s_frequency") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300816 return 0;
817 switch_v4l2();
818 set_freq(client, f->frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 return 0;
821}
822
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300823static int tuner_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
824{
825 struct tuner *t = to_tuner(sd);
826 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
827
Hans Verkuilbccfa442009-03-30 06:55:27 -0300828 if (check_mode(t, "g_frequency") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300829 return 0;
830 switch_v4l2();
831 f->type = t->mode;
832 if (fe_tuner_ops->get_frequency) {
833 u32 abs_freq;
834
835 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
836 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
Julia Lawall75b697f2009-08-01 16:48:41 -0300837 DIV_ROUND_CLOSEST(abs_freq * 2, 125) :
838 DIV_ROUND_CLOSEST(abs_freq, 62500);
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300839 return 0;
840 }
841 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
842 t->radio_freq : t->tv_freq;
843 return 0;
844}
845
846static int tuner_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
847{
848 struct tuner *t = to_tuner(sd);
849 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
850 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
851
Hans Verkuilbccfa442009-03-30 06:55:27 -0300852 if (check_mode(t, "g_tuner") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300853 return 0;
854 switch_v4l2();
855
856 vt->type = t->mode;
857 if (analog_ops->get_afc)
858 vt->afc = analog_ops->get_afc(&t->fe);
859 if (t->mode == V4L2_TUNER_ANALOG_TV)
860 vt->capability |= V4L2_TUNER_CAP_NORM;
861 if (t->mode != V4L2_TUNER_RADIO) {
862 vt->rangelow = tv_range[0] * 16;
863 vt->rangehigh = tv_range[1] * 16;
864 return 0;
865 }
866
867 /* radio mode */
868 vt->rxsubchans =
869 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
870 if (fe_tuner_ops->get_status) {
871 u32 tuner_status;
872
873 fe_tuner_ops->get_status(&t->fe, &tuner_status);
874 vt->rxsubchans =
875 (tuner_status & TUNER_STATUS_STEREO) ?
876 V4L2_TUNER_SUB_STEREO :
877 V4L2_TUNER_SUB_MONO;
878 } else {
879 if (analog_ops->is_stereo) {
880 vt->rxsubchans =
881 analog_ops->is_stereo(&t->fe) ?
882 V4L2_TUNER_SUB_STEREO :
883 V4L2_TUNER_SUB_MONO;
884 }
885 }
886 if (analog_ops->has_signal)
887 vt->signal = analog_ops->has_signal(&t->fe);
888 vt->capability |=
889 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
890 vt->audmode = t->audmode;
891 vt->rangelow = radio_range[0] * 16000;
892 vt->rangehigh = radio_range[1] * 16000;
893 return 0;
894}
895
896static int tuner_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
897{
898 struct tuner *t = to_tuner(sd);
899 struct i2c_client *client = v4l2_get_subdevdata(sd);
900
Hans Verkuilbccfa442009-03-30 06:55:27 -0300901 if (check_mode(t, "s_tuner") == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300902 return 0;
903
904 switch_v4l2();
905
906 /* do nothing unless we're a radio tuner */
907 if (t->mode != V4L2_TUNER_RADIO)
908 return 0;
909 t->audmode = vt->audmode;
910 set_radio_freq(client, t->radio_freq);
911 return 0;
912}
913
914static int tuner_log_status(struct v4l2_subdev *sd)
915{
916 struct tuner *t = to_tuner(sd);
917 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
918
919 if (analog_ops->tuner_status)
920 analog_ops->tuner_status(&t->fe);
921 return 0;
922}
923
Jean Delvare21b48a72007-03-12 19:20:15 -0300924static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300926 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300928 tuner_dbg("suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* FIXME: power down ??? */
930 return 0;
931}
932
Jean Delvare21b48a72007-03-12 19:20:15 -0300933static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300935 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300937 tuner_dbg("resume\n");
Hans Verkuil27487d42006-01-15 15:04:52 -0200938 if (V4L2_TUNER_RADIO == t->mode) {
939 if (t->radio_freq)
940 set_freq(c, t->radio_freq);
941 } else {
942 if (t->tv_freq)
943 set_freq(c, t->tv_freq);
944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return 0;
946}
947
Hans Verkuil75b4c262009-04-01 03:32:22 -0300948static int tuner_command(struct i2c_client *client, unsigned cmd, void *arg)
949{
950 struct v4l2_subdev *sd = i2c_get_clientdata(client);
951
952 /* TUNER_SET_CONFIG is still called by tuner-simple.c, so we have
953 to handle it here.
954 There must be a better way of doing this... */
955 switch (cmd) {
956 case TUNER_SET_CONFIG:
957 return tuner_s_config(sd, arg);
958 }
959 return -ENOIOCTLCMD;
960}
961
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300962/* ----------------------------------------------------------------------- */
963
964static const struct v4l2_subdev_core_ops tuner_core_ops = {
965 .log_status = tuner_log_status,
Hans Verkuilf41737e2009-04-01 03:52:39 -0300966 .s_std = tuner_s_std,
Laurent Pinchart622b8282009-10-05 10:48:17 -0300967 .s_power = tuner_s_power,
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300968};
969
970static const struct v4l2_subdev_tuner_ops tuner_tuner_ops = {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300971 .s_radio = tuner_s_radio,
972 .g_tuner = tuner_g_tuner,
973 .s_tuner = tuner_s_tuner,
974 .s_frequency = tuner_s_frequency,
975 .g_frequency = tuner_g_frequency,
976 .s_type_addr = tuner_s_type_addr,
977 .s_config = tuner_s_config,
978};
979
980static const struct v4l2_subdev_ops tuner_ops = {
981 .core = &tuner_core_ops,
982 .tuner = &tuner_tuner_ops,
983};
984
Hans Verkuil92de1f12007-11-04 10:53:09 -0300985/* ---------------------------------------------------------------------- */
986
Adrian Bunkc52c4d02008-01-28 22:11:15 -0300987static LIST_HEAD(tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -0300988
989/* Search for existing radio and/or TV tuners on the given I2C adapter.
Hans Verkuil9dd659d2007-11-04 11:03:36 -0300990 Note that when this function is called from tuner_probe you can be
Hans Verkuil92de1f12007-11-04 10:53:09 -0300991 certain no other devices will be added/deleted at the same time, I2C
992 core protects against that. */
993static void tuner_lookup(struct i2c_adapter *adap,
994 struct tuner **radio, struct tuner **tv)
995{
996 struct tuner *pos;
997
998 *radio = NULL;
999 *tv = NULL;
1000
1001 list_for_each_entry(pos, &tuner_list, list) {
1002 int mode_mask;
1003
1004 if (pos->i2c->adapter != adap ||
Hans Verkuil0c846742009-03-29 19:40:01 -03001005 strcmp(pos->i2c->driver->driver.name, "tuner"))
Hans Verkuil92de1f12007-11-04 10:53:09 -03001006 continue;
1007
1008 mode_mask = pos->mode_mask & ~T_STANDBY;
1009 if (*radio == NULL && mode_mask == T_RADIO)
1010 *radio = pos;
1011 /* Note: currently TDA9887 is the only demod-only
1012 device. If other devices appear then we need to
1013 make this test more general. */
1014 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1015 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1016 *tv = pos;
1017 }
1018}
1019
1020/* During client attach, set_type is called by adapter's attach_inform callback.
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001021 set_type must then be completed by tuner_probe.
Hans Verkuil92de1f12007-11-04 10:53:09 -03001022 */
Jean Delvared2653e92008-04-29 23:11:39 +02001023static int tuner_probe(struct i2c_client *client,
1024 const struct i2c_device_id *id)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001025{
Hans Verkuil92de1f12007-11-04 10:53:09 -03001026 struct tuner *t;
1027 struct tuner *radio;
1028 struct tuner *tv;
1029
Hans Verkuil92de1f12007-11-04 10:53:09 -03001030 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001031 if (NULL == t)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001032 return -ENOMEM;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001033 v4l2_i2c_subdev_init(&t->sd, client, &tuner_ops);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001034 t->i2c = client;
Michael Krufky7271e602008-05-26 16:08:40 +02001035 t->name = "(tuner unset)";
Hans Verkuil92de1f12007-11-04 10:53:09 -03001036 t->type = UNSET;
1037 t->audmode = V4L2_TUNER_MODE_STEREO;
1038 t->mode_mask = T_UNINITIALIZED;
1039
1040 if (show_i2c) {
1041 unsigned char buffer[16];
1042 int i, rc;
1043
1044 memset(buffer, 0, sizeof(buffer));
1045 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1046 tuner_info("I2C RECV = ");
1047 for (i = 0; i < rc; i++)
1048 printk(KERN_CONT "%02x ", buffer[i]);
1049 printk("\n");
1050 }
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001051 /* HACK: This test was added to avoid tuner to probe tda9840 and
Hans Verkuil92de1f12007-11-04 10:53:09 -03001052 tea6415c on the MXB card */
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001053 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1054 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001055 return -ENODEV;
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001056 }
Hans Verkuil92de1f12007-11-04 10:53:09 -03001057
1058 /* autodetection code based on the i2c addr */
1059 if (!no_autodetect) {
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001060 switch (client->addr) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001061 case 0x10:
Michael Krufkya07c8772008-04-29 03:54:19 -03001062 if (tuner_symbol_probe(tea5761_autodetection,
1063 t->i2c->adapter,
1064 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001065 t->type = TUNER_TEA5761;
1066 t->mode_mask = T_RADIO;
1067 t->mode = T_STANDBY;
1068 /* Sets freq to FM range */
1069 t->radio_freq = 87.5 * 16000;
1070 tuner_lookup(t->i2c->adapter, &radio, &tv);
1071 if (tv)
1072 tv->mode_mask &= ~T_RADIO;
1073
1074 goto register_client;
1075 }
Mauro Carvalho Chehab867e8352008-04-23 17:27:27 -03001076 return -ENODEV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001077 case 0x42:
1078 case 0x43:
1079 case 0x4a:
1080 case 0x4b:
1081 /* If chip is not tda8290, don't register.
1082 since it can be tda9887*/
Michael Krufkya07c8772008-04-29 03:54:19 -03001083 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001084 t->i2c->addr) >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001085 tuner_dbg("tda829x detected\n");
1086 } else {
1087 /* Default is being tda9887 */
1088 t->type = TUNER_TDA9887;
1089 t->mode_mask = T_RADIO | T_ANALOG_TV |
1090 T_DIGITAL_TV;
1091 t->mode = T_STANDBY;
1092 goto register_client;
1093 }
1094 break;
1095 case 0x60:
Michael Krufkya07c8772008-04-29 03:54:19 -03001096 if (tuner_symbol_probe(tea5767_autodetection,
1097 t->i2c->adapter, t->i2c->addr)
Mauro Carvalho Chehabb538d282008-04-30 15:45:00 -03001098 >= 0) {
Hans Verkuil92de1f12007-11-04 10:53:09 -03001099 t->type = TUNER_TEA5767;
1100 t->mode_mask = T_RADIO;
1101 t->mode = T_STANDBY;
1102 /* Sets freq to FM range */
1103 t->radio_freq = 87.5 * 16000;
1104 tuner_lookup(t->i2c->adapter, &radio, &tv);
1105 if (tv)
1106 tv->mode_mask &= ~T_RADIO;
1107
1108 goto register_client;
1109 }
1110 break;
1111 }
1112 }
1113
1114 /* Initializes only the first TV tuner on this adapter. Why only the
1115 first? Because there are some devices (notably the ones with TI
1116 tuners) that have more than one i2c address for the *same* device.
1117 Experience shows that, except for just one case, the first
1118 address is the right one. The exception is a Russian tuner
1119 (ACORP_Y878F). So, the desired behavior is just to enable the
1120 first found TV tuner. */
1121 tuner_lookup(t->i2c->adapter, &radio, &tv);
1122 if (tv == NULL) {
1123 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1124 if (radio == NULL)
1125 t->mode_mask |= T_RADIO;
1126 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1127 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1128 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1129 }
1130
1131 /* Should be just before return */
1132register_client:
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001133 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1134 client->adapter->name);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001135
1136 /* Sets a default mode */
1137 if (t->mode_mask & T_ANALOG_TV) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001138 t->mode = V4L2_TUNER_ANALOG_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001139 } else if (t->mode_mask & T_RADIO) {
Michael Krufky864a6b82007-12-09 17:21:54 -03001140 t->mode = V4L2_TUNER_RADIO;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001141 } else {
Michael Krufky864a6b82007-12-09 17:21:54 -03001142 t->mode = V4L2_TUNER_DIGITAL_TV;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001143 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001144 set_type(client, t->type, t->mode_mask, t->config, t->fe.callback);
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001145 list_add_tail(&t->list, &tuner_list);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001146 return 0;
1147}
1148
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001149static int tuner_remove(struct i2c_client *client)
Hans Verkuil92de1f12007-11-04 10:53:09 -03001150{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001151 struct tuner *t = to_tuner(i2c_get_clientdata(client));
Hans Verkuil92de1f12007-11-04 10:53:09 -03001152
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001153 v4l2_device_unregister_subdev(&t->sd);
Michael Krufkya07c8772008-04-29 03:54:19 -03001154 tuner_detach(&t->fe);
1155 t->fe.analog_demod_priv = NULL;
Hans Verkuil92de1f12007-11-04 10:53:09 -03001156
1157 list_del(&t->list);
1158 kfree(t);
Hans Verkuil92de1f12007-11-04 10:53:09 -03001159 return 0;
1160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162/* ----------------------------------------------------------------------- */
1163
Jean Delvareaf294862008-05-18 20:49:40 +02001164/* This driver supports many devices and the idea is to let the driver
1165 detect which device is present. So rather than listing all supported
1166 devices here, we pretend to support a single, fake device type. */
1167static const struct i2c_device_id tuner_id[] = {
1168 { "tuner", }, /* autodetect */
1169 { }
1170};
1171MODULE_DEVICE_TABLE(i2c, tuner_id);
1172
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001173static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1174 .name = "tuner",
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001175 .probe = tuner_probe,
1176 .remove = tuner_remove,
Hans Verkuil75b4c262009-04-01 03:32:22 -03001177 .command = tuner_command,
Jean Delvare21b48a72007-03-12 19:20:15 -03001178 .suspend = tuner_suspend,
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001179 .resume = tuner_resume,
Jean Delvareaf294862008-05-18 20:49:40 +02001180 .id_table = tuner_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181};
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183/*
1184 * Overrides for Emacs so that we follow Linus's tabbing style.
1185 * ---------------------------------------------------------------------------
1186 * Local variables:
1187 * c-basic-offset: 8
1188 * End:
1189 */