blob: 76496fd282aa532da3e84960ea7dddeedc013ccf [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"
Davide Ferri8d009a02009-06-23 22:34:06 -030042#include "xc4000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define UNSET (-1U)
45
Lars-Peter Clausenf9d32f22013-09-29 10:51:01 +020046#define PREFIX (t->i2c->dev.driver->name)
Michael Krufky241020d2007-10-30 09:46:10 -030047
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030048/*
49 * Driver modprobe parameters
50 */
51
52/* insmod options used at init time => read/only */
53static unsigned int addr;
54static unsigned int no_autodetect;
55static unsigned int show_i2c;
56
57module_param(addr, int, 0444);
58module_param(no_autodetect, int, 0444);
59module_param(show_i2c, int, 0444);
60
61/* insmod options used at runtime => read/write */
62static int tuner_debug;
63static unsigned int tv_range[2] = { 44, 958 };
64static unsigned int radio_range[2] = { 65, 108 };
65static char pal[] = "--";
66static char secam[] = "--";
67static char ntsc[] = "-";
68
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -030069module_param_named(debug, tuner_debug, int, 0644);
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030070module_param_array(tv_range, int, NULL, 0644);
71module_param_array(radio_range, int, NULL, 0644);
72module_param_string(pal, pal, sizeof(pal), 0644);
73module_param_string(secam, secam, sizeof(secam), 0644);
74module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
75
76/*
77 * Static vars
78 */
79
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030080static LIST_HEAD(tuner_list);
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -020081static const struct v4l2_subdev_ops tuner_ops;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -030082
83/*
84 * Debug macros
85 */
86
87#define tuner_warn(fmt, arg...) do { \
88 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
89 i2c_adapter_id(t->i2c->adapter), \
90 t->i2c->addr, ##arg); \
91 } while (0)
92
93#define tuner_info(fmt, arg...) do { \
94 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
95 i2c_adapter_id(t->i2c->adapter), \
96 t->i2c->addr, ##arg); \
97 } while (0)
98
99#define tuner_err(fmt, arg...) do { \
100 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
101 i2c_adapter_id(t->i2c->adapter), \
102 t->i2c->addr, ##arg); \
103 } while (0)
104
105#define tuner_dbg(fmt, arg...) do { \
106 if (tuner_debug) \
107 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
108 i2c_adapter_id(t->i2c->adapter), \
109 t->i2c->addr, ##arg); \
110 } while (0)
111
112/*
113 * Internal struct used inside the driver
114 */
115
116struct tuner {
117 /* device */
118 struct dvb_frontend fe;
119 struct i2c_client *i2c;
120 struct v4l2_subdev sd;
121 struct list_head list;
122
123 /* keep track of the current settings */
124 v4l2_std_id std;
125 unsigned int tv_freq;
126 unsigned int radio_freq;
127 unsigned int audmode;
128
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300129 enum v4l2_tuner_type mode;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300130 unsigned int mode_mask; /* Combination of allowable modes */
131
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300132 bool standby; /* Standby mode */
133
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300134 unsigned int type; /* chip type id */
Ondrej Zarycdcd1412013-04-06 14:21:36 -0300135 void *config;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300136 const char *name;
Mauro Carvalho Chehab188d2d52015-08-31 13:23:03 -0300137
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300138#if defined(CONFIG_MEDIA_CONTROLLER)
Mauro Carvalho Chehab188d2d52015-08-31 13:23:03 -0300139 struct media_pad pad[TUNER_NUM_PADS];
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300140#endif
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300141};
142
143/*
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200144 * Function prototypes
145 */
146
147static void set_tv_freq(struct i2c_client *c, unsigned int freq);
148static void set_radio_freq(struct i2c_client *c, unsigned int freq);
149
150/*
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300151 * tuner attach/detach logic
152 */
153
Mauro Carvalho Chehab0ae79d92011-02-15 01:10:20 -0300154/* This macro allows us to probe dynamically, avoiding static links */
Mauro Carvalho Chehabff138172008-04-29 23:02:33 -0300155#ifdef CONFIG_MEDIA_ATTACH
Michael Krufkya07c8772008-04-29 03:54:19 -0300156#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
157 int __r = -EINVAL; \
158 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
159 if (__a) { \
160 __r = (int) __a(ARGS); \
Andrew Mortona1355e52008-04-30 11:40:17 -0300161 symbol_put(FUNCTION); \
Michael Krufkya07c8772008-04-29 03:54:19 -0300162 } else { \
163 printk(KERN_ERR "TUNER: Unable to find " \
164 "symbol "#FUNCTION"()\n"); \
165 } \
Michael Krufkya07c8772008-04-29 03:54:19 -0300166 __r; \
167})
168
169static void tuner_detach(struct dvb_frontend *fe)
170{
171 if (fe->ops.tuner_ops.release) {
172 fe->ops.tuner_ops.release(fe);
173 symbol_put_addr(fe->ops.tuner_ops.release);
174 }
175 if (fe->ops.analog_ops.release) {
176 fe->ops.analog_ops.release(fe);
177 symbol_put_addr(fe->ops.analog_ops.release);
178 }
179}
180#else
181#define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
182 FUNCTION(ARGS); \
183})
184
185static void tuner_detach(struct dvb_frontend *fe)
186{
187 if (fe->ops.tuner_ops.release)
188 fe->ops.tuner_ops.release(fe);
189 if (fe->ops.analog_ops.release)
190 fe->ops.analog_ops.release(fe);
191}
192#endif
193
Michael Krufkyf7f427e2007-12-16 22:02:26 -0300194
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300195static inline struct tuner *to_tuner(struct v4l2_subdev *sd)
196{
197 return container_of(sd, struct tuner, sd);
198}
199
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300200/*
201 * struct analog_demod_ops callbacks
202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Michael Krufkyc7919d52007-12-08 17:06:30 -0300204static void fe_set_params(struct dvb_frontend *fe,
205 struct analog_parameters *params)
Michael Krufkye18f9442007-08-21 01:25:48 -0300206{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300207 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
208 struct tuner *t = fe->analog_demod_priv;
Michael Krufkye18f9442007-08-21 01:25:48 -0300209
Michael Krufkye18f9442007-08-21 01:25:48 -0300210 if (NULL == fe_tuner_ops->set_analog_params) {
211 tuner_warn("Tuner frontend module has no way to set freq\n");
212 return;
213 }
Michael Krufkyc7919d52007-12-08 17:06:30 -0300214 fe_tuner_ops->set_analog_params(fe, params);
Michael Krufkye18f9442007-08-21 01:25:48 -0300215}
216
Michael Krufky4e9154b2007-10-21 19:39:50 -0300217static void fe_standby(struct dvb_frontend *fe)
Michael Krufkye18f9442007-08-21 01:25:48 -0300218{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300219 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
Michael Krufkye18f9442007-08-21 01:25:48 -0300220
221 if (fe_tuner_ops->sleep)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300222 fe_tuner_ops->sleep(fe);
Michael Krufkye18f9442007-08-21 01:25:48 -0300223}
224
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300225static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
226{
227 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
228 struct tuner *t = fe->analog_demod_priv;
229
230 if (fe_tuner_ops->set_config)
231 return fe_tuner_ops->set_config(fe, priv_cfg);
232
233 tuner_warn("Tuner frontend module has no way to set config\n");
234
235 return 0;
236}
237
Michael Krufky4e9154b2007-10-21 19:39:50 -0300238static void tuner_status(struct dvb_frontend *fe);
Michael Krufky1dde7a42007-10-21 13:40:56 -0300239
Hans Verkuil106cf642013-03-25 08:14:13 -0300240static const struct analog_demod_ops tuner_analog_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300241 .set_params = fe_set_params,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300242 .standby = fe_standby,
Michael Krufkyf1c9a282007-12-16 19:27:23 -0300243 .set_config = fe_set_config,
Michael Krufky1dde7a42007-10-21 13:40:56 -0300244 .tuner_status = tuner_status
245};
246
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300247/*
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200248 * Functions to select between radio and TV and tuner probe/remove functions
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200251/**
252 * set_type - Sets the tuner type for a given device
253 *
Lad, Prabhakar5618dd22013-10-10 10:39:32 -0300254 * @c: i2c_client descriptor
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200255 * @type: type of the tuner (e. g. tuner number)
256 * @new_mode_mask: Indicates if tuner supports TV and/or Radio
Ondrej Zarycdcd1412013-04-06 14:21:36 -0300257 * @new_config: an optional parameter used by a few tuners to adjust
258 internal parameters, like LNA mode
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200259 * @tuner_callback: an optional function to be called when switching
260 * to analog mode
261 *
262 * This function applys the tuner config to tuner specified
263 * by tun_setup structure. It contains several per-tuner initialization "magic"
264 */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700265static void set_type(struct i2c_client *c, unsigned int type,
Ondrej Zarycdcd1412013-04-06 14:21:36 -0300266 unsigned int new_mode_mask, void *new_config,
Michael Krufkyd7cba042008-09-12 13:31:45 -0300267 int (*tuner_callback) (void *dev, int component, int cmd, int arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300269 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Michael Krufkye18f9442007-08-21 01:25:48 -0300270 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300271 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700272 unsigned char buffer[4];
Michael Krufkyd6eef492009-10-24 16:42:16 -0300273 int tune_now = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700275 if (type == UNSET || type == TUNER_ABSENT) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300276 tuner_dbg("tuner 0x%02x: Tuner type absent\n", c->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return;
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 t->type = type;
Ondrej Zarycdcd1412013-04-06 14:21:36 -0300281 t->config = new_config;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300282 if (tuner_callback != NULL) {
283 tuner_dbg("defining GPIO callback\n");
Michael Krufkyd7cba042008-09-12 13:31:45 -0300284 t->fe.callback = tuner_callback;
Hartmut Hackmanncfeb8832007-04-27 12:31:17 -0300285 }
Hartmut Hackmann80f90fb2007-04-27 12:31:18 -0300286
Michael Krufkyb2083192007-05-29 22:54:06 -0300287 /* discard private data, in case set_type() was previously called */
Michael Krufkya07c8772008-04-29 03:54:19 -0300288 tuner_detach(&t->fe);
289 t->fe.analog_demod_priv = NULL;
Michael Krufkybe2b85a2007-06-04 14:40:27 -0300290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 switch (t->type) {
292 case TUNER_MT2032:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300293 if (!dvb_attach(microtune_attach,
294 &t->fe, t->i2c->adapter, t->i2c->addr))
295 goto attach_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 break;
297 case TUNER_PHILIPS_TDA8290:
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300298 {
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300299 if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter,
Ondrej Zarycdcd1412013-04-06 14:21:36 -0300300 t->i2c->addr, t->config))
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300301 goto attach_failed;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300302 break;
303 }
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700304 case TUNER_TEA5767:
Michael Krufkya07c8772008-04-29 03:54:19 -0300305 if (!dvb_attach(tea5767_attach, &t->fe,
306 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300307 goto attach_failed;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700308 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700309 break;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300310 case TUNER_TEA5761:
Michael Krufkya07c8772008-04-29 03:54:19 -0300311 if (!dvb_attach(tea5761_attach, &t->fe,
312 t->i2c->adapter, t->i2c->addr))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300313 goto attach_failed;
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -0300314 t->mode_mask = T_RADIO;
315 break;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700316 case TUNER_PHILIPS_FMD1216ME_MK3:
Miroslav Slugen27b93d82011-12-13 15:36:15 -0300317 case TUNER_PHILIPS_FMD1216MEX_MK3:
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700318 buffer[0] = 0x0b;
319 buffer[1] = 0xdc;
320 buffer[2] = 0x9c;
321 buffer[3] = 0x60;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700322 i2c_master_send(c, buffer, 4);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700323 mdelay(1);
324 buffer[2] = 0x86;
325 buffer[3] = 0x54;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700326 i2c_master_send(c, buffer, 4);
Michael Krufkya07c8772008-04-29 03:54:19 -0300327 if (!dvb_attach(simple_tuner_attach, &t->fe,
328 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300329 goto attach_failed;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700330 break;
Hartmut Hackmann93df3412005-11-08 21:36:31 -0800331 case TUNER_PHILIPS_TD1316:
332 buffer[0] = 0x0b;
333 buffer[1] = 0xdc;
334 buffer[2] = 0x86;
335 buffer[3] = 0xa4;
Michael Krufkya07c8772008-04-29 03:54:19 -0300336 i2c_master_send(c, buffer, 4);
337 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;
Markus Rechbergerac272ed2006-01-23 17:11:09 -0200340 break;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300341 case TUNER_XC2028:
342 {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300343 struct xc2028_config cfg = {
344 .i2c_adap = t->i2c->adapter,
345 .i2c_addr = t->i2c->addr,
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300346 };
Michael Krufkya07c8772008-04-29 03:54:19 -0300347 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300348 goto attach_failed;
Michael Krufkyd6eef492009-10-24 16:42:16 -0300349 tune_now = 0;
Mauro Carvalho Chehab690c5442007-10-29 11:33:18 -0300350 break;
351 }
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300352 case TUNER_TDA9887:
Mauro Carvalho Chehab09fee5f2008-04-30 15:29:57 -0300353 if (!dvb_attach(tda9887_attach,
354 &t->fe, t->i2c->adapter, t->i2c->addr))
355 goto attach_failed;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300356 break;
Steven Toth27c685a2008-01-05 16:50:14 -0300357 case TUNER_XC5000:
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300358 {
Mauro Carvalho Chehab900f7342011-02-04 12:56:39 -0300359 struct xc5000_config xc5000_cfg = {
360 .i2c_address = t->i2c->addr,
361 /* if_khz will be set at dvb_attach() */
362 .if_khz = 0,
363 };
364
Michael Krufkya07c8772008-04-29 03:54:19 -0300365 if (!dvb_attach(xc5000_attach,
Michael Krufky30650962008-09-06 14:56:58 -0300366 &t->fe, t->i2c->adapter, &xc5000_cfg))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300367 goto attach_failed;
Michael Krufkyd6eef492009-10-24 16:42:16 -0300368 tune_now = 0;
Steven Toth27c685a2008-01-05 16:50:14 -0300369 break;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300370 }
Michael Krufkyf21cfaf2012-02-07 01:22:34 -0300371 case TUNER_XC5000C:
372 {
373 struct xc5000_config xc5000c_cfg = {
374 .i2c_address = t->i2c->addr,
375 /* if_khz will be set at dvb_attach() */
376 .if_khz = 0,
Michael Krufky6fab81d2012-02-08 14:57:39 -0300377 .chip_id = XC5000C,
Michael Krufkyf21cfaf2012-02-07 01:22:34 -0300378 };
379
380 if (!dvb_attach(xc5000_attach,
381 &t->fe, t->i2c->adapter, &xc5000c_cfg))
382 goto attach_failed;
383 tune_now = 0;
384 break;
385 }
Michael Krufky93463892009-09-15 23:04:18 -0300386 case TUNER_NXP_TDA18271:
387 {
388 struct tda18271_config cfg = {
Mauro Carvalho Chehabe350d442010-09-26 22:58:28 -0300389 .small_i2c = TDA18271_03_BYTE_CHUNK_INIT,
Michael Krufky93463892009-09-15 23:04:18 -0300390 };
391
392 if (!dvb_attach(tda18271_attach, &t->fe, t->i2c->addr,
393 t->i2c->adapter, &cfg))
394 goto attach_failed;
Michael Krufkyd6eef492009-10-24 16:42:16 -0300395 tune_now = 0;
Michael Krufky93463892009-09-15 23:04:18 -0300396 break;
397 }
Davide Ferri8d009a02009-06-23 22:34:06 -0300398 case TUNER_XC4000:
399 {
400 struct xc4000_config xc4000_cfg = {
401 .i2c_address = t->i2c->addr,
istvan_v@mailbox.hu8edeb6e2011-06-06 13:03:44 -0300402 /* FIXME: the correct parameters will be set */
403 /* only when the digital dvb_attach() occurs */
404 .default_pm = 0,
405 .dvb_amplitude = 0,
406 .set_smoothedcvbs = 0,
407 .if_khz = 0
Davide Ferri8d009a02009-06-23 22:34:06 -0300408 };
409 if (!dvb_attach(xc4000_attach,
410 &t->fe, t->i2c->adapter, &xc4000_cfg))
411 goto attach_failed;
412 tune_now = 0;
413 break;
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 default:
Michael Krufkya07c8772008-04-29 03:54:19 -0300416 if (!dvb_attach(simple_tuner_attach, &t->fe,
417 t->i2c->adapter, t->i2c->addr, t->type))
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300418 goto attach_failed;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 break;
421 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700422
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300423 if ((NULL == analog_ops->set_params) &&
Michael Krufky1dde7a42007-10-21 13:40:56 -0300424 (fe_tuner_ops->set_analog_params)) {
Michael Krufkya07c8772008-04-29 03:54:19 -0300425
Michael Krufky7271e602008-05-26 16:08:40 +0200426 t->name = fe_tuner_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300427
Michael Krufky4e9154b2007-10-21 19:39:50 -0300428 t->fe.analog_demod_priv = t;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -0300429 memcpy(analog_ops, &tuner_analog_ops,
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300430 sizeof(struct analog_demod_ops));
Michael Krufkya07c8772008-04-29 03:54:19 -0300431
Mauro Carvalho Chehab6f8ca0b2013-03-25 09:55:58 -0300432 if (fe_tuner_ops->get_rf_strength)
Hans Verkuildfc2e122013-04-06 04:41:29 -0300433 analog_ops->has_signal = fe_tuner_ops->get_rf_strength;
Mauro Carvalho Chehab6f8ca0b2013-03-25 09:55:58 -0300434 if (fe_tuner_ops->get_afc)
Hans Verkuila2192cf2013-04-06 04:35:27 -0300435 analog_ops->get_afc = fe_tuner_ops->get_afc;
Hans Verkuil106cf642013-03-25 08:14:13 -0300436
Michael Krufkya55db8c2007-12-09 13:52:51 -0300437 } else {
Michael Krufky7271e602008-05-26 16:08:40 +0200438 t->name = analog_ops->info.name;
Michael Krufkye18f9442007-08-21 01:25:48 -0300439 }
440
Mauro Carvalho Chehabdaf77bd2015-02-18 12:04:05 -0300441#ifdef CONFIG_MEDIA_CONTROLLER
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300442 t->sd.entity.name = t->name;
Mauro Carvalho Chehabdaf77bd2015-02-18 12:04:05 -0300443#endif
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300444
Michael Krufky7271e602008-05-26 16:08:40 +0200445 tuner_dbg("type set to %s\n", t->name);
Michael Krufkye18f9442007-08-21 01:25:48 -0300446
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300447 t->mode_mask = new_mode_mask;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700448
Michael Krufkyd6eef492009-10-24 16:42:16 -0300449 /* Some tuners require more initialization setup before use,
450 such as firmware download or device calibration.
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300451 trying to set a frequency here will just fail
452 FIXME: better to move set_freq to the tuner code. This is needed
453 on analog tuners for PLL to properly work
454 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300455 if (tune_now) {
456 if (V4L2_TUNER_RADIO == t->mode)
457 set_radio_freq(c, t->radio_freq);
458 else
459 set_tv_freq(c, t->tv_freq);
460 }
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300461
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700462 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
Lars-Peter Clausenf9d32f22013-09-29 10:51:01 +0200463 c->adapter->name, c->dev.driver->name, c->addr << 1, type,
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700464 t->mode_mask);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300465 return;
466
467attach_failed:
468 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
469 t->type = TUNER_ABSENT;
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300470
471 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Mauro Carvalho Chehab0ae79d92011-02-15 01:10:20 -0300474/**
475 * tuner_s_type_addr - Sets the tuner type for a device
476 *
477 * @sd: subdev descriptor
478 * @tun_setup: type to be associated to a given tuner i2c address
479 *
480 * This function applys the tuner config to tuner specified
481 * by tun_setup structure.
482 * If tuner I2C address is UNSET, then it will only set the device
483 * if the tuner supports the mode specified in the call.
484 * If the address is specified, the change will be applied only if
485 * tuner I2C address matches.
486 * The call can change the tuner number and the tuner mode.
487 */
Mauro Carvalho Chehaba34ec5f2011-02-15 00:55:18 -0300488static int tuner_s_type_addr(struct v4l2_subdev *sd,
489 struct tuner_setup *tun_setup)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700490{
Mauro Carvalho Chehaba34ec5f2011-02-15 00:55:18 -0300491 struct tuner *t = to_tuner(sd);
492 struct i2c_client *c = v4l2_get_subdevdata(sd);
493
Ondrej Zarycdcd1412013-04-06 14:21:36 -0300494 tuner_dbg("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=%p\n",
Mauro Carvalho Chehaba34ec5f2011-02-15 00:55:18 -0300495 tun_setup->type,
496 tun_setup->addr,
497 tun_setup->mode_mask,
498 tun_setup->config);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700499
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300500 if ((t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
501 (t->mode_mask & tun_setup->mode_mask))) ||
502 (tun_setup->addr == c->addr)) {
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300503 set_type(c, tun_setup->type, tun_setup->mode_mask,
504 tun_setup->config, tun_setup->tuner_callback);
Mauro Carvalho Chehabb9ef6bb2008-04-26 11:29:34 -0300505 } else
506 tuner_dbg("set addr discarded for type %i, mask %x. "
507 "Asked to change tuner at addr 0x%02x, with mask %x\n",
508 t->type, t->mode_mask,
509 tun_setup->addr, tun_setup->mode_mask);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700510
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300511 return 0;
512}
513
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200514/**
515 * tuner_s_config - Sets tuner configuration
516 *
517 * @sd: subdev descriptor
518 * @cfg: tuner configuration
519 *
520 * Calls tuner set_config() private function to set some tuner-internal
521 * parameters
522 */
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300523static int tuner_s_config(struct v4l2_subdev *sd,
524 const struct v4l2_priv_tun_config *cfg)
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300525{
526 struct tuner *t = to_tuner(sd);
527 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
528
529 if (t->type != cfg->tuner)
530 return 0;
531
532 if (analog_ops->set_config) {
533 analog_ops->set_config(&t->fe, cfg->priv);
534 return 0;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700535 }
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700536
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300537 tuner_dbg("Tuner frontend module has no way to set config\n");
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700538 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700539}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700540
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200541/**
542 * tuner_lookup - Seek for tuner adapters
543 *
544 * @adap: i2c_adapter struct
545 * @radio: pointer to be filled if the adapter is radio
546 * @tv: pointer to be filled if the adapter is TV
547 *
548 * Search for existing radio and/or TV tuners on the given I2C adapter,
549 * discarding demod-only adapters (tda9887).
550 *
551 * Note that when this function is called from tuner_probe you can be
552 * certain no other devices will be added/deleted at the same time, I2C
553 * core protects against that.
554 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300555static void tuner_lookup(struct i2c_adapter *adap,
556 struct tuner **radio, struct tuner **tv)
557{
558 struct tuner *pos;
559
560 *radio = NULL;
561 *tv = NULL;
562
563 list_for_each_entry(pos, &tuner_list, list) {
564 int mode_mask;
565
566 if (pos->i2c->adapter != adap ||
Lars-Peter Clausenf9d32f22013-09-29 10:51:01 +0200567 strcmp(pos->i2c->dev.driver->name, "tuner"))
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300568 continue;
569
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300570 mode_mask = pos->mode_mask;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300571 if (*radio == NULL && mode_mask == T_RADIO)
572 *radio = pos;
573 /* Note: currently TDA9887 is the only demod-only
574 device. If other devices appear then we need to
575 make this test more general. */
576 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200577 (pos->mode_mask & T_ANALOG_TV))
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300578 *tv = pos;
579 }
580}
581
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200582/**
583 *tuner_probe - Probes the existing tuners on an I2C bus
584 *
585 * @client: i2c_client descriptor
586 * @id: not used
587 *
588 * This routine probes for tuners at the expected I2C addresses. On most
589 * cases, if a device answers to a given I2C address, it assumes that the
590 * device is a tuner. On a few cases, however, an additional logic is needed
591 * to double check if the device is really a tuner, or to identify the tuner
592 * type, like on tea5767/5761 devices.
593 *
594 * During client attach, set_type is called by adapter's attach_inform callback.
595 * set_type must then be completed by tuner_probe.
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300596 */
597static int tuner_probe(struct i2c_client *client,
598 const struct i2c_device_id *id)
599{
600 struct tuner *t;
601 struct tuner *radio;
602 struct tuner *tv;
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300603#ifdef CONFIG_MEDIA_CONTROLLER
604 int ret;
605#endif
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300606
607 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
608 if (NULL == t)
609 return -ENOMEM;
610 v4l2_i2c_subdev_init(&t->sd, client, &tuner_ops);
611 t->i2c = client;
612 t->name = "(tuner unset)";
613 t->type = UNSET;
614 t->audmode = V4L2_TUNER_MODE_STEREO;
Mauro Carvalho Chehab22bf3de2014-09-03 15:08:11 -0300615 t->standby = true;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300616 t->radio_freq = 87.5 * 16000; /* Initial freq range */
617 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 -0300618
619 if (show_i2c) {
620 unsigned char buffer[16];
621 int i, rc;
622
623 memset(buffer, 0, sizeof(buffer));
624 rc = i2c_master_recv(client, buffer, sizeof(buffer));
625 tuner_info("I2C RECV = ");
626 for (i = 0; i < rc; i++)
627 printk(KERN_CONT "%02x ", buffer[i]);
628 printk("\n");
629 }
630
631 /* autodetection code based on the i2c addr */
632 if (!no_autodetect) {
633 switch (client->addr) {
634 case 0x10:
635 if (tuner_symbol_probe(tea5761_autodetection,
636 t->i2c->adapter,
637 t->i2c->addr) >= 0) {
638 t->type = TUNER_TEA5761;
639 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300640 tuner_lookup(t->i2c->adapter, &radio, &tv);
641 if (tv)
642 tv->mode_mask &= ~T_RADIO;
643
644 goto register_client;
645 }
646 kfree(t);
647 return -ENODEV;
648 case 0x42:
649 case 0x43:
650 case 0x4a:
651 case 0x4b:
652 /* If chip is not tda8290, don't register.
653 since it can be tda9887*/
654 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
655 t->i2c->addr) >= 0) {
656 tuner_dbg("tda829x detected\n");
657 } else {
658 /* Default is being tda9887 */
659 t->type = TUNER_TDA9887;
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200660 t->mode_mask = T_RADIO | T_ANALOG_TV;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300661 goto register_client;
662 }
663 break;
664 case 0x60:
665 if (tuner_symbol_probe(tea5767_autodetection,
666 t->i2c->adapter, t->i2c->addr)
667 >= 0) {
668 t->type = TUNER_TEA5767;
669 t->mode_mask = T_RADIO;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300670 /* Sets freq to FM range */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300671 tuner_lookup(t->i2c->adapter, &radio, &tv);
672 if (tv)
673 tv->mode_mask &= ~T_RADIO;
674
675 goto register_client;
676 }
677 break;
678 }
679 }
680
681 /* Initializes only the first TV tuner on this adapter. Why only the
682 first? Because there are some devices (notably the ones with TI
683 tuners) that have more than one i2c address for the *same* device.
684 Experience shows that, except for just one case, the first
685 address is the right one. The exception is a Russian tuner
686 (ACORP_Y878F). So, the desired behavior is just to enable the
687 first found TV tuner. */
688 tuner_lookup(t->i2c->adapter, &radio, &tv);
689 if (tv == NULL) {
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200690 t->mode_mask = T_ANALOG_TV;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300691 if (radio == NULL)
692 t->mode_mask |= T_RADIO;
693 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300694 }
695
696 /* Should be just before return */
697register_client:
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300698#if defined(CONFIG_MEDIA_CONTROLLER)
Mauro Carvalho Chehab188d2d52015-08-31 13:23:03 -0300699 t->pad[TUNER_PAD_RF_INPUT].flags = MEDIA_PAD_FL_SINK;
700 t->pad[TUNER_PAD_IF_OUTPUT].flags = MEDIA_PAD_FL_SOURCE;
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200701 t->sd.entity.function = MEDIA_ENT_F_TUNER;
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300702 t->sd.entity.name = t->name;
703
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -0200704 ret = media_entity_pads_init(&t->sd.entity, TUNER_NUM_PADS, &t->pad[0]);
Mauro Carvalho Chehab00a5a4b2015-01-03 12:44:40 -0300705 if (ret < 0) {
706 tuner_err("failed to initialize media entity!\n");
707 kfree(t);
708 return -ENODEV;
709 }
710#endif
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300711 /* Sets a default mode */
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300712 if (t->mode_mask & T_ANALOG_TV)
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300713 t->mode = V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300714 else
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200715 t->mode = V4L2_TUNER_RADIO;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300716 set_type(client, t->type, t->mode_mask, t->config, t->fe.callback);
717 list_add_tail(&t->list, &tuner_list);
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300718
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200719 tuner_info("Tuner %d found with type(s)%s%s.\n",
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300720 t->type,
Mauro Carvalho Chehabad020dc2011-02-15 09:30:50 -0200721 t->mode_mask & T_RADIO ? " Radio" : "",
722 t->mode_mask & T_ANALOG_TV ? " TV" : "");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300723 return 0;
724}
725
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200726/**
727 * tuner_remove - detaches a tuner
728 *
729 * @client: i2c_client descriptor
730 */
731
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300732static int tuner_remove(struct i2c_client *client)
733{
734 struct tuner *t = to_tuner(i2c_get_clientdata(client));
735
736 v4l2_device_unregister_subdev(&t->sd);
737 tuner_detach(&t->fe);
738 t->fe.analog_demod_priv = NULL;
739
740 list_del(&t->list);
741 kfree(t);
742 return 0;
743}
744
745/*
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200746 * Functions to switch between Radio and TV
747 *
748 * A few cards have a separate I2C tuner for radio. Those routines
749 * take care of switching between TV/Radio mode, filtering only the
750 * commands that apply to the Radio or TV tuner.
751 */
752
753/**
754 * check_mode - Verify if tuner supports the requested mode
755 * @t: a pointer to the module's internal struct_tuner
756 *
757 * This function checks if the tuner is capable of tuning analog TV,
758 * digital TV or radio, depending on what the caller wants. If the
759 * tuner can't support that mode, it returns -EINVAL. Otherwise, it
760 * returns 0.
761 * This function is needed for boards that have a separate tuner for
762 * radio (like devices with tea5767).
Mauro Carvalho Chehaba1ad5ec2011-07-13 01:23:11 -0300763 * NOTE: mt20xx uses V4L2_TUNER_DIGITAL_TV and calls set_tv_freq to
764 * select a TV frequency. So, t_mode = T_ANALOG_TV could actually
765 * be used to represent a Digital TV too.
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200766 */
767static inline int check_mode(struct tuner *t, enum v4l2_tuner_type mode)
768{
Mauro Carvalho Chehaba1ad5ec2011-07-13 01:23:11 -0300769 int t_mode;
770 if (mode == V4L2_TUNER_RADIO)
771 t_mode = T_RADIO;
772 else
773 t_mode = T_ANALOG_TV;
774
775 if ((t_mode & t->mode_mask) == 0)
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200776 return -EINVAL;
777
778 return 0;
779}
780
781/**
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300782 * set_mode - Switch tuner to other mode.
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200783 * @t: a pointer to the module's internal struct_tuner
784 * @mode: enum v4l2_type (radio or TV)
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200785 *
786 * If tuner doesn't support the needed mode (radio or TV), prints a
787 * debug message and returns -EINVAL, changing its state to standby.
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300788 * Otherwise, changes the mode and returns 0.
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200789 */
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300790static int set_mode(struct tuner *t, enum v4l2_tuner_type mode)
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200791{
792 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
793
794 if (mode != t->mode) {
795 if (check_mode(t, mode) == -EINVAL) {
796 tuner_dbg("Tuner doesn't support mode %d. "
797 "Putting tuner to sleep\n", mode);
798 t->standby = true;
799 if (analog_ops->standby)
800 analog_ops->standby(&t->fe);
801 return -EINVAL;
802 }
803 t->mode = mode;
804 tuner_dbg("Changing to mode %d\n", mode);
805 }
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200806 return 0;
807}
808
Hans Verkuil4e4a31f2011-06-14 03:56:09 -0300809/**
810 * set_freq - Set the tuner to the desired frequency.
811 * @t: a pointer to the module's internal struct_tuner
812 * @freq: frequency to set (0 means to use the current frequency)
813 */
814static void set_freq(struct tuner *t, unsigned int freq)
815{
816 struct i2c_client *client = v4l2_get_subdevdata(&t->sd);
817
818 if (t->mode == V4L2_TUNER_RADIO) {
819 if (!freq)
820 freq = t->radio_freq;
821 set_radio_freq(client, freq);
822 } else {
823 if (!freq)
824 freq = t->tv_freq;
825 set_tv_freq(client, freq);
826 }
827}
828
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -0200829/*
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300830 * Functions that are specific for TV mode
831 */
832
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200833/**
834 * set_tv_freq - Set tuner frequency, freq in Units of 62.5 kHz = 1/16MHz
835 *
836 * @c: i2c_client descriptor
837 * @freq: frequency
838 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300839static void set_tv_freq(struct i2c_client *c, unsigned int freq)
840{
841 struct tuner *t = to_tuner(i2c_get_clientdata(c));
842 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
843
844 struct analog_parameters params = {
845 .mode = t->mode,
846 .audmode = t->audmode,
847 .std = t->std
848 };
849
850 if (t->type == UNSET) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300851 tuner_warn("tuner type not set\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300852 return;
853 }
854 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300855 tuner_warn("Tuner has no way to set tv freq\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300856 return;
857 }
858 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300859 tuner_dbg("TV freq (%d.%02d) out of range (%d-%d)\n",
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300860 freq / 16, freq % 16 * 100 / 16, tv_range[0],
861 tv_range[1]);
862 /* V4L2 spec: if the freq is not possible then the closest
863 possible value should be selected */
864 if (freq < tv_range[0] * 16)
865 freq = tv_range[0] * 16;
866 else
867 freq = tv_range[1] * 16;
868 }
869 params.frequency = freq;
870 tuner_dbg("tv freq set to %d.%02d\n",
871 freq / 16, freq % 16 * 100 / 16);
872 t->tv_freq = freq;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -0300873 t->standby = false;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300874
875 analog_ops->set_params(&t->fe, &params);
876}
877
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200878/**
879 * tuner_fixup_std - force a given video standard variant
880 *
Hans Verkuil48783302011-06-13 09:47:56 -0300881 * @t: tuner internal struct
882 * @std: TV standard
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200883 *
884 * A few devices or drivers have problem to detect some standard variations.
885 * On other operational systems, the drivers generally have a per-country
886 * code, and some logic to apply per-country hacks. V4L2 API doesn't provide
887 * such hacks. Instead, it relies on a proper video standard selection from
888 * the userspace application. However, as some apps are buggy, not allowing
889 * to distinguish all video standard variations, a modprobe parameter can
890 * be used to force a video standard match.
891 */
Hans Verkuil48783302011-06-13 09:47:56 -0300892static v4l2_std_id tuner_fixup_std(struct tuner *t, v4l2_std_id std)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Hans Verkuil48783302011-06-13 09:47:56 -0300894 if (pal[0] != '-' && (std & V4L2_STD_PAL) == V4L2_STD_PAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 switch (pal[0]) {
Hans Verkuile71ced12006-12-11 15:51:43 -0300896 case '6':
Hans Verkuil48783302011-06-13 09:47:56 -0300897 return V4L2_STD_PAL_60;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 case 'b':
899 case 'B':
900 case 'g':
901 case 'G':
Hans Verkuil48783302011-06-13 09:47:56 -0300902 return V4L2_STD_PAL_BG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 case 'i':
904 case 'I':
Hans Verkuil48783302011-06-13 09:47:56 -0300905 return V4L2_STD_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 case 'd':
907 case 'D':
908 case 'k':
909 case 'K':
Hans Verkuil48783302011-06-13 09:47:56 -0300910 return V4L2_STD_PAL_DK;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700911 case 'M':
912 case 'm':
Hans Verkuil48783302011-06-13 09:47:56 -0300913 return V4L2_STD_PAL_M;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700914 case 'N':
915 case 'n':
Hans Verkuil48783302011-06-13 09:47:56 -0300916 if (pal[1] == 'c' || pal[1] == 'C')
917 return V4L2_STD_PAL_Nc;
918 return V4L2_STD_PAL_N;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700919 default:
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300920 tuner_warn("pal= argument not recognised\n");
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700921 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923 }
Hans Verkuil48783302011-06-13 09:47:56 -0300924 if (secam[0] != '-' && (std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700925 switch (secam[0]) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200926 case 'b':
927 case 'B':
928 case 'g':
929 case 'G':
930 case 'h':
931 case 'H':
Hans Verkuil48783302011-06-13 09:47:56 -0300932 return V4L2_STD_SECAM_B |
933 V4L2_STD_SECAM_G |
934 V4L2_STD_SECAM_H;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700935 case 'd':
936 case 'D':
937 case 'k':
938 case 'K':
Hans Verkuil48783302011-06-13 09:47:56 -0300939 return V4L2_STD_SECAM_DK;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700940 case 'l':
941 case 'L':
Hans Verkuil48783302011-06-13 09:47:56 -0300942 if ((secam[1] == 'C') || (secam[1] == 'c'))
943 return V4L2_STD_SECAM_LC;
944 return V4L2_STD_SECAM_L;
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700945 default:
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300946 tuner_warn("secam= argument not recognised\n");
Mauro Carvalho Chehab21d4df32005-09-09 13:03:59 -0700947 break;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700948 }
949 }
950
Hans Verkuil48783302011-06-13 09:47:56 -0300951 if (ntsc[0] != '-' && (std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200952 switch (ntsc[0]) {
953 case 'm':
954 case 'M':
Hans Verkuil48783302011-06-13 09:47:56 -0300955 return V4L2_STD_NTSC_M;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200956 case 'j':
957 case 'J':
Hans Verkuil48783302011-06-13 09:47:56 -0300958 return V4L2_STD_NTSC_M_JP;
Hans Verkuild97a11e2006-02-07 06:48:40 -0200959 case 'k':
960 case 'K':
Hans Verkuil48783302011-06-13 09:47:56 -0300961 return V4L2_STD_NTSC_M_KR;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -0200962 default:
963 tuner_info("ntsc= argument not recognised\n");
964 break;
965 }
966 }
Hans Verkuil48783302011-06-13 09:47:56 -0300967 return std;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300970/*
971 * Functions that are specific for Radio mode
972 */
973
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -0200974/**
975 * set_radio_freq - Set tuner frequency, freq in Units of 62.5 Hz = 1/16kHz
976 *
977 * @c: i2c_client descriptor
978 * @freq: frequency
979 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300980static void set_radio_freq(struct i2c_client *c, unsigned int freq)
981{
982 struct tuner *t = to_tuner(i2c_get_clientdata(c));
983 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
984
985 struct analog_parameters params = {
986 .mode = t->mode,
987 .audmode = t->audmode,
988 .std = t->std
989 };
990
991 if (t->type == UNSET) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300992 tuner_warn("tuner type not set\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300993 return;
994 }
995 if (NULL == analog_ops->set_params) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -0300996 tuner_warn("tuner has no way to set radio frequency\n");
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -0300997 return;
998 }
999 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -03001000 tuner_dbg("radio freq (%d.%02d) out of range (%d-%d)\n",
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -03001001 freq / 16000, freq % 16000 * 100 / 16000,
1002 radio_range[0], radio_range[1]);
1003 /* V4L2 spec: if the freq is not possible then the closest
1004 possible value should be selected */
1005 if (freq < radio_range[0] * 16000)
1006 freq = radio_range[0] * 16000;
1007 else
1008 freq = radio_range[1] * 16000;
1009 }
1010 params.frequency = freq;
1011 tuner_dbg("radio freq set to %d.%02d\n",
1012 freq / 16000, freq % 16000 * 100 / 16000);
1013 t->radio_freq = freq;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001014 t->standby = false;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -03001015
1016 analog_ops->set_params(&t->fe, &params);
Hans Verkuilba1066d2012-09-28 08:18:07 -03001017 /*
1018 * The tuner driver might decide to change the audmode if it only
1019 * supports stereo, so update t->audmode.
1020 */
1021 t->audmode = params.audmode;
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -03001022}
1023
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -02001024/*
1025 * Debug function for reporting tuner status to userspace
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -03001026 */
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -03001027
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001028/**
1029 * tuner_status - Dumps the current tuner status at dmesg
1030 * @fe: pointer to struct dvb_frontend
1031 *
1032 * This callback is used only for driver debug purposes, answering to
1033 * VIDIOC_LOG_STATUS. No changes should happen on this call.
1034 */
Michael Krufky4e9154b2007-10-21 19:39:50 -03001035static void tuner_status(struct dvb_frontend *fe)
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001036{
Michael Krufky4e9154b2007-10-21 19:39:50 -03001037 struct tuner *t = fe->analog_demod_priv;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001038 unsigned long freq, freq_fraction;
Michael Krufkya07c8772008-04-29 03:54:19 -03001039 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
1040 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001041 const char *p;
1042
1043 switch (t->mode) {
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -03001044 case V4L2_TUNER_RADIO:
1045 p = "radio";
1046 break;
Mauro Carvalho Chehaba1ad5ec2011-07-13 01:23:11 -03001047 case V4L2_TUNER_DIGITAL_TV: /* Used by mt20xx */
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -03001048 p = "digital TV";
1049 break;
1050 case V4L2_TUNER_ANALOG_TV:
1051 default:
1052 p = "analog TV";
1053 break;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001054 }
1055 if (t->mode == V4L2_TUNER_RADIO) {
Hans Verkuil27487d42006-01-15 15:04:52 -02001056 freq = t->radio_freq / 16000;
1057 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001058 } else {
Hans Verkuil27487d42006-01-15 15:04:52 -02001059 freq = t->tv_freq / 16;
1060 freq_fraction = (t->tv_freq % 16) * 100 / 16;
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001061 }
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001062 tuner_info("Tuner mode: %s%s\n", p,
1063 t->standby ? " on standby mode" : "");
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001064 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
Mauro Carvalho Chehab4ae5c2e2006-03-25 15:53:38 -03001065 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001066 if (t->mode != V4L2_TUNER_RADIO)
Mauro Carvalho Chehab7d275bf2011-02-04 11:28:00 -03001067 return;
Michael Krufkye18f9442007-08-21 01:25:48 -03001068 if (fe_tuner_ops->get_status) {
1069 u32 tuner_status;
1070
1071 fe_tuner_ops->get_status(&t->fe, &tuner_status);
1072 if (tuner_status & TUNER_STATUS_LOCKED)
1073 tuner_info("Tuner is locked.\n");
1074 if (tuner_status & TUNER_STATUS_STEREO)
1075 tuner_info("Stereo: yes\n");
1076 }
Hans Verkuildfc2e122013-04-06 04:41:29 -03001077 if (analog_ops->has_signal) {
1078 u16 signal;
1079
1080 if (!analog_ops->has_signal(fe, &signal))
1081 tuner_info("Signal strength: %hu\n", signal);
1082 }
Mauro Carvalho Chehab7e578192006-01-09 15:25:27 -02001083}
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001084
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -02001085/*
1086 * Function to splicitly change mode to radio. Probably not needed anymore
1087 */
1088
1089static int tuner_s_radio(struct v4l2_subdev *sd)
1090{
1091 struct tuner *t = to_tuner(sd);
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -02001092
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001093 if (set_mode(t, V4L2_TUNER_RADIO) == 0)
1094 set_freq(t, 0);
Mauro Carvalho Chehab0eec66c2011-02-15 10:27:03 -02001095 return 0;
1096}
1097
1098/*
1099 * Tuner callbacks to handle userspace ioctl's
1100 */
1101
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001102/**
1103 * tuner_s_power - controls the power state of the tuner
1104 * @sd: pointer to struct v4l2_subdev
Hans Verkuild16625e2011-06-25 10:24:49 -03001105 * @on: a zero value puts the tuner to sleep, non-zero wakes it up
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001106 */
Laurent Pinchart622b8282009-10-05 10:48:17 -03001107static int tuner_s_power(struct v4l2_subdev *sd, int on)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001108{
1109 struct tuner *t = to_tuner(sd);
Michael Krufkybc3e5c72007-12-21 11:18:32 -03001110 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Hans Verkuild16625e2011-06-25 10:24:49 -03001112 if (on) {
1113 if (t->standby && set_mode(t, t->mode) == 0) {
1114 tuner_dbg("Waking up tuner\n");
1115 set_freq(t, 0);
1116 }
Laurent Pinchart622b8282009-10-05 10:48:17 -03001117 return 0;
Hans Verkuild16625e2011-06-25 10:24:49 -03001118 }
Laurent Pinchart622b8282009-10-05 10:48:17 -03001119
Mauro Carvalho Chehab16a5e532008-12-20 07:17:10 -03001120 tuner_dbg("Putting tuner to sleep\n");
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001121 t->standby = true;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001122 if (analog_ops->standby)
1123 analog_ops->standby(&t->fe);
1124 return 0;
1125}
1126
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001127static int tuner_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
1128{
1129 struct tuner *t = to_tuner(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001131 if (set_mode(t, V4L2_TUNER_ANALOG_TV))
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001132 return 0;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001133
Hans Verkuil48783302011-06-13 09:47:56 -03001134 t->std = tuner_fixup_std(t, std);
1135 if (t->std != std)
1136 tuner_dbg("Fixup standard %llx to %llx\n", std, t->std);
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001137 set_freq(t, 0);
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001138 return 0;
1139}
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001140
Hans Verkuilb530a442013-03-19 04:09:26 -03001141static int tuner_s_frequency(struct v4l2_subdev *sd, const struct v4l2_frequency *f)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001142{
1143 struct tuner *t = to_tuner(sd);
Michael Krufkye18f9442007-08-21 01:25:48 -03001144
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001145 if (set_mode(t, f->type) == 0)
1146 set_freq(t, f->frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return 0;
1148}
1149
Hans Verkuil338e9e12011-06-13 09:35:56 -03001150/**
1151 * tuner_g_frequency - Get the tuned frequency for the tuner
1152 * @sd: pointer to struct v4l2_subdev
1153 * @f: pointer to struct v4l2_frequency
1154 *
1155 * At return, the structure f will be filled with tuner frequency
1156 * if the tuner matches the f->type.
1157 * Note: f->type should be initialized before calling it.
1158 * This is done by either video_ioctl2 or by the bridge driver.
1159 */
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001160static int tuner_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
1161{
1162 struct tuner *t = to_tuner(sd);
1163 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
1164
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001165 if (check_mode(t, f->type) == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001166 return 0;
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001167 if (f->type == t->mode && fe_tuner_ops->get_frequency && !t->standby) {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001168 u32 abs_freq;
1169
1170 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
1171 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
Julia Lawall75b697f2009-08-01 16:48:41 -03001172 DIV_ROUND_CLOSEST(abs_freq * 2, 125) :
1173 DIV_ROUND_CLOSEST(abs_freq, 62500);
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001174 } else {
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001175 f->frequency = (V4L2_TUNER_RADIO == f->type) ?
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001176 t->radio_freq : t->tv_freq;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001177 }
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001178 return 0;
1179}
1180
Hans Verkuil338e9e12011-06-13 09:35:56 -03001181/**
1182 * tuner_g_tuner - Fill in tuner information
1183 * @sd: pointer to struct v4l2_subdev
1184 * @vt: pointer to struct v4l2_tuner
1185 *
1186 * At return, the structure vt will be filled with tuner information
1187 * if the tuner matches vt->type.
1188 * Note: vt->type should be initialized before calling it.
1189 * This is done by either video_ioctl2 or by the bridge driver.
1190 */
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001191static int tuner_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1192{
1193 struct tuner *t = to_tuner(sd);
1194 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1195 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
1196
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001197 if (check_mode(t, vt->type) == -EINVAL)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001198 return 0;
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001199 if (vt->type == t->mode && analog_ops->get_afc)
Hans Verkuila2192cf2013-04-06 04:35:27 -03001200 analog_ops->get_afc(&t->fe, &vt->afc);
Hans Verkuildfc2e122013-04-06 04:41:29 -03001201 if (vt->type == t->mode && analog_ops->has_signal) {
1202 u16 signal = (u16)vt->signal;
1203
1204 if (!analog_ops->has_signal(&t->fe, &signal))
1205 vt->signal = signal;
1206 }
Hans Verkuilc44ff8f2012-05-25 12:01:40 -03001207 if (vt->type != V4L2_TUNER_RADIO) {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001208 vt->capability |= V4L2_TUNER_CAP_NORM;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001209 vt->rangelow = tv_range[0] * 16;
1210 vt->rangehigh = tv_range[1] * 16;
1211 return 0;
1212 }
1213
1214 /* radio mode */
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001215 if (vt->type == t->mode) {
1216 vt->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
1217 if (fe_tuner_ops->get_status) {
1218 u32 tuner_status;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001219
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001220 fe_tuner_ops->get_status(&t->fe, &tuner_status);
1221 vt->rxsubchans =
1222 (tuner_status & TUNER_STATUS_STEREO) ?
1223 V4L2_TUNER_SUB_STEREO :
1224 V4L2_TUNER_SUB_MONO;
1225 }
Hans Verkuil5ad339a2011-06-26 05:35:34 -03001226 vt->audmode = t->audmode;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001227 }
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001228 vt->capability |= V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001229 vt->rangelow = radio_range[0] * 16000;
1230 vt->rangehigh = radio_range[1] * 16000;
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001231
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001232 return 0;
1233}
1234
Hans Verkuil338e9e12011-06-13 09:35:56 -03001235/**
1236 * tuner_s_tuner - Set the tuner's audio mode
1237 * @sd: pointer to struct v4l2_subdev
1238 * @vt: pointer to struct v4l2_tuner
1239 *
1240 * Sets the audio mode if the tuner matches vt->type.
1241 * Note: vt->type should be initialized before calling it.
1242 * This is done by either video_ioctl2 or by the bridge driver.
1243 */
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001244static int tuner_s_tuner(struct v4l2_subdev *sd, const struct v4l2_tuner *vt)
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001245{
1246 struct tuner *t = to_tuner(sd);
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001247
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001248 if (set_mode(t, vt->type))
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001249 return 0;
1250
Hans Verkuilba1066d2012-09-28 08:18:07 -03001251 if (t->mode == V4L2_TUNER_RADIO) {
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001252 t->audmode = vt->audmode;
Hans Verkuilba1066d2012-09-28 08:18:07 -03001253 /*
1254 * For radio audmode can only be mono or stereo. Map any
1255 * other values to stereo. The actual tuner driver that is
1256 * called in set_radio_freq can decide to limit the audmode to
1257 * mono if only mono is supported.
1258 */
1259 if (t->audmode != V4L2_TUNER_MODE_MONO &&
1260 t->audmode != V4L2_TUNER_MODE_STEREO)
1261 t->audmode = V4L2_TUNER_MODE_STEREO;
1262 }
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001263 set_freq(t, 0);
Mauro Carvalho Chehabcbde6892011-02-04 10:42:09 -03001264
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001265 return 0;
1266}
1267
1268static int tuner_log_status(struct v4l2_subdev *sd)
1269{
1270 struct tuner *t = to_tuner(sd);
1271 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1272
1273 if (analog_ops->tuner_status)
1274 analog_ops->tuner_status(&t->fe);
1275 return 0;
1276}
1277
Mark Brown5cbd28d2012-05-03 06:54:51 -03001278#ifdef CONFIG_PM_SLEEP
1279static int tuner_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Mark Brown5cbd28d2012-05-03 06:54:51 -03001281 struct i2c_client *c = to_i2c_client(dev);
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001282 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001283 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001285 tuner_dbg("suspend\n");
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001286
Mauro Carvalho Chehab59d78892014-08-09 21:47:19 -03001287 if (t->fe.ops.tuner_ops.suspend)
1288 t->fe.ops.tuner_ops.suspend(&t->fe);
1289 else if (!t->standby && analog_ops->standby)
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001290 analog_ops->standby(&t->fe);
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return 0;
1293}
1294
Mark Brown5cbd28d2012-05-03 06:54:51 -03001295static int tuner_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Mark Brown5cbd28d2012-05-03 06:54:51 -03001297 struct i2c_client *c = to_i2c_client(dev);
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001298 struct tuner *t = to_tuner(i2c_get_clientdata(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Hans Verkuil9dd659d2007-11-04 11:03:36 -03001300 tuner_dbg("resume\n");
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001301
Mauro Carvalho Chehab59d78892014-08-09 21:47:19 -03001302 if (t->fe.ops.tuner_ops.resume)
1303 t->fe.ops.tuner_ops.resume(&t->fe);
1304 else if (!t->standby)
Hans Verkuil9bf0ef02011-06-13 09:21:56 -03001305 if (set_mode(t, t->mode) == 0)
Hans Verkuil4e4a31f2011-06-14 03:56:09 -03001306 set_freq(t, 0);
Mauro Carvalho Chehabe2f63d92011-02-04 11:15:21 -03001307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 return 0;
1309}
Mark Brown5cbd28d2012-05-03 06:54:51 -03001310#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Hans Verkuil75b4c262009-04-01 03:32:22 -03001312static int tuner_command(struct i2c_client *client, unsigned cmd, void *arg)
1313{
1314 struct v4l2_subdev *sd = i2c_get_clientdata(client);
1315
1316 /* TUNER_SET_CONFIG is still called by tuner-simple.c, so we have
1317 to handle it here.
1318 There must be a better way of doing this... */
1319 switch (cmd) {
1320 case TUNER_SET_CONFIG:
1321 return tuner_s_config(sd, arg);
1322 }
1323 return -ENOIOCTLCMD;
1324}
1325
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -02001326/*
1327 * Callback structs
1328 */
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001329
1330static const struct v4l2_subdev_core_ops tuner_core_ops = {
1331 .log_status = tuner_log_status,
Laurent Pinchart622b8282009-10-05 10:48:17 -03001332 .s_power = tuner_s_power,
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001333};
1334
1335static const struct v4l2_subdev_tuner_ops tuner_tuner_ops = {
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001336 .s_radio = tuner_s_radio,
1337 .g_tuner = tuner_g_tuner,
1338 .s_tuner = tuner_s_tuner,
1339 .s_frequency = tuner_s_frequency,
1340 .g_frequency = tuner_g_frequency,
1341 .s_type_addr = tuner_s_type_addr,
1342 .s_config = tuner_s_config,
1343};
1344
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001345static const struct v4l2_subdev_video_ops tuner_video_ops = {
1346 .s_std = tuner_s_std,
1347};
1348
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001349static const struct v4l2_subdev_ops tuner_ops = {
1350 .core = &tuner_core_ops,
1351 .tuner = &tuner_tuner_ops,
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001352 .video = &tuner_video_ops,
Hans Verkuile8a4a9e2008-11-24 18:21:40 -03001353};
1354
Mauro Carvalho Chehaba2894e32011-02-15 10:15:19 -02001355/*
1356 * I2C structs and module init functions
1357 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Mark Brown5cbd28d2012-05-03 06:54:51 -03001359static const struct dev_pm_ops tuner_pm_ops = {
1360 SET_SYSTEM_SLEEP_PM_OPS(tuner_suspend, tuner_resume)
1361};
1362
Jean Delvareaf294862008-05-18 20:49:40 +02001363static const struct i2c_device_id tuner_id[] = {
1364 { "tuner", }, /* autodetect */
1365 { }
1366};
1367MODULE_DEVICE_TABLE(i2c, tuner_id);
1368
Hans Verkuil02a20982010-09-15 15:36:23 -03001369static struct i2c_driver tuner_driver = {
1370 .driver = {
Hans Verkuil02a20982010-09-15 15:36:23 -03001371 .name = "tuner",
Mark Brown5cbd28d2012-05-03 06:54:51 -03001372 .pm = &tuner_pm_ops,
Hans Verkuil02a20982010-09-15 15:36:23 -03001373 },
1374 .probe = tuner_probe,
1375 .remove = tuner_remove,
1376 .command = tuner_command,
Hans Verkuil02a20982010-09-15 15:36:23 -03001377 .id_table = tuner_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378};
1379
Axel Linc6e8d862012-02-12 06:56:32 -03001380module_i2c_driver(tuner_driver);
Hans Verkuil02a20982010-09-15 15:36:23 -03001381
Mauro Carvalho Chehab9f3f71e2011-02-03 23:32:07 -03001382MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
1383MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1384MODULE_LICENSE("GPL");