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"
47 * Driver modprobe parameters
50 /* insmod options used at init time => read/only */
51 static unsigned int addr
;
52 static unsigned int no_autodetect
;
53 static unsigned int show_i2c
;
55 module_param(addr
, int, 0444);
56 module_param(no_autodetect
, int, 0444);
57 module_param(show_i2c
, int, 0444);
59 /* insmod options used at runtime => read/write */
60 static int tuner_debug
;
61 static unsigned int tv_range
[2] = { 44, 958 };
62 static unsigned int radio_range
[2] = { 65, 108 };
63 static char pal
[] = "--";
64 static char secam
[] = "--";
65 static char ntsc
[] = "-";
67 module_param_named(debug
, tuner_debug
, int, 0644);
68 module_param_array(tv_range
, int, NULL
, 0644);
69 module_param_array(radio_range
, int, NULL
, 0644);
70 module_param_string(pal
, pal
, sizeof(pal
), 0644);
71 module_param_string(secam
, secam
, sizeof(secam
), 0644);
72 module_param_string(ntsc
, ntsc
, sizeof(ntsc
), 0644);
78 static LIST_HEAD(tuner_list
);
79 static const struct v4l2_subdev_ops tuner_ops
;
87 #define pr_fmt(fmt) KBUILD_MODNAME ": %d-%04x: " fmt, \
88 i2c_adapter_id(t->i2c->adapter), t->i2c->addr
91 #define dprintk(fmt, arg...) do { \
93 printk(KERN_DEBUG pr_fmt("%s: " fmt), __func__, ##arg); \
97 * Internal struct used inside the driver
102 struct dvb_frontend fe
;
103 struct i2c_client
*i2c
;
104 struct v4l2_subdev sd
;
105 struct list_head list
;
107 /* keep track of the current settings */
109 unsigned int tv_freq
;
110 unsigned int radio_freq
;
111 unsigned int audmode
;
113 enum v4l2_tuner_type mode
;
114 unsigned int mode_mask
; /* Combination of allowable modes */
116 bool standby
; /* Standby mode */
118 unsigned int type
; /* chip type id */
122 #if defined(CONFIG_MEDIA_CONTROLLER)
123 struct media_pad pad
[TUNER_NUM_PADS
];
128 * Function prototypes
131 static void set_tv_freq(struct i2c_client
*c
, unsigned int freq
);
132 static void set_radio_freq(struct i2c_client
*c
, unsigned int freq
);
135 * tuner attach/detach logic
138 /* This macro allows us to probe dynamically, avoiding static links */
139 #ifdef CONFIG_MEDIA_ATTACH
140 #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
142 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
144 __r = (int) __a(ARGS); \
145 symbol_put(FUNCTION); \
147 printk(KERN_ERR "TUNER: Unable to find " \
148 "symbol "#FUNCTION"()\n"); \
153 static void tuner_detach(struct dvb_frontend
*fe
)
155 if (fe
->ops
.tuner_ops
.release
) {
156 fe
->ops
.tuner_ops
.release(fe
);
157 symbol_put_addr(fe
->ops
.tuner_ops
.release
);
159 if (fe
->ops
.analog_ops
.release
) {
160 fe
->ops
.analog_ops
.release(fe
);
161 symbol_put_addr(fe
->ops
.analog_ops
.release
);
165 #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
169 static void tuner_detach(struct dvb_frontend
*fe
)
171 if (fe
->ops
.tuner_ops
.release
)
172 fe
->ops
.tuner_ops
.release(fe
);
173 if (fe
->ops
.analog_ops
.release
)
174 fe
->ops
.analog_ops
.release(fe
);
179 static inline struct tuner
*to_tuner(struct v4l2_subdev
*sd
)
181 return container_of(sd
, struct tuner
, sd
);
185 * struct analog_demod_ops callbacks
188 static void fe_set_params(struct dvb_frontend
*fe
,
189 struct analog_parameters
*params
)
191 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
192 struct tuner
*t
= fe
->analog_demod_priv
;
194 if (NULL
== fe_tuner_ops
->set_analog_params
) {
195 pr_warn("Tuner frontend module has no way to set freq\n");
198 fe_tuner_ops
->set_analog_params(fe
, params
);
201 static void fe_standby(struct dvb_frontend
*fe
)
203 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
205 if (fe_tuner_ops
->sleep
)
206 fe_tuner_ops
->sleep(fe
);
209 static int fe_set_config(struct dvb_frontend
*fe
, void *priv_cfg
)
211 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
212 struct tuner
*t
= fe
->analog_demod_priv
;
214 if (fe_tuner_ops
->set_config
)
215 return fe_tuner_ops
->set_config(fe
, priv_cfg
);
217 pr_warn("Tuner frontend module has no way to set config\n");
222 static void tuner_status(struct dvb_frontend
*fe
);
224 static const struct analog_demod_ops tuner_analog_ops
= {
225 .set_params
= fe_set_params
,
226 .standby
= fe_standby
,
227 .set_config
= fe_set_config
,
228 .tuner_status
= tuner_status
232 * Functions to select between radio and TV and tuner probe/remove functions
236 * set_type - Sets the tuner type for a given device
238 * @c: i2c_client descriptor
239 * @type: type of the tuner (e. g. tuner number)
240 * @new_mode_mask: Indicates if tuner supports TV and/or Radio
241 * @new_config: an optional parameter used by a few tuners to adjust
242 * internal parameters, like LNA mode
243 * @tuner_callback: an optional function to be called when switching
246 * This function applies the tuner config to tuner specified
247 * by tun_setup structure. It contains several per-tuner initialization "magic"
249 static void set_type(struct i2c_client
*c
, unsigned int type
,
250 unsigned int new_mode_mask
, void *new_config
,
251 int (*tuner_callback
) (void *dev
, int component
, int cmd
, int arg
))
253 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
254 struct dvb_tuner_ops
*fe_tuner_ops
= &t
->fe
.ops
.tuner_ops
;
255 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
256 unsigned char buffer
[4];
259 if (type
== UNSET
|| type
== TUNER_ABSENT
) {
260 dprintk("tuner 0x%02x: Tuner type absent\n", c
->addr
);
265 t
->config
= new_config
;
266 if (tuner_callback
!= NULL
) {
267 dprintk("defining GPIO callback\n");
268 t
->fe
.callback
= tuner_callback
;
271 /* discard private data, in case set_type() was previously called */
272 tuner_detach(&t
->fe
);
273 t
->fe
.analog_demod_priv
= NULL
;
277 if (!dvb_attach(microtune_attach
,
278 &t
->fe
, t
->i2c
->adapter
, t
->i2c
->addr
))
281 case TUNER_PHILIPS_TDA8290
:
283 if (!dvb_attach(tda829x_attach
, &t
->fe
, t
->i2c
->adapter
,
284 t
->i2c
->addr
, t
->config
))
289 if (!dvb_attach(tea5767_attach
, &t
->fe
,
290 t
->i2c
->adapter
, t
->i2c
->addr
))
292 t
->mode_mask
= T_RADIO
;
295 if (!dvb_attach(tea5761_attach
, &t
->fe
,
296 t
->i2c
->adapter
, t
->i2c
->addr
))
298 t
->mode_mask
= T_RADIO
;
300 case TUNER_PHILIPS_FMD1216ME_MK3
:
301 case TUNER_PHILIPS_FMD1216MEX_MK3
:
306 i2c_master_send(c
, buffer
, 4);
310 i2c_master_send(c
, buffer
, 4);
311 if (!dvb_attach(simple_tuner_attach
, &t
->fe
,
312 t
->i2c
->adapter
, t
->i2c
->addr
, t
->type
))
315 case TUNER_PHILIPS_TD1316
:
320 i2c_master_send(c
, buffer
, 4);
321 if (!dvb_attach(simple_tuner_attach
, &t
->fe
,
322 t
->i2c
->adapter
, t
->i2c
->addr
, t
->type
))
327 struct xc2028_config cfg
= {
328 .i2c_adap
= t
->i2c
->adapter
,
329 .i2c_addr
= t
->i2c
->addr
,
331 if (!dvb_attach(xc2028_attach
, &t
->fe
, &cfg
))
337 if (!dvb_attach(tda9887_attach
,
338 &t
->fe
, t
->i2c
->adapter
, t
->i2c
->addr
))
343 struct xc5000_config xc5000_cfg
= {
344 .i2c_address
= t
->i2c
->addr
,
345 /* if_khz will be set at dvb_attach() */
349 if (!dvb_attach(xc5000_attach
,
350 &t
->fe
, t
->i2c
->adapter
, &xc5000_cfg
))
357 struct xc5000_config xc5000c_cfg
= {
358 .i2c_address
= t
->i2c
->addr
,
359 /* if_khz will be set at dvb_attach() */
364 if (!dvb_attach(xc5000_attach
,
365 &t
->fe
, t
->i2c
->adapter
, &xc5000c_cfg
))
370 case TUNER_NXP_TDA18271
:
372 struct tda18271_config cfg
= {
373 .small_i2c
= TDA18271_03_BYTE_CHUNK_INIT
,
376 if (!dvb_attach(tda18271_attach
, &t
->fe
, t
->i2c
->addr
,
377 t
->i2c
->adapter
, &cfg
))
384 struct xc4000_config xc4000_cfg
= {
385 .i2c_address
= t
->i2c
->addr
,
386 /* FIXME: the correct parameters will be set */
387 /* only when the digital dvb_attach() occurs */
390 .set_smoothedcvbs
= 0,
393 if (!dvb_attach(xc4000_attach
,
394 &t
->fe
, t
->i2c
->adapter
, &xc4000_cfg
))
400 if (!dvb_attach(simple_tuner_attach
, &t
->fe
,
401 t
->i2c
->adapter
, t
->i2c
->addr
, t
->type
))
407 if ((NULL
== analog_ops
->set_params
) &&
408 (fe_tuner_ops
->set_analog_params
)) {
410 t
->name
= fe_tuner_ops
->info
.name
;
412 t
->fe
.analog_demod_priv
= t
;
413 memcpy(analog_ops
, &tuner_analog_ops
,
414 sizeof(struct analog_demod_ops
));
416 if (fe_tuner_ops
->get_rf_strength
)
417 analog_ops
->has_signal
= fe_tuner_ops
->get_rf_strength
;
418 if (fe_tuner_ops
->get_afc
)
419 analog_ops
->get_afc
= fe_tuner_ops
->get_afc
;
422 t
->name
= analog_ops
->info
.name
;
425 #ifdef CONFIG_MEDIA_CONTROLLER
426 t
->sd
.entity
.name
= t
->name
;
429 dprintk("type set to %s\n", t
->name
);
431 t
->mode_mask
= new_mode_mask
;
433 /* Some tuners require more initialization setup before use,
434 such as firmware download or device calibration.
435 trying to set a frequency here will just fail
436 FIXME: better to move set_freq to the tuner code. This is needed
437 on analog tuners for PLL to properly work
440 if (V4L2_TUNER_RADIO
== t
->mode
)
441 set_radio_freq(c
, t
->radio_freq
);
443 set_tv_freq(c
, t
->tv_freq
);
446 dprintk("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
447 c
->adapter
->name
, c
->dev
.driver
->name
, c
->addr
<< 1, type
,
452 dprintk("Tuner attach for type = %d failed.\n", t
->type
);
453 t
->type
= TUNER_ABSENT
;
459 * tuner_s_type_addr - Sets the tuner type for a device
461 * @sd: subdev descriptor
462 * @tun_setup: type to be associated to a given tuner i2c address
464 * This function applies the tuner config to tuner specified
465 * by tun_setup structure.
466 * If tuner I2C address is UNSET, then it will only set the device
467 * if the tuner supports the mode specified in the call.
468 * If the address is specified, the change will be applied only if
469 * tuner I2C address matches.
470 * The call can change the tuner number and the tuner mode.
472 static int tuner_s_type_addr(struct v4l2_subdev
*sd
,
473 struct tuner_setup
*tun_setup
)
475 struct tuner
*t
= to_tuner(sd
);
476 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
478 dprintk("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=%p\n",
481 tun_setup
->mode_mask
,
484 if ((t
->type
== UNSET
&& ((tun_setup
->addr
== ADDR_UNSET
) &&
485 (t
->mode_mask
& tun_setup
->mode_mask
))) ||
486 (tun_setup
->addr
== c
->addr
)) {
487 set_type(c
, tun_setup
->type
, tun_setup
->mode_mask
,
488 tun_setup
->config
, tun_setup
->tuner_callback
);
490 dprintk("set addr discarded for type %i, mask %x. Asked to change tuner at addr 0x%02x, with mask %x\n",
491 t
->type
, t
->mode_mask
,
492 tun_setup
->addr
, tun_setup
->mode_mask
);
498 * tuner_s_config - Sets tuner configuration
500 * @sd: subdev descriptor
501 * @cfg: tuner configuration
503 * Calls tuner set_config() private function to set some tuner-internal
506 static int tuner_s_config(struct v4l2_subdev
*sd
,
507 const struct v4l2_priv_tun_config
*cfg
)
509 struct tuner
*t
= to_tuner(sd
);
510 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
512 if (t
->type
!= cfg
->tuner
)
515 if (analog_ops
->set_config
) {
516 analog_ops
->set_config(&t
->fe
, cfg
->priv
);
520 dprintk("Tuner frontend module has no way to set config\n");
525 * tuner_lookup - Seek for tuner adapters
527 * @adap: i2c_adapter struct
528 * @radio: pointer to be filled if the adapter is radio
529 * @tv: pointer to be filled if the adapter is TV
531 * Search for existing radio and/or TV tuners on the given I2C adapter,
532 * discarding demod-only adapters (tda9887).
534 * Note that when this function is called from tuner_probe you can be
535 * certain no other devices will be added/deleted at the same time, I2C
536 * core protects against that.
538 static void tuner_lookup(struct i2c_adapter
*adap
,
539 struct tuner
**radio
, struct tuner
**tv
)
546 list_for_each_entry(pos
, &tuner_list
, list
) {
549 if (pos
->i2c
->adapter
!= adap
||
550 strcmp(pos
->i2c
->dev
.driver
->name
, "tuner"))
553 mode_mask
= pos
->mode_mask
;
554 if (*radio
== NULL
&& mode_mask
== T_RADIO
)
556 /* Note: currently TDA9887 is the only demod-only
557 device. If other devices appear then we need to
558 make this test more general. */
559 else if (*tv
== NULL
&& pos
->type
!= TUNER_TDA9887
&&
560 (pos
->mode_mask
& T_ANALOG_TV
))
566 *tuner_probe - Probes the existing tuners on an I2C bus
568 * @client: i2c_client descriptor
571 * This routine probes for tuners at the expected I2C addresses. On most
572 * cases, if a device answers to a given I2C address, it assumes that the
573 * device is a tuner. On a few cases, however, an additional logic is needed
574 * to double check if the device is really a tuner, or to identify the tuner
575 * type, like on tea5767/5761 devices.
577 * During client attach, set_type is called by adapter's attach_inform callback.
578 * set_type must then be completed by tuner_probe.
580 static int tuner_probe(struct i2c_client
*client
,
581 const struct i2c_device_id
*id
)
586 #ifdef CONFIG_MEDIA_CONTROLLER
590 t
= kzalloc(sizeof(struct tuner
), GFP_KERNEL
);
593 v4l2_i2c_subdev_init(&t
->sd
, client
, &tuner_ops
);
595 t
->name
= "(tuner unset)";
597 t
->audmode
= V4L2_TUNER_MODE_STEREO
;
599 t
->radio_freq
= 87.5 * 16000; /* Initial freq range */
600 t
->tv_freq
= 400 * 16; /* Sets freq to VHF High - needed for some PLL's to properly start */
603 unsigned char buffer
[16];
606 memset(buffer
, 0, sizeof(buffer
));
607 rc
= i2c_master_recv(client
, buffer
, sizeof(buffer
));
609 pr_info("I2C RECV = %*ph\n", rc
, buffer
);
612 /* autodetection code based on the i2c addr */
613 if (!no_autodetect
) {
614 switch (client
->addr
) {
616 if (tuner_symbol_probe(tea5761_autodetection
,
618 t
->i2c
->addr
) >= 0) {
619 t
->type
= TUNER_TEA5761
;
620 t
->mode_mask
= T_RADIO
;
621 tuner_lookup(t
->i2c
->adapter
, &radio
, &tv
);
623 tv
->mode_mask
&= ~T_RADIO
;
625 goto register_client
;
633 /* If chip is not tda8290, don't register.
634 since it can be tda9887*/
635 if (tuner_symbol_probe(tda829x_probe
, t
->i2c
->adapter
,
636 t
->i2c
->addr
) >= 0) {
637 dprintk("tda829x detected\n");
639 /* Default is being tda9887 */
640 t
->type
= TUNER_TDA9887
;
641 t
->mode_mask
= T_RADIO
| T_ANALOG_TV
;
642 goto register_client
;
646 if (tuner_symbol_probe(tea5767_autodetection
,
647 t
->i2c
->adapter
, t
->i2c
->addr
)
649 t
->type
= TUNER_TEA5767
;
650 t
->mode_mask
= T_RADIO
;
651 /* Sets freq to FM range */
652 tuner_lookup(t
->i2c
->adapter
, &radio
, &tv
);
654 tv
->mode_mask
&= ~T_RADIO
;
656 goto register_client
;
662 /* Initializes only the first TV tuner on this adapter. Why only the
663 first? Because there are some devices (notably the ones with TI
664 tuners) that have more than one i2c address for the *same* device.
665 Experience shows that, except for just one case, the first
666 address is the right one. The exception is a Russian tuner
667 (ACORP_Y878F). So, the desired behavior is just to enable the
668 first found TV tuner. */
669 tuner_lookup(t
->i2c
->adapter
, &radio
, &tv
);
671 t
->mode_mask
= T_ANALOG_TV
;
673 t
->mode_mask
|= T_RADIO
;
674 dprintk("Setting mode_mask to 0x%02x\n", t
->mode_mask
);
677 /* Should be just before return */
679 #if defined(CONFIG_MEDIA_CONTROLLER)
680 t
->sd
.entity
.name
= t
->name
;
682 * Handle the special case where the tuner has actually
683 * two stages: the PLL to tune into a frequency and the
684 * IF-PLL demodulator (tda988x).
686 if (t
->type
== TUNER_TDA9887
) {
687 t
->pad
[IF_VID_DEC_PAD_IF_INPUT
].flags
= MEDIA_PAD_FL_SINK
;
688 t
->pad
[IF_VID_DEC_PAD_OUT
].flags
= MEDIA_PAD_FL_SOURCE
;
689 ret
= media_entity_pads_init(&t
->sd
.entity
,
690 IF_VID_DEC_PAD_NUM_PADS
,
692 t
->sd
.entity
.function
= MEDIA_ENT_F_IF_VID_DECODER
;
694 t
->pad
[TUNER_PAD_RF_INPUT
].flags
= MEDIA_PAD_FL_SINK
;
695 t
->pad
[TUNER_PAD_OUTPUT
].flags
= MEDIA_PAD_FL_SOURCE
;
696 t
->pad
[TUNER_PAD_AUD_OUT
].flags
= MEDIA_PAD_FL_SOURCE
;
697 ret
= media_entity_pads_init(&t
->sd
.entity
, TUNER_NUM_PADS
,
699 t
->sd
.entity
.function
= MEDIA_ENT_F_TUNER
;
703 pr_err("failed to initialize media entity!\n");
708 /* Sets a default mode */
709 if (t
->mode_mask
& T_ANALOG_TV
)
710 t
->mode
= V4L2_TUNER_ANALOG_TV
;
712 t
->mode
= V4L2_TUNER_RADIO
;
713 set_type(client
, t
->type
, t
->mode_mask
, t
->config
, t
->fe
.callback
);
714 list_add_tail(&t
->list
, &tuner_list
);
716 pr_info("Tuner %d found with type(s)%s%s.\n",
718 t
->mode_mask
& T_RADIO
? " Radio" : "",
719 t
->mode_mask
& T_ANALOG_TV
? " TV" : "");
724 * tuner_remove - detaches a tuner
726 * @client: i2c_client descriptor
729 static int tuner_remove(struct i2c_client
*client
)
731 struct tuner
*t
= to_tuner(i2c_get_clientdata(client
));
733 v4l2_device_unregister_subdev(&t
->sd
);
734 tuner_detach(&t
->fe
);
735 t
->fe
.analog_demod_priv
= NULL
;
743 * Functions to switch between Radio and TV
745 * A few cards have a separate I2C tuner for radio. Those routines
746 * take care of switching between TV/Radio mode, filtering only the
747 * commands that apply to the Radio or TV tuner.
751 * check_mode - Verify if tuner supports the requested mode
752 * @t: a pointer to the module's internal struct_tuner
753 * @mode: mode of the tuner, as defined by &enum v4l2_tuner_type.
755 * This function checks if the tuner is capable of tuning analog TV,
756 * digital TV or radio, depending on what the caller wants. If the
757 * tuner can't support that mode, it returns -EINVAL. Otherwise, it
759 * This function is needed for boards that have a separate tuner for
760 * radio (like devices with tea5767).
762 * NOTE: mt20xx uses V4L2_TUNER_DIGITAL_TV and calls set_tv_freq to
763 * select a TV frequency. So, t_mode = T_ANALOG_TV could actually
764 * be used to represent a Digital TV too.
766 static inline int check_mode(struct tuner
*t
, enum v4l2_tuner_type mode
)
769 if (mode
== V4L2_TUNER_RADIO
)
772 t_mode
= T_ANALOG_TV
;
774 if ((t_mode
& t
->mode_mask
) == 0)
781 * set_mode - Switch tuner to other mode.
782 * @t: a pointer to the module's internal struct_tuner
783 * @mode: enum v4l2_type (radio or TV)
785 * If tuner doesn't support the needed mode (radio or TV), prints a
786 * debug message and returns -EINVAL, changing its state to standby.
787 * Otherwise, changes the mode and returns 0.
789 static int set_mode(struct tuner
*t
, enum v4l2_tuner_type mode
)
791 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
793 if (mode
!= t
->mode
) {
794 if (check_mode(t
, mode
) == -EINVAL
) {
795 dprintk("Tuner doesn't support mode %d. Putting tuner to sleep\n",
798 if (analog_ops
->standby
)
799 analog_ops
->standby(&t
->fe
);
803 dprintk("Changing to mode %d\n", mode
);
809 * set_freq - Set the tuner to the desired frequency.
810 * @t: a pointer to the module's internal struct_tuner
811 * @freq: frequency to set (0 means to use the current frequency)
813 static void set_freq(struct tuner
*t
, unsigned int freq
)
815 struct i2c_client
*client
= v4l2_get_subdevdata(&t
->sd
);
817 if (t
->mode
== V4L2_TUNER_RADIO
) {
819 freq
= t
->radio_freq
;
820 set_radio_freq(client
, freq
);
824 set_tv_freq(client
, freq
);
829 * Functions that are specific for TV mode
833 * set_tv_freq - Set tuner frequency, freq in Units of 62.5 kHz = 1/16MHz
835 * @c: i2c_client descriptor
838 static void set_tv_freq(struct i2c_client
*c
, unsigned int freq
)
840 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
841 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
843 struct analog_parameters params
= {
845 .audmode
= t
->audmode
,
849 if (t
->type
== UNSET
) {
850 pr_warn("tuner type not set\n");
853 if (NULL
== analog_ops
->set_params
) {
854 pr_warn("Tuner has no way to set tv freq\n");
857 if (freq
< tv_range
[0] * 16 || freq
> tv_range
[1] * 16) {
858 dprintk("TV freq (%d.%02d) out of range (%d-%d)\n",
859 freq
/ 16, freq
% 16 * 100 / 16, tv_range
[0],
861 /* V4L2 spec: if the freq is not possible then the closest
862 possible value should be selected */
863 if (freq
< tv_range
[0] * 16)
864 freq
= tv_range
[0] * 16;
866 freq
= tv_range
[1] * 16;
868 params
.frequency
= freq
;
869 dprintk("tv freq set to %d.%02d\n",
870 freq
/ 16, freq
% 16 * 100 / 16);
874 analog_ops
->set_params(&t
->fe
, ¶ms
);
878 * tuner_fixup_std - force a given video standard variant
880 * @t: tuner internal struct
883 * A few devices or drivers have problem to detect some standard variations.
884 * On other operational systems, the drivers generally have a per-country
885 * code, and some logic to apply per-country hacks. V4L2 API doesn't provide
886 * such hacks. Instead, it relies on a proper video standard selection from
887 * the userspace application. However, as some apps are buggy, not allowing
888 * to distinguish all video standard variations, a modprobe parameter can
889 * be used to force a video standard match.
891 static v4l2_std_id
tuner_fixup_std(struct tuner
*t
, v4l2_std_id std
)
893 if (pal
[0] != '-' && (std
& V4L2_STD_PAL
) == V4L2_STD_PAL
) {
896 return V4L2_STD_PAL_60
;
901 return V4L2_STD_PAL_BG
;
904 return V4L2_STD_PAL_I
;
909 return V4L2_STD_PAL_DK
;
912 return V4L2_STD_PAL_M
;
915 if (pal
[1] == 'c' || pal
[1] == 'C')
916 return V4L2_STD_PAL_Nc
;
917 return V4L2_STD_PAL_N
;
919 pr_warn("pal= argument not recognised\n");
923 if (secam
[0] != '-' && (std
& V4L2_STD_SECAM
) == V4L2_STD_SECAM
) {
931 return V4L2_STD_SECAM_B
|
938 return V4L2_STD_SECAM_DK
;
941 if ((secam
[1] == 'C') || (secam
[1] == 'c'))
942 return V4L2_STD_SECAM_LC
;
943 return V4L2_STD_SECAM_L
;
945 pr_warn("secam= argument not recognised\n");
950 if (ntsc
[0] != '-' && (std
& V4L2_STD_NTSC
) == V4L2_STD_NTSC
) {
954 return V4L2_STD_NTSC_M
;
957 return V4L2_STD_NTSC_M_JP
;
960 return V4L2_STD_NTSC_M_KR
;
962 pr_info("ntsc= argument not recognised\n");
970 * Functions that are specific for Radio mode
974 * set_radio_freq - Set tuner frequency, freq in Units of 62.5 Hz = 1/16kHz
976 * @c: i2c_client descriptor
979 static void set_radio_freq(struct i2c_client
*c
, unsigned int freq
)
981 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
982 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
984 struct analog_parameters params
= {
986 .audmode
= t
->audmode
,
990 if (t
->type
== UNSET
) {
991 pr_warn("tuner type not set\n");
994 if (NULL
== analog_ops
->set_params
) {
995 pr_warn("tuner has no way to set radio frequency\n");
998 if (freq
< radio_range
[0] * 16000 || freq
> radio_range
[1] * 16000) {
999 dprintk("radio freq (%d.%02d) out of range (%d-%d)\n",
1000 freq
/ 16000, freq
% 16000 * 100 / 16000,
1001 radio_range
[0], radio_range
[1]);
1002 /* V4L2 spec: if the freq is not possible then the closest
1003 possible value should be selected */
1004 if (freq
< radio_range
[0] * 16000)
1005 freq
= radio_range
[0] * 16000;
1007 freq
= radio_range
[1] * 16000;
1009 params
.frequency
= freq
;
1010 dprintk("radio freq set to %d.%02d\n",
1011 freq
/ 16000, freq
% 16000 * 100 / 16000);
1012 t
->radio_freq
= freq
;
1015 analog_ops
->set_params(&t
->fe
, ¶ms
);
1017 * The tuner driver might decide to change the audmode if it only
1018 * supports stereo, so update t->audmode.
1020 t
->audmode
= params
.audmode
;
1024 * Debug function for reporting tuner status to userspace
1028 * tuner_status - Dumps the current tuner status at dmesg
1029 * @fe: pointer to struct dvb_frontend
1031 * This callback is used only for driver debug purposes, answering to
1032 * VIDIOC_LOG_STATUS. No changes should happen on this call.
1034 static void tuner_status(struct dvb_frontend
*fe
)
1036 struct tuner
*t
= fe
->analog_demod_priv
;
1037 unsigned long freq
, freq_fraction
;
1038 struct dvb_tuner_ops
*fe_tuner_ops
= &fe
->ops
.tuner_ops
;
1039 struct analog_demod_ops
*analog_ops
= &fe
->ops
.analog_ops
;
1043 case V4L2_TUNER_RADIO
:
1046 case V4L2_TUNER_DIGITAL_TV
: /* Used by mt20xx */
1049 case V4L2_TUNER_ANALOG_TV
:
1054 if (t
->mode
== V4L2_TUNER_RADIO
) {
1055 freq
= t
->radio_freq
/ 16000;
1056 freq_fraction
= (t
->radio_freq
% 16000) * 100 / 16000;
1058 freq
= t
->tv_freq
/ 16;
1059 freq_fraction
= (t
->tv_freq
% 16) * 100 / 16;
1061 pr_info("Tuner mode: %s%s\n", p
,
1062 t
->standby
? " on standby mode" : "");
1063 pr_info("Frequency: %lu.%02lu MHz\n", freq
, freq_fraction
);
1064 pr_info("Standard: 0x%08lx\n", (unsigned long)t
->std
);
1065 if (t
->mode
!= V4L2_TUNER_RADIO
)
1067 if (fe_tuner_ops
->get_status
) {
1070 fe_tuner_ops
->get_status(&t
->fe
, &tuner_status
);
1071 if (tuner_status
& TUNER_STATUS_LOCKED
)
1072 pr_info("Tuner is locked.\n");
1073 if (tuner_status
& TUNER_STATUS_STEREO
)
1074 pr_info("Stereo: yes\n");
1076 if (analog_ops
->has_signal
) {
1079 if (!analog_ops
->has_signal(fe
, &signal
))
1080 pr_info("Signal strength: %hu\n", signal
);
1085 * Function to splicitly change mode to radio. Probably not needed anymore
1088 static int tuner_s_radio(struct v4l2_subdev
*sd
)
1090 struct tuner
*t
= to_tuner(sd
);
1092 if (set_mode(t
, V4L2_TUNER_RADIO
) == 0)
1098 * Tuner callbacks to handle userspace ioctl's
1102 * tuner_standby - places the tuner in standby mode
1103 * @sd: pointer to struct v4l2_subdev
1105 static int tuner_standby(struct v4l2_subdev
*sd
)
1107 struct tuner
*t
= to_tuner(sd
);
1108 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1110 dprintk("Putting tuner to sleep\n");
1112 if (analog_ops
->standby
)
1113 analog_ops
->standby(&t
->fe
);
1117 static int tuner_s_std(struct v4l2_subdev
*sd
, v4l2_std_id std
)
1119 struct tuner
*t
= to_tuner(sd
);
1121 if (set_mode(t
, V4L2_TUNER_ANALOG_TV
))
1124 t
->std
= tuner_fixup_std(t
, std
);
1126 dprintk("Fixup standard %llx to %llx\n", std
, t
->std
);
1131 static int tuner_s_frequency(struct v4l2_subdev
*sd
, const struct v4l2_frequency
*f
)
1133 struct tuner
*t
= to_tuner(sd
);
1135 if (set_mode(t
, f
->type
) == 0)
1136 set_freq(t
, f
->frequency
);
1141 * tuner_g_frequency - Get the tuned frequency for the tuner
1142 * @sd: pointer to struct v4l2_subdev
1143 * @f: pointer to struct v4l2_frequency
1145 * At return, the structure f will be filled with tuner frequency
1146 * if the tuner matches the f->type.
1147 * Note: f->type should be initialized before calling it.
1148 * This is done by either video_ioctl2 or by the bridge driver.
1150 static int tuner_g_frequency(struct v4l2_subdev
*sd
, struct v4l2_frequency
*f
)
1152 struct tuner
*t
= to_tuner(sd
);
1153 struct dvb_tuner_ops
*fe_tuner_ops
= &t
->fe
.ops
.tuner_ops
;
1155 if (check_mode(t
, f
->type
) == -EINVAL
)
1157 if (f
->type
== t
->mode
&& fe_tuner_ops
->get_frequency
&& !t
->standby
) {
1160 fe_tuner_ops
->get_frequency(&t
->fe
, &abs_freq
);
1161 f
->frequency
= (V4L2_TUNER_RADIO
== t
->mode
) ?
1162 DIV_ROUND_CLOSEST(abs_freq
* 2, 125) :
1163 DIV_ROUND_CLOSEST(abs_freq
, 62500);
1165 f
->frequency
= (V4L2_TUNER_RADIO
== f
->type
) ?
1166 t
->radio_freq
: t
->tv_freq
;
1172 * tuner_g_tuner - Fill in tuner information
1173 * @sd: pointer to struct v4l2_subdev
1174 * @vt: pointer to struct v4l2_tuner
1176 * At return, the structure vt will be filled with tuner information
1177 * if the tuner matches vt->type.
1178 * Note: vt->type should be initialized before calling it.
1179 * This is done by either video_ioctl2 or by the bridge driver.
1181 static int tuner_g_tuner(struct v4l2_subdev
*sd
, struct v4l2_tuner
*vt
)
1183 struct tuner
*t
= to_tuner(sd
);
1184 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1185 struct dvb_tuner_ops
*fe_tuner_ops
= &t
->fe
.ops
.tuner_ops
;
1187 if (check_mode(t
, vt
->type
) == -EINVAL
)
1189 if (vt
->type
== t
->mode
&& analog_ops
->get_afc
)
1190 analog_ops
->get_afc(&t
->fe
, &vt
->afc
);
1191 if (vt
->type
== t
->mode
&& analog_ops
->has_signal
) {
1192 u16 signal
= (u16
)vt
->signal
;
1194 if (!analog_ops
->has_signal(&t
->fe
, &signal
))
1195 vt
->signal
= signal
;
1197 if (vt
->type
!= V4L2_TUNER_RADIO
) {
1198 vt
->capability
|= V4L2_TUNER_CAP_NORM
;
1199 vt
->rangelow
= tv_range
[0] * 16;
1200 vt
->rangehigh
= tv_range
[1] * 16;
1205 if (vt
->type
== t
->mode
) {
1206 vt
->rxsubchans
= V4L2_TUNER_SUB_MONO
| V4L2_TUNER_SUB_STEREO
;
1207 if (fe_tuner_ops
->get_status
) {
1210 fe_tuner_ops
->get_status(&t
->fe
, &tuner_status
);
1212 (tuner_status
& TUNER_STATUS_STEREO
) ?
1213 V4L2_TUNER_SUB_STEREO
:
1214 V4L2_TUNER_SUB_MONO
;
1216 vt
->audmode
= t
->audmode
;
1218 vt
->capability
|= V4L2_TUNER_CAP_LOW
| V4L2_TUNER_CAP_STEREO
;
1219 vt
->rangelow
= radio_range
[0] * 16000;
1220 vt
->rangehigh
= radio_range
[1] * 16000;
1226 * tuner_s_tuner - Set the tuner's audio mode
1227 * @sd: pointer to struct v4l2_subdev
1228 * @vt: pointer to struct v4l2_tuner
1230 * Sets the audio mode if the tuner matches vt->type.
1231 * Note: vt->type should be initialized before calling it.
1232 * This is done by either video_ioctl2 or by the bridge driver.
1234 static int tuner_s_tuner(struct v4l2_subdev
*sd
, const struct v4l2_tuner
*vt
)
1236 struct tuner
*t
= to_tuner(sd
);
1238 if (set_mode(t
, vt
->type
))
1241 if (t
->mode
== V4L2_TUNER_RADIO
) {
1242 t
->audmode
= vt
->audmode
;
1244 * For radio audmode can only be mono or stereo. Map any
1245 * other values to stereo. The actual tuner driver that is
1246 * called in set_radio_freq can decide to limit the audmode to
1247 * mono if only mono is supported.
1249 if (t
->audmode
!= V4L2_TUNER_MODE_MONO
&&
1250 t
->audmode
!= V4L2_TUNER_MODE_STEREO
)
1251 t
->audmode
= V4L2_TUNER_MODE_STEREO
;
1258 static int tuner_log_status(struct v4l2_subdev
*sd
)
1260 struct tuner
*t
= to_tuner(sd
);
1261 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1263 if (analog_ops
->tuner_status
)
1264 analog_ops
->tuner_status(&t
->fe
);
1268 #ifdef CONFIG_PM_SLEEP
1269 static int tuner_suspend(struct device
*dev
)
1271 struct i2c_client
*c
= to_i2c_client(dev
);
1272 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
1273 struct analog_demod_ops
*analog_ops
= &t
->fe
.ops
.analog_ops
;
1275 dprintk("suspend\n");
1277 if (t
->fe
.ops
.tuner_ops
.suspend
)
1278 t
->fe
.ops
.tuner_ops
.suspend(&t
->fe
);
1279 else if (!t
->standby
&& analog_ops
->standby
)
1280 analog_ops
->standby(&t
->fe
);
1285 static int tuner_resume(struct device
*dev
)
1287 struct i2c_client
*c
= to_i2c_client(dev
);
1288 struct tuner
*t
= to_tuner(i2c_get_clientdata(c
));
1290 dprintk("resume\n");
1292 if (t
->fe
.ops
.tuner_ops
.resume
)
1293 t
->fe
.ops
.tuner_ops
.resume(&t
->fe
);
1294 else if (!t
->standby
)
1295 if (set_mode(t
, t
->mode
) == 0)
1302 static int tuner_command(struct i2c_client
*client
, unsigned cmd
, void *arg
)
1304 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1306 /* TUNER_SET_CONFIG is still called by tuner-simple.c, so we have
1308 There must be a better way of doing this... */
1310 case TUNER_SET_CONFIG
:
1311 return tuner_s_config(sd
, arg
);
1313 return -ENOIOCTLCMD
;
1320 static const struct v4l2_subdev_core_ops tuner_core_ops
= {
1321 .log_status
= tuner_log_status
,
1324 static const struct v4l2_subdev_tuner_ops tuner_tuner_ops
= {
1325 .standby
= tuner_standby
,
1326 .s_radio
= tuner_s_radio
,
1327 .g_tuner
= tuner_g_tuner
,
1328 .s_tuner
= tuner_s_tuner
,
1329 .s_frequency
= tuner_s_frequency
,
1330 .g_frequency
= tuner_g_frequency
,
1331 .s_type_addr
= tuner_s_type_addr
,
1332 .s_config
= tuner_s_config
,
1335 static const struct v4l2_subdev_video_ops tuner_video_ops
= {
1336 .s_std
= tuner_s_std
,
1339 static const struct v4l2_subdev_ops tuner_ops
= {
1340 .core
= &tuner_core_ops
,
1341 .tuner
= &tuner_tuner_ops
,
1342 .video
= &tuner_video_ops
,
1346 * I2C structs and module init functions
1349 static const struct dev_pm_ops tuner_pm_ops
= {
1350 SET_SYSTEM_SLEEP_PM_OPS(tuner_suspend
, tuner_resume
)
1353 static const struct i2c_device_id tuner_id
[] = {
1354 { "tuner", }, /* autodetect */
1357 MODULE_DEVICE_TABLE(i2c
, tuner_id
);
1359 static struct i2c_driver tuner_driver
= {
1362 .pm
= &tuner_pm_ops
,
1364 .probe
= tuner_probe
,
1365 .remove
= tuner_remove
,
1366 .command
= tuner_command
,
1367 .id_table
= tuner_id
,
1370 module_i2c_driver(tuner_driver
);
1372 MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
1373 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1374 MODULE_LICENSE("GPL");