2 * i2c tv tuner chip device driver
3 * controls all those simple 4-control-bytes style tuners.
5 * This "tuner-simple" module was split apart from the original "tuner" module.
7 #include <linux/delay.h>
9 #include <linux/videodev2.h>
10 #include <media/tuner.h>
11 #include <media/v4l2-common.h>
12 #include <media/tuner-types.h>
13 #include "tuner-i2c.h"
14 #include "tuner-simple.h"
17 module_param(debug, int, 0644);
18 MODULE_PARM_DESC(debug, "enable verbose debug messages");
20 #define TUNER_SIMPLE_MAX 64
21 static unsigned int simple_devcount;
24 module_param(offset, int, 0664);
25 MODULE_PARM_DESC(offset, "Allows to specify an offset for tuner");
27 static unsigned int atv_input[TUNER_SIMPLE_MAX] = \
28 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
29 static unsigned int dtv_input[TUNER_SIMPLE_MAX] = \
30 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
31 module_param_array(atv_input, int, NULL, 0644);
32 module_param_array(dtv_input, int, NULL, 0644);
33 MODULE_PARM_DESC(atv_input, "specify atv rf input, 0 for autoselect");
34 MODULE_PARM_DESC(dtv_input, "specify dtv rf input, 0 for autoselect");
36 /* ---------------------------------------------------------------------- */
38 /* tv standard selection for Temic 4046 FM5
39 this value takes the low bits of control byte 2
40 from datasheet Rev.01, Feb.00
42 picture IF 38.9 38.9 38.9 33.95 38.9
43 sound 1 33.4 32.9 32.4 40.45 32.4
45 NICAM 33.05 32.348 33.05 33.05
47 #define TEMIC_SET_PAL_I 0x05
48 #define TEMIC_SET_PAL_DK 0x09
49 #define TEMIC_SET_PAL_L 0x0a /* SECAM ? */
50 #define TEMIC_SET_PAL_L2 0x0b /* change IF ! */
51 #define TEMIC_SET_PAL_BG 0x0c
53 /* tv tuner system standard selection for Philips FQ1216ME
54 this value takes the low bits of control byte 2
55 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
57 picture carrier 38.90 38.90 38.90 38.90 33.95
58 colour 34.47 34.47 34.47 34.47 38.38
59 sound 1 33.40 32.40 32.90 32.40 40.45
61 NICAM 33.05 33.05 32.35 33.05 39.80
63 #define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
64 #define PHILIPS_SET_PAL_BGDK 0x09
65 #define PHILIPS_SET_PAL_L2 0x0a
66 #define PHILIPS_SET_PAL_L 0x0b
68 /* system switching for Philips FI1216MF MK2
69 from datasheet "1996 Jul 09",
71 picture carrier 38.90 38.90 33.95
72 colour 34.47 34.37 38.38
73 sound 1 33.40 32.40 40.45
75 NICAM 33.05 33.05 39.80
77 #define PHILIPS_MF_SET_STD_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
78 #define PHILIPS_MF_SET_STD_L 0x03 /* Used on Secam France */
79 #define PHILIPS_MF_SET_STD_LC 0x02 /* Used on SECAM L' */
83 #define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
84 #define TUNER_RATIO_SELECT_50 0x00
85 #define TUNER_RATIO_SELECT_32 0x02
86 #define TUNER_RATIO_SELECT_166 0x04
87 #define TUNER_RATIO_SELECT_62 0x06
89 #define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
93 #define TUNER_POR 0x80
95 #define TUNER_MODE 0x38
96 #define TUNER_AFC 0x07
97 #define TUNER_SIGNAL 0x07
98 #define TUNER_STEREO 0x10
100 #define TUNER_PLL_LOCKED 0x40
101 #define TUNER_STEREO_MK3 0x04
103 static DEFINE_MUTEX(tuner_simple_list_mutex);
104 static LIST_HEAD(hybrid_tuner_instance_list);
106 struct tuner_simple_priv {
110 struct tuner_i2c_props i2c_props;
111 struct list_head hybrid_tuner_instance_list;
114 struct tunertype *tun;
120 /* ---------------------------------------------------------------------- */
122 static int tuner_read_status(struct dvb_frontend *fe)
124 struct tuner_simple_priv *priv = fe->tuner_priv;
127 if (1 != tuner_i2c_xfer_recv(&priv->i2c_props, &byte, 1))
133 static inline int tuner_signal(const int status)
135 return (status & TUNER_SIGNAL) << 13;
138 static inline int tuner_stereo(const int type, const int status)
141 case TUNER_PHILIPS_FM1216ME_MK3:
142 case TUNER_PHILIPS_FM1236_MK3:
143 case TUNER_PHILIPS_FM1256_IH3:
144 case TUNER_LG_NTSC_TAPE:
145 case TUNER_TCL_MF02GIP_5N:
146 return ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
148 return status & TUNER_STEREO;
152 static inline int tuner_islocked(const int status)
154 return (status & TUNER_FL);
157 static inline int tuner_afcstatus(const int status)
159 return (status & TUNER_AFC) - 2;
163 static int simple_get_status(struct dvb_frontend *fe, u32 *status)
165 struct tuner_simple_priv *priv = fe->tuner_priv;
168 if (priv->i2c_props.adap == NULL)
171 tuner_status = tuner_read_status(fe);
175 if (tuner_islocked(tuner_status))
176 *status = TUNER_STATUS_LOCKED;
177 if (tuner_stereo(priv->type, tuner_status))
178 *status |= TUNER_STATUS_STEREO;
180 tuner_dbg("AFC Status: %d\n", tuner_afcstatus(tuner_status));
185 static int simple_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
187 struct tuner_simple_priv *priv = fe->tuner_priv;
190 if (priv->i2c_props.adap == NULL)
193 signal = tuner_signal(tuner_read_status(fe));
197 tuner_dbg("Signal strength: %d\n", signal);
202 /* ---------------------------------------------------------------------- */
204 static inline char *tuner_param_name(enum param_type type)
209 case TUNER_PARAM_TYPE_RADIO:
212 case TUNER_PARAM_TYPE_PAL:
215 case TUNER_PARAM_TYPE_SECAM:
218 case TUNER_PARAM_TYPE_NTSC:
221 case TUNER_PARAM_TYPE_DIGITAL:
231 static struct tuner_params *simple_tuner_params(struct dvb_frontend *fe,
232 enum param_type desired_type)
234 struct tuner_simple_priv *priv = fe->tuner_priv;
235 struct tunertype *tun = priv->tun;
238 for (i = 0; i < tun->count; i++)
239 if (desired_type == tun->params[i].type)
242 /* use default tuner params if desired_type not available */
243 if (i == tun->count) {
244 tuner_dbg("desired params (%s) undefined for tuner %d\n",
245 tuner_param_name(desired_type), priv->type);
249 tuner_dbg("using tuner params #%d (%s)\n", i,
250 tuner_param_name(tun->params[i].type));
252 return &tun->params[i];
255 static int simple_config_lookup(struct dvb_frontend *fe,
256 struct tuner_params *t_params,
257 unsigned *frequency, u8 *config, u8 *cb)
259 struct tuner_simple_priv *priv = fe->tuner_priv;
262 for (i = 0; i < t_params->count; i++) {
263 if (*frequency > t_params->ranges[i].limit)
267 if (i == t_params->count) {
268 tuner_dbg("frequency out of range (%d > %d)\n",
269 *frequency, t_params->ranges[i - 1].limit);
270 *frequency = t_params->ranges[--i].limit;
272 *config = t_params->ranges[i].config;
273 *cb = t_params->ranges[i].cb;
275 tuner_dbg("freq = %d.%02d (%d), range = %d, "
276 "config = 0x%02x, cb = 0x%02x\n",
277 *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
283 /* ---------------------------------------------------------------------- */
285 static void simple_set_rf_input(struct dvb_frontend *fe,
286 u8 *config, u8 *cb, unsigned int rf)
288 struct tuner_simple_priv *priv = fe->tuner_priv;
290 switch (priv->type) {
291 case TUNER_PHILIPS_TUV1236D:
301 case TUNER_PHILIPS_FCV1236D:
316 static int simple_std_setup(struct dvb_frontend *fe,
317 struct analog_parameters *params,
320 struct tuner_simple_priv *priv = fe->tuner_priv;
324 /* tv norm specific stuff for multi-norm tuners */
325 switch (priv->type) {
326 case TUNER_PHILIPS_SECAM: /* FI1216MF */
327 /* 0x01 -> ??? no change ??? */
328 /* 0x02 -> PAL BDGHI / SECAM L */
329 /* 0x04 -> ??? PAL others / SECAM others ??? */
331 if (params->std & V4L2_STD_SECAM_L)
332 /* also valid for V4L2_STD_SECAM */
333 *cb |= PHILIPS_MF_SET_STD_L;
334 else if (params->std & V4L2_STD_SECAM_LC)
335 *cb |= PHILIPS_MF_SET_STD_LC;
336 else /* V4L2_STD_B|V4L2_STD_GH */
337 *cb |= PHILIPS_MF_SET_STD_BG;
340 case TUNER_TEMIC_4046FM5:
343 if (params->std & V4L2_STD_PAL_BG) {
344 *cb |= TEMIC_SET_PAL_BG;
346 } else if (params->std & V4L2_STD_PAL_I) {
347 *cb |= TEMIC_SET_PAL_I;
349 } else if (params->std & V4L2_STD_PAL_DK) {
350 *cb |= TEMIC_SET_PAL_DK;
352 } else if (params->std & V4L2_STD_SECAM_L) {
353 *cb |= TEMIC_SET_PAL_L;
358 case TUNER_PHILIPS_FQ1216ME:
361 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
362 *cb |= PHILIPS_SET_PAL_BGDK;
364 } else if (params->std & V4L2_STD_PAL_I) {
365 *cb |= PHILIPS_SET_PAL_I;
367 } else if (params->std & V4L2_STD_SECAM_L) {
368 *cb |= PHILIPS_SET_PAL_L;
373 case TUNER_PHILIPS_FCV1236D:
374 /* 0x00 -> ATSC antenna input 1 */
375 /* 0x01 -> ATSC antenna input 2 */
376 /* 0x02 -> NTSC antenna input 1 */
377 /* 0x03 -> NTSC antenna input 2 */
379 if (!(params->std & V4L2_STD_ATSC))
383 case TUNER_MICROTUNE_4042FI5:
384 /* Set the charge pump for fast tuning */
385 *config |= TUNER_CHARGE_PUMP;
388 case TUNER_PHILIPS_TUV1236D:
390 /* 0x40 -> ATSC antenna input 1 */
391 /* 0x48 -> ATSC antenna input 2 */
392 /* 0x00 -> NTSC antenna input 1 */
393 /* 0x08 -> NTSC antenna input 2 */
394 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
396 if (params->std & V4L2_STD_ATSC) {
400 /* set to the correct mode (analog or digital) */
401 tuneraddr = priv->i2c_props.addr;
402 priv->i2c_props.addr = 0x0a;
403 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[0], 2);
405 tuner_warn("i2c i/o error: rc == %d "
406 "(should be 2)\n", rc);
407 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[2], 2);
409 tuner_warn("i2c i/o error: rc == %d "
410 "(should be 2)\n", rc);
411 priv->i2c_props.addr = tuneraddr;
415 if (atv_input[priv->nr])
416 simple_set_rf_input(fe, config, cb, atv_input[priv->nr]);
421 static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
422 u16 div, u8 config, u8 cb)
424 struct tuner_simple_priv *priv = fe->tuner_priv;
427 switch (priv->type) {
428 case TUNER_LG_TDVS_H06XF:
429 /* Set the Auxiliary Byte. */
430 buffer[0] = buffer[2];
434 tuner_dbg("tv 0x%02x 0x%02x\n", buffer[0], buffer[1]);
436 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
438 tuner_warn("i2c i/o error: rc == %d "
439 "(should be 2)\n", rc);
441 case TUNER_MICROTUNE_4042FI5:
443 /* FIXME - this may also work for other tuners */
444 unsigned long timeout = jiffies + msecs_to_jiffies(1);
447 /* Wait until the PLL locks */
449 if (time_after(jiffies, timeout))
451 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
454 tuner_warn("i2c i/o read error: rc == %d "
455 "(should be 1)\n", rc);
458 if (status_byte & TUNER_PLL_LOCKED)
463 /* Set the charge pump for optimized phase noise figure */
464 config &= ~TUNER_CHARGE_PUMP;
465 buffer[0] = (div>>8) & 0x7f;
466 buffer[1] = div & 0xff;
469 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
470 buffer[0], buffer[1], buffer[2], buffer[3]);
472 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
474 tuner_warn("i2c i/o error: rc == %d "
475 "(should be 4)\n", rc);
483 static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
485 struct tuner_simple_priv *priv = fe->tuner_priv;
487 switch (priv->type) {
488 case TUNER_TENA_9533_DI:
489 case TUNER_YMEC_TVF_5533MF:
490 tuner_dbg("This tuner doesn't have FM. "
491 "Most cards have a TEA5767 for FM\n");
493 case TUNER_PHILIPS_FM1216ME_MK3:
494 case TUNER_PHILIPS_FM1236_MK3:
495 case TUNER_PHILIPS_FMD1216ME_MK3:
496 case TUNER_LG_NTSC_TAPE:
497 case TUNER_PHILIPS_FM1256_IH3:
498 case TUNER_TCL_MF02GIP_5N:
501 case TUNER_TNF_5335MF:
504 case TUNER_LG_PAL_FM:
507 case TUNER_THOMSON_DTT761X:
510 case TUNER_MICROTUNE_4049FM5:
519 /* ---------------------------------------------------------------------- */
521 static int simple_set_tv_freq(struct dvb_frontend *fe,
522 struct analog_parameters *params)
524 struct tuner_simple_priv *priv = fe->tuner_priv;
527 struct tunertype *tun;
530 enum param_type desired_type;
531 struct tuner_params *t_params;
535 /* IFPCoff = Video Intermediate Frequency - Vif:
536 940 =16*58.75 NTSC/J (Japan)
537 732 =16*45.75 M/N STD
538 704 =16*44 ATSC (at DVB code)
540 622.4=16*38.90 B/G D/K I, L STD
541 592 =16*37.00 D China
542 590 =16.36.875 B Australia
543 543.2=16*33.95 L' STD
544 171.2=16*10.70 FM Radio (at set_radio_freq)
547 if (params->std == V4L2_STD_NTSC_M_JP) {
549 desired_type = TUNER_PARAM_TYPE_NTSC;
550 } else if ((params->std & V4L2_STD_MN) &&
551 !(params->std & ~V4L2_STD_MN)) {
553 desired_type = TUNER_PARAM_TYPE_NTSC;
554 } else if (params->std == V4L2_STD_SECAM_LC) {
556 desired_type = TUNER_PARAM_TYPE_SECAM;
559 desired_type = TUNER_PARAM_TYPE_PAL;
562 t_params = simple_tuner_params(fe, desired_type);
564 i = simple_config_lookup(fe, t_params, ¶ms->frequency,
567 div = params->frequency + IFPCoff + offset;
569 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, "
570 "Offset=%d.%02d MHz, div=%0d\n",
571 params->frequency / 16, params->frequency % 16 * 100 / 16,
572 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
573 offset / 16, offset % 16 * 100 / 16, div);
575 /* tv norm specific stuff for multi-norm tuners */
576 simple_std_setup(fe, params, &config, &cb);
578 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
581 buffer[2] = (div>>8) & 0x7f;
582 buffer[3] = div & 0xff;
584 buffer[0] = (div>>8) & 0x7f;
585 buffer[1] = div & 0xff;
589 priv->last_div = div;
590 if (t_params->has_tda9887) {
591 struct v4l2_priv_tun_config tda9887_cfg;
593 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
594 V4L2_STD_SECAM_LC)) &&
595 !(params->std & ~(V4L2_STD_SECAM_L |
598 tda9887_cfg.tuner = TUNER_TDA9887;
599 tda9887_cfg.priv = &tda_config;
601 if (params->std == V4L2_STD_SECAM_LC) {
602 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
603 tda_config |= TDA9887_PORT1_ACTIVE;
604 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
605 tda_config |= TDA9887_PORT2_ACTIVE;
607 if (t_params->port1_active)
608 tda_config |= TDA9887_PORT1_ACTIVE;
609 if (t_params->port2_active)
610 tda_config |= TDA9887_PORT2_ACTIVE;
612 if (t_params->intercarrier_mode)
613 tda_config |= TDA9887_INTERCARRIER;
615 if (i == 0 && t_params->default_top_secam_low)
616 tda_config |= TDA9887_TOP(t_params->default_top_secam_low);
617 else if (i == 1 && t_params->default_top_secam_mid)
618 tda_config |= TDA9887_TOP(t_params->default_top_secam_mid);
619 else if (t_params->default_top_secam_high)
620 tda_config |= TDA9887_TOP(t_params->default_top_secam_high);
622 if (i == 0 && t_params->default_top_low)
623 tda_config |= TDA9887_TOP(t_params->default_top_low);
624 else if (i == 1 && t_params->default_top_mid)
625 tda_config |= TDA9887_TOP(t_params->default_top_mid);
626 else if (t_params->default_top_high)
627 tda_config |= TDA9887_TOP(t_params->default_top_high);
629 if (t_params->default_pll_gating_18)
630 tda_config |= TDA9887_GATING_18;
631 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
634 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
635 buffer[0], buffer[1], buffer[2], buffer[3]);
637 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
639 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
641 simple_post_tune(fe, &buffer[0], div, config, cb);
646 static int simple_set_radio_freq(struct dvb_frontend *fe,
647 struct analog_parameters *params)
649 struct tunertype *tun;
650 struct tuner_simple_priv *priv = fe->tuner_priv;
654 struct tuner_params *t_params;
655 unsigned int freq = params->frequency;
659 for (j = tun->count-1; j > 0; j--)
660 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
662 /* default t_params (j=0) will be used if desired type wasn't found */
663 t_params = &tun->params[j];
665 /* Select Radio 1st IF used */
666 switch (t_params->radio_if) {
667 case 0: /* 10.7 MHz */
668 freq += (unsigned int)(10.7*16000);
670 case 1: /* 33.3 MHz */
671 freq += (unsigned int)(33.3*16000);
673 case 2: /* 41.3 MHz */
674 freq += (unsigned int)(41.3*16000);
677 tuner_warn("Unsupported radio_if value %d\n",
682 /* Bandswitch byte */
683 simple_radio_bandswitch(fe, &buffer[0]);
685 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
686 TUNER_RATIO_SELECT_50; /* 50 kHz step */
688 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
689 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
691 div = (freq + 400) / 800;
693 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
694 buffer[0] = buffer[2];
695 buffer[1] = buffer[3];
696 buffer[2] = (div>>8) & 0x7f;
697 buffer[3] = div & 0xff;
699 buffer[0] = (div>>8) & 0x7f;
700 buffer[1] = div & 0xff;
703 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
704 buffer[0], buffer[1], buffer[2], buffer[3]);
705 priv->last_div = div;
707 if (t_params->has_tda9887) {
709 struct v4l2_priv_tun_config tda9887_cfg;
711 tda9887_cfg.tuner = TUNER_TDA9887;
712 tda9887_cfg.priv = &config;
714 if (t_params->port1_active &&
715 !t_params->port1_fm_high_sensitivity)
716 config |= TDA9887_PORT1_ACTIVE;
717 if (t_params->port2_active &&
718 !t_params->port2_fm_high_sensitivity)
719 config |= TDA9887_PORT2_ACTIVE;
720 if (t_params->intercarrier_mode)
721 config |= TDA9887_INTERCARRIER;
722 /* if (t_params->port1_set_for_fm_mono)
723 config &= ~TDA9887_PORT1_ACTIVE;*/
724 if (t_params->fm_gain_normal)
725 config |= TDA9887_GAIN_NORMAL;
726 if (t_params->radio_if == 2)
727 config |= TDA9887_RIF_41_3;
728 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
731 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
733 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
738 static int simple_set_params(struct dvb_frontend *fe,
739 struct analog_parameters *params)
741 struct tuner_simple_priv *priv = fe->tuner_priv;
744 if (priv->i2c_props.adap == NULL)
747 switch (params->mode) {
748 case V4L2_TUNER_RADIO:
749 ret = simple_set_radio_freq(fe, params);
750 priv->frequency = params->frequency * 125 / 2;
752 case V4L2_TUNER_ANALOG_TV:
753 case V4L2_TUNER_DIGITAL_TV:
754 ret = simple_set_tv_freq(fe, params);
755 priv->frequency = params->frequency * 62500;
763 static void simple_set_dvb(struct dvb_frontend *fe, u8 *buf,
764 const struct dvb_frontend_parameters *params)
766 struct tuner_simple_priv *priv = fe->tuner_priv;
768 switch (priv->type) {
769 case TUNER_PHILIPS_FMD1216ME_MK3:
770 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ &&
771 params->frequency >= 158870000)
774 case TUNER_PHILIPS_TD1316:
776 buf[3] |= (params->frequency < 161000000) ? 1 :
777 (params->frequency < 444000000) ? 2 : 4;
779 /* setup PLL filter */
780 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
783 case TUNER_PHILIPS_TUV1236D:
784 case TUNER_PHILIPS_FCV1236D:
788 if (dtv_input[priv->nr])
789 new_rf = dtv_input[priv->nr];
791 switch (params->u.vsb.modulation) {
801 simple_set_rf_input(fe, &buf[2], &buf[3], new_rf);
809 static u32 simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
810 const struct dvb_frontend_parameters *params)
812 /* This function returns the tuned frequency on success, 0 on error */
813 struct tuner_simple_priv *priv = fe->tuner_priv;
814 struct tunertype *tun = priv->tun;
815 static struct tuner_params *t_params;
819 unsigned frequency = params->frequency / 62500;
821 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
822 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
824 return 0; /* failure */
826 div = ((frequency + t_params->iffreq) * 62500 + offset +
827 tun->stepsize/2) / tun->stepsize;
834 simple_set_dvb(fe, buf, params);
836 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
837 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
839 /* calculate the frequency we set it to */
840 return (div * tun->stepsize) - t_params->iffreq;
843 static int simple_dvb_calc_regs(struct dvb_frontend *fe,
844 struct dvb_frontend_parameters *params,
845 u8 *buf, int buf_len)
847 struct tuner_simple_priv *priv = fe->tuner_priv;
853 frequency = simple_dvb_configure(fe, buf+1, params);
857 buf[0] = priv->i2c_props.addr;
859 priv->frequency = frequency;
860 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
861 params->u.ofdm.bandwidth : 0;
866 static int simple_dvb_set_params(struct dvb_frontend *fe,
867 struct dvb_frontend_parameters *params)
869 struct tuner_simple_priv *priv = fe->tuner_priv;
870 u32 prev_freq, prev_bw;
874 if (priv->i2c_props.adap == NULL)
877 prev_freq = priv->frequency;
878 prev_bw = priv->bandwidth;
880 ret = simple_dvb_calc_regs(fe, params, buf, 5);
884 /* put analog demod in standby when tuning digital */
885 if (fe->ops.analog_ops.standby)
886 fe->ops.analog_ops.standby(fe);
888 if (fe->ops.i2c_gate_ctrl)
889 fe->ops.i2c_gate_ctrl(fe, 1);
891 /* buf[0] contains the i2c address, but *
892 * we already have it in i2c_props.addr */
893 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
899 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
900 priv->frequency = prev_freq;
901 priv->bandwidth = prev_bw;
906 static int simple_init(struct dvb_frontend *fe)
908 struct tuner_simple_priv *priv = fe->tuner_priv;
910 if (priv->i2c_props.adap == NULL)
913 if (priv->tun->initdata) {
916 if (fe->ops.i2c_gate_ctrl)
917 fe->ops.i2c_gate_ctrl(fe, 1);
919 ret = tuner_i2c_xfer_send(&priv->i2c_props,
920 priv->tun->initdata + 1,
921 priv->tun->initdata[0]);
922 if (ret != priv->tun->initdata[0])
929 static int simple_sleep(struct dvb_frontend *fe)
931 struct tuner_simple_priv *priv = fe->tuner_priv;
933 if (priv->i2c_props.adap == NULL)
936 if (priv->tun->sleepdata) {
939 if (fe->ops.i2c_gate_ctrl)
940 fe->ops.i2c_gate_ctrl(fe, 1);
942 ret = tuner_i2c_xfer_send(&priv->i2c_props,
943 priv->tun->sleepdata + 1,
944 priv->tun->sleepdata[0]);
945 if (ret != priv->tun->sleepdata[0])
952 static int simple_release(struct dvb_frontend *fe)
954 struct tuner_simple_priv *priv = fe->tuner_priv;
956 mutex_lock(&tuner_simple_list_mutex);
959 hybrid_tuner_release_state(priv);
961 mutex_unlock(&tuner_simple_list_mutex);
963 fe->tuner_priv = NULL;
968 static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
970 struct tuner_simple_priv *priv = fe->tuner_priv;
971 *frequency = priv->frequency;
975 static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
977 struct tuner_simple_priv *priv = fe->tuner_priv;
978 *bandwidth = priv->bandwidth;
982 static struct dvb_tuner_ops simple_tuner_ops = {
984 .sleep = simple_sleep,
985 .set_analog_params = simple_set_params,
986 .set_params = simple_dvb_set_params,
987 .calc_regs = simple_dvb_calc_regs,
988 .release = simple_release,
989 .get_frequency = simple_get_frequency,
990 .get_bandwidth = simple_get_bandwidth,
991 .get_status = simple_get_status,
992 .get_rf_strength = simple_get_rf_strength,
995 struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
996 struct i2c_adapter *i2c_adap,
1000 struct tuner_simple_priv *priv = NULL;
1003 if (type >= tuner_count) {
1004 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
1005 __func__, type, tuner_count-1);
1009 /* If i2c_adap is set, check that the tuner is at the correct address.
1010 * Otherwise, if i2c_adap is NULL, the tuner will be programmed directly
1011 * by the digital demod via calc_regs.
1013 if (i2c_adap != NULL) {
1015 struct i2c_msg msg = {
1016 .addr = i2c_addr, .flags = I2C_M_RD,
1020 if (fe->ops.i2c_gate_ctrl)
1021 fe->ops.i2c_gate_ctrl(fe, 1);
1023 if (1 != i2c_transfer(i2c_adap, &msg, 1))
1024 printk(KERN_WARNING "tuner-simple %d-%04x: "
1025 "unable to probe %s, proceeding anyway.",
1026 i2c_adapter_id(i2c_adap), i2c_addr,
1029 if (fe->ops.i2c_gate_ctrl)
1030 fe->ops.i2c_gate_ctrl(fe, 0);
1033 mutex_lock(&tuner_simple_list_mutex);
1035 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
1036 hybrid_tuner_instance_list,
1041 mutex_unlock(&tuner_simple_list_mutex);
1044 fe->tuner_priv = priv;
1047 priv->tun = &tuners[type];
1048 priv->nr = simple_devcount++;
1051 fe->tuner_priv = priv;
1055 mutex_unlock(&tuner_simple_list_mutex);
1057 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
1058 sizeof(struct dvb_tuner_ops));
1060 tuner_info("type set to %d (%s)\n", type, priv->tun->name);
1062 if ((debug) || ((atv_input[priv->nr] > 0) ||
1063 (dtv_input[priv->nr] > 0))) {
1064 if (0 == atv_input[priv->nr])
1065 tuner_info("tuner %d atv rf input will be "
1066 "autoselected\n", priv->nr);
1068 tuner_info("tuner %d atv rf input will be "
1069 "set to input %d (insmod option)\n",
1070 priv->nr, atv_input[priv->nr]);
1071 if (0 == dtv_input[priv->nr])
1072 tuner_info("tuner %d dtv rf input will be "
1073 "autoselected\n", priv->nr);
1075 tuner_info("tuner %d dtv rf input will be "
1076 "set to input %d (insmod option)\n",
1077 priv->nr, dtv_input[priv->nr]);
1080 strlcpy(fe->ops.tuner_ops.info.name, priv->tun->name,
1081 sizeof(fe->ops.tuner_ops.info.name));
1085 EXPORT_SYMBOL_GPL(simple_tuner_attach);
1087 MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
1088 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1089 MODULE_LICENSE("GPL");
1092 * Overrides for Emacs so that we follow Linus's tabbing style.
1093 * ---------------------------------------------------------------------------