1 /*
2  * i2c tv tuner chip device driver
3  * core core, i.e. kernel interfaces, registering and so on
4  *
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.
15  */
16 
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #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>
27 #include <linux/init.h>
28 #include <linux/videodev2.h>
29 #include <media/tuner.h>
30 #include <media/tuner-types.h>
31 #include <media/v4l2-device.h>
32 #include <media/v4l2-ioctl.h>
33 #include "mt20xx.h"
34 #include "tda8290.h"
35 #include "tea5761.h"
36 #include "tea5767.h"
37 #include "tuner-xc2028.h"
38 #include "tuner-simple.h"
39 #include "tda9887.h"
40 #include "xc5000.h"
41 #include "tda18271.h"
42 #include "xc4000.h"
43 
44 #define UNSET (-1U)
45 
46 #define PREFIX (t->i2c->dev.driver->name)
47 
48 /*
49  * Driver modprobe parameters
50  */
51 
52 /* insmod options used at init time => read/only */
53 static unsigned int addr;
54 static unsigned int no_autodetect;
55 static unsigned int show_i2c;
56 
57 module_param(addr, int, 0444);
58 module_param(no_autodetect, int, 0444);
59 module_param(show_i2c, int, 0444);
60 
61 /* insmod options used at runtime => read/write */
62 static int tuner_debug;
63 static unsigned int tv_range[2] = { 44, 958 };
64 static unsigned int radio_range[2] = { 65, 108 };
65 static char pal[] = "--";
66 static char secam[] = "--";
67 static char ntsc[] = "-";
68 
69 module_param_named(debug, tuner_debug, int, 0644);
70 module_param_array(tv_range, int, NULL, 0644);
71 module_param_array(radio_range, int, NULL, 0644);
72 module_param_string(pal, pal, sizeof(pal), 0644);
73 module_param_string(secam, secam, sizeof(secam), 0644);
74 module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
75 
76 /*
77  * Static vars
78  */
79 
80 static LIST_HEAD(tuner_list);
81 static const struct v4l2_subdev_ops tuner_ops;
82 
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 
116 struct 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 
129 	enum v4l2_tuner_type mode;
130 	unsigned int        mode_mask; /* Combination of allowable modes */
131 
132 	bool                standby;	/* Standby mode */
133 
134 	unsigned int        type; /* chip type id */
135 	void                *config;
136 	const char          *name;
137 
138 #if defined(CONFIG_MEDIA_CONTROLLER)
139 	struct media_pad	pad[TUNER_NUM_PADS];
140 #endif
141 };
142 
143 /*
144  * Function prototypes
145  */
146 
147 static void set_tv_freq(struct i2c_client *c, unsigned int freq);
148 static void set_radio_freq(struct i2c_client *c, unsigned int freq);
149 
150 /*
151  * tuner attach/detach logic
152  */
153 
154 /* This macro allows us to probe dynamically, avoiding static links */
155 #ifdef CONFIG_MEDIA_ATTACH
156 #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); \
161 		symbol_put(FUNCTION); \
162 	} else { \
163 		printk(KERN_ERR "TUNER: Unable to find " \
164 				"symbol "#FUNCTION"()\n"); \
165 	} \
166 	__r; \
167 })
168 
169 static 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 
185 static 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 
194 
195 static inline struct tuner *to_tuner(struct v4l2_subdev *sd)
196 {
197 	return container_of(sd, struct tuner, sd);
198 }
199 
200 /*
201  * struct analog_demod_ops callbacks
202  */
203 
204 static void fe_set_params(struct dvb_frontend *fe,
205 			  struct analog_parameters *params)
206 {
207 	struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
208 	struct tuner *t = fe->analog_demod_priv;
209 
210 	if (NULL == fe_tuner_ops->set_analog_params) {
211 		tuner_warn("Tuner frontend module has no way to set freq\n");
212 		return;
213 	}
214 	fe_tuner_ops->set_analog_params(fe, params);
215 }
216 
217 static void fe_standby(struct dvb_frontend *fe)
218 {
219 	struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
220 
221 	if (fe_tuner_ops->sleep)
222 		fe_tuner_ops->sleep(fe);
223 }
224 
225 static 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 
238 static void tuner_status(struct dvb_frontend *fe);
239 
240 static const struct analog_demod_ops tuner_analog_ops = {
241 	.set_params     = fe_set_params,
242 	.standby        = fe_standby,
243 	.set_config     = fe_set_config,
244 	.tuner_status   = tuner_status
245 };
246 
247 /*
248  * Functions to select between radio and TV and tuner probe/remove functions
249  */
250 
251 /**
252  * set_type - Sets the tuner type for a given device
253  *
254  * @c:			i2c_client descriptor
255  * @type:		type of the tuner (e. g. tuner number)
256  * @new_mode_mask:	Indicates if tuner supports TV and/or Radio
257  * @new_config:		an optional parameter used by a few tuners to adjust
258 			internal parameters, like LNA mode
259  * @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  */
265 static void set_type(struct i2c_client *c, unsigned int type,
266 		     unsigned int new_mode_mask, void *new_config,
267 		     int (*tuner_callback) (void *dev, int component, int cmd, int arg))
268 {
269 	struct tuner *t = to_tuner(i2c_get_clientdata(c));
270 	struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
271 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
272 	unsigned char buffer[4];
273 	int tune_now = 1;
274 
275 	if (type == UNSET || type == TUNER_ABSENT) {
276 		tuner_dbg("tuner 0x%02x: Tuner type absent\n", c->addr);
277 		return;
278 	}
279 
280 	t->type = type;
281 	t->config = new_config;
282 	if (tuner_callback != NULL) {
283 		tuner_dbg("defining GPIO callback\n");
284 		t->fe.callback = tuner_callback;
285 	}
286 
287 	/* discard private data, in case set_type() was previously called */
288 	tuner_detach(&t->fe);
289 	t->fe.analog_demod_priv = NULL;
290 
291 	switch (t->type) {
292 	case TUNER_MT2032:
293 		if (!dvb_attach(microtune_attach,
294 			   &t->fe, t->i2c->adapter, t->i2c->addr))
295 			goto attach_failed;
296 		break;
297 	case TUNER_PHILIPS_TDA8290:
298 	{
299 		if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter,
300 				t->i2c->addr, t->config))
301 			goto attach_failed;
302 		break;
303 	}
304 	case TUNER_TEA5767:
305 		if (!dvb_attach(tea5767_attach, &t->fe,
306 				t->i2c->adapter, t->i2c->addr))
307 			goto attach_failed;
308 		t->mode_mask = T_RADIO;
309 		break;
310 	case TUNER_TEA5761:
311 		if (!dvb_attach(tea5761_attach, &t->fe,
312 				t->i2c->adapter, t->i2c->addr))
313 			goto attach_failed;
314 		t->mode_mask = T_RADIO;
315 		break;
316 	case TUNER_PHILIPS_FMD1216ME_MK3:
317 	case TUNER_PHILIPS_FMD1216MEX_MK3:
318 		buffer[0] = 0x0b;
319 		buffer[1] = 0xdc;
320 		buffer[2] = 0x9c;
321 		buffer[3] = 0x60;
322 		i2c_master_send(c, buffer, 4);
323 		mdelay(1);
324 		buffer[2] = 0x86;
325 		buffer[3] = 0x54;
326 		i2c_master_send(c, buffer, 4);
327 		if (!dvb_attach(simple_tuner_attach, &t->fe,
328 				t->i2c->adapter, t->i2c->addr, t->type))
329 			goto attach_failed;
330 		break;
331 	case TUNER_PHILIPS_TD1316:
332 		buffer[0] = 0x0b;
333 		buffer[1] = 0xdc;
334 		buffer[2] = 0x86;
335 		buffer[3] = 0xa4;
336 		i2c_master_send(c, buffer, 4);
337 		if (!dvb_attach(simple_tuner_attach, &t->fe,
338 				t->i2c->adapter, t->i2c->addr, t->type))
339 			goto attach_failed;
340 		break;
341 	case TUNER_XC2028:
342 	{
343 		struct xc2028_config cfg = {
344 			.i2c_adap  = t->i2c->adapter,
345 			.i2c_addr  = t->i2c->addr,
346 		};
347 		if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
348 			goto attach_failed;
349 		tune_now = 0;
350 		break;
351 	}
352 	case TUNER_TDA9887:
353 		if (!dvb_attach(tda9887_attach,
354 			   &t->fe, t->i2c->adapter, t->i2c->addr))
355 			goto attach_failed;
356 		break;
357 	case TUNER_XC5000:
358 	{
359 		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 
365 		if (!dvb_attach(xc5000_attach,
366 				&t->fe, t->i2c->adapter, &xc5000_cfg))
367 			goto attach_failed;
368 		tune_now = 0;
369 		break;
370 	}
371 	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,
377 			.chip_id  = XC5000C,
378 		};
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 	}
386 	case TUNER_NXP_TDA18271:
387 	{
388 		struct tda18271_config cfg = {
389 			.small_i2c = TDA18271_03_BYTE_CHUNK_INIT,
390 		};
391 
392 		if (!dvb_attach(tda18271_attach, &t->fe, t->i2c->addr,
393 				t->i2c->adapter, &cfg))
394 			goto attach_failed;
395 		tune_now = 0;
396 		break;
397 	}
398 	case TUNER_XC4000:
399 	{
400 		struct xc4000_config xc4000_cfg = {
401 			.i2c_address	  = t->i2c->addr,
402 			/* 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
408 		};
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 	}
415 	default:
416 		if (!dvb_attach(simple_tuner_attach, &t->fe,
417 				t->i2c->adapter, t->i2c->addr, t->type))
418 			goto attach_failed;
419 
420 		break;
421 	}
422 
423 	if ((NULL == analog_ops->set_params) &&
424 	    (fe_tuner_ops->set_analog_params)) {
425 
426 		t->name = fe_tuner_ops->info.name;
427 
428 		t->fe.analog_demod_priv = t;
429 		memcpy(analog_ops, &tuner_analog_ops,
430 		       sizeof(struct analog_demod_ops));
431 
432 		if (fe_tuner_ops->get_rf_strength)
433 			analog_ops->has_signal = fe_tuner_ops->get_rf_strength;
434 		if (fe_tuner_ops->get_afc)
435 			analog_ops->get_afc = fe_tuner_ops->get_afc;
436 
437 	} else {
438 		t->name = analog_ops->info.name;
439 	}
440 
441 #ifdef CONFIG_MEDIA_CONTROLLER
442 	t->sd.entity.name = t->name;
443 #endif
444 
445 	tuner_dbg("type set to %s\n", t->name);
446 
447 	t->mode_mask = new_mode_mask;
448 
449 	/* Some tuners require more initialization setup before use,
450 	   such as firmware download or device calibration.
451 	   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 	 */
455 	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 	}
461 
462 	tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
463 		  c->adapter->name, c->dev.driver->name, c->addr << 1, type,
464 		  t->mode_mask);
465 	return;
466 
467 attach_failed:
468 	tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
469 	t->type = TUNER_ABSENT;
470 
471 	return;
472 }
473 
474 /**
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  */
488 static int tuner_s_type_addr(struct v4l2_subdev *sd,
489 			     struct tuner_setup *tun_setup)
490 {
491 	struct tuner *t = to_tuner(sd);
492 	struct i2c_client *c = v4l2_get_subdevdata(sd);
493 
494 	tuner_dbg("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=%p\n",
495 			tun_setup->type,
496 			tun_setup->addr,
497 			tun_setup->mode_mask,
498 			tun_setup->config);
499 
500 	if ((t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
501 	    (t->mode_mask & tun_setup->mode_mask))) ||
502 	    (tun_setup->addr == c->addr)) {
503 		set_type(c, tun_setup->type, tun_setup->mode_mask,
504 			 tun_setup->config, tun_setup->tuner_callback);
505 	} else
506 		tuner_dbg("set addr discarded for type %i, mask %x. Asked to change tuner at addr 0x%02x, with mask %x\n",
507 			  t->type, t->mode_mask,
508 			  tun_setup->addr, tun_setup->mode_mask);
509 
510 	return 0;
511 }
512 
513 /**
514  * tuner_s_config - Sets tuner configuration
515  *
516  * @sd:		subdev descriptor
517  * @cfg:	tuner configuration
518  *
519  * Calls tuner set_config() private function to set some tuner-internal
520  * parameters
521  */
522 static int tuner_s_config(struct v4l2_subdev *sd,
523 			  const struct v4l2_priv_tun_config *cfg)
524 {
525 	struct tuner *t = to_tuner(sd);
526 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
527 
528 	if (t->type != cfg->tuner)
529 		return 0;
530 
531 	if (analog_ops->set_config) {
532 		analog_ops->set_config(&t->fe, cfg->priv);
533 		return 0;
534 	}
535 
536 	tuner_dbg("Tuner frontend module has no way to set config\n");
537 	return 0;
538 }
539 
540 /**
541  * tuner_lookup - Seek for tuner adapters
542  *
543  * @adap:	i2c_adapter struct
544  * @radio:	pointer to be filled if the adapter is radio
545  * @tv:		pointer to be filled if the adapter is TV
546  *
547  * Search for existing radio and/or TV tuners on the given I2C adapter,
548  * discarding demod-only adapters (tda9887).
549  *
550  * Note that when this function is called from tuner_probe you can be
551  * certain no other devices will be added/deleted at the same time, I2C
552  * core protects against that.
553  */
554 static void tuner_lookup(struct i2c_adapter *adap,
555 		struct tuner **radio, struct tuner **tv)
556 {
557 	struct tuner *pos;
558 
559 	*radio = NULL;
560 	*tv = NULL;
561 
562 	list_for_each_entry(pos, &tuner_list, list) {
563 		int mode_mask;
564 
565 		if (pos->i2c->adapter != adap ||
566 		    strcmp(pos->i2c->dev.driver->name, "tuner"))
567 			continue;
568 
569 		mode_mask = pos->mode_mask;
570 		if (*radio == NULL && mode_mask == T_RADIO)
571 			*radio = pos;
572 		/* Note: currently TDA9887 is the only demod-only
573 		   device. If other devices appear then we need to
574 		   make this test more general. */
575 		else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
576 			 (pos->mode_mask & T_ANALOG_TV))
577 			*tv = pos;
578 	}
579 }
580 
581 /**
582  *tuner_probe - Probes the existing tuners on an I2C bus
583  *
584  * @client:	i2c_client descriptor
585  * @id:		not used
586  *
587  * This routine probes for tuners at the expected I2C addresses. On most
588  * cases, if a device answers to a given I2C address, it assumes that the
589  * device is a tuner. On a few cases, however, an additional logic is needed
590  * to double check if the device is really a tuner, or to identify the tuner
591  * type, like on tea5767/5761 devices.
592  *
593  * During client attach, set_type is called by adapter's attach_inform callback.
594  * set_type must then be completed by tuner_probe.
595  */
596 static int tuner_probe(struct i2c_client *client,
597 		       const struct i2c_device_id *id)
598 {
599 	struct tuner *t;
600 	struct tuner *radio;
601 	struct tuner *tv;
602 #ifdef CONFIG_MEDIA_CONTROLLER
603 	int ret;
604 #endif
605 
606 	t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
607 	if (NULL == t)
608 		return -ENOMEM;
609 	v4l2_i2c_subdev_init(&t->sd, client, &tuner_ops);
610 	t->i2c = client;
611 	t->name = "(tuner unset)";
612 	t->type = UNSET;
613 	t->audmode = V4L2_TUNER_MODE_STEREO;
614 	t->standby = true;
615 	t->radio_freq = 87.5 * 16000;	/* Initial freq range */
616 	t->tv_freq = 400 * 16; /* Sets freq to VHF High - needed for some PLL's to properly start */
617 
618 	if (show_i2c) {
619 		unsigned char buffer[16];
620 		int rc;
621 
622 		memset(buffer, 0, sizeof(buffer));
623 		rc = i2c_master_recv(client, buffer, sizeof(buffer));
624 		if (rc >= 0)
625 			tuner_info("I2C RECV = %*ph\n", rc, buffer);
626 	}
627 
628 	/* autodetection code based on the i2c addr */
629 	if (!no_autodetect) {
630 		switch (client->addr) {
631 		case 0x10:
632 			if (tuner_symbol_probe(tea5761_autodetection,
633 					       t->i2c->adapter,
634 					       t->i2c->addr) >= 0) {
635 				t->type = TUNER_TEA5761;
636 				t->mode_mask = T_RADIO;
637 				tuner_lookup(t->i2c->adapter, &radio, &tv);
638 				if (tv)
639 					tv->mode_mask &= ~T_RADIO;
640 
641 				goto register_client;
642 			}
643 			kfree(t);
644 			return -ENODEV;
645 		case 0x42:
646 		case 0x43:
647 		case 0x4a:
648 		case 0x4b:
649 			/* If chip is not tda8290, don't register.
650 			   since it can be tda9887*/
651 			if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
652 					       t->i2c->addr) >= 0) {
653 				tuner_dbg("tda829x detected\n");
654 			} else {
655 				/* Default is being tda9887 */
656 				t->type = TUNER_TDA9887;
657 				t->mode_mask = T_RADIO | T_ANALOG_TV;
658 				goto register_client;
659 			}
660 			break;
661 		case 0x60:
662 			if (tuner_symbol_probe(tea5767_autodetection,
663 					       t->i2c->adapter, t->i2c->addr)
664 					>= 0) {
665 				t->type = TUNER_TEA5767;
666 				t->mode_mask = T_RADIO;
667 				/* Sets freq to FM range */
668 				tuner_lookup(t->i2c->adapter, &radio, &tv);
669 				if (tv)
670 					tv->mode_mask &= ~T_RADIO;
671 
672 				goto register_client;
673 			}
674 			break;
675 		}
676 	}
677 
678 	/* Initializes only the first TV tuner on this adapter. Why only the
679 	   first? Because there are some devices (notably the ones with TI
680 	   tuners) that have more than one i2c address for the *same* device.
681 	   Experience shows that, except for just one case, the first
682 	   address is the right one. The exception is a Russian tuner
683 	   (ACORP_Y878F). So, the desired behavior is just to enable the
684 	   first found TV tuner. */
685 	tuner_lookup(t->i2c->adapter, &radio, &tv);
686 	if (tv == NULL) {
687 		t->mode_mask = T_ANALOG_TV;
688 		if (radio == NULL)
689 			t->mode_mask |= T_RADIO;
690 		tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
691 	}
692 
693 	/* Should be just before return */
694 register_client:
695 #if defined(CONFIG_MEDIA_CONTROLLER)
696 	t->sd.entity.name = t->name;
697 	/*
698 	 * Handle the special case where the tuner has actually
699 	 * two stages: the PLL to tune into a frequency and the
700 	 * IF-PLL demodulator (tda988x).
701 	 */
702 	if (t->type == TUNER_TDA9887) {
703 		t->pad[IF_VID_DEC_PAD_IF_INPUT].flags = MEDIA_PAD_FL_SINK;
704 		t->pad[IF_VID_DEC_PAD_OUT].flags = MEDIA_PAD_FL_SOURCE;
705 		ret = media_entity_pads_init(&t->sd.entity,
706 					     IF_VID_DEC_PAD_NUM_PADS,
707 					     &t->pad[0]);
708 		t->sd.entity.function = MEDIA_ENT_F_IF_VID_DECODER;
709 	} else {
710 		t->pad[TUNER_PAD_RF_INPUT].flags = MEDIA_PAD_FL_SINK;
711 		t->pad[TUNER_PAD_OUTPUT].flags = MEDIA_PAD_FL_SOURCE;
712 		t->pad[TUNER_PAD_AUD_OUT].flags = MEDIA_PAD_FL_SOURCE;
713 		ret = media_entity_pads_init(&t->sd.entity, TUNER_NUM_PADS,
714 					     &t->pad[0]);
715 		t->sd.entity.function = MEDIA_ENT_F_TUNER;
716 	}
717 
718 	if (ret < 0) {
719 		tuner_err("failed to initialize media entity!\n");
720 		kfree(t);
721 		return ret;
722 	}
723 #endif
724 	/* Sets a default mode */
725 	if (t->mode_mask & T_ANALOG_TV)
726 		t->mode = V4L2_TUNER_ANALOG_TV;
727 	else
728 		t->mode = V4L2_TUNER_RADIO;
729 	set_type(client, t->type, t->mode_mask, t->config, t->fe.callback);
730 	list_add_tail(&t->list, &tuner_list);
731 
732 	tuner_info("Tuner %d found with type(s)%s%s.\n",
733 		   t->type,
734 		   t->mode_mask & T_RADIO ? " Radio" : "",
735 		   t->mode_mask & T_ANALOG_TV ? " TV" : "");
736 	return 0;
737 }
738 
739 /**
740  * tuner_remove - detaches a tuner
741  *
742  * @client:	i2c_client descriptor
743  */
744 
745 static int tuner_remove(struct i2c_client *client)
746 {
747 	struct tuner *t = to_tuner(i2c_get_clientdata(client));
748 
749 	v4l2_device_unregister_subdev(&t->sd);
750 	tuner_detach(&t->fe);
751 	t->fe.analog_demod_priv = NULL;
752 
753 	list_del(&t->list);
754 	kfree(t);
755 	return 0;
756 }
757 
758 /*
759  * Functions to switch between Radio and TV
760  *
761  * A few cards have a separate I2C tuner for radio. Those routines
762  * take care of switching between TV/Radio mode, filtering only the
763  * commands that apply to the Radio or TV tuner.
764  */
765 
766 /**
767  * check_mode - Verify if tuner supports the requested mode
768  * @t: a pointer to the module's internal struct_tuner
769  *
770  * This function checks if the tuner is capable of tuning analog TV,
771  * digital TV or radio, depending on what the caller wants. If the
772  * tuner can't support that mode, it returns -EINVAL. Otherwise, it
773  * returns 0.
774  * This function is needed for boards that have a separate tuner for
775  * radio (like devices with tea5767).
776  * NOTE: mt20xx uses V4L2_TUNER_DIGITAL_TV and calls set_tv_freq to
777  *       select a TV frequency. So, t_mode = T_ANALOG_TV could actually
778  *	 be used to represent a Digital TV too.
779  */
780 static inline int check_mode(struct tuner *t, enum v4l2_tuner_type mode)
781 {
782 	int t_mode;
783 	if (mode == V4L2_TUNER_RADIO)
784 		t_mode = T_RADIO;
785 	else
786 		t_mode = T_ANALOG_TV;
787 
788 	if ((t_mode & t->mode_mask) == 0)
789 		return -EINVAL;
790 
791 	return 0;
792 }
793 
794 /**
795  * set_mode - Switch tuner to other mode.
796  * @t:		a pointer to the module's internal struct_tuner
797  * @mode:	enum v4l2_type (radio or TV)
798  *
799  * If tuner doesn't support the needed mode (radio or TV), prints a
800  * debug message and returns -EINVAL, changing its state to standby.
801  * Otherwise, changes the mode and returns 0.
802  */
803 static int set_mode(struct tuner *t, enum v4l2_tuner_type mode)
804 {
805 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
806 
807 	if (mode != t->mode) {
808 		if (check_mode(t, mode) == -EINVAL) {
809 			tuner_dbg("Tuner doesn't support mode %d. Putting tuner to sleep\n",
810 				  mode);
811 			t->standby = true;
812 			if (analog_ops->standby)
813 				analog_ops->standby(&t->fe);
814 			return -EINVAL;
815 		}
816 		t->mode = mode;
817 		tuner_dbg("Changing to mode %d\n", mode);
818 	}
819 	return 0;
820 }
821 
822 /**
823  * set_freq - Set the tuner to the desired frequency.
824  * @t:		a pointer to the module's internal struct_tuner
825  * @freq:	frequency to set (0 means to use the current frequency)
826  */
827 static void set_freq(struct tuner *t, unsigned int freq)
828 {
829 	struct i2c_client *client = v4l2_get_subdevdata(&t->sd);
830 
831 	if (t->mode == V4L2_TUNER_RADIO) {
832 		if (!freq)
833 			freq = t->radio_freq;
834 		set_radio_freq(client, freq);
835 	} else {
836 		if (!freq)
837 			freq = t->tv_freq;
838 		set_tv_freq(client, freq);
839 	}
840 }
841 
842 /*
843  * Functions that are specific for TV mode
844  */
845 
846 /**
847  * set_tv_freq - Set tuner frequency,  freq in Units of 62.5 kHz = 1/16MHz
848  *
849  * @c:	i2c_client descriptor
850  * @freq: frequency
851  */
852 static void set_tv_freq(struct i2c_client *c, unsigned int freq)
853 {
854 	struct tuner *t = to_tuner(i2c_get_clientdata(c));
855 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
856 
857 	struct analog_parameters params = {
858 		.mode      = t->mode,
859 		.audmode   = t->audmode,
860 		.std       = t->std
861 	};
862 
863 	if (t->type == UNSET) {
864 		tuner_warn("tuner type not set\n");
865 		return;
866 	}
867 	if (NULL == analog_ops->set_params) {
868 		tuner_warn("Tuner has no way to set tv freq\n");
869 		return;
870 	}
871 	if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
872 		tuner_dbg("TV freq (%d.%02d) out of range (%d-%d)\n",
873 			   freq / 16, freq % 16 * 100 / 16, tv_range[0],
874 			   tv_range[1]);
875 		/* V4L2 spec: if the freq is not possible then the closest
876 		   possible value should be selected */
877 		if (freq < tv_range[0] * 16)
878 			freq = tv_range[0] * 16;
879 		else
880 			freq = tv_range[1] * 16;
881 	}
882 	params.frequency = freq;
883 	tuner_dbg("tv freq set to %d.%02d\n",
884 			freq / 16, freq % 16 * 100 / 16);
885 	t->tv_freq = freq;
886 	t->standby = false;
887 
888 	analog_ops->set_params(&t->fe, &params);
889 }
890 
891 /**
892  * tuner_fixup_std - force a given video standard variant
893  *
894  * @t: tuner internal struct
895  * @std:	TV standard
896  *
897  * A few devices or drivers have problem to detect some standard variations.
898  * On other operational systems, the drivers generally have a per-country
899  * code, and some logic to apply per-country hacks. V4L2 API doesn't provide
900  * such hacks. Instead, it relies on a proper video standard selection from
901  * the userspace application. However, as some apps are buggy, not allowing
902  * to distinguish all video standard variations, a modprobe parameter can
903  * be used to force a video standard match.
904  */
905 static v4l2_std_id tuner_fixup_std(struct tuner *t, v4l2_std_id std)
906 {
907 	if (pal[0] != '-' && (std & V4L2_STD_PAL) == V4L2_STD_PAL) {
908 		switch (pal[0]) {
909 		case '6':
910 			return V4L2_STD_PAL_60;
911 		case 'b':
912 		case 'B':
913 		case 'g':
914 		case 'G':
915 			return V4L2_STD_PAL_BG;
916 		case 'i':
917 		case 'I':
918 			return V4L2_STD_PAL_I;
919 		case 'd':
920 		case 'D':
921 		case 'k':
922 		case 'K':
923 			return V4L2_STD_PAL_DK;
924 		case 'M':
925 		case 'm':
926 			return V4L2_STD_PAL_M;
927 		case 'N':
928 		case 'n':
929 			if (pal[1] == 'c' || pal[1] == 'C')
930 				return V4L2_STD_PAL_Nc;
931 			return V4L2_STD_PAL_N;
932 		default:
933 			tuner_warn("pal= argument not recognised\n");
934 			break;
935 		}
936 	}
937 	if (secam[0] != '-' && (std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
938 		switch (secam[0]) {
939 		case 'b':
940 		case 'B':
941 		case 'g':
942 		case 'G':
943 		case 'h':
944 		case 'H':
945 			return V4L2_STD_SECAM_B |
946 			       V4L2_STD_SECAM_G |
947 			       V4L2_STD_SECAM_H;
948 		case 'd':
949 		case 'D':
950 		case 'k':
951 		case 'K':
952 			return V4L2_STD_SECAM_DK;
953 		case 'l':
954 		case 'L':
955 			if ((secam[1] == 'C') || (secam[1] == 'c'))
956 				return V4L2_STD_SECAM_LC;
957 			return V4L2_STD_SECAM_L;
958 		default:
959 			tuner_warn("secam= argument not recognised\n");
960 			break;
961 		}
962 	}
963 
964 	if (ntsc[0] != '-' && (std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
965 		switch (ntsc[0]) {
966 		case 'm':
967 		case 'M':
968 			return V4L2_STD_NTSC_M;
969 		case 'j':
970 		case 'J':
971 			return V4L2_STD_NTSC_M_JP;
972 		case 'k':
973 		case 'K':
974 			return V4L2_STD_NTSC_M_KR;
975 		default:
976 			tuner_info("ntsc= argument not recognised\n");
977 			break;
978 		}
979 	}
980 	return std;
981 }
982 
983 /*
984  * Functions that are specific for Radio mode
985  */
986 
987 /**
988  * set_radio_freq - Set tuner frequency,  freq in Units of 62.5 Hz  = 1/16kHz
989  *
990  * @c:	i2c_client descriptor
991  * @freq: frequency
992  */
993 static void set_radio_freq(struct i2c_client *c, unsigned int freq)
994 {
995 	struct tuner *t = to_tuner(i2c_get_clientdata(c));
996 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
997 
998 	struct analog_parameters params = {
999 		.mode      = t->mode,
1000 		.audmode   = t->audmode,
1001 		.std       = t->std
1002 	};
1003 
1004 	if (t->type == UNSET) {
1005 		tuner_warn("tuner type not set\n");
1006 		return;
1007 	}
1008 	if (NULL == analog_ops->set_params) {
1009 		tuner_warn("tuner has no way to set radio frequency\n");
1010 		return;
1011 	}
1012 	if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
1013 		tuner_dbg("radio freq (%d.%02d) out of range (%d-%d)\n",
1014 			   freq / 16000, freq % 16000 * 100 / 16000,
1015 			   radio_range[0], radio_range[1]);
1016 		/* V4L2 spec: if the freq is not possible then the closest
1017 		   possible value should be selected */
1018 		if (freq < radio_range[0] * 16000)
1019 			freq = radio_range[0] * 16000;
1020 		else
1021 			freq = radio_range[1] * 16000;
1022 	}
1023 	params.frequency = freq;
1024 	tuner_dbg("radio freq set to %d.%02d\n",
1025 			freq / 16000, freq % 16000 * 100 / 16000);
1026 	t->radio_freq = freq;
1027 	t->standby = false;
1028 
1029 	analog_ops->set_params(&t->fe, &params);
1030 	/*
1031 	 * The tuner driver might decide to change the audmode if it only
1032 	 * supports stereo, so update t->audmode.
1033 	 */
1034 	t->audmode = params.audmode;
1035 }
1036 
1037 /*
1038  * Debug function for reporting tuner status to userspace
1039  */
1040 
1041 /**
1042  * tuner_status - Dumps the current tuner status at dmesg
1043  * @fe: pointer to struct dvb_frontend
1044  *
1045  * This callback is used only for driver debug purposes, answering to
1046  * VIDIOC_LOG_STATUS. No changes should happen on this call.
1047  */
1048 static void tuner_status(struct dvb_frontend *fe)
1049 {
1050 	struct tuner *t = fe->analog_demod_priv;
1051 	unsigned long freq, freq_fraction;
1052 	struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
1053 	struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
1054 	const char *p;
1055 
1056 	switch (t->mode) {
1057 	case V4L2_TUNER_RADIO:
1058 		p = "radio";
1059 		break;
1060 	case V4L2_TUNER_DIGITAL_TV: /* Used by mt20xx */
1061 		p = "digital TV";
1062 		break;
1063 	case V4L2_TUNER_ANALOG_TV:
1064 	default:
1065 		p = "analog TV";
1066 		break;
1067 	}
1068 	if (t->mode == V4L2_TUNER_RADIO) {
1069 		freq = t->radio_freq / 16000;
1070 		freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
1071 	} else {
1072 		freq = t->tv_freq / 16;
1073 		freq_fraction = (t->tv_freq % 16) * 100 / 16;
1074 	}
1075 	tuner_info("Tuner mode:      %s%s\n", p,
1076 		   t->standby ? " on standby mode" : "");
1077 	tuner_info("Frequency:       %lu.%02lu MHz\n", freq, freq_fraction);
1078 	tuner_info("Standard:        0x%08lx\n", (unsigned long)t->std);
1079 	if (t->mode != V4L2_TUNER_RADIO)
1080 		return;
1081 	if (fe_tuner_ops->get_status) {
1082 		u32 tuner_status;
1083 
1084 		fe_tuner_ops->get_status(&t->fe, &tuner_status);
1085 		if (tuner_status & TUNER_STATUS_LOCKED)
1086 			tuner_info("Tuner is locked.\n");
1087 		if (tuner_status & TUNER_STATUS_STEREO)
1088 			tuner_info("Stereo:          yes\n");
1089 	}
1090 	if (analog_ops->has_signal) {
1091 		u16 signal;
1092 
1093 		if (!analog_ops->has_signal(fe, &signal))
1094 			tuner_info("Signal strength: %hu\n", signal);
1095 	}
1096 }
1097 
1098 /*
1099  * Function to splicitly change mode to radio. Probably not needed anymore
1100  */
1101 
1102 static int tuner_s_radio(struct v4l2_subdev *sd)
1103 {
1104 	struct tuner *t = to_tuner(sd);
1105 
1106 	if (set_mode(t, V4L2_TUNER_RADIO) == 0)
1107 		set_freq(t, 0);
1108 	return 0;
1109 }
1110 
1111 /*
1112  * Tuner callbacks to handle userspace ioctl's
1113  */
1114 
1115 /**
1116  * tuner_s_power - controls the power state of the tuner
1117  * @sd: pointer to struct v4l2_subdev
1118  * @on: a zero value puts the tuner to sleep, non-zero wakes it up
1119  */
1120 static int tuner_s_power(struct v4l2_subdev *sd, int on)
1121 {
1122 	struct tuner *t = to_tuner(sd);
1123 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1124 
1125 	if (on) {
1126 		if (t->standby && set_mode(t, t->mode) == 0) {
1127 			tuner_dbg("Waking up tuner\n");
1128 			set_freq(t, 0);
1129 		}
1130 		return 0;
1131 	}
1132 
1133 	tuner_dbg("Putting tuner to sleep\n");
1134 	t->standby = true;
1135 	if (analog_ops->standby)
1136 		analog_ops->standby(&t->fe);
1137 	return 0;
1138 }
1139 
1140 static int tuner_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
1141 {
1142 	struct tuner *t = to_tuner(sd);
1143 
1144 	if (set_mode(t, V4L2_TUNER_ANALOG_TV))
1145 		return 0;
1146 
1147 	t->std = tuner_fixup_std(t, std);
1148 	if (t->std != std)
1149 		tuner_dbg("Fixup standard %llx to %llx\n", std, t->std);
1150 	set_freq(t, 0);
1151 	return 0;
1152 }
1153 
1154 static int tuner_s_frequency(struct v4l2_subdev *sd, const struct v4l2_frequency *f)
1155 {
1156 	struct tuner *t = to_tuner(sd);
1157 
1158 	if (set_mode(t, f->type) == 0)
1159 		set_freq(t, f->frequency);
1160 	return 0;
1161 }
1162 
1163 /**
1164  * tuner_g_frequency - Get the tuned frequency for the tuner
1165  * @sd: pointer to struct v4l2_subdev
1166  * @f: pointer to struct v4l2_frequency
1167  *
1168  * At return, the structure f will be filled with tuner frequency
1169  * if the tuner matches the f->type.
1170  * Note: f->type should be initialized before calling it.
1171  * This is done by either video_ioctl2 or by the bridge driver.
1172  */
1173 static int tuner_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
1174 {
1175 	struct tuner *t = to_tuner(sd);
1176 	struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
1177 
1178 	if (check_mode(t, f->type) == -EINVAL)
1179 		return 0;
1180 	if (f->type == t->mode && fe_tuner_ops->get_frequency && !t->standby) {
1181 		u32 abs_freq;
1182 
1183 		fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
1184 		f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
1185 			DIV_ROUND_CLOSEST(abs_freq * 2, 125) :
1186 			DIV_ROUND_CLOSEST(abs_freq, 62500);
1187 	} else {
1188 		f->frequency = (V4L2_TUNER_RADIO == f->type) ?
1189 			t->radio_freq : t->tv_freq;
1190 	}
1191 	return 0;
1192 }
1193 
1194 /**
1195  * tuner_g_tuner - Fill in tuner information
1196  * @sd: pointer to struct v4l2_subdev
1197  * @vt: pointer to struct v4l2_tuner
1198  *
1199  * At return, the structure vt will be filled with tuner information
1200  * if the tuner matches vt->type.
1201  * Note: vt->type should be initialized before calling it.
1202  * This is done by either video_ioctl2 or by the bridge driver.
1203  */
1204 static int tuner_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1205 {
1206 	struct tuner *t = to_tuner(sd);
1207 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1208 	struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
1209 
1210 	if (check_mode(t, vt->type) == -EINVAL)
1211 		return 0;
1212 	if (vt->type == t->mode && analog_ops->get_afc)
1213 		analog_ops->get_afc(&t->fe, &vt->afc);
1214 	if (vt->type == t->mode && analog_ops->has_signal) {
1215 		u16 signal = (u16)vt->signal;
1216 
1217 		if (!analog_ops->has_signal(&t->fe, &signal))
1218 			vt->signal = signal;
1219 	}
1220 	if (vt->type != V4L2_TUNER_RADIO) {
1221 		vt->capability |= V4L2_TUNER_CAP_NORM;
1222 		vt->rangelow = tv_range[0] * 16;
1223 		vt->rangehigh = tv_range[1] * 16;
1224 		return 0;
1225 	}
1226 
1227 	/* radio mode */
1228 	if (vt->type == t->mode) {
1229 		vt->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
1230 		if (fe_tuner_ops->get_status) {
1231 			u32 tuner_status;
1232 
1233 			fe_tuner_ops->get_status(&t->fe, &tuner_status);
1234 			vt->rxsubchans =
1235 				(tuner_status & TUNER_STATUS_STEREO) ?
1236 				V4L2_TUNER_SUB_STEREO :
1237 				V4L2_TUNER_SUB_MONO;
1238 		}
1239 		vt->audmode = t->audmode;
1240 	}
1241 	vt->capability |= V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
1242 	vt->rangelow = radio_range[0] * 16000;
1243 	vt->rangehigh = radio_range[1] * 16000;
1244 
1245 	return 0;
1246 }
1247 
1248 /**
1249  * tuner_s_tuner - Set the tuner's audio mode
1250  * @sd: pointer to struct v4l2_subdev
1251  * @vt: pointer to struct v4l2_tuner
1252  *
1253  * Sets the audio mode if the tuner matches vt->type.
1254  * Note: vt->type should be initialized before calling it.
1255  * This is done by either video_ioctl2 or by the bridge driver.
1256  */
1257 static int tuner_s_tuner(struct v4l2_subdev *sd, const struct v4l2_tuner *vt)
1258 {
1259 	struct tuner *t = to_tuner(sd);
1260 
1261 	if (set_mode(t, vt->type))
1262 		return 0;
1263 
1264 	if (t->mode == V4L2_TUNER_RADIO) {
1265 		t->audmode = vt->audmode;
1266 		/*
1267 		 * For radio audmode can only be mono or stereo. Map any
1268 		 * other values to stereo. The actual tuner driver that is
1269 		 * called in set_radio_freq can decide to limit the audmode to
1270 		 * mono if only mono is supported.
1271 		 */
1272 		if (t->audmode != V4L2_TUNER_MODE_MONO &&
1273 		    t->audmode != V4L2_TUNER_MODE_STEREO)
1274 			t->audmode = V4L2_TUNER_MODE_STEREO;
1275 	}
1276 	set_freq(t, 0);
1277 
1278 	return 0;
1279 }
1280 
1281 static int tuner_log_status(struct v4l2_subdev *sd)
1282 {
1283 	struct tuner *t = to_tuner(sd);
1284 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1285 
1286 	if (analog_ops->tuner_status)
1287 		analog_ops->tuner_status(&t->fe);
1288 	return 0;
1289 }
1290 
1291 #ifdef CONFIG_PM_SLEEP
1292 static int tuner_suspend(struct device *dev)
1293 {
1294 	struct i2c_client *c = to_i2c_client(dev);
1295 	struct tuner *t = to_tuner(i2c_get_clientdata(c));
1296 	struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
1297 
1298 	tuner_dbg("suspend\n");
1299 
1300 	if (t->fe.ops.tuner_ops.suspend)
1301 		t->fe.ops.tuner_ops.suspend(&t->fe);
1302 	else if (!t->standby && analog_ops->standby)
1303 		analog_ops->standby(&t->fe);
1304 
1305 	return 0;
1306 }
1307 
1308 static int tuner_resume(struct device *dev)
1309 {
1310 	struct i2c_client *c = to_i2c_client(dev);
1311 	struct tuner *t = to_tuner(i2c_get_clientdata(c));
1312 
1313 	tuner_dbg("resume\n");
1314 
1315 	if (t->fe.ops.tuner_ops.resume)
1316 		t->fe.ops.tuner_ops.resume(&t->fe);
1317 	else if (!t->standby)
1318 		if (set_mode(t, t->mode) == 0)
1319 			set_freq(t, 0);
1320 
1321 	return 0;
1322 }
1323 #endif
1324 
1325 static int tuner_command(struct i2c_client *client, unsigned cmd, void *arg)
1326 {
1327 	struct v4l2_subdev *sd = i2c_get_clientdata(client);
1328 
1329 	/* TUNER_SET_CONFIG is still called by tuner-simple.c, so we have
1330 	   to handle it here.
1331 	   There must be a better way of doing this... */
1332 	switch (cmd) {
1333 	case TUNER_SET_CONFIG:
1334 		return tuner_s_config(sd, arg);
1335 	}
1336 	return -ENOIOCTLCMD;
1337 }
1338 
1339 /*
1340  * Callback structs
1341  */
1342 
1343 static const struct v4l2_subdev_core_ops tuner_core_ops = {
1344 	.log_status = tuner_log_status,
1345 	.s_power = tuner_s_power,
1346 };
1347 
1348 static const struct v4l2_subdev_tuner_ops tuner_tuner_ops = {
1349 	.s_radio = tuner_s_radio,
1350 	.g_tuner = tuner_g_tuner,
1351 	.s_tuner = tuner_s_tuner,
1352 	.s_frequency = tuner_s_frequency,
1353 	.g_frequency = tuner_g_frequency,
1354 	.s_type_addr = tuner_s_type_addr,
1355 	.s_config = tuner_s_config,
1356 };
1357 
1358 static const struct v4l2_subdev_video_ops tuner_video_ops = {
1359 	.s_std = tuner_s_std,
1360 };
1361 
1362 static const struct v4l2_subdev_ops tuner_ops = {
1363 	.core = &tuner_core_ops,
1364 	.tuner = &tuner_tuner_ops,
1365 	.video = &tuner_video_ops,
1366 };
1367 
1368 /*
1369  * I2C structs and module init functions
1370  */
1371 
1372 static const struct dev_pm_ops tuner_pm_ops = {
1373 	SET_SYSTEM_SLEEP_PM_OPS(tuner_suspend, tuner_resume)
1374 };
1375 
1376 static const struct i2c_device_id tuner_id[] = {
1377 	{ "tuner", }, /* autodetect */
1378 	{ }
1379 };
1380 MODULE_DEVICE_TABLE(i2c, tuner_id);
1381 
1382 static struct i2c_driver tuner_driver = {
1383 	.driver = {
1384 		.name	= "tuner",
1385 		.pm	= &tuner_pm_ops,
1386 	},
1387 	.probe		= tuner_probe,
1388 	.remove		= tuner_remove,
1389 	.command	= tuner_command,
1390 	.id_table	= tuner_id,
1391 };
1392 
1393 module_i2c_driver(tuner_driver);
1394 
1395 MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
1396 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1397 MODULE_LICENSE("GPL");
1398