2 * i2c tv tuner chip device driver
3 * core core, i.e. kernel interfaces, registering and so on
5 * Copyright(c) by Ralph Metzler, Gerd Knorr, Gunther Mayer
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
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.
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>
37 #include "tuner-xc2028.h"
38 #include "tuner-simple.h"
46 #define PREFIX (t->i2c->driver->driver.name)
49 * Driver modprobe parameters
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
;
57 module_param(addr
, int, 0444);
58 module_param(no_autodetect
, int, 0444);
59 module_param(show_i2c
, int, 0444);
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
[] = "-";
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);
80 static LIST_HEAD(tuner_list
);
81 static const struct v4l2_subdev_ops tuner_ops
;
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); \
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); \
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); \
105 #define tuner_dbg(fmt, arg...) do { \
107 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
108 i2c_adapter_id(t->i2c->adapter), \
109 t->i2c->addr, ##arg); \
113 * Internal struct used inside the driver
118 struct dvb_frontend fe
;
119 struct i2c_client
*i2c
;
120 struct v4l2_subdev sd
;
121 struct list_head list
;
123 /* keep track of the current settings */
125 unsigned int tv_freq
;
126 unsigned int radio_freq
;
127 unsigned int audmode
;
129 enum v4l2_tuner_type mode
;
130 unsigned int mode_mask
; /* Combination of allowable modes */
132 bool standby
; /* Standby mode */
134 unsigned int type
; /* chip type id */
140 * Function prototypes
143 static void set_tv_freq(struct i2c_client
*c
, unsigned int freq
);
144 static void set_radio_freq(struct i2c_client
*c
, unsigned int freq
);
147 * tuner attach/detach logic
150 /* This macro allows us to probe dynamically, avoiding static links */
151 #ifdef CONFIG_MEDIA_ATTACH
152 #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
154 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
156 __r = (int) __a(ARGS); \
157 symbol_put(FUNCTION); \
159 printk(KERN_ERR "TUNER: Unable to find " \
160 "symbol "#FUNCTION"()\n"); \
165 static void tuner_detach(struct dvb_frontend
*fe
)
167 if (fe
->ops
.tuner_ops
.release
) {
168 fe
->ops
.tuner_ops
.release(fe
);
169 symbol_put_addr(fe
->ops
.tuner_ops
.release
);
171 if (fe
->ops
.analog_ops
.release
) {
172 fe
->ops
.analog_ops
.release(fe
);
173 symbol_put_addr(fe
->ops
.analog_ops
.release
);
177 #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
181 static void tuner_detach(struct dvb_frontend
*fe
)
183 if (fe
->ops
.tuner_ops
.release
)
184 fe
->ops
.tuner_ops
.release(fe
);
185 if (fe
->ops
.analog_ops
.release
)
186 fe
->ops
.analog_ops
.release(fe
);
191 static inline struct tuner
*to_tuner(struct v4l2_subdev
*sd
)
193 return container_of(sd
, struct tuner
, sd
);
197 * struct analog_demod_ops callbacks
200 static void fe_set_params(struct dvb_frontend
*fe
,
201 struct analog_parameters
*params
)
203 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
204 struct tuner
*t
= fe
->analog_demod_priv
;
206 if (NULL
== fe_tuner_ops
->set_analog_params
) {
207 tuner_warn("Tuner frontend module has no way to set freq\n");
210 fe_tuner_ops
->set_analog_params(fe
, params
);
213 static void fe_standby(struct dvb_frontend
*fe
)
215 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
217 if (fe_tuner_ops
->sleep
)
218 fe_tuner_ops
->sleep(fe
);
221 static int fe_has_signal(struct dvb_frontend
*fe
)
225 if (fe
->ops
.tuner_ops
.get_rf_strength
)
226 fe
->ops
.tuner_ops
.get_rf_strength(fe
, &strength
);
231 static int fe_set_config(struct dvb_frontend
*fe
, void *priv_cfg
)
233 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
234 struct tuner
*t
= fe
->analog_demod_priv
;
236 if (fe_tuner_ops
->set_config
)
237 return fe_tuner_ops
->set_config(fe
, priv_cfg
);
239 tuner_warn("Tuner frontend module has no way to set config\n");
244 static void tuner_status(struct dvb_frontend
*fe
);
246 static struct analog_demod_ops tuner_analog_ops
= {
247 .set_params
= fe_set_params
,
248 .standby
= fe_standby
,
249 .has_signal
= fe_has_signal
,
250 .set_config
= fe_set_config
,
251 .tuner_status
= tuner_status
255 * Functions to select between radio and TV and tuner probe/remove functions
259 * set_type - Sets the tuner type for a given device
261 * @c: i2c_client descriptoy
262 * @type: type of the tuner (e. g. tuner number)
263 * @new_mode_mask: Indicates if tuner supports TV and/or Radio
264 * @new_config: an optional parameter ranging from 0-255 used by
265 a few tuners to adjust an internal parameter,
267 * @tuner_callback: an optional function to be called when switching
270 * This function applys the tuner config to tuner specified
271 * by tun_setup structure. It contains several per-tuner initialization "magic"
273 static void set_type(struct i2c_client
*c
, unsigned int type
,
274 unsigned int new_mode_mask
, unsigned int new_config
,
275 int (*tuner_callback
) (void *dev
, int component
, int cmd
, int arg
))
277 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
278 struct dvb_tuner_ops
*fe_tuner_ops
= &t
->fe
.ops
.tuner_ops
;
279 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
280 unsigned char buffer
[4];
283 if (type
== UNSET
|| type
== TUNER_ABSENT
) {
284 tuner_dbg("tuner 0x%02x: Tuner type absent\n", c
->addr
);
289 /* prevent invalid config values */
290 t
->config
= new_config
< 256 ? new_config
: 0;
291 if (tuner_callback
!= NULL
) {
292 tuner_dbg("defining GPIO callback\n");
293 t
->fe
.callback
= tuner_callback
;
296 /* discard private data, in case set_type() was previously called */
297 tuner_detach(&t
->fe
);
298 t
->fe
.analog_demod_priv
= NULL
;
302 if (!dvb_attach(microtune_attach
,
303 &t
->fe
, t
->i2c
->adapter
, t
->i2c
->addr
))
306 case TUNER_PHILIPS_TDA8290
:
308 struct tda829x_config cfg
= {
309 .lna_cfg
= t
->config
,
311 if (!dvb_attach(tda829x_attach
, &t
->fe
, t
->i2c
->adapter
,
317 if (!dvb_attach(tea5767_attach
, &t
->fe
,
318 t
->i2c
->adapter
, t
->i2c
->addr
))
320 t
->mode_mask
= T_RADIO
;
323 if (!dvb_attach(tea5761_attach
, &t
->fe
,
324 t
->i2c
->adapter
, t
->i2c
->addr
))
326 t
->mode_mask
= T_RADIO
;
328 case TUNER_PHILIPS_FMD1216ME_MK3
:
329 case TUNER_PHILIPS_FMD1216MEX_MK3
:
334 i2c_master_send(c
, buffer
, 4);
338 i2c_master_send(c
, buffer
, 4);
339 if (!dvb_attach(simple_tuner_attach
, &t
->fe
,
340 t
->i2c
->adapter
, t
->i2c
->addr
, t
->type
))
343 case TUNER_PHILIPS_TD1316
:
348 i2c_master_send(c
, buffer
, 4);
349 if (!dvb_attach(simple_tuner_attach
, &t
->fe
,
350 t
->i2c
->adapter
, t
->i2c
->addr
, t
->type
))
355 struct xc2028_config cfg
= {
356 .i2c_adap
= t
->i2c
->adapter
,
357 .i2c_addr
= t
->i2c
->addr
,
359 if (!dvb_attach(xc2028_attach
, &t
->fe
, &cfg
))
365 if (!dvb_attach(tda9887_attach
,
366 &t
->fe
, t
->i2c
->adapter
, t
->i2c
->addr
))
371 struct xc5000_config xc5000_cfg
= {
372 .i2c_address
= t
->i2c
->addr
,
373 /* if_khz will be set at dvb_attach() */
377 if (!dvb_attach(xc5000_attach
,
378 &t
->fe
, t
->i2c
->adapter
, &xc5000_cfg
))
385 struct xc5000_config xc5000c_cfg
= {
386 .i2c_address
= t
->i2c
->addr
,
387 /* if_khz will be set at dvb_attach() */
392 if (!dvb_attach(xc5000_attach
,
393 &t
->fe
, t
->i2c
->adapter
, &xc5000c_cfg
))
398 case TUNER_NXP_TDA18271
:
400 struct tda18271_config cfg
= {
402 .small_i2c
= TDA18271_03_BYTE_CHUNK_INIT
,
405 if (!dvb_attach(tda18271_attach
, &t
->fe
, t
->i2c
->addr
,
406 t
->i2c
->adapter
, &cfg
))
413 struct xc4000_config xc4000_cfg
= {
414 .i2c_address
= t
->i2c
->addr
,
415 /* FIXME: the correct parameters will be set */
416 /* only when the digital dvb_attach() occurs */
419 .set_smoothedcvbs
= 0,
422 if (!dvb_attach(xc4000_attach
,
423 &t
->fe
, t
->i2c
->adapter
, &xc4000_cfg
))
429 if (!dvb_attach(simple_tuner_attach
, &t
->fe
,
430 t
->i2c
->adapter
, t
->i2c
->addr
, t
->type
))
436 if ((NULL
== analog_ops
->set_params
) &&
437 (fe_tuner_ops
->set_analog_params
)) {
439 t
->name
= fe_tuner_ops
->info
.name
;
441 t
->fe
.analog_demod_priv
= t
;
442 memcpy(analog_ops
, &tuner_analog_ops
,
443 sizeof(struct analog_demod_ops
));
446 t
->name
= analog_ops
->info
.name
;
449 tuner_dbg("type set to %s\n", t
->name
);
451 t
->mode_mask
= new_mode_mask
;
453 /* Some tuners require more initialization setup before use,
454 such as firmware download or device calibration.
455 trying to set a frequency here will just fail
456 FIXME: better to move set_freq to the tuner code. This is needed
457 on analog tuners for PLL to properly work
460 if (V4L2_TUNER_RADIO
== t
->mode
)
461 set_radio_freq(c
, t
->radio_freq
);
463 set_tv_freq(c
, t
->tv_freq
);
466 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
467 c
->adapter
->name
, c
->driver
->driver
.name
, c
->addr
<< 1, type
,
472 tuner_dbg("Tuner attach for type = %d failed.\n", t
->type
);
473 t
->type
= TUNER_ABSENT
;
479 * tuner_s_type_addr - Sets the tuner type for a device
481 * @sd: subdev descriptor
482 * @tun_setup: type to be associated to a given tuner i2c address
484 * This function applys the tuner config to tuner specified
485 * by tun_setup structure.
486 * If tuner I2C address is UNSET, then it will only set the device
487 * if the tuner supports the mode specified in the call.
488 * If the address is specified, the change will be applied only if
489 * tuner I2C address matches.
490 * The call can change the tuner number and the tuner mode.
492 static int tuner_s_type_addr(struct v4l2_subdev
*sd
,
493 struct tuner_setup
*tun_setup
)
495 struct tuner
*t
= to_tuner(sd
);
496 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
498 tuner_dbg("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
501 tun_setup
->mode_mask
,
504 if ((t
->type
== UNSET
&& ((tun_setup
->addr
== ADDR_UNSET
) &&
505 (t
->mode_mask
& tun_setup
->mode_mask
))) ||
506 (tun_setup
->addr
== c
->addr
)) {
507 set_type(c
, tun_setup
->type
, tun_setup
->mode_mask
,
508 tun_setup
->config
, tun_setup
->tuner_callback
);
510 tuner_dbg("set addr discarded for type %i, mask %x. "
511 "Asked to change tuner at addr 0x%02x, with mask %x\n",
512 t
->type
, t
->mode_mask
,
513 tun_setup
->addr
, tun_setup
->mode_mask
);
519 * tuner_s_config - Sets tuner configuration
521 * @sd: subdev descriptor
522 * @cfg: tuner configuration
524 * Calls tuner set_config() private function to set some tuner-internal
527 static int tuner_s_config(struct v4l2_subdev
*sd
,
528 const struct v4l2_priv_tun_config
*cfg
)
530 struct tuner
*t
= to_tuner(sd
);
531 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
533 if (t
->type
!= cfg
->tuner
)
536 if (analog_ops
->set_config
) {
537 analog_ops
->set_config(&t
->fe
, cfg
->priv
);
541 tuner_dbg("Tuner frontend module has no way to set config\n");
546 * tuner_lookup - Seek for tuner adapters
548 * @adap: i2c_adapter struct
549 * @radio: pointer to be filled if the adapter is radio
550 * @tv: pointer to be filled if the adapter is TV
552 * Search for existing radio and/or TV tuners on the given I2C adapter,
553 * discarding demod-only adapters (tda9887).
555 * Note that when this function is called from tuner_probe you can be
556 * certain no other devices will be added/deleted at the same time, I2C
557 * core protects against that.
559 static void tuner_lookup(struct i2c_adapter
*adap
,
560 struct tuner
**radio
, struct tuner
**tv
)
567 list_for_each_entry(pos
, &tuner_list
, list
) {
570 if (pos
->i2c
->adapter
!= adap
||
571 strcmp(pos
->i2c
->driver
->driver
.name
, "tuner"))
574 mode_mask
= pos
->mode_mask
;
575 if (*radio
== NULL
&& mode_mask
== T_RADIO
)
577 /* Note: currently TDA9887 is the only demod-only
578 device. If other devices appear then we need to
579 make this test more general. */
580 else if (*tv
== NULL
&& pos
->type
!= TUNER_TDA9887
&&
581 (pos
->mode_mask
& T_ANALOG_TV
))
587 *tuner_probe - Probes the existing tuners on an I2C bus
589 * @client: i2c_client descriptor
592 * This routine probes for tuners at the expected I2C addresses. On most
593 * cases, if a device answers to a given I2C address, it assumes that the
594 * device is a tuner. On a few cases, however, an additional logic is needed
595 * to double check if the device is really a tuner, or to identify the tuner
596 * type, like on tea5767/5761 devices.
598 * During client attach, set_type is called by adapter's attach_inform callback.
599 * set_type must then be completed by tuner_probe.
601 static int tuner_probe(struct i2c_client
*client
,
602 const struct i2c_device_id
*id
)
608 t
= kzalloc(sizeof(struct tuner
), GFP_KERNEL
);
611 v4l2_i2c_subdev_init(&t
->sd
, client
, &tuner_ops
);
613 t
->name
= "(tuner unset)";
615 t
->audmode
= V4L2_TUNER_MODE_STEREO
;
617 t
->radio_freq
= 87.5 * 16000; /* Initial freq range */
618 t
->tv_freq
= 400 * 16; /* Sets freq to VHF High - needed for some PLL's to properly start */
621 unsigned char buffer
[16];
624 memset(buffer
, 0, sizeof(buffer
));
625 rc
= i2c_master_recv(client
, buffer
, sizeof(buffer
));
626 tuner_info("I2C RECV = ");
627 for (i
= 0; i
< rc
; i
++)
628 printk(KERN_CONT
"%02x ", buffer
[i
]);
632 /* autodetection code based on the i2c addr */
633 if (!no_autodetect
) {
634 switch (client
->addr
) {
636 if (tuner_symbol_probe(tea5761_autodetection
,
638 t
->i2c
->addr
) >= 0) {
639 t
->type
= TUNER_TEA5761
;
640 t
->mode_mask
= T_RADIO
;
641 tuner_lookup(t
->i2c
->adapter
, &radio
, &tv
);
643 tv
->mode_mask
&= ~T_RADIO
;
645 goto register_client
;
653 /* If chip is not tda8290, don't register.
654 since it can be tda9887*/
655 if (tuner_symbol_probe(tda829x_probe
, t
->i2c
->adapter
,
656 t
->i2c
->addr
) >= 0) {
657 tuner_dbg("tda829x detected\n");
659 /* Default is being tda9887 */
660 t
->type
= TUNER_TDA9887
;
661 t
->mode_mask
= T_RADIO
| T_ANALOG_TV
;
662 goto register_client
;
666 if (tuner_symbol_probe(tea5767_autodetection
,
667 t
->i2c
->adapter
, t
->i2c
->addr
)
669 t
->type
= TUNER_TEA5767
;
670 t
->mode_mask
= T_RADIO
;
671 /* Sets freq to FM range */
672 tuner_lookup(t
->i2c
->adapter
, &radio
, &tv
);
674 tv
->mode_mask
&= ~T_RADIO
;
676 goto register_client
;
682 /* Initializes only the first TV tuner on this adapter. Why only the
683 first? Because there are some devices (notably the ones with TI
684 tuners) that have more than one i2c address for the *same* device.
685 Experience shows that, except for just one case, the first
686 address is the right one. The exception is a Russian tuner
687 (ACORP_Y878F). So, the desired behavior is just to enable the
688 first found TV tuner. */
689 tuner_lookup(t
->i2c
->adapter
, &radio
, &tv
);
691 t
->mode_mask
= T_ANALOG_TV
;
693 t
->mode_mask
|= T_RADIO
;
694 tuner_dbg("Setting mode_mask to 0x%02x\n", t
->mode_mask
);
697 /* Should be just before return */
699 /* Sets a default mode */
700 if (t
->mode_mask
& T_ANALOG_TV
)
701 t
->mode
= V4L2_TUNER_ANALOG_TV
;
703 t
->mode
= V4L2_TUNER_RADIO
;
704 set_type(client
, t
->type
, t
->mode_mask
, t
->config
, t
->fe
.callback
);
705 list_add_tail(&t
->list
, &tuner_list
);
707 tuner_info("Tuner %d found with type(s)%s%s.\n",
709 t
->mode_mask
& T_RADIO
? " Radio" : "",
710 t
->mode_mask
& T_ANALOG_TV
? " TV" : "");
715 * tuner_remove - detaches a tuner
717 * @client: i2c_client descriptor
720 static int tuner_remove(struct i2c_client
*client
)
722 struct tuner
*t
= to_tuner(i2c_get_clientdata(client
));
724 v4l2_device_unregister_subdev(&t
->sd
);
725 tuner_detach(&t
->fe
);
726 t
->fe
.analog_demod_priv
= NULL
;
734 * Functions to switch between Radio and TV
736 * A few cards have a separate I2C tuner for radio. Those routines
737 * take care of switching between TV/Radio mode, filtering only the
738 * commands that apply to the Radio or TV tuner.
742 * check_mode - Verify if tuner supports the requested mode
743 * @t: a pointer to the module's internal struct_tuner
745 * This function checks if the tuner is capable of tuning analog TV,
746 * digital TV or radio, depending on what the caller wants. If the
747 * tuner can't support that mode, it returns -EINVAL. Otherwise, it
749 * This function is needed for boards that have a separate tuner for
750 * radio (like devices with tea5767).
751 * NOTE: mt20xx uses V4L2_TUNER_DIGITAL_TV and calls set_tv_freq to
752 * select a TV frequency. So, t_mode = T_ANALOG_TV could actually
753 * be used to represent a Digital TV too.
755 static inline int check_mode(struct tuner
*t
, enum v4l2_tuner_type mode
)
758 if (mode
== V4L2_TUNER_RADIO
)
761 t_mode
= T_ANALOG_TV
;
763 if ((t_mode
& t
->mode_mask
) == 0)
770 * set_mode - Switch tuner to other mode.
771 * @t: a pointer to the module's internal struct_tuner
772 * @mode: enum v4l2_type (radio or TV)
774 * If tuner doesn't support the needed mode (radio or TV), prints a
775 * debug message and returns -EINVAL, changing its state to standby.
776 * Otherwise, changes the mode and returns 0.
778 static int set_mode(struct tuner
*t
, enum v4l2_tuner_type mode
)
780 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
782 if (mode
!= t
->mode
) {
783 if (check_mode(t
, mode
) == -EINVAL
) {
784 tuner_dbg("Tuner doesn't support mode %d. "
785 "Putting tuner to sleep\n", mode
);
787 if (analog_ops
->standby
)
788 analog_ops
->standby(&t
->fe
);
792 tuner_dbg("Changing to mode %d\n", mode
);
798 * set_freq - Set the tuner to the desired frequency.
799 * @t: a pointer to the module's internal struct_tuner
800 * @freq: frequency to set (0 means to use the current frequency)
802 static void set_freq(struct tuner
*t
, unsigned int freq
)
804 struct i2c_client
*client
= v4l2_get_subdevdata(&t
->sd
);
806 if (t
->mode
== V4L2_TUNER_RADIO
) {
808 freq
= t
->radio_freq
;
809 set_radio_freq(client
, freq
);
813 set_tv_freq(client
, freq
);
818 * Functions that are specific for TV mode
822 * set_tv_freq - Set tuner frequency, freq in Units of 62.5 kHz = 1/16MHz
824 * @c: i2c_client descriptor
827 static void set_tv_freq(struct i2c_client
*c
, unsigned int freq
)
829 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
830 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
832 struct analog_parameters params
= {
834 .audmode
= t
->audmode
,
838 if (t
->type
== UNSET
) {
839 tuner_warn("tuner type not set\n");
842 if (NULL
== analog_ops
->set_params
) {
843 tuner_warn("Tuner has no way to set tv freq\n");
846 if (freq
< tv_range
[0] * 16 || freq
> tv_range
[1] * 16) {
847 tuner_dbg("TV freq (%d.%02d) out of range (%d-%d)\n",
848 freq
/ 16, freq
% 16 * 100 / 16, tv_range
[0],
850 /* V4L2 spec: if the freq is not possible then the closest
851 possible value should be selected */
852 if (freq
< tv_range
[0] * 16)
853 freq
= tv_range
[0] * 16;
855 freq
= tv_range
[1] * 16;
857 params
.frequency
= freq
;
858 tuner_dbg("tv freq set to %d.%02d\n",
859 freq
/ 16, freq
% 16 * 100 / 16);
863 analog_ops
->set_params(&t
->fe
, ¶ms
);
867 * tuner_fixup_std - force a given video standard variant
869 * @t: tuner internal struct
872 * A few devices or drivers have problem to detect some standard variations.
873 * On other operational systems, the drivers generally have a per-country
874 * code, and some logic to apply per-country hacks. V4L2 API doesn't provide
875 * such hacks. Instead, it relies on a proper video standard selection from
876 * the userspace application. However, as some apps are buggy, not allowing
877 * to distinguish all video standard variations, a modprobe parameter can
878 * be used to force a video standard match.
880 static v4l2_std_id
tuner_fixup_std(struct tuner
*t
, v4l2_std_id std
)
882 if (pal
[0] != '-' && (std
& V4L2_STD_PAL
) == V4L2_STD_PAL
) {
885 return V4L2_STD_PAL_60
;
890 return V4L2_STD_PAL_BG
;
893 return V4L2_STD_PAL_I
;
898 return V4L2_STD_PAL_DK
;
901 return V4L2_STD_PAL_M
;
904 if (pal
[1] == 'c' || pal
[1] == 'C')
905 return V4L2_STD_PAL_Nc
;
906 return V4L2_STD_PAL_N
;
908 tuner_warn("pal= argument not recognised\n");
912 if (secam
[0] != '-' && (std
& V4L2_STD_SECAM
) == V4L2_STD_SECAM
) {
920 return V4L2_STD_SECAM_B
|
927 return V4L2_STD_SECAM_DK
;
930 if ((secam
[1] == 'C') || (secam
[1] == 'c'))
931 return V4L2_STD_SECAM_LC
;
932 return V4L2_STD_SECAM_L
;
934 tuner_warn("secam= argument not recognised\n");
939 if (ntsc
[0] != '-' && (std
& V4L2_STD_NTSC
) == V4L2_STD_NTSC
) {
943 return V4L2_STD_NTSC_M
;
946 return V4L2_STD_NTSC_M_JP
;
949 return V4L2_STD_NTSC_M_KR
;
951 tuner_info("ntsc= argument not recognised\n");
959 * Functions that are specific for Radio mode
963 * set_radio_freq - Set tuner frequency, freq in Units of 62.5 Hz = 1/16kHz
965 * @c: i2c_client descriptor
968 static void set_radio_freq(struct i2c_client
*c
, unsigned int freq
)
970 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
971 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
973 struct analog_parameters params
= {
975 .audmode
= t
->audmode
,
979 if (t
->type
== UNSET
) {
980 tuner_warn("tuner type not set\n");
983 if (NULL
== analog_ops
->set_params
) {
984 tuner_warn("tuner has no way to set radio frequency\n");
987 if (freq
< radio_range
[0] * 16000 || freq
> radio_range
[1] * 16000) {
988 tuner_dbg("radio freq (%d.%02d) out of range (%d-%d)\n",
989 freq
/ 16000, freq
% 16000 * 100 / 16000,
990 radio_range
[0], radio_range
[1]);
991 /* V4L2 spec: if the freq is not possible then the closest
992 possible value should be selected */
993 if (freq
< radio_range
[0] * 16000)
994 freq
= radio_range
[0] * 16000;
996 freq
= radio_range
[1] * 16000;
998 params
.frequency
= freq
;
999 tuner_dbg("radio freq set to %d.%02d\n",
1000 freq
/ 16000, freq
% 16000 * 100 / 16000);
1001 t
->radio_freq
= freq
;
1004 analog_ops
->set_params(&t
->fe
, ¶ms
);
1008 * Debug function for reporting tuner status to userspace
1012 * tuner_status - Dumps the current tuner status at dmesg
1013 * @fe: pointer to struct dvb_frontend
1015 * This callback is used only for driver debug purposes, answering to
1016 * VIDIOC_LOG_STATUS. No changes should happen on this call.
1018 static void tuner_status(struct dvb_frontend
*fe
)
1020 struct tuner
*t
= fe
->analog_demod_priv
;
1021 unsigned long freq
, freq_fraction
;
1022 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
1023 struct analog_demod_ops
*analog_ops
= &fe
->ops
.analog_ops
;
1027 case V4L2_TUNER_RADIO
:
1030 case V4L2_TUNER_DIGITAL_TV
: /* Used by mt20xx */
1033 case V4L2_TUNER_ANALOG_TV
:
1038 if (t
->mode
== V4L2_TUNER_RADIO
) {
1039 freq
= t
->radio_freq
/ 16000;
1040 freq_fraction
= (t
->radio_freq
% 16000) * 100 / 16000;
1042 freq
= t
->tv_freq
/ 16;
1043 freq_fraction
= (t
->tv_freq
% 16) * 100 / 16;
1045 tuner_info("Tuner mode: %s%s\n", p
,
1046 t
->standby
? " on standby mode" : "");
1047 tuner_info("Frequency: %lu.%02lu MHz\n", freq
, freq_fraction
);
1048 tuner_info("Standard: 0x%08lx\n", (unsigned long)t
->std
);
1049 if (t
->mode
!= V4L2_TUNER_RADIO
)
1051 if (fe_tuner_ops
->get_status
) {
1054 fe_tuner_ops
->get_status(&t
->fe
, &tuner_status
);
1055 if (tuner_status
& TUNER_STATUS_LOCKED
)
1056 tuner_info("Tuner is locked.\n");
1057 if (tuner_status
& TUNER_STATUS_STEREO
)
1058 tuner_info("Stereo: yes\n");
1060 if (analog_ops
->has_signal
)
1061 tuner_info("Signal strength: %d\n",
1062 analog_ops
->has_signal(fe
));
1066 * Function to splicitly change mode to radio. Probably not needed anymore
1069 static int tuner_s_radio(struct v4l2_subdev
*sd
)
1071 struct tuner
*t
= to_tuner(sd
);
1073 if (set_mode(t
, V4L2_TUNER_RADIO
) == 0)
1079 * Tuner callbacks to handle userspace ioctl's
1083 * tuner_s_power - controls the power state of the tuner
1084 * @sd: pointer to struct v4l2_subdev
1085 * @on: a zero value puts the tuner to sleep, non-zero wakes it up
1087 static int tuner_s_power(struct v4l2_subdev
*sd
, int on
)
1089 struct tuner
*t
= to_tuner(sd
);
1090 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1093 if (t
->standby
&& set_mode(t
, t
->mode
) == 0) {
1094 tuner_dbg("Waking up tuner\n");
1100 tuner_dbg("Putting tuner to sleep\n");
1102 if (analog_ops
->standby
)
1103 analog_ops
->standby(&t
->fe
);
1107 static int tuner_s_std(struct v4l2_subdev
*sd
, v4l2_std_id std
)
1109 struct tuner
*t
= to_tuner(sd
);
1111 if (set_mode(t
, V4L2_TUNER_ANALOG_TV
))
1114 t
->std
= tuner_fixup_std(t
, std
);
1116 tuner_dbg("Fixup standard %llx to %llx\n", std
, t
->std
);
1121 static int tuner_s_frequency(struct v4l2_subdev
*sd
, struct v4l2_frequency
*f
)
1123 struct tuner
*t
= to_tuner(sd
);
1125 if (set_mode(t
, f
->type
) == 0)
1126 set_freq(t
, f
->frequency
);
1131 * tuner_g_frequency - Get the tuned frequency for the tuner
1132 * @sd: pointer to struct v4l2_subdev
1133 * @f: pointer to struct v4l2_frequency
1135 * At return, the structure f will be filled with tuner frequency
1136 * if the tuner matches the f->type.
1137 * Note: f->type should be initialized before calling it.
1138 * This is done by either video_ioctl2 or by the bridge driver.
1140 static int tuner_g_frequency(struct v4l2_subdev
*sd
, struct v4l2_frequency
*f
)
1142 struct tuner
*t
= to_tuner(sd
);
1143 struct dvb_tuner_ops
*fe_tuner_ops
= &t
->fe
.ops
.tuner_ops
;
1145 if (check_mode(t
, f
->type
) == -EINVAL
)
1147 if (f
->type
== t
->mode
&& fe_tuner_ops
->get_frequency
&& !t
->standby
) {
1150 fe_tuner_ops
->get_frequency(&t
->fe
, &abs_freq
);
1151 f
->frequency
= (V4L2_TUNER_RADIO
== t
->mode
) ?
1152 DIV_ROUND_CLOSEST(abs_freq
* 2, 125) :
1153 DIV_ROUND_CLOSEST(abs_freq
, 62500);
1155 f
->frequency
= (V4L2_TUNER_RADIO
== f
->type
) ?
1156 t
->radio_freq
: t
->tv_freq
;
1162 * tuner_g_tuner - Fill in tuner information
1163 * @sd: pointer to struct v4l2_subdev
1164 * @vt: pointer to struct v4l2_tuner
1166 * At return, the structure vt will be filled with tuner information
1167 * if the tuner matches vt->type.
1168 * Note: vt->type should be initialized before calling it.
1169 * This is done by either video_ioctl2 or by the bridge driver.
1171 static int tuner_g_tuner(struct v4l2_subdev
*sd
, struct v4l2_tuner
*vt
)
1173 struct tuner
*t
= to_tuner(sd
);
1174 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1175 struct dvb_tuner_ops
*fe_tuner_ops
= &t
->fe
.ops
.tuner_ops
;
1177 if (check_mode(t
, vt
->type
) == -EINVAL
)
1179 if (vt
->type
== t
->mode
&& analog_ops
->get_afc
)
1180 vt
->afc
= analog_ops
->get_afc(&t
->fe
);
1181 if (t
->mode
!= V4L2_TUNER_RADIO
) {
1182 vt
->capability
|= V4L2_TUNER_CAP_NORM
;
1183 vt
->rangelow
= tv_range
[0] * 16;
1184 vt
->rangehigh
= tv_range
[1] * 16;
1189 if (vt
->type
== t
->mode
) {
1190 vt
->rxsubchans
= V4L2_TUNER_SUB_MONO
| V4L2_TUNER_SUB_STEREO
;
1191 if (fe_tuner_ops
->get_status
) {
1194 fe_tuner_ops
->get_status(&t
->fe
, &tuner_status
);
1196 (tuner_status
& TUNER_STATUS_STEREO
) ?
1197 V4L2_TUNER_SUB_STEREO
:
1198 V4L2_TUNER_SUB_MONO
;
1200 if (analog_ops
->has_signal
)
1201 vt
->signal
= analog_ops
->has_signal(&t
->fe
);
1202 vt
->audmode
= t
->audmode
;
1204 vt
->capability
|= V4L2_TUNER_CAP_LOW
| V4L2_TUNER_CAP_STEREO
;
1205 vt
->rangelow
= radio_range
[0] * 16000;
1206 vt
->rangehigh
= radio_range
[1] * 16000;
1212 * tuner_s_tuner - Set the tuner's audio mode
1213 * @sd: pointer to struct v4l2_subdev
1214 * @vt: pointer to struct v4l2_tuner
1216 * Sets the audio mode if the tuner matches vt->type.
1217 * Note: vt->type should be initialized before calling it.
1218 * This is done by either video_ioctl2 or by the bridge driver.
1220 static int tuner_s_tuner(struct v4l2_subdev
*sd
, struct v4l2_tuner
*vt
)
1222 struct tuner
*t
= to_tuner(sd
);
1224 if (set_mode(t
, vt
->type
))
1227 if (t
->mode
== V4L2_TUNER_RADIO
)
1228 t
->audmode
= vt
->audmode
;
1234 static int tuner_log_status(struct v4l2_subdev
*sd
)
1236 struct tuner
*t
= to_tuner(sd
);
1237 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1239 if (analog_ops
->tuner_status
)
1240 analog_ops
->tuner_status(&t
->fe
);
1244 static int tuner_suspend(struct i2c_client
*c
, pm_message_t state
)
1246 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
1247 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1249 tuner_dbg("suspend\n");
1251 if (!t
->standby
&& analog_ops
->standby
)
1252 analog_ops
->standby(&t
->fe
);
1257 static int tuner_resume(struct i2c_client
*c
)
1259 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
1261 tuner_dbg("resume\n");
1264 if (set_mode(t
, t
->mode
) == 0)
1270 static int tuner_command(struct i2c_client
*client
, unsigned cmd
, void *arg
)
1272 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1274 /* TUNER_SET_CONFIG is still called by tuner-simple.c, so we have
1276 There must be a better way of doing this... */
1278 case TUNER_SET_CONFIG
:
1279 return tuner_s_config(sd
, arg
);
1281 return -ENOIOCTLCMD
;
1288 static const struct v4l2_subdev_core_ops tuner_core_ops
= {
1289 .log_status
= tuner_log_status
,
1290 .s_std
= tuner_s_std
,
1291 .s_power
= tuner_s_power
,
1294 static const struct v4l2_subdev_tuner_ops tuner_tuner_ops
= {
1295 .s_radio
= tuner_s_radio
,
1296 .g_tuner
= tuner_g_tuner
,
1297 .s_tuner
= tuner_s_tuner
,
1298 .s_frequency
= tuner_s_frequency
,
1299 .g_frequency
= tuner_g_frequency
,
1300 .s_type_addr
= tuner_s_type_addr
,
1301 .s_config
= tuner_s_config
,
1304 static const struct v4l2_subdev_ops tuner_ops
= {
1305 .core
= &tuner_core_ops
,
1306 .tuner
= &tuner_tuner_ops
,
1310 * I2C structs and module init functions
1313 static const struct i2c_device_id tuner_id
[] = {
1314 { "tuner", }, /* autodetect */
1317 MODULE_DEVICE_TABLE(i2c
, tuner_id
);
1319 static struct i2c_driver tuner_driver
= {
1321 .owner
= THIS_MODULE
,
1324 .probe
= tuner_probe
,
1325 .remove
= tuner_remove
,
1326 .command
= tuner_command
,
1327 .suspend
= tuner_suspend
,
1328 .resume
= tuner_resume
,
1329 .id_table
= tuner_id
,
1332 module_i2c_driver(tuner_driver
);
1334 MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
1335 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1336 MODULE_LICENSE("GPL");