2 tda18271-fe.c - driver for the Philips / NXP TDA18271 silicon tuner
4 Copyright (C) 2007, 2008 Michael Krufky <mkrufky@linuxtv.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/delay.h>
22 #include <linux/videodev2.h>
23 #include "tda18271-priv.h"
26 module_param_named(debug, tda18271_debug, int, 0644);
27 MODULE_PARM_DESC(debug, "set debug level "
28 "(info=1, map=2, reg=4, adv=8, cal=16 (or-able))");
30 static LIST_HEAD(tda18271_list);
31 static DEFINE_MUTEX(tda18271_list_mutex);
33 /*---------------------------------------------------------------------*/
35 static int tda18271_ir_cal_init(struct dvb_frontend *fe)
37 struct tda18271_priv *priv = fe->tuner_priv;
38 unsigned char *regs = priv->tda18271_regs;
40 tda18271_read_regs(fe);
42 /* test IR_CAL_OK to see if we need init */
43 if ((regs[R_EP1] & 0x08) == 0)
44 tda18271_init_regs(fe);
49 /* ------------------------------------------------------------------ */
51 static int tda18271_channel_configuration(struct dvb_frontend *fe,
52 u32 ifc, u32 freq, u32 bw, u8 std,
55 struct tda18271_priv *priv = fe->tuner_priv;
56 unsigned char *regs = priv->tda18271_regs;
59 /* update TV broadcast parameters */
62 regs[R_EP3] &= ~0x1f; /* clear std bits */
65 /* set cal mode to normal */
68 /* update IF output level & IF notch frequency */
69 regs[R_EP4] &= ~0x1c; /* clear if level bits */
73 regs[R_MPD] &= ~0x80; /* IF notch = 0 */
75 case TDA18271_DIGITAL:
76 regs[R_EP4] |= 0x04; /* IF level = 1 */
77 regs[R_MPD] |= 0x80; /* IF notch = 1 */
86 /* update RF_TOP / IF_TOP */
91 case TDA18271_DIGITAL:
95 tda18271_write_regs(fe, R_EB22, 1);
97 /* --------------------------------------------------------------- */
99 /* disable Power Level Indicator */
102 /* frequency dependent parameters */
104 tda18271_calc_ir_measure(fe, &freq);
106 tda18271_calc_bp_filter(fe, &freq);
108 tda18271_calc_rf_band(fe, &freq);
110 tda18271_calc_gain_taper(fe, &freq);
112 /* --------------------------------------------------------------- */
114 /* dual tuner and agc1 extra configuration */
116 /* main vco when Master, cal vco when slave */
117 regs[R_EB1] |= 0x04; /* FIXME: assumes master */
119 /* agc1 always active */
120 regs[R_EB1] &= ~0x02;
122 /* agc1 has priority on agc2 */
123 regs[R_EB1] &= ~0x01;
125 tda18271_write_regs(fe, R_EB1, 1);
127 /* --------------------------------------------------------------- */
131 /* FIXME: assumes master */
132 tda18271_calc_main_pll(fe, N);
133 tda18271_write_regs(fe, R_MPD, 4);
135 tda18271_write_regs(fe, R_TM, 7);
137 /* main pll charge pump source */
139 tda18271_write_regs(fe, R_EB4, 1);
143 /* normal operation for the main pll */
144 regs[R_EB4] &= ~0x20;
145 tda18271_write_regs(fe, R_EB4, 1);
152 static int tda18271_read_thermometer(struct dvb_frontend *fe)
154 struct tda18271_priv *priv = fe->tuner_priv;
155 unsigned char *regs = priv->tda18271_regs;
158 /* switch thermometer on */
160 tda18271_write_regs(fe, R_TM, 1);
162 /* read thermometer info */
163 tda18271_read_regs(fe);
165 if ((((regs[R_TM] & 0x0f) == 0x00) && ((regs[R_TM] & 0x20) == 0x20)) ||
166 (((regs[R_TM] & 0x0f) == 0x08) && ((regs[R_TM] & 0x20) == 0x00))) {
168 if ((regs[R_TM] & 0x20) == 0x20)
173 tda18271_write_regs(fe, R_TM, 1);
175 msleep(10); /* temperature sensing */
177 /* read thermometer info */
178 tda18271_read_regs(fe);
181 tm = tda18271_lookup_thermometer(fe);
183 /* switch thermometer off */
185 tda18271_write_regs(fe, R_TM, 1);
187 /* set CAL mode to normal */
188 regs[R_EP4] &= ~0x03;
189 tda18271_write_regs(fe, R_EP4, 1);
194 static int tda18271_rf_tracking_filters_correction(struct dvb_frontend *fe,
197 struct tda18271_priv *priv = fe->tuner_priv;
198 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
199 unsigned char *regs = priv->tda18271_regs;
200 int tm_current, rfcal_comp, approx, i;
201 u8 dc_over_dt, rf_tab;
204 regs[R_EP3] &= ~0xe0; /* sm = 0, sm_lt = 0, sm_xt = 0 */
205 tda18271_write_regs(fe, R_EP3, 1);
207 /* read die current temperature */
208 tm_current = tda18271_read_thermometer(fe);
210 /* frequency dependent parameters */
212 tda18271_calc_rf_cal(fe, &freq);
213 rf_tab = regs[R_EB14];
215 i = tda18271_lookup_rf_band(fe, &freq, NULL);
219 if ((0 == map[i].rf3) || (freq / 1000 < map[i].rf2)) {
220 approx = map[i].rf_a1 *
221 (freq / 1000 - map[i].rf1) + map[i].rf_b1 + rf_tab;
223 approx = map[i].rf_a2 *
224 (freq / 1000 - map[i].rf2) + map[i].rf_b2 + rf_tab;
232 tda18271_lookup_map(fe, RF_CAL_DC_OVER_DT, &freq, &dc_over_dt);
234 /* calculate temperature compensation */
235 rfcal_comp = dc_over_dt * (tm_current - priv->tm_rfcal);
237 regs[R_EB14] = approx + rfcal_comp;
238 tda18271_write_regs(fe, R_EB14, 1);
243 static int tda18271_por(struct dvb_frontend *fe)
245 struct tda18271_priv *priv = fe->tuner_priv;
246 unsigned char *regs = priv->tda18271_regs;
248 /* power up detector 1 */
249 regs[R_EB12] &= ~0x20;
250 tda18271_write_regs(fe, R_EB12, 1);
252 regs[R_EB18] &= ~0x80; /* turn agc1 loop on */
253 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
254 tda18271_write_regs(fe, R_EB18, 1);
256 regs[R_EB21] |= 0x03; /* set agc2_gain to -6 dB */
259 regs[R_EP3] &= ~0xe0; /* clear sm, sm_lt, sm_xt */
260 regs[R_EP3] |= 0x80; /* sm = 1, sm_lt = 0, sm_xt = 0 */
261 tda18271_write_regs(fe, R_EP3, 1);
263 /* disable 1.5 MHz low pass filter */
264 regs[R_EB23] &= ~0x04; /* forcelp_fc2_en = 0 */
265 regs[R_EB23] &= ~0x02; /* XXX: lp_fc[2] = 0 */
266 tda18271_write_regs(fe, R_EB21, 3);
271 static int tda18271_calibrate_rf(struct dvb_frontend *fe, u32 freq)
273 struct tda18271_priv *priv = fe->tuner_priv;
274 unsigned char *regs = priv->tda18271_regs;
277 /* set CAL mode to normal */
278 regs[R_EP4] &= ~0x03;
279 tda18271_write_regs(fe, R_EP4, 1);
281 /* switch off agc1 */
282 regs[R_EP3] |= 0x40; /* sm_lt = 1 */
284 regs[R_EB18] |= 0x03; /* set agc1_gain to 15 dB */
285 tda18271_write_regs(fe, R_EB18, 1);
287 /* frequency dependent parameters */
289 tda18271_calc_bp_filter(fe, &freq);
290 tda18271_calc_gain_taper(fe, &freq);
291 tda18271_calc_rf_band(fe, &freq);
292 tda18271_calc_km(fe, &freq);
294 tda18271_write_regs(fe, R_EP1, 3);
295 tda18271_write_regs(fe, R_EB13, 1);
297 /* main pll charge pump source */
299 tda18271_write_regs(fe, R_EB4, 1);
301 /* cal pll charge pump source */
303 tda18271_write_regs(fe, R_EB7, 1);
305 /* force dcdc converter to 0 V */
307 tda18271_write_regs(fe, R_EB14, 1);
309 /* disable plls lock */
310 regs[R_EB20] &= ~0x20;
311 tda18271_write_regs(fe, R_EB20, 1);
313 /* set CAL mode to RF tracking filter calibration */
315 tda18271_write_regs(fe, R_EP4, 2);
317 /* --------------------------------------------------------------- */
319 /* set the internal calibration signal */
322 tda18271_calc_main_pll(fe, N);
323 tda18271_write_regs(fe, R_MPD, 4);
325 /* downconvert internal calibration */
328 tda18271_calc_main_pll(fe, N);
329 tda18271_write_regs(fe, R_MPD, 4);
333 tda18271_write_regs(fe, R_EP2, 1);
334 tda18271_write_regs(fe, R_EP1, 1);
335 tda18271_write_regs(fe, R_EP2, 1);
336 tda18271_write_regs(fe, R_EP1, 1);
338 /* --------------------------------------------------------------- */
340 /* normal operation for the main pll */
341 regs[R_EB4] &= ~0x20;
342 tda18271_write_regs(fe, R_EB4, 1);
344 /* normal operation for the cal pll */
345 regs[R_EB7] &= ~0x20;
346 tda18271_write_regs(fe, R_EB7, 1);
348 msleep(5); /* plls locking */
350 /* launch the rf tracking filters calibration */
351 regs[R_EB20] |= 0x20;
352 tda18271_write_regs(fe, R_EB20, 1);
354 msleep(60); /* calibration */
356 /* --------------------------------------------------------------- */
358 /* set CAL mode to normal */
359 regs[R_EP4] &= ~0x03;
362 regs[R_EP3] &= ~0x40; /* sm_lt = 0 */
364 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
365 tda18271_write_regs(fe, R_EB18, 1);
367 tda18271_write_regs(fe, R_EP3, 2);
369 /* synchronization */
370 tda18271_write_regs(fe, R_EP1, 1);
372 /* get calibration result */
373 tda18271_read_extended(fe);
378 static int tda18271_powerscan(struct dvb_frontend *fe,
379 u32 *freq_in, u32 *freq_out)
381 struct tda18271_priv *priv = fe->tuner_priv;
382 unsigned char *regs = priv->tda18271_regs;
383 int sgn, bcal, count, wait;
390 tda18271_calc_rf_band(fe, &freq);
391 tda18271_calc_rf_cal(fe, &freq);
392 tda18271_calc_gain_taper(fe, &freq);
393 tda18271_lookup_cid_target(fe, &freq, &cid_target, &count_limit);
395 tda18271_write_regs(fe, R_EP2, 1);
396 tda18271_write_regs(fe, R_EB14, 1);
398 /* downconvert frequency */
401 tda18271_calc_main_pll(fe, freq);
402 tda18271_write_regs(fe, R_MPD, 4);
404 msleep(5); /* pll locking */
407 regs[R_EP4] &= ~0x03;
409 tda18271_write_regs(fe, R_EP4, 1);
411 /* launch power detection measurement */
412 tda18271_write_regs(fe, R_EP2, 1);
414 /* read power detection info, stored in EB10 */
415 tda18271_read_extended(fe);
417 /* algorithm initialization */
419 *freq_out = *freq_in;
424 while ((regs[R_EB10] & 0x3f) < cid_target) {
425 /* downconvert updated freq to 1 MHz */
426 freq = *freq_in + (sgn * count) + 1000000;
428 tda18271_calc_main_pll(fe, freq);
429 tda18271_write_regs(fe, R_MPD, 4);
432 msleep(5); /* pll locking */
435 udelay(100); /* pll locking */
437 /* launch power detection measurement */
438 tda18271_write_regs(fe, R_EP2, 1);
440 /* read power detection info, stored in EB10 */
441 tda18271_read_extended(fe);
445 if (count < count_limit)
456 if ((regs[R_EB10] & 0x3f) >= cid_target) {
458 *freq_out = freq - 1000000;
462 tda_cal("bcal = %d, freq_in = %d, freq_out = %d (freq = %d)\n",
463 bcal, *freq_in, *freq_out, freq);
468 static int tda18271_powerscan_init(struct dvb_frontend *fe)
470 struct tda18271_priv *priv = fe->tuner_priv;
471 unsigned char *regs = priv->tda18271_regs;
473 /* set standard to digital */
474 regs[R_EP3] &= ~0x1f; /* clear std bits */
477 /* set cal mode to normal */
478 regs[R_EP4] &= ~0x03;
480 /* update IF output level & IF notch frequency */
481 regs[R_EP4] &= ~0x1c; /* clear if level bits */
483 tda18271_write_regs(fe, R_EP3, 2);
485 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
486 tda18271_write_regs(fe, R_EB18, 1);
488 regs[R_EB21] &= ~0x03; /* set agc2_gain to -15 dB */
490 /* 1.5 MHz low pass filter */
491 regs[R_EB23] |= 0x04; /* forcelp_fc2_en = 1 */
492 regs[R_EB23] |= 0x02; /* lp_fc[2] = 1 */
494 tda18271_write_regs(fe, R_EB21, 3);
499 static int tda18271_rf_tracking_filters_init(struct dvb_frontend *fe, u32 freq)
501 struct tda18271_priv *priv = fe->tuner_priv;
502 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
503 unsigned char *regs = priv->tda18271_regs;
513 i = tda18271_lookup_rf_band(fe, &freq, NULL);
518 rf_default[RF1] = 1000 * map[i].rf1_def;
519 rf_default[RF2] = 1000 * map[i].rf2_def;
520 rf_default[RF3] = 1000 * map[i].rf3_def;
522 for (rf = RF1; rf <= RF3; rf++) {
523 if (0 == rf_default[rf])
525 tda_cal("freq = %d, rf = %d\n", freq, rf);
527 /* look for optimized calibration frequency */
528 bcal = tda18271_powerscan(fe, &rf_default[rf], &rf_freq[rf]);
530 tda18271_calc_rf_cal(fe, &rf_freq[rf]);
531 prog_tab[rf] = regs[R_EB14];
534 prog_cal[rf] = tda18271_calibrate_rf(fe, rf_freq[rf]);
536 prog_cal[rf] = prog_tab[rf];
541 map[i].rf_b1 = prog_cal[RF1] - prog_tab[RF1];
542 map[i].rf1 = rf_freq[RF1] / 1000;
545 map[i].rf_a1 = (prog_cal[RF2] - prog_tab[RF2] -
546 prog_cal[RF1] + prog_tab[RF1]) /
547 ((rf_freq[RF2] - rf_freq[RF1]) / 1000);
548 map[i].rf2 = rf_freq[RF2] / 1000;
551 map[i].rf_a2 = (prog_cal[RF3] - prog_tab[RF3] -
552 prog_cal[RF2] + prog_tab[RF2]) /
553 ((rf_freq[RF3] - rf_freq[RF2]) / 1000);
554 map[i].rf_b2 = prog_cal[RF2] - prog_tab[RF2];
555 map[i].rf3 = rf_freq[RF3] / 1000;
565 static int tda18271_calc_rf_filter_curve(struct dvb_frontend *fe)
567 struct tda18271_priv *priv = fe->tuner_priv;
570 tda_info("tda18271: performing RF tracking filter calibration\n");
572 /* wait for die temperature stabilization */
575 tda18271_powerscan_init(fe);
577 /* rf band calibration */
578 for (i = 0; priv->rf_cal_state[i].rfmax != 0; i++)
579 tda18271_rf_tracking_filters_init(fe, 1000 *
580 priv->rf_cal_state[i].rfmax);
582 priv->tm_rfcal = tda18271_read_thermometer(fe);
587 /* ------------------------------------------------------------------ */
589 static int tda18271_rf_cal_init(struct dvb_frontend *fe)
591 struct tda18271_priv *priv = fe->tuner_priv;
593 if (priv->cal_initialized)
596 tda18271_calc_rf_filter_curve(fe);
600 tda_info("tda18271: RF tracking filter calibration complete\n");
602 priv->cal_initialized = true;
607 static int tda18271_init(struct dvb_frontend *fe)
609 struct tda18271_priv *priv = fe->tuner_priv;
611 mutex_lock(&priv->lock);
614 tda18271_ir_cal_init(fe);
616 if (priv->id == TDA18271HDC2)
617 tda18271_rf_cal_init(fe);
619 mutex_unlock(&priv->lock);
624 static int tda18271c2_tune(struct dvb_frontend *fe,
625 u32 ifc, u32 freq, u32 bw, u8 std, int radio)
627 struct tda18271_priv *priv = fe->tuner_priv;
629 tda_dbg("freq = %d, ifc = %d\n", freq, ifc);
633 mutex_lock(&priv->lock);
635 tda18271_rf_tracking_filters_correction(fe, freq);
637 tda18271_channel_configuration(fe, ifc, freq, bw, std, radio);
639 mutex_unlock(&priv->lock);
644 /* ------------------------------------------------------------------ */
646 static int tda18271c1_tune(struct dvb_frontend *fe,
647 u32 ifc, u32 freq, u32 bw, u8 std, int radio)
649 struct tda18271_priv *priv = fe->tuner_priv;
650 unsigned char *regs = priv->tda18271_regs;
655 mutex_lock(&priv->lock);
657 tda_dbg("freq = %d, ifc = %d\n", freq, ifc);
659 /* RF tracking filter calibration */
661 /* calculate bp filter */
662 tda18271_calc_bp_filter(fe, &freq);
663 tda18271_write_regs(fe, R_EP1, 1);
667 tda18271_write_regs(fe, R_EB4, 1);
670 tda18271_write_regs(fe, R_EB7, 1);
673 tda18271_write_regs(fe, R_EB14, 1);
676 tda18271_write_regs(fe, R_EB20, 1);
678 /* set cal mode to RF tracking filter calibration */
681 /* calculate cal pll */
683 switch (priv->mode) {
684 case TDA18271_ANALOG:
687 case TDA18271_DIGITAL:
692 tda18271_calc_cal_pll(fe, N);
694 /* calculate main pll */
696 switch (priv->mode) {
697 case TDA18271_ANALOG:
700 case TDA18271_DIGITAL:
701 N = freq + bw / 2 + 1000000;
705 tda18271_calc_main_pll(fe, N);
707 tda18271_write_regs(fe, R_EP3, 11);
708 msleep(5); /* RF tracking filter calibration initialization */
710 /* search for K,M,CO for RF calibration */
711 tda18271_calc_km(fe, &freq);
712 tda18271_write_regs(fe, R_EB13, 1);
714 /* search for rf band */
715 tda18271_calc_rf_band(fe, &freq);
717 /* search for gain taper */
718 tda18271_calc_gain_taper(fe, &freq);
720 tda18271_write_regs(fe, R_EP2, 1);
721 tda18271_write_regs(fe, R_EP1, 1);
722 tda18271_write_regs(fe, R_EP2, 1);
723 tda18271_write_regs(fe, R_EP1, 1);
727 tda18271_write_regs(fe, R_EB4, 1);
730 tda18271_write_regs(fe, R_EB7, 1);
734 tda18271_write_regs(fe, R_EB20, 1);
735 msleep(60); /* RF tracking filter calibration completion */
737 regs[R_EP4] &= ~0x03; /* set cal mode to normal */
738 tda18271_write_regs(fe, R_EP4, 1);
740 tda18271_write_regs(fe, R_EP1, 1);
742 /* RF tracking filter correction for VHF_Low band */
743 if (0 == tda18271_calc_rf_cal(fe, &freq))
744 tda18271_write_regs(fe, R_EB14, 1);
746 /* Channel Configuration */
748 switch (priv->mode) {
749 case TDA18271_ANALOG:
752 case TDA18271_DIGITAL:
756 tda18271_write_regs(fe, R_EB22, 1);
758 regs[R_EP1] |= 0x40; /* set dis power level on */
761 regs[R_EP3] &= ~0x1f; /* clear std bits */
766 regs[R_EP4] &= ~0x03; /* set cal mode to normal */
768 regs[R_EP4] &= ~0x1c; /* clear if level bits */
769 switch (priv->mode) {
770 case TDA18271_ANALOG:
771 regs[R_MPD] &= ~0x80; /* IF notch = 0 */
773 case TDA18271_DIGITAL:
782 regs[R_EP4] &= ~0x80;
784 /* image rejection validity */
785 tda18271_calc_ir_measure(fe, &freq);
787 /* calculate MAIN PLL */
790 tda18271_calc_main_pll(fe, N);
792 tda18271_write_regs(fe, R_TM, 15);
794 mutex_unlock(&priv->lock);
799 static inline int tda18271_tune(struct dvb_frontend *fe,
800 u32 ifc, u32 freq, u32 bw, u8 std, int radio)
802 struct tda18271_priv *priv = fe->tuner_priv;
807 ret = tda18271c1_tune(fe, ifc, freq, bw, std, radio);
810 ret = tda18271c2_tune(fe, ifc, freq, bw, std, radio);
816 /* ------------------------------------------------------------------ */
818 static int tda18271_set_params(struct dvb_frontend *fe,
819 struct dvb_frontend_parameters *params)
821 struct tda18271_priv *priv = fe->tuner_priv;
822 struct tda18271_std_map *std_map = &priv->std;
826 u32 bw, freq = params->frequency;
828 priv->mode = TDA18271_DIGITAL;
831 if (fe->ops.info.type == FE_ATSC) {
832 switch (params->u.vsb.modulation) {
835 std = std_map->atsc_6.std_bits;
836 sgIF = std_map->atsc_6.if_freq;
840 std = std_map->qam_6.std_bits;
841 sgIF = std_map->qam_6.if_freq;
844 tda_warn("modulation not set!\n");
848 /* userspace request is already center adjusted */
849 freq += 1750000; /* Adjust to center (+1.75MHZ) */
852 } else if (fe->ops.info.type == FE_OFDM) {
853 switch (params->u.ofdm.bandwidth) {
854 case BANDWIDTH_6_MHZ:
856 std = std_map->dvbt_6.std_bits;
857 sgIF = std_map->dvbt_6.if_freq;
859 case BANDWIDTH_7_MHZ:
861 std = std_map->dvbt_7.std_bits;
862 sgIF = std_map->dvbt_7.if_freq;
864 case BANDWIDTH_8_MHZ:
866 std = std_map->dvbt_8.std_bits;
867 sgIF = std_map->dvbt_8.if_freq;
870 tda_warn("bandwidth not set!\n");
874 tda_warn("modulation type not supported!\n");
878 ret = tda18271_tune(fe, sgIF * 1000, freq, bw, std, 0);
883 priv->frequency = freq;
884 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
885 params->u.ofdm.bandwidth : 0;
890 static int tda18271_set_analog_params(struct dvb_frontend *fe,
891 struct analog_parameters *params)
893 struct tda18271_priv *priv = fe->tuner_priv;
894 struct tda18271_std_map *std_map = &priv->std;
899 u32 freq = params->frequency * 62500;
901 priv->mode = TDA18271_ANALOG;
903 if (params->mode == V4L2_TUNER_RADIO) {
906 std = std_map->fm_radio.std_bits;
907 sgIF = std_map->fm_radio.if_freq;
909 } else if (params->std & V4L2_STD_MN) {
910 std = std_map->atv_mn.std_bits;
911 sgIF = std_map->atv_mn.if_freq;
913 } else if (params->std & V4L2_STD_B) {
914 std = std_map->atv_b.std_bits;
915 sgIF = std_map->atv_b.if_freq;
917 } else if (params->std & V4L2_STD_GH) {
918 std = std_map->atv_gh.std_bits;
919 sgIF = std_map->atv_gh.if_freq;
921 } else if (params->std & V4L2_STD_PAL_I) {
922 std = std_map->atv_i.std_bits;
923 sgIF = std_map->atv_i.if_freq;
925 } else if (params->std & V4L2_STD_DK) {
926 std = std_map->atv_dk.std_bits;
927 sgIF = std_map->atv_dk.if_freq;
929 } else if (params->std & V4L2_STD_SECAM_L) {
930 std = std_map->atv_l.std_bits;
931 sgIF = std_map->atv_l.if_freq;
933 } else if (params->std & V4L2_STD_SECAM_LC) {
934 std = std_map->atv_lc.std_bits;
935 sgIF = std_map->atv_lc.if_freq;
938 std = std_map->atv_i.std_bits;
939 sgIF = std_map->atv_i.if_freq;
943 tda_dbg("setting tda18271 to system %s\n", mode);
945 ret = tda18271_tune(fe, sgIF * 1000, freq, 0, std, radio);
950 priv->frequency = freq;
956 static int tda18271_release(struct dvb_frontend *fe)
958 struct tda18271_priv *priv = fe->tuner_priv;
960 mutex_lock(&tda18271_list_mutex);
965 tda_dbg("destroying instance @ %d-%04x\n",
966 i2c_adapter_id(priv->i2c_adap),
968 list_del(&priv->tda18271_list);
972 mutex_unlock(&tda18271_list_mutex);
974 fe->tuner_priv = NULL;
979 static int tda18271_get_frequency(struct dvb_frontend *fe, u32 *frequency)
981 struct tda18271_priv *priv = fe->tuner_priv;
982 *frequency = priv->frequency;
986 static int tda18271_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
988 struct tda18271_priv *priv = fe->tuner_priv;
989 *bandwidth = priv->bandwidth;
993 /* ------------------------------------------------------------------ */
995 #define tda18271_update_std(std_cfg, name) do { \
996 if (map->std_cfg.if_freq + map->std_cfg.std_bits > 0) { \
997 tda_dbg("Using custom std config for %s\n", name); \
998 memcpy(&std->std_cfg, &map->std_cfg, \
999 sizeof(struct tda18271_std_map_item)); \
1002 #define tda18271_dump_std_item(std_cfg, name) do { \
1003 tda_dbg("(%s) if freq = %d, std bits = 0x%02x\n", \
1004 name, std->std_cfg.if_freq, std->std_cfg.std_bits); \
1007 static int tda18271_dump_std_map(struct dvb_frontend *fe)
1009 struct tda18271_priv *priv = fe->tuner_priv;
1010 struct tda18271_std_map *std = &priv->std;
1012 tda_dbg("========== STANDARD MAP SETTINGS ==========\n");
1013 tda18271_dump_std_item(fm_radio, "fm");
1014 tda18271_dump_std_item(atv_b, "pal b");
1015 tda18271_dump_std_item(atv_dk, "pal dk");
1016 tda18271_dump_std_item(atv_gh, "pal gh");
1017 tda18271_dump_std_item(atv_i, "pal i");
1018 tda18271_dump_std_item(atv_l, "pal l");
1019 tda18271_dump_std_item(atv_lc, "pal l'");
1020 tda18271_dump_std_item(atv_mn, "atv mn");
1021 tda18271_dump_std_item(atsc_6, "atsc 6");
1022 tda18271_dump_std_item(dvbt_6, "dvbt 6");
1023 tda18271_dump_std_item(dvbt_7, "dvbt 7");
1024 tda18271_dump_std_item(dvbt_8, "dvbt 8");
1025 tda18271_dump_std_item(qam_6, "qam 6");
1026 tda18271_dump_std_item(qam_8, "qam 8");
1031 static int tda18271_update_std_map(struct dvb_frontend *fe,
1032 struct tda18271_std_map *map)
1034 struct tda18271_priv *priv = fe->tuner_priv;
1035 struct tda18271_std_map *std = &priv->std;
1040 tda18271_update_std(fm_radio, "fm");
1041 tda18271_update_std(atv_b, "atv b");
1042 tda18271_update_std(atv_dk, "atv dk");
1043 tda18271_update_std(atv_gh, "atv gh");
1044 tda18271_update_std(atv_i, "atv i");
1045 tda18271_update_std(atv_l, "atv l");
1046 tda18271_update_std(atv_lc, "atv l'");
1047 tda18271_update_std(atv_mn, "atv mn");
1048 tda18271_update_std(atsc_6, "atsc 6");
1049 tda18271_update_std(dvbt_6, "dvbt 6");
1050 tda18271_update_std(dvbt_7, "dvbt 7");
1051 tda18271_update_std(dvbt_8, "dvbt 8");
1052 tda18271_update_std(qam_6, "qam 6");
1053 tda18271_update_std(qam_8, "qam 8");
1058 static int tda18271_get_id(struct dvb_frontend *fe)
1060 struct tda18271_priv *priv = fe->tuner_priv;
1061 unsigned char *regs = priv->tda18271_regs;
1065 mutex_lock(&priv->lock);
1066 tda18271_read_regs(fe);
1067 mutex_unlock(&priv->lock);
1069 switch (regs[R_ID] & 0x7f) {
1071 name = "TDA18271HD/C1";
1072 priv->id = TDA18271HDC1;
1075 name = "TDA18271HD/C2";
1076 priv->id = TDA18271HDC2;
1079 name = "Unknown device";
1084 tda_info("%s detected @ %d-%04x%s\n", name,
1085 i2c_adapter_id(priv->i2c_adap), priv->i2c_addr,
1086 (0 == ret) ? "" : ", device not supported.");
1091 static struct dvb_tuner_ops tda18271_tuner_ops = {
1093 .name = "NXP TDA18271HD",
1094 .frequency_min = 45000000,
1095 .frequency_max = 864000000,
1096 .frequency_step = 62500
1098 .init = tda18271_init,
1099 .set_params = tda18271_set_params,
1100 .set_analog_params = tda18271_set_analog_params,
1101 .release = tda18271_release,
1102 .get_frequency = tda18271_get_frequency,
1103 .get_bandwidth = tda18271_get_bandwidth,
1106 struct dvb_frontend *tda18271_attach(struct dvb_frontend *fe, u8 addr,
1107 struct i2c_adapter *i2c,
1108 struct tda18271_config *cfg)
1110 struct tda18271_priv *priv = NULL;
1111 int state_found = 0;
1113 mutex_lock(&tda18271_list_mutex);
1115 list_for_each_entry(priv, &tda18271_list, tda18271_list) {
1116 if ((i2c_adapter_id(priv->i2c_adap) == i2c_adapter_id(i2c)) &&
1117 (priv->i2c_addr == addr)) {
1118 tda_dbg("attaching existing tuner @ %d-%04x\n",
1119 i2c_adapter_id(priv->i2c_adap),
1122 fe->tuner_priv = priv;
1124 /* allow dvb driver to override i2c gate setting */
1125 if ((cfg) && (cfg->gate != TDA18271_GATE_ANALOG))
1126 priv->gate = cfg->gate;
1130 if (state_found == 0) {
1131 tda_dbg("creating new tuner instance @ %d-%04x\n",
1132 i2c_adapter_id(i2c), addr);
1134 priv = kzalloc(sizeof(struct tda18271_priv), GFP_KERNEL);
1136 mutex_unlock(&tda18271_list_mutex);
1140 priv->i2c_addr = addr;
1141 priv->i2c_adap = i2c;
1142 priv->gate = (cfg) ? cfg->gate : TDA18271_GATE_AUTO;
1143 priv->cal_initialized = false;
1144 mutex_init(&priv->lock);
1147 fe->tuner_priv = priv;
1149 list_add_tail(&priv->tda18271_list, &tda18271_list);
1151 if (tda18271_get_id(fe) < 0)
1154 if (tda18271_assign_map_layout(fe) < 0)
1157 mutex_lock(&priv->lock);
1158 tda18271_init_regs(fe);
1159 mutex_unlock(&priv->lock);
1162 /* override default std map with values in config struct */
1163 if ((cfg) && (cfg->std_map))
1164 tda18271_update_std_map(fe, cfg->std_map);
1166 mutex_unlock(&tda18271_list_mutex);
1168 memcpy(&fe->ops.tuner_ops, &tda18271_tuner_ops,
1169 sizeof(struct dvb_tuner_ops));
1171 if (tda18271_debug & DBG_MAP)
1172 tda18271_dump_std_map(fe);
1176 mutex_unlock(&tda18271_list_mutex);
1178 tda18271_release(fe);
1181 EXPORT_SYMBOL_GPL(tda18271_attach);
1182 MODULE_DESCRIPTION("NXP TDA18271HD analog / digital tuner driver");
1183 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
1184 MODULE_LICENSE("GPL");
1185 MODULE_VERSION("0.2");
1188 * Overrides for Emacs so that we follow Linus's tabbing style.
1189 * ---------------------------------------------------------------------------