blob: cfa9f7efe93dc4247f740a5192527541bc44a0a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * i2c tv tuner chip device driver
3 * core core, i.e. kernel interfaces, registering and so on
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -02004 *
5 * Copyright(c) by Ralph Metzler, Gerd Knorr, Gunther Mayer
6 *
7 * Copyright(c) 2005-2011 by Mauro Carvalho Chehab
8 * - Added support for a separate Radio tuner
9 * - Major rework and cleanups at the code
10 *
11 * This driver supports many devices and the idea is to let the driver
12 * detect which device is present. So rather than listing all supported
13 * devices here, we pretend to support a single, fake device type that will
14 * handle both radio and analog TV tuning.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
17#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/string.h>
20#include <linux/timer.h>
21#include <linux/delay.h>
22#include <linux/errno.h>
23#include <linux/slab.h>
24#include <linux/poll.h>
25#include <linux/i2c.h>
26#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
Hans Verkuil75b4c262009-04-01 03:32:22 -030028#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <media/tuner.h>
Michael Krufky4adad282007-08-27 21:59:08 -030030#include <media/tuner-types.h>
Hans Verkuile8a4a9e2008-11-24 18:21:40 -030031#include <media/v4l2-device.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030032#include <media/v4l2-ioctl.h>
Michael Krufky96c0b7c2007-08-27 21:23:08 -030033#include "mt20xx.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030034#include "tda8290.h"
Michael Krufky7ab10bf2007-08-27 21:23:40 -030035#include "tea5761.h"
Michael Krufky8d0936e2007-08-27 21:24:27 -030036#include "tea5767.h"
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030037#include "tuner-xc2028.h"
Michael Krufky4adad282007-08-27 21:59:08 -030038#include "tuner-simple.h"
Michael Krufky31c95842007-10-21 20:48:48 -030039#include "tda9887.h"
Steven Toth27c685a2008-01-05 16:50:14 -030040#include "xc5000.h"
Michael Krufky93463892009-09-15 23:04:18 -030041#include "tda18271.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#define UNSET (-1U)
44
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -030045#define PREFIX (t->i2c->driver->driver.name)
Michael Krufky241020d2007-10-30 09:46:10 -030046
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030047/*
48 * Driver modprobe parameters
49 */
50
51/* insmod options used at init time => read/only */
52static unsigned int addr;
53static unsigned int no_autodetect;
54static unsigned int show_i2c;
55
56module_param(addr, int, 0444);
57module_param(no_autodetect, int, 0444);
58module_param(show_i2c, int, 0444);
59
60/* insmod options used at runtime => read/write */
61static int tuner_debug;
62static unsigned int tv_range[2] = { 44, 958 };
63static unsigned int radio_range[2] = { 65, 108 };
64static char pal[] = "--";
65static char secam[] = "--";
66static char ntsc[] = "-";
67
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -030068module_param_named(debug, tuner_debug, int, 0644);
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030069module_param_array(tv_range, int, NULL, 0644);
70module_param_array(radio_range, int, NULL, 0644);
71module_param_string(pal, pal, sizeof(pal), 0644);
72module_param_string(secam, secam, sizeof(secam), 0644);
73module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
74
75/*
76 * Static vars
77 */
78
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030079static LIST_HEAD(tuner_list);
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -020080static const struct v4l2_subdev_ops tuner_ops;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030081
82/*
83 * Debug macros
84 */
85
86#define tuner_warn(fmt, arg...) do { \
87 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
88 i2c_adapter_id(t->i2c->adapter), \
89 t->i2c->addr, ##arg); \
90 } while (0)
91
92#define tuner_info(fmt, arg...) do { \
93 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
94 i2c_adapter_id(t->i2c->adapter), \
95 t->i2c->addr, ##arg); \
96 } while (0)
97
98#define tuner_err(fmt, arg...) do { \
99 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
100 i2c_adapter_id(t->i2c->adapter), \
101 t->i2c->addr, ##arg); \
102 } while (0)
103
104#define tuner_dbg(fmt, arg...) do { \
105 if (tuner_debug) \
106 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
107 i2c_adapter_id(t->i2c->adapter), \
108 t->i2c->addr, ##arg); \
109 } while (0)
110
111/*
112 * Internal struct used inside the driver
113 */
114
115struct tuner {
116 /* device */
117 struct dvb_frontend fe;
118 struct i2c_client *i2c;
119 struct v4l2_subdev sd;
120 struct list_head list;
121
122 /* keep track of the current settings */
123 v4l2_std_id std;
124 unsigned int tv_freq;
125 unsigned int radio_freq;
126 unsigned int audmode;
127
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300128 enum v4l2_tuner_type mode;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300129 unsigned int mode_mask; /* Combination of allowable modes */
130
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300131 bool standby; /* Standby mode */
132
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300133 unsigned int type; /* chip type id */
134 unsigned int config;
135 const char *name;
136};
137
138/*
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200139 * Function prototypes
140 */
141
142static void set_tv_freq(struct i2c_client *c, unsigned int freq);
143static void set_radio_freq(struct i2c_client *c, unsigned int freq);
144
145/*
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300146 * tuner attach/detach logic
147 */
148
Mauro Carvalho Chehab0ae79d92011-02-15 01:10:20 -0300149/* This macro allows us to probe dynamically, avoiding static links */
Mauro Carvalho Chehabff138172008-04-29 23:02:33 -0300150#ifdef CONFIG_MEDIA_ATTACH
Michael Krufkya07c8772008-04-29 03:54:19 -0300151#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
152 int __r = -EINVAL; \
153 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
154 if (__a) { \
155 __r = (int) __a(ARGS); \
Andrew Mortona1355e52008-04-30 11:40:17 -0300156 symbol_put(FUNCTION); \
Michael Krufkya07c8772008-04-29 03:54:19 -0300157 } else { \
158 printk(KERN_ERR "TUNER: Unable to find " \
159 "symbol "#FUNCTION"()\n"); \
160 } \
Michael Krufkya07c8772008-04-29 03:54:19 -0300161 __r; \
162})
163
164static void tuner_detach(struct dvb_frontend *fe)
165{
166 if (fe->ops.tuner_ops.release) {
167 fe->ops.tuner_ops.release(fe);
168 symbol_put_addr(fe->ops.tuner_ops.release);
169 }
170 if (fe->ops.analog_ops.release) {
171 fe->ops.analog_ops.release(fe);
172 symbol_put_addr(fe->ops.analog_ops.release);
173 }
174}
175#else
176#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
177 FUNCTION(ARGS); \
178})
179
180static void tuner_detach(struct dvb_frontend *fe)
181{
182 if (fe->ops.tuner_ops.release)
183 fe->ops.tuner_ops.release(fe);
184 if (fe->ops.analog_ops.release)
185 fe->ops.analog_ops.release(fe);
186}
187#endif
188
Michael Krufkyf7f427e2007-12-16 22:02:26 -0300189
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300190static inline struct tuner *to_tuner(struct v4l2_subdev *sd)
191{
192 return container_of(sd, struct tuner, sd);
193}
194
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300195/*
196 * struct analog_demod_ops callbacks
197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Michael Krufkyc7919d52007-12-08 17:06:30 -0300199static void fe_set_params(struct dvb_frontend *fe,
200 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300201{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300202 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
203 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300204
Michael Krufkye18f9442007-08-21 01:25:48 -0300205 if (NULL == fe_tuner_ops->set_analog_params) {
206 tuner_warn("Tuner frontend module has no way to set freq\n");
207 return;
208 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300209 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300210}
211
Michael Krufky4e9154b2007-10-21 19:39:50 -0300212static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300213{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300214 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300215
216 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300217 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300218}
219
Michael Krufky4e9154b2007-10-21 19:39:50 -0300220static int fe_has_signal(struct dvb_frontend *fe)
Michael Krufky1f5ef192007-08-31 17:38:02 -0300221{
Michael Krufky14196832007-10-14 18:11:53 -0300222 u16 strength = 0;
Michael Krufky1f5ef192007-08-31 17:38:02 -0300223
Michael Krufky4e9154b2007-10-21 19:39:50 -0300224 if (fe->ops.tuner_ops.get_rf_strength)
225 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
Michael Krufky1f5ef192007-08-31 17:38:02 -0300226
227 return strength;
228}
229
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300230static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
231{
232 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
233 struct tuner *t = fe->analog_demod_priv;
234
235 if (fe_tuner_ops->set_config)
236 return fe_tuner_ops->set_config(fe, priv_cfg);
237
238 tuner_warn("Tuner frontend module has no way to set config\n");
239
240 return 0;
241}
242
Michael Krufky4e9154b2007-10-21 19:39:50 -0300243static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300244
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300245static struct analog_demod_ops tuner_analog_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300246 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300247 .standby = fe_standby,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300248 .has_signal = fe_has_signal,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300249 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300250 .tuner_status = tuner_status
251};
252
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300253/*
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200254 * Functions to select between radio and TV and tuner probe/remove functions
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300255 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200257/**
258 * set_type - Sets the tuner type for a given device
259 *
260 * @c: i2c_client descriptoy
261 * @type: type of the tuner (e. g. tuner number)
262 * @new_mode_mask: Indicates if tuner supports TV and/or Radio
263 * @new_config: an optional parameter ranging from 0-255 used by
264 a few tuners to adjust an internal parameter,
265 like LNA mode
266 * @tuner_callback: an optional function to be called when switching
267 * to analog mode
268 *
269 * This function applys the tuner config to tuner specified
270 * by tun_setup structure. It contains several per-tuner initialization "magic"
271 */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700272static void set_type(struct i2c_client *c, unsigned int type,
Hartmut Hackmannde956c12007-04-27 12:31:12 -0300273 unsigned int new_mode_mask, unsigned int new_config,
Michael Krufkyd7cba042008-09-12 13:31:45 -0300274 int (*tuner_callback) (void *dev, int component, int cmd, int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300276 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkye18f9442007-08-21 01:25:48 -0300277 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300278 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700279 unsigned char buffer[4];
Michael Krufkyd6eef492009-10-24 16:42:16 -0300280 int tune_now = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700282 if (type == UNSET || type == TUNER_ABSENT) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300283 tuner_dbg("tuner 0x%02x: Tuner type absent\n", c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return;
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 t->type = type;
Michael Krufkye7ddcd92009-03-28 15:35:26 -0300288 /* prevent invalid config values */
Roel Kluinf14a2972009-10-23 07:59:42 -0300289 t->config = new_config < 256 ? new_config : 0;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300290 if (tuner_callback != NULL) {
291 tuner_dbg("defining GPIO callback\n");
Michael Krufkyd7cba042008-09-12 13:31:45 -0300292 t->fe.callback = tuner_callback;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300293 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300294
Michael Krufkyb2083192007-05-29 22:54:06 -0300295 /* discard private data, in case set_type() was previously called */
Michael Krufkya07c8772008-04-29 03:54:19 -0300296 tuner_detach(&t->fe);
297 t->fe.analog_demod_priv = NULL;
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 switch (t->type) {
300 case TUNER_MT2032:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300301 if (!dvb_attach(microtune_attach,
302 &t->fe, t->i2c->adapter, t->i2c->addr))
303 goto attach_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 break;
305 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300306 {
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300307 struct tda829x_config cfg = {
308 .lna_cfg = t->config,
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300309 };
310 if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter,
311 t->i2c->addr, &cfg))
312 goto attach_failed;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300313 break;
314 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700315 case TUNER_TEA5767:
Michael Krufkya07c8772008-04-29 03:54:19 -0300316 if (!dvb_attach(tea5767_attach, &t->fe,
317 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300318 goto attach_failed;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700319 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700320 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300321 case TUNER_TEA5761:
Michael Krufkya07c8772008-04-29 03:54:19 -0300322 if (!dvb_attach(tea5761_attach, &t->fe,
323 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300324 goto attach_failed;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300325 t->mode_mask = T_RADIO;
326 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700327 case TUNER_PHILIPS_FMD1216ME_MK3:
328 buffer[0] = 0x0b;
329 buffer[1] = 0xdc;
330 buffer[2] = 0x9c;
331 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700332 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700333 mdelay(1);
334 buffer[2] = 0x86;
335 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700336 i2c_master_send(c, buffer, 4);
Michael Krufkya07c8772008-04-29 03:54:19 -0300337 if (!dvb_attach(simple_tuner_attach, &t->fe,
338 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300339 goto attach_failed;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700340 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800341 case TUNER_PHILIPS_TD1316:
342 buffer[0] = 0x0b;
343 buffer[1] = 0xdc;
344 buffer[2] = 0x86;
345 buffer[3] = 0xa4;
Michael Krufkya07c8772008-04-29 03:54:19 -0300346 i2c_master_send(c, buffer, 4);
347 if (!dvb_attach(simple_tuner_attach, &t->fe,
348 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300349 goto attach_failed;
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200350 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300351 case TUNER_XC2028:
352 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300353 struct xc2028_config cfg = {
354 .i2c_adap = t->i2c->adapter,
355 .i2c_addr = t->i2c->addr,
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300356 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300357 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300358 goto attach_failed;
Michael Krufkyd6eef492009-10-24 16:42:16 -0300359 tune_now = 0;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300360 break;
361 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300362 case TUNER_TDA9887:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300363 if (!dvb_attach(tda9887_attach,
364 &t->fe, t->i2c->adapter, t->i2c->addr))
365 goto attach_failed;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300366 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300367 case TUNER_XC5000:
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300368 {
Mauro Carvalho Chehab900f7342011-02-04 12:56:39 -0300369 struct xc5000_config xc5000_cfg = {
370 .i2c_address = t->i2c->addr,
371 /* if_khz will be set at dvb_attach() */
372 .if_khz = 0,
373 };
374
Michael Krufkya07c8772008-04-29 03:54:19 -0300375 if (!dvb_attach(xc5000_attach,
Michael Krufky30650962008-09-06 14:56:58 -0300376 &t->fe, t->i2c->adapter, &xc5000_cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300377 goto attach_failed;
Michael Krufkyd6eef492009-10-24 16:42:16 -0300378 tune_now = 0;
Steven Toth27c685a2008-01-05 16:50:14 -0300379 break;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300380 }
Michael Krufky93463892009-09-15 23:04:18 -0300381 case TUNER_NXP_TDA18271:
382 {
383 struct tda18271_config cfg = {
384 .config = t->config,
Mauro Carvalho Chehabe350d442010-09-26 22:58:28 -0300385 .small_i2c = TDA18271_03_BYTE_CHUNK_INIT,
Michael Krufky93463892009-09-15 23:04:18 -0300386 };
387
388 if (!dvb_attach(tda18271_attach, &t->fe, t->i2c->addr,
389 t->i2c->adapter, &cfg))
390 goto attach_failed;
Michael Krufkyd6eef492009-10-24 16:42:16 -0300391 tune_now = 0;
Michael Krufky93463892009-09-15 23:04:18 -0300392 break;
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 default:
Michael Krufkya07c8772008-04-29 03:54:19 -0300395 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;
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 break;
400 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700401
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300402 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300403 (fe_tuner_ops->set_analog_params)) {
Michael Krufkya07c8772008-04-29 03:54:19 -0300404
Michael Krufky7271e602008-05-26 16:08:40 +0200405 t->name = fe_tuner_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300406
Michael Krufky4e9154b2007-10-21 19:39:50 -0300407 t->fe.analog_demod_priv = t;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300408 memcpy(analog_ops, &tuner_analog_ops,
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300409 sizeof(struct analog_demod_ops));
Michael Krufkya07c8772008-04-29 03:54:19 -0300410
Michael Krufkya55db8c2007-12-09 13:52:51 -0300411 } else {
Michael Krufky7271e602008-05-26 16:08:40 +0200412 t->name = analog_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300413 }
414
Michael Krufky7271e602008-05-26 16:08:40 +0200415 tuner_dbg("type set to %s\n", t->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300416
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300417 t->mode_mask = new_mode_mask;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700418
Michael Krufkyd6eef492009-10-24 16:42:16 -0300419 /* Some tuners require more initialization setup before use,
420 such as firmware download or device calibration.
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300421 trying to set a frequency here will just fail
422 FIXME: better to move set_freq to the tuner code. This is needed
423 on analog tuners for PLL to properly work
424 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300425 if (tune_now) {
426 if (V4L2_TUNER_RADIO == t->mode)
427 set_radio_freq(c, t->radio_freq);
428 else
429 set_tv_freq(c, t->tv_freq);
430 }
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300431
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700432 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Laurent Riffard604f28e2005-11-26 20:43:39 +0100433 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700434 t->mode_mask);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300435 return;
436
437attach_failed:
438 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
439 t->type = TUNER_ABSENT;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300440
441 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Mauro Carvalho Chehab0ae79d92011-02-15 01:10:20 -0300444/**
445 * tuner_s_type_addr - Sets the tuner type for a device
446 *
447 * @sd: subdev descriptor
448 * @tun_setup: type to be associated to a given tuner i2c address
449 *
450 * This function applys the tuner config to tuner specified
451 * by tun_setup structure.
452 * If tuner I2C address is UNSET, then it will only set the device
453 * if the tuner supports the mode specified in the call.
454 * If the address is specified, the change will be applied only if
455 * tuner I2C address matches.
456 * The call can change the tuner number and the tuner mode.
457 */
Mauro Carvalho Chehaba34ec5f2011-02-15 00:55:18 -0300458static int tuner_s_type_addr(struct v4l2_subdev *sd,
459 struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700460{
Mauro Carvalho Chehaba34ec5f2011-02-15 00:55:18 -0300461 struct tuner *t = to_tuner(sd);
462 struct i2c_client *c = v4l2_get_subdevdata(sd);
463
464 tuner_dbg("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
465 tun_setup->type,
466 tun_setup->addr,
467 tun_setup->mode_mask,
468 tun_setup->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700469
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300470 if ((t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
471 (t->mode_mask & tun_setup->mode_mask))) ||
472 (tun_setup->addr == c->addr)) {
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300473 set_type(c, tun_setup->type, tun_setup->mode_mask,
474 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300475 } else
476 tuner_dbg("set addr discarded for type %i, mask %x. "
477 "Asked to change tuner at addr 0x%02x, with mask %x\n",
478 t->type, t->mode_mask,
479 tun_setup->addr, tun_setup->mode_mask);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700480
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300481 return 0;
482}
483
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200484/**
485 * tuner_s_config - Sets tuner configuration
486 *
487 * @sd: subdev descriptor
488 * @cfg: tuner configuration
489 *
490 * Calls tuner set_config() private function to set some tuner-internal
491 * parameters
492 */
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300493static int tuner_s_config(struct v4l2_subdev *sd,
494 const struct v4l2_priv_tun_config *cfg)
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300495{
496 struct tuner *t = to_tuner(sd);
497 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
498
499 if (t->type != cfg->tuner)
500 return 0;
501
502 if (analog_ops->set_config) {
503 analog_ops->set_config(&t->fe, cfg->priv);
504 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700505 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700506
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300507 tuner_dbg("Tuner frontend module has no way to set config\n");
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700508 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700509}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700510
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200511/**
512 * tuner_lookup - Seek for tuner adapters
513 *
514 * @adap: i2c_adapter struct
515 * @radio: pointer to be filled if the adapter is radio
516 * @tv: pointer to be filled if the adapter is TV
517 *
518 * Search for existing radio and/or TV tuners on the given I2C adapter,
519 * discarding demod-only adapters (tda9887).
520 *
521 * Note that when this function is called from tuner_probe you can be
522 * certain no other devices will be added/deleted at the same time, I2C
523 * core protects against that.
524 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300525static void tuner_lookup(struct i2c_adapter *adap,
526 struct tuner **radio, struct tuner **tv)
527{
528 struct tuner *pos;
529
530 *radio = NULL;
531 *tv = NULL;
532
533 list_for_each_entry(pos, &tuner_list, list) {
534 int mode_mask;
535
536 if (pos->i2c->adapter != adap ||
537 strcmp(pos->i2c->driver->driver.name, "tuner"))
538 continue;
539
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300540 mode_mask = pos->mode_mask;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300541 if (*radio == NULL && mode_mask == T_RADIO)
542 *radio = pos;
543 /* Note: currently TDA9887 is the only demod-only
544 device. If other devices appear then we need to
545 make this test more general. */
546 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200547 (pos->mode_mask & T_ANALOG_TV))
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300548 *tv = pos;
549 }
550}
551
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200552/**
553 *tuner_probe - Probes the existing tuners on an I2C bus
554 *
555 * @client: i2c_client descriptor
556 * @id: not used
557 *
558 * This routine probes for tuners at the expected I2C addresses. On most
559 * cases, if a device answers to a given I2C address, it assumes that the
560 * device is a tuner. On a few cases, however, an additional logic is needed
561 * to double check if the device is really a tuner, or to identify the tuner
562 * type, like on tea5767/5761 devices.
563 *
564 * During client attach, set_type is called by adapter's attach_inform callback.
565 * set_type must then be completed by tuner_probe.
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300566 */
567static int tuner_probe(struct i2c_client *client,
568 const struct i2c_device_id *id)
569{
570 struct tuner *t;
571 struct tuner *radio;
572 struct tuner *tv;
573
574 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
575 if (NULL == t)
576 return -ENOMEM;
577 v4l2_i2c_subdev_init(&t->sd, client, &tuner_ops);
578 t->i2c = client;
579 t->name = "(tuner unset)";
580 t->type = UNSET;
581 t->audmode = V4L2_TUNER_MODE_STEREO;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300582 t->standby = 1;
583 t->radio_freq = 87.5 * 16000; /* Initial freq range */
584 t->tv_freq = 400 * 16; /* Sets freq to VHF High - needed for some PLL's to properly start */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300585
586 if (show_i2c) {
587 unsigned char buffer[16];
588 int i, rc;
589
590 memset(buffer, 0, sizeof(buffer));
591 rc = i2c_master_recv(client, buffer, sizeof(buffer));
592 tuner_info("I2C RECV = ");
593 for (i = 0; i < rc; i++)
594 printk(KERN_CONT "%02x ", buffer[i]);
595 printk("\n");
596 }
597
598 /* autodetection code based on the i2c addr */
599 if (!no_autodetect) {
600 switch (client->addr) {
601 case 0x10:
602 if (tuner_symbol_probe(tea5761_autodetection,
603 t->i2c->adapter,
604 t->i2c->addr) >= 0) {
605 t->type = TUNER_TEA5761;
606 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300607 tuner_lookup(t->i2c->adapter, &radio, &tv);
608 if (tv)
609 tv->mode_mask &= ~T_RADIO;
610
611 goto register_client;
612 }
613 kfree(t);
614 return -ENODEV;
615 case 0x42:
616 case 0x43:
617 case 0x4a:
618 case 0x4b:
619 /* If chip is not tda8290, don't register.
620 since it can be tda9887*/
621 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
622 t->i2c->addr) >= 0) {
623 tuner_dbg("tda829x detected\n");
624 } else {
625 /* Default is being tda9887 */
626 t->type = TUNER_TDA9887;
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200627 t->mode_mask = T_RADIO | T_ANALOG_TV;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300628 goto register_client;
629 }
630 break;
631 case 0x60:
632 if (tuner_symbol_probe(tea5767_autodetection,
633 t->i2c->adapter, t->i2c->addr)
634 >= 0) {
635 t->type = TUNER_TEA5767;
636 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300637 /* Sets freq to FM range */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300638 tuner_lookup(t->i2c->adapter, &radio, &tv);
639 if (tv)
640 tv->mode_mask &= ~T_RADIO;
641
642 goto register_client;
643 }
644 break;
645 }
646 }
647
648 /* Initializes only the first TV tuner on this adapter. Why only the
649 first? Because there are some devices (notably the ones with TI
650 tuners) that have more than one i2c address for the *same* device.
651 Experience shows that, except for just one case, the first
652 address is the right one. The exception is a Russian tuner
653 (ACORP_Y878F). So, the desired behavior is just to enable the
654 first found TV tuner. */
655 tuner_lookup(t->i2c->adapter, &radio, &tv);
656 if (tv == NULL) {
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200657 t->mode_mask = T_ANALOG_TV;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300658 if (radio == NULL)
659 t->mode_mask |= T_RADIO;
660 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300661 }
662
663 /* Should be just before return */
664register_client:
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300665 /* Sets a default mode */
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300666 if (t->mode_mask & T_ANALOG_TV)
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300667 t->mode = V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300668 else
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200669 t->mode = V4L2_TUNER_RADIO;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300670 set_type(client, t->type, t->mode_mask, t->config, t->fe.callback);
671 list_add_tail(&t->list, &tuner_list);
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300672
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200673 tuner_info("Tuner %d found with type(s)%s%s.\n",
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300674 t->type,
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200675 t->mode_mask & T_RADIO ? " Radio" : "",
676 t->mode_mask & T_ANALOG_TV ? " TV" : "");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300677 return 0;
678}
679
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200680/**
681 * tuner_remove - detaches a tuner
682 *
683 * @client: i2c_client descriptor
684 */
685
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300686static int tuner_remove(struct i2c_client *client)
687{
688 struct tuner *t = to_tuner(i2c_get_clientdata(client));
689
690 v4l2_device_unregister_subdev(&t->sd);
691 tuner_detach(&t->fe);
692 t->fe.analog_demod_priv = NULL;
693
694 list_del(&t->list);
695 kfree(t);
696 return 0;
697}
698
699/*
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200700 * Functions to switch between Radio and TV
701 *
702 * A few cards have a separate I2C tuner for radio. Those routines
703 * take care of switching between TV/Radio mode, filtering only the
704 * commands that apply to the Radio or TV tuner.
705 */
706
707/**
708 * check_mode - Verify if tuner supports the requested mode
709 * @t: a pointer to the module's internal struct_tuner
710 *
711 * This function checks if the tuner is capable of tuning analog TV,
712 * digital TV or radio, depending on what the caller wants. If the
713 * tuner can't support that mode, it returns -EINVAL. Otherwise, it
714 * returns 0.
715 * This function is needed for boards that have a separate tuner for
716 * radio (like devices with tea5767).
717 */
718static inline int check_mode(struct tuner *t, enum v4l2_tuner_type mode)
719{
720 if ((1 << mode & t->mode_mask) == 0)
721 return -EINVAL;
722
723 return 0;
724}
725
726/**
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300727 * set_mode - Switch tuner to other mode.
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200728 * @t: a pointer to the module's internal struct_tuner
729 * @mode: enum v4l2_type (radio or TV)
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200730 *
731 * If tuner doesn't support the needed mode (radio or TV), prints a
732 * debug message and returns -EINVAL, changing its state to standby.
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300733 * Otherwise, changes the mode and returns 0.
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200734 */
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300735static int set_mode(struct tuner *t, enum v4l2_tuner_type mode)
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200736{
737 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
738
739 if (mode != t->mode) {
740 if (check_mode(t, mode) == -EINVAL) {
741 tuner_dbg("Tuner doesn't support mode %d. "
742 "Putting tuner to sleep\n", mode);
743 t->standby = true;
744 if (analog_ops->standby)
745 analog_ops->standby(&t->fe);
746 return -EINVAL;
747 }
748 t->mode = mode;
749 tuner_dbg("Changing to mode %d\n", mode);
750 }
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200751 return 0;
752}
753
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300754/**
755 * set_freq - Set the tuner to the desired frequency.
756 * @t: a pointer to the module's internal struct_tuner
757 * @freq: frequency to set (0 means to use the current frequency)
758 */
759static void set_freq(struct tuner *t, unsigned int freq)
760{
761 struct i2c_client *client = v4l2_get_subdevdata(&t->sd);
762
763 if (t->mode == V4L2_TUNER_RADIO) {
764 if (!freq)
765 freq = t->radio_freq;
766 set_radio_freq(client, freq);
767 } else {
768 if (!freq)
769 freq = t->tv_freq;
770 set_tv_freq(client, freq);
771 }
772}
773
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200774/*
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300775 * Functions that are specific for TV mode
776 */
777
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200778/**
779 * set_tv_freq - Set tuner frequency, freq in Units of 62.5 kHz = 1/16MHz
780 *
781 * @c: i2c_client descriptor
782 * @freq: frequency
783 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300784static void set_tv_freq(struct i2c_client *c, unsigned int freq)
785{
786 struct tuner *t = to_tuner(i2c_get_clientdata(c));
787 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
788
789 struct analog_parameters params = {
790 .mode = t->mode,
791 .audmode = t->audmode,
792 .std = t->std
793 };
794
795 if (t->type == UNSET) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300796 tuner_warn("tuner type not set\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300797 return;
798 }
799 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300800 tuner_warn("Tuner has no way to set tv freq\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300801 return;
802 }
803 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300804 tuner_dbg("TV freq (%d.%02d) out of range (%d-%d)\n",
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300805 freq / 16, freq % 16 * 100 / 16, tv_range[0],
806 tv_range[1]);
807 /* V4L2 spec: if the freq is not possible then the closest
808 possible value should be selected */
809 if (freq < tv_range[0] * 16)
810 freq = tv_range[0] * 16;
811 else
812 freq = tv_range[1] * 16;
813 }
814 params.frequency = freq;
815 tuner_dbg("tv freq set to %d.%02d\n",
816 freq / 16, freq % 16 * 100 / 16);
817 t->tv_freq = freq;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300818 t->standby = false;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300819
820 analog_ops->set_params(&t->fe, &params);
821}
822
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200823/**
824 * tuner_fixup_std - force a given video standard variant
825 *
Hans Verkuil48783302011-06-13 09:47:56 -0300826 * @t: tuner internal struct
827 * @std: TV standard
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200828 *
829 * A few devices or drivers have problem to detect some standard variations.
830 * On other operational systems, the drivers generally have a per-country
831 * code, and some logic to apply per-country hacks. V4L2 API doesn't provide
832 * such hacks. Instead, it relies on a proper video standard selection from
833 * the userspace application. However, as some apps are buggy, not allowing
834 * to distinguish all video standard variations, a modprobe parameter can
835 * be used to force a video standard match.
836 */
Hans Verkuil48783302011-06-13 09:47:56 -0300837static v4l2_std_id tuner_fixup_std(struct tuner *t, v4l2_std_id std)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Hans Verkuil48783302011-06-13 09:47:56 -0300839 if (pal[0] != '-' && (std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300841 case '6':
Hans Verkuil48783302011-06-13 09:47:56 -0300842 return V4L2_STD_PAL_60;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 case 'b':
844 case 'B':
845 case 'g':
846 case 'G':
Hans Verkuil48783302011-06-13 09:47:56 -0300847 return V4L2_STD_PAL_BG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 case 'i':
849 case 'I':
Hans Verkuil48783302011-06-13 09:47:56 -0300850 return V4L2_STD_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 case 'd':
852 case 'D':
853 case 'k':
854 case 'K':
Hans Verkuil48783302011-06-13 09:47:56 -0300855 return V4L2_STD_PAL_DK;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700856 case 'M':
857 case 'm':
Hans Verkuil48783302011-06-13 09:47:56 -0300858 return V4L2_STD_PAL_M;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700859 case 'N':
860 case 'n':
Hans Verkuil48783302011-06-13 09:47:56 -0300861 if (pal[1] == 'c' || pal[1] == 'C')
862 return V4L2_STD_PAL_Nc;
863 return V4L2_STD_PAL_N;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700864 default:
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300865 tuner_warn("pal= argument not recognised\n");
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700866 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868 }
Hans Verkuil48783302011-06-13 09:47:56 -0300869 if (secam[0] != '-' && (std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700870 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200871 case 'b':
872 case 'B':
873 case 'g':
874 case 'G':
875 case 'h':
876 case 'H':
Hans Verkuil48783302011-06-13 09:47:56 -0300877 return V4L2_STD_SECAM_B |
878 V4L2_STD_SECAM_G |
879 V4L2_STD_SECAM_H;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700880 case 'd':
881 case 'D':
882 case 'k':
883 case 'K':
Hans Verkuil48783302011-06-13 09:47:56 -0300884 return V4L2_STD_SECAM_DK;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700885 case 'l':
886 case 'L':
Hans Verkuil48783302011-06-13 09:47:56 -0300887 if ((secam[1] == 'C') || (secam[1] == 'c'))
888 return V4L2_STD_SECAM_LC;
889 return V4L2_STD_SECAM_L;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700890 default:
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300891 tuner_warn("secam= argument not recognised\n");
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700892 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700893 }
894 }
895
Hans Verkuil48783302011-06-13 09:47:56 -0300896 if (ntsc[0] != '-' && (std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200897 switch (ntsc[0]) {
898 case 'm':
899 case 'M':
Hans Verkuil48783302011-06-13 09:47:56 -0300900 return V4L2_STD_NTSC_M;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200901 case 'j':
902 case 'J':
Hans Verkuil48783302011-06-13 09:47:56 -0300903 return V4L2_STD_NTSC_M_JP;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200904 case 'k':
905 case 'K':
Hans Verkuil48783302011-06-13 09:47:56 -0300906 return V4L2_STD_NTSC_M_KR;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200907 default:
908 tuner_info("ntsc= argument not recognised\n");
909 break;
910 }
911 }
Hans Verkuil48783302011-06-13 09:47:56 -0300912 return std;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300915/*
916 * Functions that are specific for Radio mode
917 */
918
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200919/**
920 * set_radio_freq - Set tuner frequency, freq in Units of 62.5 Hz = 1/16kHz
921 *
922 * @c: i2c_client descriptor
923 * @freq: frequency
924 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300925static void set_radio_freq(struct i2c_client *c, unsigned int freq)
926{
927 struct tuner *t = to_tuner(i2c_get_clientdata(c));
928 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
929
930 struct analog_parameters params = {
931 .mode = t->mode,
932 .audmode = t->audmode,
933 .std = t->std
934 };
935
936 if (t->type == UNSET) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300937 tuner_warn("tuner type not set\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300938 return;
939 }
940 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300941 tuner_warn("tuner has no way to set radio frequency\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300942 return;
943 }
944 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300945 tuner_dbg("radio freq (%d.%02d) out of range (%d-%d)\n",
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300946 freq / 16000, freq % 16000 * 100 / 16000,
947 radio_range[0], radio_range[1]);
948 /* V4L2 spec: if the freq is not possible then the closest
949 possible value should be selected */
950 if (freq < radio_range[0] * 16000)
951 freq = radio_range[0] * 16000;
952 else
953 freq = radio_range[1] * 16000;
954 }
955 params.frequency = freq;
956 tuner_dbg("radio freq set to %d.%02d\n",
957 freq / 16000, freq % 16000 * 100 / 16000);
958 t->radio_freq = freq;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300959 t->standby = false;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300960
961 analog_ops->set_params(&t->fe, &params);
962}
963
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200964/*
965 * Debug function for reporting tuner status to userspace
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300966 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300967
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300968/**
969 * tuner_status - Dumps the current tuner status at dmesg
970 * @fe: pointer to struct dvb_frontend
971 *
972 * This callback is used only for driver debug purposes, answering to
973 * VIDIOC_LOG_STATUS. No changes should happen on this call.
974 */
Michael Krufky4e9154b2007-10-21 19:39:50 -0300975static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200976{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300977 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200978 unsigned long freq, freq_fraction;
Michael Krufkya07c8772008-04-29 03:54:19 -0300979 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
980 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200981 const char *p;
982
983 switch (t->mode) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300984 case V4L2_TUNER_RADIO:
985 p = "radio";
986 break;
987 case V4L2_TUNER_DIGITAL_TV:
988 p = "digital TV";
989 break;
990 case V4L2_TUNER_ANALOG_TV:
991 default:
992 p = "analog TV";
993 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200994 }
995 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200996 freq = t->radio_freq / 16000;
997 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200998 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -0200999 freq = t->tv_freq / 16;
1000 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001001 }
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001002 tuner_info("Tuner mode: %s%s\n", p,
1003 t->standby ? " on standby mode" : "");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001004 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -03001005 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001006 if (t->mode != V4L2_TUNER_RADIO)
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -03001007 return;
Michael Krufkye18f9442007-08-21 01:25:48 -03001008 if (fe_tuner_ops->get_status) {
1009 u32 tuner_status;
1010
1011 fe_tuner_ops->get_status(&t->fe, &tuner_status);
1012 if (tuner_status & TUNER_STATUS_LOCKED)
1013 tuner_info("Tuner is locked.\n");
1014 if (tuner_status & TUNER_STATUS_STEREO)
1015 tuner_info("Stereo: yes\n");
1016 }
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001017 if (analog_ops->has_signal)
1018 tuner_info("Signal strength: %d\n",
1019 analog_ops->has_signal(fe));
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001020}
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001021
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -02001022/*
1023 * Function to splicitly change mode to radio. Probably not needed anymore
1024 */
1025
1026static int tuner_s_radio(struct v4l2_subdev *sd)
1027{
1028 struct tuner *t = to_tuner(sd);
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -02001029
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001030 if (set_mode(t, V4L2_TUNER_RADIO) == 0)
1031 set_freq(t, 0);
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -02001032 return 0;
1033}
1034
1035/*
1036 * Tuner callbacks to handle userspace ioctl's
1037 */
1038
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001039/**
1040 * tuner_s_power - controls the power state of the tuner
1041 * @sd: pointer to struct v4l2_subdev
Hans Verkuild16625e2011-06-25 10:24:49 -03001042 * @on: a zero value puts the tuner to sleep, non-zero wakes it up
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001043 */
Laurent Pinchart622b8282009-10-05 10:48:17 -03001044static int tuner_s_power(struct v4l2_subdev *sd, int on)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001045{
1046 struct tuner *t = to_tuner(sd);
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001047 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Hans Verkuild16625e2011-06-25 10:24:49 -03001049 if (on) {
1050 if (t->standby && set_mode(t, t->mode) == 0) {
1051 tuner_dbg("Waking up tuner\n");
1052 set_freq(t, 0);
1053 }
Laurent Pinchart622b8282009-10-05 10:48:17 -03001054 return 0;
Hans Verkuild16625e2011-06-25 10:24:49 -03001055 }
Laurent Pinchart622b8282009-10-05 10:48:17 -03001056
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -03001057 tuner_dbg("Putting tuner to sleep\n");
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001058 t->standby = true;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001059 if (analog_ops->standby)
1060 analog_ops->standby(&t->fe);
1061 return 0;
1062}
1063
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001064static int tuner_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
1065{
1066 struct tuner *t = to_tuner(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001068 if (set_mode(t, V4L2_TUNER_ANALOG_TV))
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001069 return 0;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001070
Hans Verkuil48783302011-06-13 09:47:56 -03001071 t->std = tuner_fixup_std(t, std);
1072 if (t->std != std)
1073 tuner_dbg("Fixup standard %llx to %llx\n", std, t->std);
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001074 set_freq(t, 0);
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001075 return 0;
1076}
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001077
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001078static int tuner_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
1079{
1080 struct tuner *t = to_tuner(sd);
Michael Krufkye18f9442007-08-21 01:25:48 -03001081
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001082 if (set_mode(t, f->type) == 0)
1083 set_freq(t, f->frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return 0;
1085}
1086
Hans Verkuil338e9e12011-06-13 09:35:56 -03001087/**
1088 * tuner_g_frequency - Get the tuned frequency for the tuner
1089 * @sd: pointer to struct v4l2_subdev
1090 * @f: pointer to struct v4l2_frequency
1091 *
1092 * At return, the structure f will be filled with tuner frequency
1093 * if the tuner matches the f->type.
1094 * Note: f->type should be initialized before calling it.
1095 * This is done by either video_ioctl2 or by the bridge driver.
1096 */
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001097static int tuner_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
1098{
1099 struct tuner *t = to_tuner(sd);
1100 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
1101
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001102 if (check_mode(t, f->type) == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001103 return 0;
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001104 if (f->type == t->mode && fe_tuner_ops->get_frequency && !t->standby) {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001105 u32 abs_freq;
1106
1107 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
1108 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
Julia Lawall75b697f2009-08-01 16:48:41 -03001109 DIV_ROUND_CLOSEST(abs_freq * 2, 125) :
1110 DIV_ROUND_CLOSEST(abs_freq, 62500);
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001111 } else {
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001112 f->frequency = (V4L2_TUNER_RADIO == f->type) ?
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001113 t->radio_freq : t->tv_freq;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001114 }
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001115 return 0;
1116}
1117
Hans Verkuil338e9e12011-06-13 09:35:56 -03001118/**
1119 * tuner_g_tuner - Fill in tuner information
1120 * @sd: pointer to struct v4l2_subdev
1121 * @vt: pointer to struct v4l2_tuner
1122 *
1123 * At return, the structure vt will be filled with tuner information
1124 * if the tuner matches vt->type.
1125 * Note: vt->type should be initialized before calling it.
1126 * This is done by either video_ioctl2 or by the bridge driver.
1127 */
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001128static int tuner_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1129{
1130 struct tuner *t = to_tuner(sd);
1131 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1132 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
1133
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001134 if (check_mode(t, vt->type) == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001135 return 0;
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001136 if (vt->type == t->mode && analog_ops->get_afc)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001137 vt->afc = analog_ops->get_afc(&t->fe);
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001138 if (vt->type == V4L2_TUNER_ANALOG_TV)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001139 vt->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001140 if (vt->type != V4L2_TUNER_RADIO) {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001141 vt->rangelow = tv_range[0] * 16;
1142 vt->rangehigh = tv_range[1] * 16;
1143 return 0;
1144 }
1145
1146 /* radio mode */
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001147 if (vt->type == t->mode) {
1148 vt->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
1149 if (fe_tuner_ops->get_status) {
1150 u32 tuner_status;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001151
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001152 fe_tuner_ops->get_status(&t->fe, &tuner_status);
1153 vt->rxsubchans =
1154 (tuner_status & TUNER_STATUS_STEREO) ?
1155 V4L2_TUNER_SUB_STEREO :
1156 V4L2_TUNER_SUB_MONO;
1157 }
1158 if (analog_ops->has_signal)
1159 vt->signal = analog_ops->has_signal(&t->fe);
1160 vt->audmode = t->audmode;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001161 }
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001162 vt->capability |= V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001163 vt->rangelow = radio_range[0] * 16000;
1164 vt->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001165
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001166 return 0;
1167}
1168
Hans Verkuil338e9e12011-06-13 09:35:56 -03001169/**
1170 * tuner_s_tuner - Set the tuner's audio mode
1171 * @sd: pointer to struct v4l2_subdev
1172 * @vt: pointer to struct v4l2_tuner
1173 *
1174 * Sets the audio mode if the tuner matches vt->type.
1175 * Note: vt->type should be initialized before calling it.
1176 * This is done by either video_ioctl2 or by the bridge driver.
1177 */
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001178static int tuner_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1179{
1180 struct tuner *t = to_tuner(sd);
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001181
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001182 if (set_mode(t, vt->type))
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001183 return 0;
1184
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001185 if (t->mode == V4L2_TUNER_RADIO)
1186 t->audmode = vt->audmode;
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001187 set_freq(t, 0);
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001188
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001189 return 0;
1190}
1191
1192static int tuner_log_status(struct v4l2_subdev *sd)
1193{
1194 struct tuner *t = to_tuner(sd);
1195 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1196
1197 if (analog_ops->tuner_status)
1198 analog_ops->tuner_status(&t->fe);
1199 return 0;
1200}
1201
Jean Delvare21b48a72007-03-12 19:20:15 -03001202static int tuner_suspend(struct i2c_client *c, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001204 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001205 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001207 tuner_dbg("suspend\n");
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001208
1209 if (!t->standby && analog_ops->standby)
1210 analog_ops->standby(&t->fe);
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return 0;
1213}
1214
Jean Delvare21b48a72007-03-12 19:20:15 -03001215static int tuner_resume(struct i2c_client *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001217 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001219 tuner_dbg("resume\n");
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001220
1221 if (!t->standby)
Hans Verkuil9bf0ef02011-06-13 09:21:56 -03001222 if (set_mode(t, t->mode) == 0)
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001223 set_freq(t, 0);
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return 0;
1226}
1227
Hans Verkuil75b4c262009-04-01 03:32:22 -03001228static int tuner_command(struct i2c_client *client, unsigned cmd, void *arg)
1229{
1230 struct v4l2_subdev *sd = i2c_get_clientdata(client);
1231
1232 /* TUNER_SET_CONFIG is still called by tuner-simple.c, so we have
1233 to handle it here.
1234 There must be a better way of doing this... */
1235 switch (cmd) {
1236 case TUNER_SET_CONFIG:
1237 return tuner_s_config(sd, arg);
1238 }
1239 return -ENOIOCTLCMD;
1240}
1241
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -02001242/*
1243 * Callback structs
1244 */
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001245
1246static const struct v4l2_subdev_core_ops tuner_core_ops = {
1247 .log_status = tuner_log_status,
Hans Verkuilf41737e2009-04-01 03:52:39 -03001248 .s_std = tuner_s_std,
Laurent Pinchart622b8282009-10-05 10:48:17 -03001249 .s_power = tuner_s_power,
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001250};
1251
1252static const struct v4l2_subdev_tuner_ops tuner_tuner_ops = {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001253 .s_radio = tuner_s_radio,
1254 .g_tuner = tuner_g_tuner,
1255 .s_tuner = tuner_s_tuner,
1256 .s_frequency = tuner_s_frequency,
1257 .g_frequency = tuner_g_frequency,
1258 .s_type_addr = tuner_s_type_addr,
1259 .s_config = tuner_s_config,
1260};
1261
1262static const struct v4l2_subdev_ops tuner_ops = {
1263 .core = &tuner_core_ops,
1264 .tuner = &tuner_tuner_ops,
1265};
1266
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -02001267/*
1268 * I2C structs and module init functions
1269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Jean Delvareaf294862008-05-18 20:49:40 +02001271static const struct i2c_device_id tuner_id[] = {
1272 { "tuner", }, /* autodetect */
1273 { }
1274};
1275MODULE_DEVICE_TABLE(i2c, tuner_id);
1276
Hans Verkuil02a20982010-09-15 15:36:23 -03001277static struct i2c_driver tuner_driver = {
1278 .driver = {
1279 .owner = THIS_MODULE,
1280 .name = "tuner",
1281 },
1282 .probe = tuner_probe,
1283 .remove = tuner_remove,
1284 .command = tuner_command,
1285 .suspend = tuner_suspend,
1286 .resume = tuner_resume,
1287 .id_table = tuner_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288};
1289
Hans Verkuil02a20982010-09-15 15:36:23 -03001290static __init int init_tuner(void)
1291{
1292 return i2c_add_driver(&tuner_driver);
1293}
1294
1295static __exit void exit_tuner(void)
1296{
1297 i2c_del_driver(&tuner_driver);
1298}
1299
1300module_init(init_tuner);
1301module_exit(exit_tuner);
1302
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -03001303MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
1304MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1305MODULE_LICENSE("GPL");