3 * i2c tv tuner chip device driver
4 * core core, i.e. kernel interfaces, registering and so on
7 #include <linux/module.h>
8 #include <linux/kernel.h>
9 #include <linux/string.h>
10 #include <linux/timer.h>
11 #include <linux/delay.h>
12 #include <linux/errno.h>
13 #include <linux/slab.h>
14 #include <linux/poll.h>
15 #include <linux/i2c.h>
16 #include <linux/types.h>
17 #include <linux/init.h>
18 #include <linux/videodev.h>
19 #include <media/tuner.h>
20 #include <media/tuner-types.h>
21 #include <media/v4l2-common.h>
22 #include <media/v4l2-i2c-drv-legacy.h>
27 #include "tuner-xc2028.h"
28 #include "tuner-simple.h"
34 #define PREFIX t->i2c->driver->driver.name
36 /** This macro allows us to probe dynamically, avoiding static links */
37 #ifdef CONFIG_DVB_CORE_ATTACH
38 #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
40 typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
42 __r = (int) __a(ARGS); \
44 printk(KERN_ERR "TUNER: Unable to find " \
45 "symbol "#FUNCTION"()\n"); \
47 symbol_put(FUNCTION); \
51 static void tuner_detach(struct dvb_frontend *fe)
53 if (fe->ops.tuner_ops.release) {
54 fe->ops.tuner_ops.release(fe);
55 symbol_put_addr(fe->ops.tuner_ops.release);
57 if (fe->ops.analog_ops.release) {
58 fe->ops.analog_ops.release(fe);
59 symbol_put_addr(fe->ops.analog_ops.release);
63 #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \
67 static void tuner_detach(struct dvb_frontend *fe)
69 if (fe->ops.tuner_ops.release)
70 fe->ops.tuner_ops.release(fe);
71 if (fe->ops.analog_ops.release)
72 fe->ops.analog_ops.release(fe);
78 struct dvb_frontend fe;
79 struct i2c_client *i2c;
80 struct list_head list;
81 unsigned int using_v4l2:1;
83 /* keep track of the current settings */
86 unsigned int radio_freq;
90 unsigned int mode_mask; /* Combination of allowable modes */
92 unsigned int type; /* chip type id */
94 int (*tuner_callback) (void *dev, int command, int arg);
97 /* standard i2c insmod options */
98 static unsigned short normal_i2c[] = {
99 #if defined(CONFIG_MEDIA_TUNER_TEA5761) || (defined(CONFIG_MEDIA_TUNER_TEA5761_MODULE) && defined(MODULE))
102 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
103 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
104 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
110 /* insmod options used at init time => read/only */
111 static unsigned int addr;
112 static unsigned int no_autodetect;
113 static unsigned int show_i2c;
115 /* insmod options used at runtime => read/write */
116 static int tuner_debug;
118 #define tuner_warn(fmt, arg...) do { \
119 printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \
120 i2c_adapter_id(t->i2c->adapter), \
121 t->i2c->addr, ##arg); \
124 #define tuner_info(fmt, arg...) do { \
125 printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \
126 i2c_adapter_id(t->i2c->adapter), \
127 t->i2c->addr, ##arg); \
130 #define tuner_err(fmt, arg...) do { \
131 printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \
132 i2c_adapter_id(t->i2c->adapter), \
133 t->i2c->addr, ##arg); \
136 #define tuner_dbg(fmt, arg...) do { \
138 printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \
139 i2c_adapter_id(t->i2c->adapter), \
140 t->i2c->addr, ##arg); \
143 /* ------------------------------------------------------------------------ */
145 static unsigned int tv_range[2] = { 44, 958 };
146 static unsigned int radio_range[2] = { 65, 108 };
148 static char pal[] = "--";
149 static char secam[] = "--";
150 static char ntsc[] = "-";
153 module_param(addr, int, 0444);
154 module_param(no_autodetect, int, 0444);
155 module_param(show_i2c, int, 0444);
156 module_param_named(debug,tuner_debug, int, 0644);
157 module_param_string(pal, pal, sizeof(pal), 0644);
158 module_param_string(secam, secam, sizeof(secam), 0644);
159 module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
160 module_param_array(tv_range, int, NULL, 0644);
161 module_param_array(radio_range, int, NULL, 0644);
163 MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
164 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
165 MODULE_LICENSE("GPL");
167 /* ---------------------------------------------------------------------- */
169 static void fe_set_params(struct dvb_frontend *fe,
170 struct analog_parameters *params)
172 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
173 struct tuner *t = fe->analog_demod_priv;
175 if (NULL == fe_tuner_ops->set_analog_params) {
176 tuner_warn("Tuner frontend module has no way to set freq\n");
179 fe_tuner_ops->set_analog_params(fe, params);
182 static void fe_standby(struct dvb_frontend *fe)
184 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
186 if (fe_tuner_ops->sleep)
187 fe_tuner_ops->sleep(fe);
190 static int fe_has_signal(struct dvb_frontend *fe)
194 if (fe->ops.tuner_ops.get_rf_strength)
195 fe->ops.tuner_ops.get_rf_strength(fe, &strength);
200 static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg)
202 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
203 struct tuner *t = fe->analog_demod_priv;
205 if (fe_tuner_ops->set_config)
206 return fe_tuner_ops->set_config(fe, priv_cfg);
208 tuner_warn("Tuner frontend module has no way to set config\n");
213 static void tuner_status(struct dvb_frontend *fe);
215 static struct analog_demod_ops tuner_core_ops = {
216 .set_params = fe_set_params,
217 .standby = fe_standby,
218 .has_signal = fe_has_signal,
219 .set_config = fe_set_config,
220 .tuner_status = tuner_status
223 /* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
224 static void set_tv_freq(struct i2c_client *c, unsigned int freq)
226 struct tuner *t = i2c_get_clientdata(c);
227 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
229 struct analog_parameters params = {
231 .audmode = t->audmode,
235 if (t->type == UNSET) {
236 tuner_warn ("tuner type not set\n");
239 if (NULL == analog_ops->set_params) {
240 tuner_warn ("Tuner has no way to set tv freq\n");
243 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
244 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
245 freq / 16, freq % 16 * 100 / 16, tv_range[0],
247 /* V4L2 spec: if the freq is not possible then the closest
248 possible value should be selected */
249 if (freq < tv_range[0] * 16)
250 freq = tv_range[0] * 16;
252 freq = tv_range[1] * 16;
254 params.frequency = freq;
256 analog_ops->set_params(&t->fe, ¶ms);
259 static void set_radio_freq(struct i2c_client *c, unsigned int freq)
261 struct tuner *t = i2c_get_clientdata(c);
262 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
264 struct analog_parameters params = {
266 .audmode = t->audmode,
270 if (t->type == UNSET) {
271 tuner_warn ("tuner type not set\n");
274 if (NULL == analog_ops->set_params) {
275 tuner_warn ("tuner has no way to set radio frequency\n");
278 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
279 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
280 freq / 16000, freq % 16000 * 100 / 16000,
281 radio_range[0], radio_range[1]);
282 /* V4L2 spec: if the freq is not possible then the closest
283 possible value should be selected */
284 if (freq < radio_range[0] * 16000)
285 freq = radio_range[0] * 16000;
287 freq = radio_range[1] * 16000;
289 params.frequency = freq;
291 analog_ops->set_params(&t->fe, ¶ms);
294 static void set_freq(struct i2c_client *c, unsigned long freq)
296 struct tuner *t = i2c_get_clientdata(c);
299 case V4L2_TUNER_RADIO:
300 tuner_dbg("radio freq set to %lu.%02lu\n",
301 freq / 16000, freq % 16000 * 100 / 16000);
302 set_radio_freq(c, freq);
303 t->radio_freq = freq;
305 case V4L2_TUNER_ANALOG_TV:
306 case V4L2_TUNER_DIGITAL_TV:
307 tuner_dbg("tv freq set to %lu.%02lu\n",
308 freq / 16, freq % 16 * 100 / 16);
309 set_tv_freq(c, freq);
313 tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode);
317 static void tuner_i2c_address_check(struct tuner *t)
319 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
320 ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
323 /* We already know that the XC5000 can only be located at
324 * i2c address 0x61, 0x62, 0x63 or 0x64 */
325 if ((t->type == TUNER_XC5000) &&
326 ((t->i2c->addr <= 0x64)) && (t->i2c->addr >= 0x61))
329 tuner_warn("====================== WARNING! ======================\n");
330 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
331 tuner_warn("will soon be dropped. This message indicates that your\n");
332 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
333 t->i2c->name, t->i2c->addr);
334 tuner_warn("To ensure continued support for your device, please\n");
335 tuner_warn("send a copy of this message, along with full dmesg\n");
336 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
337 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
338 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
339 t->i2c->adapter->name, t->i2c->addr, t->type, t->i2c->name);
340 tuner_warn("====================== WARNING! ======================\n");
343 static void attach_tda829x(struct tuner *t)
345 struct tda829x_config cfg = {
346 .lna_cfg = t->config,
347 .tuner_callback = t->tuner_callback,
349 dvb_attach(tda829x_attach,
350 &t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
353 static struct xc5000_config xc5000_cfg;
355 static void set_type(struct i2c_client *c, unsigned int type,
356 unsigned int new_mode_mask, unsigned int new_config,
357 int (*tuner_callback) (void *dev, int command,int arg))
359 struct tuner *t = i2c_get_clientdata(c);
360 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
361 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
362 unsigned char buffer[4];
364 if (type == UNSET || type == TUNER_ABSENT) {
365 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
370 t->config = new_config;
371 if (tuner_callback != NULL) {
372 tuner_dbg("defining GPIO callback\n");
373 t->tuner_callback = tuner_callback;
376 if (t->mode == T_UNINITIALIZED) {
377 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
382 /* discard private data, in case set_type() was previously called */
383 tuner_detach(&t->fe);
384 t->fe.analog_demod_priv = NULL;
388 dvb_attach(microtune_attach,
389 &t->fe, t->i2c->adapter, t->i2c->addr);
391 case TUNER_PHILIPS_TDA8290:
397 if (!dvb_attach(tea5767_attach, &t->fe,
398 t->i2c->adapter, t->i2c->addr))
400 t->mode_mask = T_RADIO;
403 if (!dvb_attach(tea5761_attach, &t->fe,
404 t->i2c->adapter, t->i2c->addr))
406 t->mode_mask = T_RADIO;
408 case TUNER_PHILIPS_FMD1216ME_MK3:
413 i2c_master_send(c, buffer, 4);
417 i2c_master_send(c, buffer, 4);
418 if (!dvb_attach(simple_tuner_attach, &t->fe,
419 t->i2c->adapter, t->i2c->addr, t->type))
422 case TUNER_PHILIPS_TD1316:
427 i2c_master_send(c, buffer, 4);
428 if (!dvb_attach(simple_tuner_attach, &t->fe,
429 t->i2c->adapter, t->i2c->addr, t->type))
434 struct xc2028_config cfg = {
435 .i2c_adap = t->i2c->adapter,
436 .i2c_addr = t->i2c->addr,
437 .callback = t->tuner_callback,
439 if (!dvb_attach(xc2028_attach, &t->fe, &cfg))
444 dvb_attach(tda9887_attach,
445 &t->fe, t->i2c->adapter, t->i2c->addr);
449 struct dvb_tuner_ops *xc_tuner_ops;
451 xc5000_cfg.i2c_address = t->i2c->addr;
452 xc5000_cfg.if_khz = 5380;
453 xc5000_cfg.priv = c->adapter->algo_data;
454 xc5000_cfg.tuner_callback = t->tuner_callback;
455 if (!dvb_attach(xc5000_attach,
456 &t->fe, t->i2c->adapter, &xc5000_cfg))
459 xc_tuner_ops = &t->fe.ops.tuner_ops;
460 if (xc_tuner_ops->init)
461 xc_tuner_ops->init(&t->fe);
465 if (!dvb_attach(simple_tuner_attach, &t->fe,
466 t->i2c->adapter, t->i2c->addr, t->type))
472 if ((NULL == analog_ops->set_params) &&
473 (fe_tuner_ops->set_analog_params)) {
475 strlcpy(t->i2c->name, fe_tuner_ops->info.name,
476 sizeof(t->i2c->name));
478 t->fe.analog_demod_priv = t;
479 memcpy(analog_ops, &tuner_core_ops,
480 sizeof(struct analog_demod_ops));
483 strlcpy(t->i2c->name, analog_ops->info.name,
484 sizeof(t->i2c->name));
487 tuner_dbg("type set to %s\n", t->i2c->name);
489 if (t->mode_mask == T_UNINITIALIZED)
490 t->mode_mask = new_mode_mask;
492 /* xc2028/3028 and xc5000 requires a firmware to be set-up later
493 trying to set a frequency here will just fail
494 FIXME: better to move set_freq to the tuner code. This is needed
495 on analog tuners for PLL to properly work
497 if (t->type != TUNER_XC2028 && t->type != TUNER_XC5000)
498 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ?
499 t->radio_freq : t->tv_freq);
501 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
502 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
504 tuner_i2c_address_check(t);
508 tuner_dbg("Tuner attach for type = %d failed.\n", t->type);
509 t->type = TUNER_ABSENT;
510 t->mode_mask = T_UNINITIALIZED;
516 * This function apply tuner config to tuner specified
517 * by tun_setup structure. I addr is unset, then admin status
518 * and tun addr status is more precise then current status,
519 * it's applied. Otherwise status and type are applied only to
520 * tuner with exactly the same addr.
523 static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
525 struct tuner *t = i2c_get_clientdata(c);
527 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
528 (t->mode_mask & tun_setup->mode_mask))) ||
529 (tun_setup->addr == c->addr)) {
530 set_type(c, tun_setup->type, tun_setup->mode_mask,
531 tun_setup->config, tun_setup->tuner_callback);
533 tuner_dbg("set addr discarded for type %i, mask %x. "
534 "Asked to change tuner at addr 0x%02x, with mask %x\n",
535 t->type, t->mode_mask,
536 tun_setup->addr, tun_setup->mode_mask);
539 static inline int check_mode(struct tuner *t, char *cmd)
541 if ((1 << t->mode & t->mode_mask) == 0) {
546 case V4L2_TUNER_RADIO:
547 tuner_dbg("Cmd %s accepted for radio\n", cmd);
549 case V4L2_TUNER_ANALOG_TV:
550 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
552 case V4L2_TUNER_DIGITAL_TV:
553 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
559 /* get more precise norm info from insmod option */
560 static int tuner_fixup_std(struct tuner *t)
562 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
565 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
566 t->std = V4L2_STD_PAL_60;
572 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
573 t->std = V4L2_STD_PAL_BG;
577 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
578 t->std = V4L2_STD_PAL_I;
584 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
585 t->std = V4L2_STD_PAL_DK;
589 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
590 t->std = V4L2_STD_PAL_M;
594 if (pal[1] == 'c' || pal[1] == 'C') {
595 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
596 t->std = V4L2_STD_PAL_Nc;
598 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
599 t->std = V4L2_STD_PAL_N;
603 /* default parameter, do nothing */
606 tuner_warn ("pal= argument not recognised\n");
610 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
618 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
619 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
625 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
626 t->std = V4L2_STD_SECAM_DK;
630 if ((secam[1]=='C')||(secam[1]=='c')) {
631 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
632 t->std = V4L2_STD_SECAM_LC;
634 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
635 t->std = V4L2_STD_SECAM_L;
639 /* default parameter, do nothing */
642 tuner_warn ("secam= argument not recognised\n");
647 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
651 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
652 t->std = V4L2_STD_NTSC_M;
656 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
657 t->std = V4L2_STD_NTSC_M_JP;
661 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
662 t->std = V4L2_STD_NTSC_M_KR;
665 /* default parameter, do nothing */
668 tuner_info("ntsc= argument not recognised\n");
675 static void tuner_status(struct dvb_frontend *fe)
677 struct tuner *t = fe->analog_demod_priv;
678 unsigned long freq, freq_fraction;
679 struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops;
680 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
684 case V4L2_TUNER_RADIO: p = "radio"; break;
685 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
686 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
687 default: p = "undefined"; break;
689 if (t->mode == V4L2_TUNER_RADIO) {
690 freq = t->radio_freq / 16000;
691 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
693 freq = t->tv_freq / 16;
694 freq_fraction = (t->tv_freq % 16) * 100 / 16;
696 tuner_info("Tuner mode: %s\n", p);
697 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
698 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
699 if (t->mode != V4L2_TUNER_RADIO)
701 if (fe_tuner_ops->get_status) {
704 fe_tuner_ops->get_status(&t->fe, &tuner_status);
705 if (tuner_status & TUNER_STATUS_LOCKED)
706 tuner_info("Tuner is locked.\n");
707 if (tuner_status & TUNER_STATUS_STEREO)
708 tuner_info("Stereo: yes\n");
710 if (analog_ops->has_signal)
711 tuner_info("Signal strength: %d\n",
712 analog_ops->has_signal(fe));
713 if (analog_ops->is_stereo)
714 tuner_info("Stereo: %s\n",
715 analog_ops->is_stereo(fe) ? "yes" : "no");
718 /* ---------------------------------------------------------------------- */
721 * Switch tuner to other mode. If tuner support both tv and radio,
722 * set another frequency to some value (This is needed for some pal
723 * tuners to avoid locking). Otherwise, just put second tuner in
727 static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
729 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
736 if (check_mode(t, cmd) == EINVAL) {
738 if (analog_ops->standby)
739 analog_ops->standby(&t->fe);
745 #define switch_v4l2() if (!t->using_v4l2) \
746 tuner_dbg("switching to v4l2\n"); \
749 static inline int check_v4l2(struct tuner *t)
751 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
752 TV, v4l1 for radio), until that is fixed this code is disabled.
753 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
758 static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
760 struct tuner *t = i2c_get_clientdata(client);
761 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
762 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops;
764 if (tuner_debug > 1) {
765 v4l_i2c_print_ioctl(client,cmd);
770 /* --- configuration --- */
771 case TUNER_SET_TYPE_ADDR:
772 tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
773 ((struct tuner_setup *)arg)->type,
774 ((struct tuner_setup *)arg)->addr,
775 ((struct tuner_setup *)arg)->mode_mask,
776 ((struct tuner_setup *)arg)->config);
778 set_addr(client, (struct tuner_setup *)arg);
781 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
785 set_freq(client, t->radio_freq);
787 case TUNER_SET_STANDBY:
788 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
791 if (analog_ops->standby)
792 analog_ops->standby(&t->fe);
794 #ifdef CONFIG_VIDEO_ALLOW_V4L1
796 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
798 if (check_v4l2(t) == EINVAL)
801 /* Should be implemented, since bttv calls it */
802 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
806 static const v4l2_std_id map[] = {
807 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
808 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
809 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
810 [4 /* bttv */ ] = V4L2_STD_PAL_M,
811 [5 /* bttv */ ] = V4L2_STD_PAL_N,
812 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
814 struct video_channel *vc = arg;
816 if (check_v4l2(t) == EINVAL)
819 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
822 if (vc->norm < ARRAY_SIZE(map))
823 t->std = map[vc->norm];
826 set_tv_freq(client, t->tv_freq);
831 unsigned long *v = arg;
833 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
835 if (check_v4l2(t) == EINVAL)
838 set_freq(client, *v);
843 struct video_tuner *vt = arg;
845 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
847 if (check_v4l2(t) == EINVAL)
850 if (V4L2_TUNER_RADIO == t->mode) {
851 if (fe_tuner_ops->get_status) {
854 fe_tuner_ops->get_status(&t->fe, &tuner_status);
855 if (tuner_status & TUNER_STATUS_STEREO)
856 vt->flags |= VIDEO_TUNER_STEREO_ON;
858 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
860 if (analog_ops->is_stereo) {
861 if (analog_ops->is_stereo(&t->fe))
863 VIDEO_TUNER_STEREO_ON;
866 ~VIDEO_TUNER_STEREO_ON;
869 if (analog_ops->has_signal)
871 analog_ops->has_signal(&t->fe);
873 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
875 vt->rangelow = radio_range[0] * 16000;
876 vt->rangehigh = radio_range[1] * 16000;
879 vt->rangelow = tv_range[0] * 16;
880 vt->rangehigh = tv_range[1] * 16;
887 struct video_audio *va = arg;
889 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
891 if (check_v4l2(t) == EINVAL)
894 if (V4L2_TUNER_RADIO == t->mode) {
895 if (fe_tuner_ops->get_status) {
898 fe_tuner_ops->get_status(&t->fe, &tuner_status);
899 va->mode = (tuner_status & TUNER_STATUS_STEREO)
900 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
901 } else if (analog_ops->is_stereo)
902 va->mode = analog_ops->is_stereo(&t->fe)
903 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
908 case TUNER_SET_CONFIG:
910 struct v4l2_priv_tun_config *cfg = arg;
912 if (t->type != cfg->tuner)
915 if (analog_ops->set_config) {
916 analog_ops->set_config(&t->fe, cfg->priv);
920 tuner_dbg("Tuner frontend module has no way to set config\n");
923 /* --- v4l ioctls --- */
924 /* take care: bttv does userspace copying, we'll get a
925 kernel pointer here... */
928 v4l2_std_id *id = arg;
930 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
939 set_freq(client, t->tv_freq);
942 case VIDIOC_S_FREQUENCY:
944 struct v4l2_frequency *f = arg;
946 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
950 set_freq(client,f->frequency);
954 case VIDIOC_G_FREQUENCY:
956 struct v4l2_frequency *f = arg;
958 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
962 if (fe_tuner_ops->get_frequency) {
965 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
966 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
967 (abs_freq * 2 + 125/2) / 125 :
968 (abs_freq + 62500/2) / 62500;
971 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
972 t->radio_freq : t->tv_freq;
977 struct v4l2_tuner *tuner = arg;
979 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
983 tuner->type = t->mode;
984 if (analog_ops->get_afc)
985 tuner->afc = analog_ops->get_afc(&t->fe);
986 if (t->mode == V4L2_TUNER_ANALOG_TV)
987 tuner->capability |= V4L2_TUNER_CAP_NORM;
988 if (t->mode != V4L2_TUNER_RADIO) {
989 tuner->rangelow = tv_range[0] * 16;
990 tuner->rangehigh = tv_range[1] * 16;
996 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
997 if (fe_tuner_ops->get_status) {
1000 fe_tuner_ops->get_status(&t->fe, &tuner_status);
1002 (tuner_status & TUNER_STATUS_STEREO) ?
1003 V4L2_TUNER_SUB_STEREO :
1004 V4L2_TUNER_SUB_MONO;
1006 if (analog_ops->is_stereo) {
1008 analog_ops->is_stereo(&t->fe) ?
1009 V4L2_TUNER_SUB_STEREO :
1010 V4L2_TUNER_SUB_MONO;
1013 if (analog_ops->has_signal)
1014 tuner->signal = analog_ops->has_signal(&t->fe);
1015 tuner->capability |=
1016 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
1017 tuner->audmode = t->audmode;
1018 tuner->rangelow = radio_range[0] * 16000;
1019 tuner->rangehigh = radio_range[1] * 16000;
1022 case VIDIOC_S_TUNER:
1024 struct v4l2_tuner *tuner = arg;
1026 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
1031 /* do nothing unless we're a radio tuner */
1032 if (t->mode != V4L2_TUNER_RADIO)
1034 t->audmode = tuner->audmode;
1035 set_radio_freq(client, t->radio_freq);
1038 case VIDIOC_LOG_STATUS:
1039 if (analog_ops->tuner_status)
1040 analog_ops->tuner_status(&t->fe);
1047 static int tuner_suspend(struct i2c_client *c, pm_message_t state)
1049 struct tuner *t = i2c_get_clientdata(c);
1051 tuner_dbg("suspend\n");
1052 /* FIXME: power down ??? */
1056 static int tuner_resume(struct i2c_client *c)
1058 struct tuner *t = i2c_get_clientdata(c);
1060 tuner_dbg("resume\n");
1061 if (V4L2_TUNER_RADIO == t->mode) {
1063 set_freq(c, t->radio_freq);
1066 set_freq(c, t->tv_freq);
1071 /* ---------------------------------------------------------------------- */
1073 static LIST_HEAD(tuner_list);
1075 /* Search for existing radio and/or TV tuners on the given I2C adapter.
1076 Note that when this function is called from tuner_probe you can be
1077 certain no other devices will be added/deleted at the same time, I2C
1078 core protects against that. */
1079 static void tuner_lookup(struct i2c_adapter *adap,
1080 struct tuner **radio, struct tuner **tv)
1087 list_for_each_entry(pos, &tuner_list, list) {
1090 if (pos->i2c->adapter != adap ||
1091 pos->i2c->driver->id != I2C_DRIVERID_TUNER)
1094 mode_mask = pos->mode_mask & ~T_STANDBY;
1095 if (*radio == NULL && mode_mask == T_RADIO)
1097 /* Note: currently TDA9887 is the only demod-only
1098 device. If other devices appear then we need to
1099 make this test more general. */
1100 else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
1101 (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV)))
1106 /* During client attach, set_type is called by adapter's attach_inform callback.
1107 set_type must then be completed by tuner_probe.
1109 static int tuner_probe(struct i2c_client *client,
1110 const struct i2c_device_id *id)
1113 struct tuner *radio;
1116 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
1120 strlcpy(client->name, "(tuner unset)", sizeof(client->name));
1121 i2c_set_clientdata(client, t);
1123 t->audmode = V4L2_TUNER_MODE_STEREO;
1124 t->mode_mask = T_UNINITIALIZED;
1127 unsigned char buffer[16];
1130 memset(buffer, 0, sizeof(buffer));
1131 rc = i2c_master_recv(client, buffer, sizeof(buffer));
1132 tuner_info("I2C RECV = ");
1133 for (i = 0; i < rc; i++)
1134 printk(KERN_CONT "%02x ", buffer[i]);
1137 /* HACK: This test was added to avoid tuner to probe tda9840 and
1138 tea6415c on the MXB card */
1139 if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) {
1144 /* autodetection code based on the i2c addr */
1145 if (!no_autodetect) {
1146 switch (client->addr) {
1148 if (tuner_symbol_probe(tea5761_autodetection,
1150 t->i2c->addr) >= 0) {
1151 t->type = TUNER_TEA5761;
1152 t->mode_mask = T_RADIO;
1153 t->mode = T_STANDBY;
1154 /* Sets freq to FM range */
1155 t->radio_freq = 87.5 * 16000;
1156 tuner_lookup(t->i2c->adapter, &radio, &tv);
1158 tv->mode_mask &= ~T_RADIO;
1160 goto register_client;
1167 /* If chip is not tda8290, don't register.
1168 since it can be tda9887*/
1169 if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter,
1170 t->i2c->addr) == 0) {
1171 tuner_dbg("tda829x detected\n");
1173 /* Default is being tda9887 */
1174 t->type = TUNER_TDA9887;
1175 t->mode_mask = T_RADIO | T_ANALOG_TV |
1177 t->mode = T_STANDBY;
1178 goto register_client;
1182 if (tuner_symbol_probe(tea5767_autodetection,
1183 t->i2c->adapter, t->i2c->addr)
1185 t->type = TUNER_TEA5767;
1186 t->mode_mask = T_RADIO;
1187 t->mode = T_STANDBY;
1188 /* Sets freq to FM range */
1189 t->radio_freq = 87.5 * 16000;
1190 tuner_lookup(t->i2c->adapter, &radio, &tv);
1192 tv->mode_mask &= ~T_RADIO;
1194 goto register_client;
1200 /* Initializes only the first TV tuner on this adapter. Why only the
1201 first? Because there are some devices (notably the ones with TI
1202 tuners) that have more than one i2c address for the *same* device.
1203 Experience shows that, except for just one case, the first
1204 address is the right one. The exception is a Russian tuner
1205 (ACORP_Y878F). So, the desired behavior is just to enable the
1206 first found TV tuner. */
1207 tuner_lookup(t->i2c->adapter, &radio, &tv);
1209 t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
1211 t->mode_mask |= T_RADIO;
1212 tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
1213 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
1214 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
1217 /* Should be just before return */
1219 tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1,
1220 client->adapter->name);
1222 /* Sets a default mode */
1223 if (t->mode_mask & T_ANALOG_TV) {
1224 t->mode = V4L2_TUNER_ANALOG_TV;
1225 } else if (t->mode_mask & T_RADIO) {
1226 t->mode = V4L2_TUNER_RADIO;
1228 t->mode = V4L2_TUNER_DIGITAL_TV;
1230 set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
1231 list_add_tail(&t->list, &tuner_list);
1235 static int tuner_legacy_probe(struct i2c_adapter *adap)
1238 normal_i2c[0] = addr;
1239 normal_i2c[1] = I2C_CLIENT_END;
1242 if ((adap->class & I2C_CLASS_TV_ANALOG) == 0)
1245 /* HACK: Ignore 0x6b and 0x6f on cx88 boards.
1246 * FusionHDTV5 RT Gold has an ir receiver at 0x6b
1247 * and an RTC at 0x6f which can get corrupted if probed.
1249 if ((adap->id == I2C_HW_B_CX2388x) ||
1250 (adap->id == I2C_HW_B_CX23885)) {
1253 while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END)
1255 if (i + 4 < I2C_CLIENT_MAX_OPTS) {
1256 ignore[i+0] = adap->nr;
1258 ignore[i+2] = adap->nr;
1260 ignore[i+4] = I2C_CLIENT_END;
1262 printk(KERN_WARNING "tuner: "
1263 "too many options specified "
1264 "in i2c probe ignore list!\n");
1269 static int tuner_remove(struct i2c_client *client)
1271 struct tuner *t = i2c_get_clientdata(client);
1273 tuner_detach(&t->fe);
1274 t->fe.analog_demod_priv = NULL;
1281 /* ----------------------------------------------------------------------- */
1283 static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1285 .driverid = I2C_DRIVERID_TUNER,
1286 .command = tuner_command,
1287 .probe = tuner_probe,
1288 .remove = tuner_remove,
1289 .suspend = tuner_suspend,
1290 .resume = tuner_resume,
1291 .legacy_probe = tuner_legacy_probe,
1296 * Overrides for Emacs so that we follow Linus's tabbing style.
1297 * ---------------------------------------------------------------------------