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 int tda18271_cal_on_startup;
31 module_param_named(cal, tda18271_cal_on_startup, int, 0644);
32 MODULE_PARM_DESC(cal, "perform RF tracking filter calibration on startup");
34 static DEFINE_MUTEX(tda18271_list_mutex);
35 static LIST_HEAD(hybrid_tuner_instance_list);
37 /*---------------------------------------------------------------------*/
39 static inline int charge_pump_source(struct dvb_frontend *fe, int force)
41 struct tda18271_priv *priv = fe->tuner_priv;
42 return tda18271_charge_pump_source(fe,
43 (priv->role == TDA18271_SLAVE) ?
45 TDA18271_MAIN_PLL, force);
48 static inline void tda18271_set_if_notch(struct dvb_frontend *fe)
50 struct tda18271_priv *priv = fe->tuner_priv;
51 unsigned char *regs = priv->tda18271_regs;
55 regs[R_MPD] &= ~0x80; /* IF notch = 0 */
57 case TDA18271_DIGITAL:
58 regs[R_MPD] |= 0x80; /* IF notch = 1 */
63 static int tda18271_channel_configuration(struct dvb_frontend *fe,
64 struct tda18271_std_map_item *map,
67 struct tda18271_priv *priv = fe->tuner_priv;
68 unsigned char *regs = priv->tda18271_regs;
72 /* update TV broadcast parameters */
75 regs[R_EP3] &= ~0x1f; /* clear std bits */
76 regs[R_EP3] |= (map->agc_mode << 3) | map->std;
78 if (priv->id == TDA18271HDC2) {
79 /* set rfagc to high speed mode */
83 /* set cal mode to normal */
86 /* update IF output level */
87 regs[R_EP4] &= ~0x1c; /* clear if level bits */
88 regs[R_EP4] |= (map->if_lvl << 2);
92 regs[R_EP4] |= map->fm_rfn << 7;
94 /* update rf top / if top */
96 regs[R_EB22] |= map->rfagc_top;
97 ret = tda18271_write_regs(fe, R_EB22, 1);
101 /* --------------------------------------------------------------- */
103 /* disable Power Level Indicator */
106 /* make sure thermometer is off */
109 /* frequency dependent parameters */
111 tda18271_calc_ir_measure(fe, &freq);
113 tda18271_calc_bp_filter(fe, &freq);
115 tda18271_calc_rf_band(fe, &freq);
117 tda18271_calc_gain_taper(fe, &freq);
119 /* --------------------------------------------------------------- */
121 /* dual tuner and agc1 extra configuration */
123 switch (priv->role) {
124 case TDA18271_MASTER:
125 regs[R_EB1] |= 0x04; /* main vco */
128 regs[R_EB1] &= ~0x04; /* cal vco */
132 /* agc1 always active */
133 regs[R_EB1] &= ~0x02;
135 /* agc1 has priority on agc2 */
136 regs[R_EB1] &= ~0x01;
138 ret = tda18271_write_regs(fe, R_EB1, 1);
142 /* --------------------------------------------------------------- */
144 N = map->if_freq * 1000 + freq;
146 switch (priv->role) {
147 case TDA18271_MASTER:
148 tda18271_calc_main_pll(fe, N);
149 tda18271_set_if_notch(fe);
150 tda18271_write_regs(fe, R_MPD, 4);
153 tda18271_calc_cal_pll(fe, N);
154 tda18271_write_regs(fe, R_CPD, 4);
156 regs[R_MPD] = regs[R_CPD] & 0x7f;
157 tda18271_set_if_notch(fe);
158 tda18271_write_regs(fe, R_MPD, 1);
162 ret = tda18271_write_regs(fe, R_TM, 7);
166 /* force charge pump source */
167 charge_pump_source(fe, 1);
171 /* return pll to normal operation */
172 charge_pump_source(fe, 0);
176 if (priv->id == TDA18271HDC2) {
177 /* set rfagc to normal speed mode */
179 regs[R_EP3] &= ~0x04;
182 ret = tda18271_write_regs(fe, R_EP3, 1);
188 static int tda18271_read_thermometer(struct dvb_frontend *fe)
190 struct tda18271_priv *priv = fe->tuner_priv;
191 unsigned char *regs = priv->tda18271_regs;
194 /* switch thermometer on */
196 tda18271_write_regs(fe, R_TM, 1);
198 /* read thermometer info */
199 tda18271_read_regs(fe);
201 if ((((regs[R_TM] & 0x0f) == 0x00) && ((regs[R_TM] & 0x20) == 0x20)) ||
202 (((regs[R_TM] & 0x0f) == 0x08) && ((regs[R_TM] & 0x20) == 0x00))) {
204 if ((regs[R_TM] & 0x20) == 0x20)
209 tda18271_write_regs(fe, R_TM, 1);
211 msleep(10); /* temperature sensing */
213 /* read thermometer info */
214 tda18271_read_regs(fe);
217 tm = tda18271_lookup_thermometer(fe);
219 /* switch thermometer off */
221 tda18271_write_regs(fe, R_TM, 1);
223 /* set CAL mode to normal */
224 regs[R_EP4] &= ~0x03;
225 tda18271_write_regs(fe, R_EP4, 1);
230 /* ------------------------------------------------------------------ */
232 static int tda18271c2_rf_tracking_filters_correction(struct dvb_frontend *fe,
235 struct tda18271_priv *priv = fe->tuner_priv;
236 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
237 unsigned char *regs = priv->tda18271_regs;
238 int tm_current, rfcal_comp, approx, i, ret;
239 u8 dc_over_dt, rf_tab;
242 ret = tda18271_set_standby_mode(fe, 0, 0, 0);
246 /* read die current temperature */
247 tm_current = tda18271_read_thermometer(fe);
249 /* frequency dependent parameters */
251 tda18271_calc_rf_cal(fe, &freq);
252 rf_tab = regs[R_EB14];
254 i = tda18271_lookup_rf_band(fe, &freq, NULL);
258 if ((0 == map[i].rf3) || (freq / 1000 < map[i].rf2)) {
259 approx = map[i].rf_a1 *
260 (freq / 1000 - map[i].rf1) + map[i].rf_b1 + rf_tab;
262 approx = map[i].rf_a2 *
263 (freq / 1000 - map[i].rf2) + map[i].rf_b2 + rf_tab;
271 tda18271_lookup_map(fe, RF_CAL_DC_OVER_DT, &freq, &dc_over_dt);
273 /* calculate temperature compensation */
274 rfcal_comp = dc_over_dt * (tm_current - priv->tm_rfcal);
276 regs[R_EB14] = approx + rfcal_comp;
277 ret = tda18271_write_regs(fe, R_EB14, 1);
282 static int tda18271_por(struct dvb_frontend *fe)
284 struct tda18271_priv *priv = fe->tuner_priv;
285 unsigned char *regs = priv->tda18271_regs;
288 /* power up detector 1 */
289 regs[R_EB12] &= ~0x20;
290 ret = tda18271_write_regs(fe, R_EB12, 1);
294 regs[R_EB18] &= ~0x80; /* turn agc1 loop on */
295 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
296 ret = tda18271_write_regs(fe, R_EB18, 1);
300 regs[R_EB21] |= 0x03; /* set agc2_gain to -6 dB */
303 ret = tda18271_set_standby_mode(fe, 1, 0, 0);
307 /* disable 1.5 MHz low pass filter */
308 regs[R_EB23] &= ~0x04; /* forcelp_fc2_en = 0 */
309 regs[R_EB23] &= ~0x02; /* XXX: lp_fc[2] = 0 */
310 ret = tda18271_write_regs(fe, R_EB21, 3);
315 static int tda18271_calibrate_rf(struct dvb_frontend *fe, u32 freq)
317 struct tda18271_priv *priv = fe->tuner_priv;
318 unsigned char *regs = priv->tda18271_regs;
321 /* set CAL mode to normal */
322 regs[R_EP4] &= ~0x03;
323 tda18271_write_regs(fe, R_EP4, 1);
325 /* switch off agc1 */
326 regs[R_EP3] |= 0x40; /* sm_lt = 1 */
328 regs[R_EB18] |= 0x03; /* set agc1_gain to 15 dB */
329 tda18271_write_regs(fe, R_EB18, 1);
331 /* frequency dependent parameters */
333 tda18271_calc_bp_filter(fe, &freq);
334 tda18271_calc_gain_taper(fe, &freq);
335 tda18271_calc_rf_band(fe, &freq);
336 tda18271_calc_km(fe, &freq);
338 tda18271_write_regs(fe, R_EP1, 3);
339 tda18271_write_regs(fe, R_EB13, 1);
341 /* main pll charge pump source */
342 tda18271_charge_pump_source(fe, TDA18271_MAIN_PLL, 1);
344 /* cal pll charge pump source */
345 tda18271_charge_pump_source(fe, TDA18271_CAL_PLL, 1);
347 /* force dcdc converter to 0 V */
349 tda18271_write_regs(fe, R_EB14, 1);
351 /* disable plls lock */
352 regs[R_EB20] &= ~0x20;
353 tda18271_write_regs(fe, R_EB20, 1);
355 /* set CAL mode to RF tracking filter calibration */
357 tda18271_write_regs(fe, R_EP4, 2);
359 /* --------------------------------------------------------------- */
361 /* set the internal calibration signal */
364 tda18271_calc_cal_pll(fe, N);
365 tda18271_write_regs(fe, R_CPD, 4);
367 /* downconvert internal calibration */
370 tda18271_calc_main_pll(fe, N);
371 tda18271_write_regs(fe, R_MPD, 4);
375 tda18271_write_regs(fe, R_EP2, 1);
376 tda18271_write_regs(fe, R_EP1, 1);
377 tda18271_write_regs(fe, R_EP2, 1);
378 tda18271_write_regs(fe, R_EP1, 1);
380 /* --------------------------------------------------------------- */
382 /* normal operation for the main pll */
383 tda18271_charge_pump_source(fe, TDA18271_MAIN_PLL, 0);
385 /* normal operation for the cal pll */
386 tda18271_charge_pump_source(fe, TDA18271_CAL_PLL, 0);
388 msleep(10); /* plls locking */
390 /* launch the rf tracking filters calibration */
391 regs[R_EB20] |= 0x20;
392 tda18271_write_regs(fe, R_EB20, 1);
394 msleep(60); /* calibration */
396 /* --------------------------------------------------------------- */
398 /* set CAL mode to normal */
399 regs[R_EP4] &= ~0x03;
402 regs[R_EP3] &= ~0x40; /* sm_lt = 0 */
404 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
405 tda18271_write_regs(fe, R_EB18, 1);
407 tda18271_write_regs(fe, R_EP3, 2);
409 /* synchronization */
410 tda18271_write_regs(fe, R_EP1, 1);
412 /* get calibration result */
413 tda18271_read_extended(fe);
418 static int tda18271_powerscan(struct dvb_frontend *fe,
419 u32 *freq_in, u32 *freq_out)
421 struct tda18271_priv *priv = fe->tuner_priv;
422 unsigned char *regs = priv->tda18271_regs;
423 int sgn, bcal, count, wait, ret;
430 tda18271_calc_rf_band(fe, &freq);
431 tda18271_calc_rf_cal(fe, &freq);
432 tda18271_calc_gain_taper(fe, &freq);
433 tda18271_lookup_cid_target(fe, &freq, &cid_target, &count_limit);
435 tda18271_write_regs(fe, R_EP2, 1);
436 tda18271_write_regs(fe, R_EB14, 1);
438 /* downconvert frequency */
441 tda18271_calc_main_pll(fe, freq);
442 tda18271_write_regs(fe, R_MPD, 4);
444 msleep(5); /* pll locking */
447 regs[R_EP4] &= ~0x03;
449 tda18271_write_regs(fe, R_EP4, 1);
451 /* launch power detection measurement */
452 tda18271_write_regs(fe, R_EP2, 1);
454 /* read power detection info, stored in EB10 */
455 ret = tda18271_read_extended(fe);
459 /* algorithm initialization */
461 *freq_out = *freq_in;
466 while ((regs[R_EB10] & 0x3f) < cid_target) {
467 /* downconvert updated freq to 1 MHz */
468 freq = *freq_in + (sgn * count) + 1000000;
470 tda18271_calc_main_pll(fe, freq);
471 tda18271_write_regs(fe, R_MPD, 4);
474 msleep(5); /* pll locking */
477 udelay(100); /* pll locking */
479 /* launch power detection measurement */
480 tda18271_write_regs(fe, R_EP2, 1);
482 /* read power detection info, stored in EB10 */
483 ret = tda18271_read_extended(fe);
489 if (count <= count_limit)
500 if ((regs[R_EB10] & 0x3f) >= cid_target) {
502 *freq_out = freq - 1000000;
506 tda_cal("bcal = %d, freq_in = %d, freq_out = %d (freq = %d)\n",
507 bcal, *freq_in, *freq_out, freq);
512 static int tda18271_powerscan_init(struct dvb_frontend *fe)
514 struct tda18271_priv *priv = fe->tuner_priv;
515 unsigned char *regs = priv->tda18271_regs;
518 /* set standard to digital */
519 regs[R_EP3] &= ~0x1f; /* clear std bits */
522 /* set cal mode to normal */
523 regs[R_EP4] &= ~0x03;
525 /* update IF output level */
526 regs[R_EP4] &= ~0x1c; /* clear if level bits */
528 ret = tda18271_write_regs(fe, R_EP3, 2);
532 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
533 ret = tda18271_write_regs(fe, R_EB18, 1);
537 regs[R_EB21] &= ~0x03; /* set agc2_gain to -15 dB */
539 /* 1.5 MHz low pass filter */
540 regs[R_EB23] |= 0x04; /* forcelp_fc2_en = 1 */
541 regs[R_EB23] |= 0x02; /* lp_fc[2] = 1 */
543 ret = tda18271_write_regs(fe, R_EB21, 3);
548 static int tda18271_rf_tracking_filters_init(struct dvb_frontend *fe, u32 freq)
550 struct tda18271_priv *priv = fe->tuner_priv;
551 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
552 unsigned char *regs = priv->tda18271_regs;
562 i = tda18271_lookup_rf_band(fe, &freq, NULL);
567 rf_default[RF1] = 1000 * map[i].rf1_def;
568 rf_default[RF2] = 1000 * map[i].rf2_def;
569 rf_default[RF3] = 1000 * map[i].rf3_def;
571 for (rf = RF1; rf <= RF3; rf++) {
572 if (0 == rf_default[rf])
574 tda_cal("freq = %d, rf = %d\n", freq, rf);
576 /* look for optimized calibration frequency */
577 bcal = tda18271_powerscan(fe, &rf_default[rf], &rf_freq[rf]);
581 tda18271_calc_rf_cal(fe, &rf_freq[rf]);
582 prog_tab[rf] = regs[R_EB14];
585 prog_cal[rf] = tda18271_calibrate_rf(fe, rf_freq[rf]);
587 prog_cal[rf] = prog_tab[rf];
592 map[i].rf_b1 = prog_cal[RF1] - prog_tab[RF1];
593 map[i].rf1 = rf_freq[RF1] / 1000;
596 map[i].rf_a1 = (prog_cal[RF2] - prog_tab[RF2] -
597 prog_cal[RF1] + prog_tab[RF1]) /
598 ((rf_freq[RF2] - rf_freq[RF1]) / 1000);
599 map[i].rf2 = rf_freq[RF2] / 1000;
602 map[i].rf_a2 = (prog_cal[RF3] - prog_tab[RF3] -
603 prog_cal[RF2] + prog_tab[RF2]) /
604 ((rf_freq[RF3] - rf_freq[RF2]) / 1000);
605 map[i].rf_b2 = prog_cal[RF2] - prog_tab[RF2];
606 map[i].rf3 = rf_freq[RF3] / 1000;
616 static int tda18271_calc_rf_filter_curve(struct dvb_frontend *fe)
618 struct tda18271_priv *priv = fe->tuner_priv;
622 tda_info("tda18271: performing RF tracking filter calibration\n");
624 /* wait for die temperature stabilization */
627 ret = tda18271_powerscan_init(fe);
631 /* rf band calibration */
632 for (i = 0; priv->rf_cal_state[i].rfmax != 0; i++) {
634 tda18271_rf_tracking_filters_init(fe, 1000 *
635 priv->rf_cal_state[i].rfmax);
640 priv->tm_rfcal = tda18271_read_thermometer(fe);
645 /* ------------------------------------------------------------------ */
647 static int tda18271c2_rf_cal_init(struct dvb_frontend *fe)
649 struct tda18271_priv *priv = fe->tuner_priv;
650 unsigned char *regs = priv->tda18271_regs;
653 /* test RF_CAL_OK to see if we need init */
654 if ((regs[R_EP1] & 0x10) == 0)
655 priv->cal_initialized = false;
657 if (priv->cal_initialized)
660 ret = tda18271_calc_rf_filter_curve(fe);
664 ret = tda18271_por(fe);
668 tda_info("tda18271: RF tracking filter calibration complete\n");
670 priv->cal_initialized = true;
673 tda_info("tda18271: RF tracking filter calibration failed!\n");
678 static int tda18271c1_rf_tracking_filter_calibration(struct dvb_frontend *fe,
681 struct tda18271_priv *priv = fe->tuner_priv;
682 unsigned char *regs = priv->tda18271_regs;
686 /* calculate bp filter */
687 tda18271_calc_bp_filter(fe, &freq);
688 tda18271_write_regs(fe, R_EP1, 1);
692 tda18271_write_regs(fe, R_EB4, 1);
695 tda18271_write_regs(fe, R_EB7, 1);
698 tda18271_write_regs(fe, R_EB14, 1);
701 tda18271_write_regs(fe, R_EB20, 1);
703 /* set cal mode to RF tracking filter calibration */
706 /* calculate cal pll */
708 switch (priv->mode) {
709 case TDA18271_ANALOG:
712 case TDA18271_DIGITAL:
717 tda18271_calc_cal_pll(fe, N);
719 /* calculate main pll */
721 switch (priv->mode) {
722 case TDA18271_ANALOG:
725 case TDA18271_DIGITAL:
726 N = freq + bw / 2 + 1000000;
730 tda18271_calc_main_pll(fe, N);
732 ret = tda18271_write_regs(fe, R_EP3, 11);
736 msleep(5); /* RF tracking filter calibration initialization */
738 /* search for K,M,CO for RF calibration */
739 tda18271_calc_km(fe, &freq);
740 tda18271_write_regs(fe, R_EB13, 1);
742 /* search for rf band */
743 tda18271_calc_rf_band(fe, &freq);
745 /* search for gain taper */
746 tda18271_calc_gain_taper(fe, &freq);
748 tda18271_write_regs(fe, R_EP2, 1);
749 tda18271_write_regs(fe, R_EP1, 1);
750 tda18271_write_regs(fe, R_EP2, 1);
751 tda18271_write_regs(fe, R_EP1, 1);
755 tda18271_write_regs(fe, R_EB4, 1);
758 tda18271_write_regs(fe, R_EB7, 1);
759 msleep(10); /* pll locking */
762 tda18271_write_regs(fe, R_EB20, 1);
763 msleep(60); /* RF tracking filter calibration completion */
765 regs[R_EP4] &= ~0x03; /* set cal mode to normal */
766 tda18271_write_regs(fe, R_EP4, 1);
768 tda18271_write_regs(fe, R_EP1, 1);
770 /* RF tracking filter correction for VHF_Low band */
771 if (0 == tda18271_calc_rf_cal(fe, &freq))
772 tda18271_write_regs(fe, R_EB14, 1);
777 /* ------------------------------------------------------------------ */
779 static int tda18271_ir_cal_init(struct dvb_frontend *fe)
781 struct tda18271_priv *priv = fe->tuner_priv;
782 unsigned char *regs = priv->tda18271_regs;
785 ret = tda18271_read_regs(fe);
789 /* test IR_CAL_OK to see if we need init */
790 if ((regs[R_EP1] & 0x08) == 0)
791 ret = tda18271_init_regs(fe);
796 static int tda18271_init(struct dvb_frontend *fe)
798 struct tda18271_priv *priv = fe->tuner_priv;
801 mutex_lock(&priv->lock);
804 ret = tda18271_set_standby_mode(fe, 0, 0, 0);
809 ret = tda18271_ir_cal_init(fe);
813 if (priv->id == TDA18271HDC2)
814 tda18271c2_rf_cal_init(fe);
816 mutex_unlock(&priv->lock);
821 static int tda18271_tune(struct dvb_frontend *fe,
822 struct tda18271_std_map_item *map, u32 freq, u32 bw)
824 struct tda18271_priv *priv = fe->tuner_priv;
827 tda_dbg("freq = %d, ifc = %d, bw = %d, agc_mode = %d, std = %d\n",
828 freq, map->if_freq, bw, map->agc_mode, map->std);
830 ret = tda18271_init(fe);
834 mutex_lock(&priv->lock);
838 tda18271c1_rf_tracking_filter_calibration(fe, freq, bw);
841 tda18271c2_rf_tracking_filters_correction(fe, freq);
844 ret = tda18271_channel_configuration(fe, map, freq, bw);
846 mutex_unlock(&priv->lock);
851 /* ------------------------------------------------------------------ */
853 static int tda18271_set_params(struct dvb_frontend *fe,
854 struct dvb_frontend_parameters *params)
856 struct tda18271_priv *priv = fe->tuner_priv;
857 struct tda18271_std_map *std_map = &priv->std;
858 struct tda18271_std_map_item *map;
860 u32 bw, freq = params->frequency;
862 priv->mode = TDA18271_DIGITAL;
864 if (fe->ops.info.type == FE_ATSC) {
865 switch (params->u.vsb.modulation) {
868 map = &std_map->atsc_6;
872 map = &std_map->qam_6;
875 tda_warn("modulation not set!\n");
879 /* userspace request is already center adjusted */
880 freq += 1750000; /* Adjust to center (+1.75MHZ) */
883 } else if (fe->ops.info.type == FE_OFDM) {
884 switch (params->u.ofdm.bandwidth) {
885 case BANDWIDTH_6_MHZ:
887 map = &std_map->dvbt_6;
889 case BANDWIDTH_7_MHZ:
891 map = &std_map->dvbt_7;
893 case BANDWIDTH_8_MHZ:
895 map = &std_map->dvbt_8;
898 tda_warn("bandwidth not set!\n");
902 tda_warn("modulation type not supported!\n");
906 /* When tuning digital, the analog demod must be tri-stated */
907 if (fe->ops.analog_ops.standby)
908 fe->ops.analog_ops.standby(fe);
910 ret = tda18271_tune(fe, map, freq, bw);
915 priv->frequency = freq;
916 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
917 params->u.ofdm.bandwidth : 0;
922 static int tda18271_set_analog_params(struct dvb_frontend *fe,
923 struct analog_parameters *params)
925 struct tda18271_priv *priv = fe->tuner_priv;
926 struct tda18271_std_map *std_map = &priv->std;
927 struct tda18271_std_map_item *map;
930 u32 freq = params->frequency * 62500;
932 priv->mode = TDA18271_ANALOG;
934 if (params->mode == V4L2_TUNER_RADIO) {
936 map = &std_map->fm_radio;
938 } else if (params->std & V4L2_STD_MN) {
939 map = &std_map->atv_mn;
941 } else if (params->std & V4L2_STD_B) {
942 map = &std_map->atv_b;
944 } else if (params->std & V4L2_STD_GH) {
945 map = &std_map->atv_gh;
947 } else if (params->std & V4L2_STD_PAL_I) {
948 map = &std_map->atv_i;
950 } else if (params->std & V4L2_STD_DK) {
951 map = &std_map->atv_dk;
953 } else if (params->std & V4L2_STD_SECAM_L) {
954 map = &std_map->atv_l;
956 } else if (params->std & V4L2_STD_SECAM_LC) {
957 map = &std_map->atv_lc;
960 map = &std_map->atv_i;
964 tda_dbg("setting tda18271 to system %s\n", mode);
966 ret = tda18271_tune(fe, map, freq, 0);
971 priv->frequency = freq;
977 static int tda18271_sleep(struct dvb_frontend *fe)
979 struct tda18271_priv *priv = fe->tuner_priv;
982 mutex_lock(&priv->lock);
984 /* standby mode w/ slave tuner output
985 * & loop thru & xtal oscillator on */
986 ret = tda18271_set_standby_mode(fe, 1, 0, 0);
988 mutex_unlock(&priv->lock);
993 static int tda18271_release(struct dvb_frontend *fe)
995 struct tda18271_priv *priv = fe->tuner_priv;
997 mutex_lock(&tda18271_list_mutex);
1000 hybrid_tuner_release_state(priv);
1002 mutex_unlock(&tda18271_list_mutex);
1004 fe->tuner_priv = NULL;
1009 static int tda18271_get_frequency(struct dvb_frontend *fe, u32 *frequency)
1011 struct tda18271_priv *priv = fe->tuner_priv;
1012 *frequency = priv->frequency;
1016 static int tda18271_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
1018 struct tda18271_priv *priv = fe->tuner_priv;
1019 *bandwidth = priv->bandwidth;
1023 /* ------------------------------------------------------------------ */
1025 #define tda18271_update_std(std_cfg, name) do { \
1026 if (map->std_cfg.if_freq + \
1027 map->std_cfg.agc_mode + map->std_cfg.std + \
1028 map->std_cfg.if_lvl + map->std_cfg.rfagc_top > 0) { \
1029 tda_dbg("Using custom std config for %s\n", name); \
1030 memcpy(&std->std_cfg, &map->std_cfg, \
1031 sizeof(struct tda18271_std_map_item)); \
1034 #define tda18271_dump_std_item(std_cfg, name) do { \
1035 tda_dbg("(%s) if_freq = %d, agc_mode = %d, std = %d, " \
1036 "if_lvl = %d, rfagc_top = 0x%02x\n", \
1037 name, std->std_cfg.if_freq, \
1038 std->std_cfg.agc_mode, std->std_cfg.std, \
1039 std->std_cfg.if_lvl, std->std_cfg.rfagc_top); \
1042 static int tda18271_dump_std_map(struct dvb_frontend *fe)
1044 struct tda18271_priv *priv = fe->tuner_priv;
1045 struct tda18271_std_map *std = &priv->std;
1047 tda_dbg("========== STANDARD MAP SETTINGS ==========\n");
1048 tda18271_dump_std_item(fm_radio, " fm ");
1049 tda18271_dump_std_item(atv_b, "atv b ");
1050 tda18271_dump_std_item(atv_dk, "atv dk");
1051 tda18271_dump_std_item(atv_gh, "atv gh");
1052 tda18271_dump_std_item(atv_i, "atv i ");
1053 tda18271_dump_std_item(atv_l, "atv l ");
1054 tda18271_dump_std_item(atv_lc, "atv l'");
1055 tda18271_dump_std_item(atv_mn, "atv mn");
1056 tda18271_dump_std_item(atsc_6, "atsc 6");
1057 tda18271_dump_std_item(dvbt_6, "dvbt 6");
1058 tda18271_dump_std_item(dvbt_7, "dvbt 7");
1059 tda18271_dump_std_item(dvbt_8, "dvbt 8");
1060 tda18271_dump_std_item(qam_6, "qam 6 ");
1061 tda18271_dump_std_item(qam_8, "qam 8 ");
1066 static int tda18271_update_std_map(struct dvb_frontend *fe,
1067 struct tda18271_std_map *map)
1069 struct tda18271_priv *priv = fe->tuner_priv;
1070 struct tda18271_std_map *std = &priv->std;
1075 tda18271_update_std(fm_radio, "fm");
1076 tda18271_update_std(atv_b, "atv b");
1077 tda18271_update_std(atv_dk, "atv dk");
1078 tda18271_update_std(atv_gh, "atv gh");
1079 tda18271_update_std(atv_i, "atv i");
1080 tda18271_update_std(atv_l, "atv l");
1081 tda18271_update_std(atv_lc, "atv l'");
1082 tda18271_update_std(atv_mn, "atv mn");
1083 tda18271_update_std(atsc_6, "atsc 6");
1084 tda18271_update_std(dvbt_6, "dvbt 6");
1085 tda18271_update_std(dvbt_7, "dvbt 7");
1086 tda18271_update_std(dvbt_8, "dvbt 8");
1087 tda18271_update_std(qam_6, "qam 6");
1088 tda18271_update_std(qam_8, "qam 8");
1093 static int tda18271_get_id(struct dvb_frontend *fe)
1095 struct tda18271_priv *priv = fe->tuner_priv;
1096 unsigned char *regs = priv->tda18271_regs;
1100 mutex_lock(&priv->lock);
1101 tda18271_read_regs(fe);
1102 mutex_unlock(&priv->lock);
1104 switch (regs[R_ID] & 0x7f) {
1106 name = "TDA18271HD/C1";
1107 priv->id = TDA18271HDC1;
1110 name = "TDA18271HD/C2";
1111 priv->id = TDA18271HDC2;
1114 name = "Unknown device";
1119 tda_info("%s detected @ %d-%04x%s\n", name,
1120 i2c_adapter_id(priv->i2c_props.adap),
1121 priv->i2c_props.addr,
1122 (0 == ret) ? "" : ", device not supported.");
1127 static struct dvb_tuner_ops tda18271_tuner_ops = {
1129 .name = "NXP TDA18271HD",
1130 .frequency_min = 45000000,
1131 .frequency_max = 864000000,
1132 .frequency_step = 62500
1134 .init = tda18271_init,
1135 .sleep = tda18271_sleep,
1136 .set_params = tda18271_set_params,
1137 .set_analog_params = tda18271_set_analog_params,
1138 .release = tda18271_release,
1139 .get_frequency = tda18271_get_frequency,
1140 .get_bandwidth = tda18271_get_bandwidth,
1143 struct dvb_frontend *tda18271_attach(struct dvb_frontend *fe, u8 addr,
1144 struct i2c_adapter *i2c,
1145 struct tda18271_config *cfg)
1147 struct tda18271_priv *priv = NULL;
1150 mutex_lock(&tda18271_list_mutex);
1152 instance = hybrid_tuner_request_state(struct tda18271_priv, priv,
1153 hybrid_tuner_instance_list,
1154 i2c, addr, "tda18271");
1160 /* new tuner instance */
1161 priv->gate = (cfg) ? cfg->gate : TDA18271_GATE_AUTO;
1162 priv->role = (cfg) ? cfg->role : TDA18271_MASTER;
1163 priv->cal_initialized = false;
1164 mutex_init(&priv->lock);
1166 fe->tuner_priv = priv;
1169 priv->small_i2c = cfg->small_i2c;
1171 if (tda_fail(tda18271_get_id(fe)))
1174 if (tda_fail(tda18271_assign_map_layout(fe)))
1177 mutex_lock(&priv->lock);
1178 tda18271_init_regs(fe);
1180 if ((tda18271_cal_on_startup) && (priv->id == TDA18271HDC2))
1181 tda18271c2_rf_cal_init(fe);
1183 mutex_unlock(&priv->lock);
1186 /* existing tuner instance */
1187 fe->tuner_priv = priv;
1189 /* allow dvb driver to override i2c gate setting */
1190 if ((cfg) && (cfg->gate != TDA18271_GATE_ANALOG))
1191 priv->gate = cfg->gate;
1195 /* override default std map with values in config struct */
1196 if ((cfg) && (cfg->std_map))
1197 tda18271_update_std_map(fe, cfg->std_map);
1199 mutex_unlock(&tda18271_list_mutex);
1201 memcpy(&fe->ops.tuner_ops, &tda18271_tuner_ops,
1202 sizeof(struct dvb_tuner_ops));
1204 if (tda18271_debug & (DBG_MAP | DBG_ADV))
1205 tda18271_dump_std_map(fe);
1209 mutex_unlock(&tda18271_list_mutex);
1211 tda18271_release(fe);
1214 EXPORT_SYMBOL_GPL(tda18271_attach);
1215 MODULE_DESCRIPTION("NXP TDA18271HD analog / digital tuner driver");
1216 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
1217 MODULE_LICENSE("GPL");
1218 MODULE_VERSION("0.3");
1221 * Overrides for Emacs so that we follow Linus's tabbing style.
1222 * ---------------------------------------------------------------------------