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/videodev.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");
21 module_param(offset, int, 0664);
22 MODULE_PARM_DESC(offset, "Allows to specify an offset for tuner");
24 /* ---------------------------------------------------------------------- */
26 /* tv standard selection for Temic 4046 FM5
27 this value takes the low bits of control byte 2
28 from datasheet Rev.01, Feb.00
30 picture IF 38.9 38.9 38.9 33.95 38.9
31 sound 1 33.4 32.9 32.4 40.45 32.4
33 NICAM 33.05 32.348 33.05 33.05
35 #define TEMIC_SET_PAL_I 0x05
36 #define TEMIC_SET_PAL_DK 0x09
37 #define TEMIC_SET_PAL_L 0x0a /* SECAM ? */
38 #define TEMIC_SET_PAL_L2 0x0b /* change IF ! */
39 #define TEMIC_SET_PAL_BG 0x0c
41 /* tv tuner system standard selection for Philips FQ1216ME
42 this value takes the low bits of control byte 2
43 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
45 picture carrier 38.90 38.90 38.90 38.90 33.95
46 colour 34.47 34.47 34.47 34.47 38.38
47 sound 1 33.40 32.40 32.90 32.40 40.45
49 NICAM 33.05 33.05 32.35 33.05 39.80
51 #define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
52 #define PHILIPS_SET_PAL_BGDK 0x09
53 #define PHILIPS_SET_PAL_L2 0x0a
54 #define PHILIPS_SET_PAL_L 0x0b
56 /* system switching for Philips FI1216MF MK2
57 from datasheet "1996 Jul 09",
59 picture carrier 38.90 38.90 33.95
60 colour 34.47 34.37 38.38
61 sound 1 33.40 32.40 40.45
63 NICAM 33.05 33.05 39.80
65 #define PHILIPS_MF_SET_STD_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
66 #define PHILIPS_MF_SET_STD_L 0x03 /* Used on Secam France */
67 #define PHILIPS_MF_SET_STD_LC 0x02 /* Used on SECAM L' */
71 #define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
72 #define TUNER_RATIO_SELECT_50 0x00
73 #define TUNER_RATIO_SELECT_32 0x02
74 #define TUNER_RATIO_SELECT_166 0x04
75 #define TUNER_RATIO_SELECT_62 0x06
77 #define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
81 #define TUNER_POR 0x80
83 #define TUNER_MODE 0x38
84 #define TUNER_AFC 0x07
85 #define TUNER_SIGNAL 0x07
86 #define TUNER_STEREO 0x10
88 #define TUNER_PLL_LOCKED 0x40
89 #define TUNER_STEREO_MK3 0x04
91 static DEFINE_MUTEX(tuner_simple_list_mutex);
92 static LIST_HEAD(hybrid_tuner_instance_list);
94 struct tuner_simple_priv {
97 struct tuner_i2c_props i2c_props;
98 struct list_head hybrid_tuner_instance_list;
101 struct tunertype *tun;
107 /* ---------------------------------------------------------------------- */
109 static int tuner_read_status(struct dvb_frontend *fe)
111 struct tuner_simple_priv *priv = fe->tuner_priv;
114 if (1 != tuner_i2c_xfer_recv(&priv->i2c_props, &byte, 1))
120 static inline int tuner_signal(const int status)
122 return (status & TUNER_SIGNAL) << 13;
125 static inline int tuner_stereo(const int type, const int status)
128 case TUNER_PHILIPS_FM1216ME_MK3:
129 case TUNER_PHILIPS_FM1236_MK3:
130 case TUNER_PHILIPS_FM1256_IH3:
131 case TUNER_LG_NTSC_TAPE:
132 return ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
134 return status & TUNER_STEREO;
138 static inline int tuner_islocked(const int status)
140 return (status & TUNER_FL);
143 static inline int tuner_afcstatus(const int status)
145 return (status & TUNER_AFC) - 2;
149 static int simple_get_status(struct dvb_frontend *fe, u32 *status)
151 struct tuner_simple_priv *priv = fe->tuner_priv;
154 if (priv->i2c_props.adap == NULL)
157 tuner_status = tuner_read_status(fe);
161 if (tuner_islocked(tuner_status))
162 *status = TUNER_STATUS_LOCKED;
163 if (tuner_stereo(priv->type, tuner_status))
164 *status |= TUNER_STATUS_STEREO;
166 tuner_dbg("AFC Status: %d\n", tuner_afcstatus(tuner_status));
171 static int simple_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
173 struct tuner_simple_priv *priv = fe->tuner_priv;
176 if (priv->i2c_props.adap == NULL)
179 signal = tuner_signal(tuner_read_status(fe));
183 tuner_dbg("Signal strength: %d\n", signal);
188 /* ---------------------------------------------------------------------- */
190 static inline char *tuner_param_name(enum param_type type)
195 case TUNER_PARAM_TYPE_RADIO:
198 case TUNER_PARAM_TYPE_PAL:
201 case TUNER_PARAM_TYPE_SECAM:
204 case TUNER_PARAM_TYPE_NTSC:
207 case TUNER_PARAM_TYPE_DIGITAL:
217 static struct tuner_params *simple_tuner_params(struct dvb_frontend *fe,
218 enum param_type desired_type)
220 struct tuner_simple_priv *priv = fe->tuner_priv;
221 struct tunertype *tun = priv->tun;
224 for (i = 0; i < tun->count; i++)
225 if (desired_type == tun->params[i].type)
228 /* use default tuner params if desired_type not available */
229 if (i == tun->count) {
230 tuner_dbg("desired params (%s) undefined for tuner %d\n",
231 tuner_param_name(desired_type), priv->type);
235 tuner_dbg("using tuner params #%d (%s)\n", i,
236 tuner_param_name(tun->params[i].type));
238 return &tun->params[i];
241 static int simple_config_lookup(struct dvb_frontend *fe,
242 struct tuner_params *t_params,
243 int *frequency, u8 *config, u8 *cb)
245 struct tuner_simple_priv *priv = fe->tuner_priv;
248 for (i = 0; i < t_params->count; i++) {
249 if (*frequency > t_params->ranges[i].limit)
253 if (i == t_params->count) {
254 tuner_dbg("frequency out of range (%d > %d)\n",
255 *frequency, t_params->ranges[i - 1].limit);
256 *frequency = t_params->ranges[--i].limit;
258 *config = t_params->ranges[i].config;
259 *cb = t_params->ranges[i].cb;
261 tuner_dbg("freq = %d.%02d (%d), range = %d, "
262 "config = 0x%02x, cb = 0x%02x\n",
263 *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
269 /* ---------------------------------------------------------------------- */
271 static void simple_set_rf_input(struct dvb_frontend *fe,
272 u8 *config, u8 *cb, unsigned int rf)
274 struct tuner_simple_priv *priv = fe->tuner_priv;
276 switch (priv->type) {
277 case TUNER_PHILIPS_TUV1236D:
287 case TUNER_PHILIPS_ATSC:
302 static int simple_std_setup(struct dvb_frontend *fe,
303 struct analog_parameters *params,
306 struct tuner_simple_priv *priv = fe->tuner_priv;
310 /* tv norm specific stuff for multi-norm tuners */
311 switch (priv->type) {
312 case TUNER_PHILIPS_SECAM: /* FI1216MF */
313 /* 0x01 -> ??? no change ??? */
314 /* 0x02 -> PAL BDGHI / SECAM L */
315 /* 0x04 -> ??? PAL others / SECAM others ??? */
317 if (params->std & V4L2_STD_SECAM_L)
318 /* also valid for V4L2_STD_SECAM */
319 *cb |= PHILIPS_MF_SET_STD_L;
320 else if (params->std & V4L2_STD_SECAM_LC)
321 *cb |= PHILIPS_MF_SET_STD_LC;
322 else /* V4L2_STD_B|V4L2_STD_GH */
323 *cb |= PHILIPS_MF_SET_STD_BG;
326 case TUNER_TEMIC_4046FM5:
329 if (params->std & V4L2_STD_PAL_BG) {
330 *cb |= TEMIC_SET_PAL_BG;
332 } else if (params->std & V4L2_STD_PAL_I) {
333 *cb |= TEMIC_SET_PAL_I;
335 } else if (params->std & V4L2_STD_PAL_DK) {
336 *cb |= TEMIC_SET_PAL_DK;
338 } else if (params->std & V4L2_STD_SECAM_L) {
339 *cb |= TEMIC_SET_PAL_L;
344 case TUNER_PHILIPS_FQ1216ME:
347 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
348 *cb |= PHILIPS_SET_PAL_BGDK;
350 } else if (params->std & V4L2_STD_PAL_I) {
351 *cb |= PHILIPS_SET_PAL_I;
353 } else if (params->std & V4L2_STD_SECAM_L) {
354 *cb |= PHILIPS_SET_PAL_L;
359 case TUNER_PHILIPS_ATSC:
360 /* 0x00 -> ATSC antenna input 1 */
361 /* 0x01 -> ATSC antenna input 2 */
362 /* 0x02 -> NTSC antenna input 1 */
363 /* 0x03 -> NTSC antenna input 2 */
365 if (!(params->std & V4L2_STD_ATSC))
370 case TUNER_MICROTUNE_4042FI5:
371 /* Set the charge pump for fast tuning */
372 *config |= TUNER_CHARGE_PUMP;
375 case TUNER_PHILIPS_TUV1236D:
377 /* 0x40 -> ATSC antenna input 1 */
378 /* 0x48 -> ATSC antenna input 2 */
379 /* 0x00 -> NTSC antenna input 1 */
380 /* 0x08 -> NTSC antenna input 2 */
381 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
383 if (params->std & V4L2_STD_ATSC) {
387 /* set to the correct mode (analog or digital) */
388 tuneraddr = priv->i2c_props.addr;
389 priv->i2c_props.addr = 0x0a;
390 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[0], 2);
392 tuner_warn("i2c i/o error: rc == %d "
393 "(should be 2)\n", rc);
394 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[2], 2);
396 tuner_warn("i2c i/o error: rc == %d "
397 "(should be 2)\n", rc);
398 priv->i2c_props.addr = tuneraddr;
407 static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
408 u16 div, u8 config, u8 cb)
410 struct tuner_simple_priv *priv = fe->tuner_priv;
413 switch (priv->type) {
414 case TUNER_LG_TDVS_H06XF:
415 /* Set the Auxiliary Byte. */
416 buffer[0] = buffer[2];
420 tuner_dbg("tv 0x%02x 0x%02x\n", buffer[0], buffer[1]);
422 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
424 tuner_warn("i2c i/o error: rc == %d "
425 "(should be 2)\n", rc);
427 case TUNER_MICROTUNE_4042FI5:
429 /* FIXME - this may also work for other tuners */
430 unsigned long timeout = jiffies + msecs_to_jiffies(1);
433 /* Wait until the PLL locks */
435 if (time_after(jiffies, timeout))
437 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
440 tuner_warn("i2c i/o read error: rc == %d "
441 "(should be 1)\n", rc);
444 if (status_byte & TUNER_PLL_LOCKED)
449 /* Set the charge pump for optimized phase noise figure */
450 config &= ~TUNER_CHARGE_PUMP;
451 buffer[0] = (div>>8) & 0x7f;
452 buffer[1] = div & 0xff;
455 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
456 buffer[0], buffer[1], buffer[2], buffer[3]);
458 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
460 tuner_warn("i2c i/o error: rc == %d "
461 "(should be 4)\n", rc);
469 static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
471 struct tuner_simple_priv *priv = fe->tuner_priv;
473 switch (priv->type) {
474 case TUNER_TENA_9533_DI:
475 case TUNER_YMEC_TVF_5533MF:
476 tuner_dbg("This tuner doesn't have FM. "
477 "Most cards have a TEA5767 for FM\n");
479 case TUNER_PHILIPS_FM1216ME_MK3:
480 case TUNER_PHILIPS_FM1236_MK3:
481 case TUNER_PHILIPS_FMD1216ME_MK3:
482 case TUNER_LG_NTSC_TAPE:
483 case TUNER_PHILIPS_FM1256_IH3:
486 case TUNER_TNF_5335MF:
489 case TUNER_LG_PAL_FM:
492 case TUNER_THOMSON_DTT761X:
495 case TUNER_MICROTUNE_4049FM5:
504 /* ---------------------------------------------------------------------- */
506 static int simple_set_tv_freq(struct dvb_frontend *fe,
507 struct analog_parameters *params)
509 struct tuner_simple_priv *priv = fe->tuner_priv;
512 struct tunertype *tun;
515 enum param_type desired_type;
516 struct tuner_params *t_params;
520 /* IFPCoff = Video Intermediate Frequency - Vif:
521 940 =16*58.75 NTSC/J (Japan)
522 732 =16*45.75 M/N STD
523 704 =16*44 ATSC (at DVB code)
525 622.4=16*38.90 B/G D/K I, L STD
526 592 =16*37.00 D China
527 590 =16.36.875 B Australia
528 543.2=16*33.95 L' STD
529 171.2=16*10.70 FM Radio (at set_radio_freq)
532 if (params->std == V4L2_STD_NTSC_M_JP) {
534 desired_type = TUNER_PARAM_TYPE_NTSC;
535 } else if ((params->std & V4L2_STD_MN) &&
536 !(params->std & ~V4L2_STD_MN)) {
538 desired_type = TUNER_PARAM_TYPE_NTSC;
539 } else if (params->std == V4L2_STD_SECAM_LC) {
541 desired_type = TUNER_PARAM_TYPE_SECAM;
544 desired_type = TUNER_PARAM_TYPE_PAL;
547 t_params = simple_tuner_params(fe, desired_type);
549 i = simple_config_lookup(fe, t_params, ¶ms->frequency,
552 div = params->frequency + IFPCoff + offset;
554 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, "
555 "Offset=%d.%02d MHz, div=%0d\n",
556 params->frequency / 16, params->frequency % 16 * 100 / 16,
557 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
558 offset / 16, offset % 16 * 100 / 16, div);
560 /* tv norm specific stuff for multi-norm tuners */
561 simple_std_setup(fe, params, &config, &cb);
563 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
566 buffer[2] = (div>>8) & 0x7f;
567 buffer[3] = div & 0xff;
569 buffer[0] = (div>>8) & 0x7f;
570 buffer[1] = div & 0xff;
574 priv->last_div = div;
575 if (t_params->has_tda9887) {
576 struct v4l2_priv_tun_config tda9887_cfg;
578 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
579 V4L2_STD_SECAM_LC)) &&
580 !(params->std & ~(V4L2_STD_SECAM_L |
583 tda9887_cfg.tuner = TUNER_TDA9887;
584 tda9887_cfg.priv = &config;
586 if (params->std == V4L2_STD_SECAM_LC) {
587 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
588 config |= TDA9887_PORT1_ACTIVE;
589 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
590 config |= TDA9887_PORT2_ACTIVE;
592 if (t_params->port1_active)
593 config |= TDA9887_PORT1_ACTIVE;
594 if (t_params->port2_active)
595 config |= TDA9887_PORT2_ACTIVE;
597 if (t_params->intercarrier_mode)
598 config |= TDA9887_INTERCARRIER;
600 if (i == 0 && t_params->default_top_secam_low)
601 config |= TDA9887_TOP(t_params->default_top_secam_low);
602 else if (i == 1 && t_params->default_top_secam_mid)
603 config |= TDA9887_TOP(t_params->default_top_secam_mid);
604 else if (t_params->default_top_secam_high)
605 config |= TDA9887_TOP(t_params->default_top_secam_high);
607 if (i == 0 && t_params->default_top_low)
608 config |= TDA9887_TOP(t_params->default_top_low);
609 else if (i == 1 && t_params->default_top_mid)
610 config |= TDA9887_TOP(t_params->default_top_mid);
611 else if (t_params->default_top_high)
612 config |= TDA9887_TOP(t_params->default_top_high);
614 if (t_params->default_pll_gating_18)
615 config |= TDA9887_GATING_18;
616 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
619 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
620 buffer[0], buffer[1], buffer[2], buffer[3]);
622 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
624 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
626 simple_post_tune(fe, &buffer[0], div, config, cb);
631 static int simple_set_radio_freq(struct dvb_frontend *fe,
632 struct analog_parameters *params)
634 struct tunertype *tun;
635 struct tuner_simple_priv *priv = fe->tuner_priv;
639 struct tuner_params *t_params;
640 unsigned int freq = params->frequency;
644 for (j = tun->count-1; j > 0; j--)
645 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
647 /* default t_params (j=0) will be used if desired type wasn't found */
648 t_params = &tun->params[j];
650 /* Select Radio 1st IF used */
651 switch (t_params->radio_if) {
652 case 0: /* 10.7 MHz */
653 freq += (unsigned int)(10.7*16000);
655 case 1: /* 33.3 MHz */
656 freq += (unsigned int)(33.3*16000);
658 case 2: /* 41.3 MHz */
659 freq += (unsigned int)(41.3*16000);
662 tuner_warn("Unsupported radio_if value %d\n",
667 /* Bandswitch byte */
668 simple_radio_bandswitch(fe, &buffer[0]);
670 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
671 TUNER_RATIO_SELECT_50; /* 50 kHz step */
673 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
674 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
676 div = (freq + 400) / 800;
678 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
679 buffer[0] = buffer[2];
680 buffer[1] = buffer[3];
681 buffer[2] = (div>>8) & 0x7f;
682 buffer[3] = div & 0xff;
684 buffer[0] = (div>>8) & 0x7f;
685 buffer[1] = div & 0xff;
688 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
689 buffer[0], buffer[1], buffer[2], buffer[3]);
690 priv->last_div = div;
692 if (t_params->has_tda9887) {
694 struct v4l2_priv_tun_config tda9887_cfg;
696 tda9887_cfg.tuner = TUNER_TDA9887;
697 tda9887_cfg.priv = &config;
699 if (t_params->port1_active &&
700 !t_params->port1_fm_high_sensitivity)
701 config |= TDA9887_PORT1_ACTIVE;
702 if (t_params->port2_active &&
703 !t_params->port2_fm_high_sensitivity)
704 config |= TDA9887_PORT2_ACTIVE;
705 if (t_params->intercarrier_mode)
706 config |= TDA9887_INTERCARRIER;
707 /* if (t_params->port1_set_for_fm_mono)
708 config &= ~TDA9887_PORT1_ACTIVE;*/
709 if (t_params->fm_gain_normal)
710 config |= TDA9887_GAIN_NORMAL;
711 if (t_params->radio_if == 2)
712 config |= TDA9887_RIF_41_3;
713 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
716 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
718 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
723 static int simple_set_params(struct dvb_frontend *fe,
724 struct analog_parameters *params)
726 struct tuner_simple_priv *priv = fe->tuner_priv;
729 if (priv->i2c_props.adap == NULL)
732 switch (params->mode) {
733 case V4L2_TUNER_RADIO:
734 ret = simple_set_radio_freq(fe, params);
735 priv->frequency = params->frequency * 125 / 2;
737 case V4L2_TUNER_ANALOG_TV:
738 case V4L2_TUNER_DIGITAL_TV:
739 ret = simple_set_tv_freq(fe, params);
740 priv->frequency = params->frequency * 62500;
748 static void simple_set_dvb(struct dvb_frontend *fe, u8 *buf,
749 const struct dvb_frontend_parameters *params)
751 struct tuner_simple_priv *priv = fe->tuner_priv;
753 switch (priv->type) {
754 case TUNER_PHILIPS_FMD1216ME_MK3:
755 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ &&
756 params->frequency >= 158870000)
759 case TUNER_PHILIPS_TUV1236D:
760 case TUNER_PHILIPS_ATSC:
764 switch (params->u.vsb.modulation) {
774 simple_set_rf_input(fe, &buf[2], &buf[3], new_rf);
782 static int simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
783 const struct dvb_frontend_parameters *params)
785 struct tuner_simple_priv *priv = fe->tuner_priv;
786 struct tunertype *tun = priv->tun;
787 static struct tuner_params *t_params;
790 int ret, frequency = params->frequency / 62500;
792 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
793 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
797 div = ((frequency + t_params->iffreq) * 62500 + offset +
798 tun->stepsize/2) / tun->stepsize;
805 simple_set_dvb(fe, buf, params);
807 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
808 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
810 /* calculate the frequency we set it to */
811 return (div * tun->stepsize) - t_params->iffreq;
814 static int simple_dvb_calc_regs(struct dvb_frontend *fe,
815 struct dvb_frontend_parameters *params,
816 u8 *buf, int buf_len)
818 struct tuner_simple_priv *priv = fe->tuner_priv;
825 ret = simple_dvb_configure(fe, buf+1, params);
831 buf[0] = priv->i2c_props.addr;
833 priv->frequency = frequency;
834 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
835 params->u.ofdm.bandwidth : 0;
840 static int simple_dvb_set_params(struct dvb_frontend *fe,
841 struct dvb_frontend_parameters *params)
843 struct tuner_simple_priv *priv = fe->tuner_priv;
844 u32 prev_freq, prev_bw;
848 if (priv->i2c_props.adap == NULL)
851 prev_freq = priv->frequency;
852 prev_bw = priv->bandwidth;
854 ret = simple_dvb_calc_regs(fe, params, buf, 5);
858 /* put analog demod in standby when tuning digital */
859 if (fe->ops.analog_ops.standby)
860 fe->ops.analog_ops.standby(fe);
862 if (fe->ops.i2c_gate_ctrl)
863 fe->ops.i2c_gate_ctrl(fe, 1);
865 /* buf[0] contains the i2c address, but *
866 * we already have it in i2c_props.addr */
867 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
873 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
874 priv->frequency = prev_freq;
875 priv->bandwidth = prev_bw;
880 static int simple_init(struct dvb_frontend *fe)
882 struct tuner_simple_priv *priv = fe->tuner_priv;
884 if (priv->i2c_props.adap == NULL)
887 if (priv->tun->initdata) {
890 if (fe->ops.i2c_gate_ctrl)
891 fe->ops.i2c_gate_ctrl(fe, 1);
893 ret = tuner_i2c_xfer_send(&priv->i2c_props,
894 priv->tun->initdata + 1,
895 priv->tun->initdata[0]);
896 if (ret != priv->tun->initdata[0])
903 static int simple_sleep(struct dvb_frontend *fe)
905 struct tuner_simple_priv *priv = fe->tuner_priv;
907 if (priv->i2c_props.adap == NULL)
910 if (priv->tun->sleepdata) {
913 if (fe->ops.i2c_gate_ctrl)
914 fe->ops.i2c_gate_ctrl(fe, 1);
916 ret = tuner_i2c_xfer_send(&priv->i2c_props,
917 priv->tun->sleepdata + 1,
918 priv->tun->sleepdata[0]);
919 if (ret != priv->tun->sleepdata[0])
926 static int simple_release(struct dvb_frontend *fe)
928 struct tuner_simple_priv *priv = fe->tuner_priv;
930 mutex_lock(&tuner_simple_list_mutex);
933 hybrid_tuner_release_state(priv);
935 mutex_unlock(&tuner_simple_list_mutex);
937 fe->tuner_priv = NULL;
942 static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
944 struct tuner_simple_priv *priv = fe->tuner_priv;
945 *frequency = priv->frequency;
949 static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
951 struct tuner_simple_priv *priv = fe->tuner_priv;
952 *bandwidth = priv->bandwidth;
956 static struct dvb_tuner_ops simple_tuner_ops = {
958 .sleep = simple_sleep,
959 .set_analog_params = simple_set_params,
960 .set_params = simple_dvb_set_params,
961 .calc_regs = simple_dvb_calc_regs,
962 .release = simple_release,
963 .get_frequency = simple_get_frequency,
964 .get_bandwidth = simple_get_bandwidth,
965 .get_status = simple_get_status,
966 .get_rf_strength = simple_get_rf_strength,
969 struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
970 struct i2c_adapter *i2c_adap,
974 struct tuner_simple_priv *priv = NULL;
977 if (type >= tuner_count) {
978 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
979 __FUNCTION__, type, tuner_count-1);
983 mutex_lock(&tuner_simple_list_mutex);
985 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
986 hybrid_tuner_instance_list,
991 mutex_unlock(&tuner_simple_list_mutex);
995 fe->tuner_priv = priv;
998 priv->tun = &tuners[type];
1001 fe->tuner_priv = priv;
1005 mutex_unlock(&tuner_simple_list_mutex);
1007 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
1008 sizeof(struct dvb_tuner_ops));
1010 tuner_info("type set to %d (%s)\n", type, priv->tun->name);
1012 strlcpy(fe->ops.tuner_ops.info.name, priv->tun->name,
1013 sizeof(fe->ops.tuner_ops.info.name));
1017 EXPORT_SYMBOL_GPL(simple_tuner_attach);
1019 MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
1020 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1021 MODULE_LICENSE("GPL");
1024 * Overrides for Emacs so that we follow Linus's tabbing style.
1025 * ---------------------------------------------------------------------------