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 int tda18271_channel_configuration(struct dvb_frontend *fe,
49 struct tda18271_std_map_item *map,
52 struct tda18271_priv *priv = fe->tuner_priv;
53 unsigned char *regs = priv->tda18271_regs;
56 /* update TV broadcast parameters */
59 regs[R_EP3] &= ~0x1f; /* clear std bits */
60 regs[R_EP3] |= (map->agc_mode << 3) | map->std;
62 /* set rfagc to high speed mode */
65 /* set cal mode to normal */
68 /* update IF output level & IF notch frequency */
69 regs[R_EP4] &= ~0x1c; /* clear if level bits */
70 regs[R_EP4] |= (map->if_lvl << 2);
74 regs[R_MPD] &= ~0x80; /* IF notch = 0 */
76 case TDA18271_DIGITAL:
77 regs[R_MPD] |= 0x80; /* IF notch = 1 */
83 regs[R_EP4] |= map->fm_rfn << 7;
85 /* update rf top / if top */
87 regs[R_EB22] |= map->rfagc_top;
88 tda18271_write_regs(fe, R_EB22, 1);
90 /* --------------------------------------------------------------- */
92 /* disable Power Level Indicator */
95 /* frequency dependent parameters */
97 tda18271_calc_ir_measure(fe, &freq);
99 tda18271_calc_bp_filter(fe, &freq);
101 tda18271_calc_rf_band(fe, &freq);
103 tda18271_calc_gain_taper(fe, &freq);
105 /* --------------------------------------------------------------- */
107 /* dual tuner and agc1 extra configuration */
109 switch (priv->role) {
110 case TDA18271_MASTER:
111 regs[R_EB1] |= 0x04; /* main vco */
114 regs[R_EB1] &= ~0x04; /* cal vco */
118 /* agc1 always active */
119 regs[R_EB1] &= ~0x02;
121 /* agc1 has priority on agc2 */
122 regs[R_EB1] &= ~0x01;
124 tda18271_write_regs(fe, R_EB1, 1);
126 /* --------------------------------------------------------------- */
128 N = map->if_freq * 1000 + freq;
130 switch (priv->role) {
131 case TDA18271_MASTER:
132 tda18271_calc_main_pll(fe, N);
133 tda18271_write_regs(fe, R_MPD, 4);
136 tda18271_calc_cal_pll(fe, N);
137 tda18271_write_regs(fe, R_CPD, 4);
139 regs[R_MPD] = regs[R_CPD] & 0x7f;
140 tda18271_write_regs(fe, R_MPD, 1);
144 tda18271_write_regs(fe, R_TM, 7);
146 /* force charge pump source */
147 charge_pump_source(fe, 1);
151 /* return pll to normal operation */
152 charge_pump_source(fe, 0);
156 /* set rfagc to normal speed mode */
158 regs[R_EP3] &= ~0x04;
161 tda18271_write_regs(fe, R_EP3, 1);
166 static int tda18271_read_thermometer(struct dvb_frontend *fe)
168 struct tda18271_priv *priv = fe->tuner_priv;
169 unsigned char *regs = priv->tda18271_regs;
172 /* switch thermometer on */
174 tda18271_write_regs(fe, R_TM, 1);
176 /* read thermometer info */
177 tda18271_read_regs(fe);
179 if ((((regs[R_TM] & 0x0f) == 0x00) && ((regs[R_TM] & 0x20) == 0x20)) ||
180 (((regs[R_TM] & 0x0f) == 0x08) && ((regs[R_TM] & 0x20) == 0x00))) {
182 if ((regs[R_TM] & 0x20) == 0x20)
187 tda18271_write_regs(fe, R_TM, 1);
189 msleep(10); /* temperature sensing */
191 /* read thermometer info */
192 tda18271_read_regs(fe);
195 tm = tda18271_lookup_thermometer(fe);
197 /* switch thermometer off */
199 tda18271_write_regs(fe, R_TM, 1);
201 /* set CAL mode to normal */
202 regs[R_EP4] &= ~0x03;
203 tda18271_write_regs(fe, R_EP4, 1);
208 /* ------------------------------------------------------------------ */
210 static int tda18271c2_rf_tracking_filters_correction(struct dvb_frontend *fe,
213 struct tda18271_priv *priv = fe->tuner_priv;
214 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
215 unsigned char *regs = priv->tda18271_regs;
216 int tm_current, rfcal_comp, approx, i;
217 u8 dc_over_dt, rf_tab;
220 tda18271_set_standby_mode(fe, 0, 0, 0);
222 /* read die current temperature */
223 tm_current = tda18271_read_thermometer(fe);
225 /* frequency dependent parameters */
227 tda18271_calc_rf_cal(fe, &freq);
228 rf_tab = regs[R_EB14];
230 i = tda18271_lookup_rf_band(fe, &freq, NULL);
234 if ((0 == map[i].rf3) || (freq / 1000 < map[i].rf2)) {
235 approx = map[i].rf_a1 *
236 (freq / 1000 - map[i].rf1) + map[i].rf_b1 + rf_tab;
238 approx = map[i].rf_a2 *
239 (freq / 1000 - map[i].rf2) + map[i].rf_b2 + rf_tab;
247 tda18271_lookup_map(fe, RF_CAL_DC_OVER_DT, &freq, &dc_over_dt);
249 /* calculate temperature compensation */
250 rfcal_comp = dc_over_dt * (tm_current - priv->tm_rfcal);
252 regs[R_EB14] = approx + rfcal_comp;
253 tda18271_write_regs(fe, R_EB14, 1);
258 static int tda18271_por(struct dvb_frontend *fe)
260 struct tda18271_priv *priv = fe->tuner_priv;
261 unsigned char *regs = priv->tda18271_regs;
263 /* power up detector 1 */
264 regs[R_EB12] &= ~0x20;
265 tda18271_write_regs(fe, R_EB12, 1);
267 regs[R_EB18] &= ~0x80; /* turn agc1 loop on */
268 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
269 tda18271_write_regs(fe, R_EB18, 1);
271 regs[R_EB21] |= 0x03; /* set agc2_gain to -6 dB */
274 tda18271_set_standby_mode(fe, 1, 0, 0);
276 /* disable 1.5 MHz low pass filter */
277 regs[R_EB23] &= ~0x04; /* forcelp_fc2_en = 0 */
278 regs[R_EB23] &= ~0x02; /* XXX: lp_fc[2] = 0 */
279 tda18271_write_regs(fe, R_EB21, 3);
284 static int tda18271_calibrate_rf(struct dvb_frontend *fe, u32 freq)
286 struct tda18271_priv *priv = fe->tuner_priv;
287 unsigned char *regs = priv->tda18271_regs;
290 /* set CAL mode to normal */
291 regs[R_EP4] &= ~0x03;
292 tda18271_write_regs(fe, R_EP4, 1);
294 /* switch off agc1 */
295 regs[R_EP3] |= 0x40; /* sm_lt = 1 */
297 regs[R_EB18] |= 0x03; /* set agc1_gain to 15 dB */
298 tda18271_write_regs(fe, R_EB18, 1);
300 /* frequency dependent parameters */
302 tda18271_calc_bp_filter(fe, &freq);
303 tda18271_calc_gain_taper(fe, &freq);
304 tda18271_calc_rf_band(fe, &freq);
305 tda18271_calc_km(fe, &freq);
307 tda18271_write_regs(fe, R_EP1, 3);
308 tda18271_write_regs(fe, R_EB13, 1);
310 /* main pll charge pump source */
311 tda18271_charge_pump_source(fe, TDA18271_MAIN_PLL, 1);
313 /* cal pll charge pump source */
314 tda18271_charge_pump_source(fe, TDA18271_CAL_PLL, 1);
316 /* force dcdc converter to 0 V */
318 tda18271_write_regs(fe, R_EB14, 1);
320 /* disable plls lock */
321 regs[R_EB20] &= ~0x20;
322 tda18271_write_regs(fe, R_EB20, 1);
324 /* set CAL mode to RF tracking filter calibration */
326 tda18271_write_regs(fe, R_EP4, 2);
328 /* --------------------------------------------------------------- */
330 /* set the internal calibration signal */
333 tda18271_calc_cal_pll(fe, N);
334 tda18271_write_regs(fe, R_CPD, 4);
336 /* downconvert internal calibration */
339 tda18271_calc_main_pll(fe, N);
340 tda18271_write_regs(fe, R_MPD, 4);
344 tda18271_write_regs(fe, R_EP2, 1);
345 tda18271_write_regs(fe, R_EP1, 1);
346 tda18271_write_regs(fe, R_EP2, 1);
347 tda18271_write_regs(fe, R_EP1, 1);
349 /* --------------------------------------------------------------- */
351 /* normal operation for the main pll */
352 tda18271_charge_pump_source(fe, TDA18271_MAIN_PLL, 0);
354 /* normal operation for the cal pll */
355 tda18271_charge_pump_source(fe, TDA18271_CAL_PLL, 0);
357 msleep(10); /* plls locking */
359 /* launch the rf tracking filters calibration */
360 regs[R_EB20] |= 0x20;
361 tda18271_write_regs(fe, R_EB20, 1);
363 msleep(60); /* calibration */
365 /* --------------------------------------------------------------- */
367 /* set CAL mode to normal */
368 regs[R_EP4] &= ~0x03;
371 regs[R_EP3] &= ~0x40; /* sm_lt = 0 */
373 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
374 tda18271_write_regs(fe, R_EB18, 1);
376 tda18271_write_regs(fe, R_EP3, 2);
378 /* synchronization */
379 tda18271_write_regs(fe, R_EP1, 1);
381 /* get calibration result */
382 tda18271_read_extended(fe);
387 static int tda18271_powerscan(struct dvb_frontend *fe,
388 u32 *freq_in, u32 *freq_out)
390 struct tda18271_priv *priv = fe->tuner_priv;
391 unsigned char *regs = priv->tda18271_regs;
392 int sgn, bcal, count, wait;
399 tda18271_calc_rf_band(fe, &freq);
400 tda18271_calc_rf_cal(fe, &freq);
401 tda18271_calc_gain_taper(fe, &freq);
402 tda18271_lookup_cid_target(fe, &freq, &cid_target, &count_limit);
404 tda18271_write_regs(fe, R_EP2, 1);
405 tda18271_write_regs(fe, R_EB14, 1);
407 /* downconvert frequency */
410 tda18271_calc_main_pll(fe, freq);
411 tda18271_write_regs(fe, R_MPD, 4);
413 msleep(5); /* pll locking */
416 regs[R_EP4] &= ~0x03;
418 tda18271_write_regs(fe, R_EP4, 1);
420 /* launch power detection measurement */
421 tda18271_write_regs(fe, R_EP2, 1);
423 /* read power detection info, stored in EB10 */
424 tda18271_read_extended(fe);
426 /* algorithm initialization */
428 *freq_out = *freq_in;
433 while ((regs[R_EB10] & 0x3f) < cid_target) {
434 /* downconvert updated freq to 1 MHz */
435 freq = *freq_in + (sgn * count) + 1000000;
437 tda18271_calc_main_pll(fe, freq);
438 tda18271_write_regs(fe, R_MPD, 4);
441 msleep(5); /* pll locking */
444 udelay(100); /* pll locking */
446 /* launch power detection measurement */
447 tda18271_write_regs(fe, R_EP2, 1);
449 /* read power detection info, stored in EB10 */
450 tda18271_read_extended(fe);
454 if (count <= count_limit)
465 if ((regs[R_EB10] & 0x3f) >= cid_target) {
467 *freq_out = freq - 1000000;
471 tda_cal("bcal = %d, freq_in = %d, freq_out = %d (freq = %d)\n",
472 bcal, *freq_in, *freq_out, freq);
477 static int tda18271_powerscan_init(struct dvb_frontend *fe)
479 struct tda18271_priv *priv = fe->tuner_priv;
480 unsigned char *regs = priv->tda18271_regs;
482 /* set standard to digital */
483 regs[R_EP3] &= ~0x1f; /* clear std bits */
486 /* set cal mode to normal */
487 regs[R_EP4] &= ~0x03;
489 /* update IF output level & IF notch frequency */
490 regs[R_EP4] &= ~0x1c; /* clear if level bits */
492 tda18271_write_regs(fe, R_EP3, 2);
494 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
495 tda18271_write_regs(fe, R_EB18, 1);
497 regs[R_EB21] &= ~0x03; /* set agc2_gain to -15 dB */
499 /* 1.5 MHz low pass filter */
500 regs[R_EB23] |= 0x04; /* forcelp_fc2_en = 1 */
501 regs[R_EB23] |= 0x02; /* lp_fc[2] = 1 */
503 tda18271_write_regs(fe, R_EB21, 3);
508 static int tda18271_rf_tracking_filters_init(struct dvb_frontend *fe, u32 freq)
510 struct tda18271_priv *priv = fe->tuner_priv;
511 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
512 unsigned char *regs = priv->tda18271_regs;
522 i = tda18271_lookup_rf_band(fe, &freq, NULL);
527 rf_default[RF1] = 1000 * map[i].rf1_def;
528 rf_default[RF2] = 1000 * map[i].rf2_def;
529 rf_default[RF3] = 1000 * map[i].rf3_def;
531 for (rf = RF1; rf <= RF3; rf++) {
532 if (0 == rf_default[rf])
534 tda_cal("freq = %d, rf = %d\n", freq, rf);
536 /* look for optimized calibration frequency */
537 bcal = tda18271_powerscan(fe, &rf_default[rf], &rf_freq[rf]);
539 tda18271_calc_rf_cal(fe, &rf_freq[rf]);
540 prog_tab[rf] = regs[R_EB14];
543 prog_cal[rf] = tda18271_calibrate_rf(fe, rf_freq[rf]);
545 prog_cal[rf] = prog_tab[rf];
550 map[i].rf_b1 = prog_cal[RF1] - prog_tab[RF1];
551 map[i].rf1 = rf_freq[RF1] / 1000;
554 map[i].rf_a1 = (prog_cal[RF2] - prog_tab[RF2] -
555 prog_cal[RF1] + prog_tab[RF1]) /
556 ((rf_freq[RF2] - rf_freq[RF1]) / 1000);
557 map[i].rf2 = rf_freq[RF2] / 1000;
560 map[i].rf_a2 = (prog_cal[RF3] - prog_tab[RF3] -
561 prog_cal[RF2] + prog_tab[RF2]) /
562 ((rf_freq[RF3] - rf_freq[RF2]) / 1000);
563 map[i].rf_b2 = prog_cal[RF2] - prog_tab[RF2];
564 map[i].rf3 = rf_freq[RF3] / 1000;
574 static int tda18271_calc_rf_filter_curve(struct dvb_frontend *fe)
576 struct tda18271_priv *priv = fe->tuner_priv;
579 tda_info("tda18271: performing RF tracking filter calibration\n");
581 /* wait for die temperature stabilization */
584 tda18271_powerscan_init(fe);
586 /* rf band calibration */
587 for (i = 0; priv->rf_cal_state[i].rfmax != 0; i++)
588 tda18271_rf_tracking_filters_init(fe, 1000 *
589 priv->rf_cal_state[i].rfmax);
591 priv->tm_rfcal = tda18271_read_thermometer(fe);
596 /* ------------------------------------------------------------------ */
598 static int tda18271c2_rf_cal_init(struct dvb_frontend *fe)
600 struct tda18271_priv *priv = fe->tuner_priv;
601 unsigned char *regs = priv->tda18271_regs;
603 /* test RF_CAL_OK to see if we need init */
604 if ((regs[R_EP1] & 0x10) == 0)
605 priv->cal_initialized = false;
607 if (priv->cal_initialized)
610 tda18271_calc_rf_filter_curve(fe);
614 tda_info("tda18271: RF tracking filter calibration complete\n");
616 priv->cal_initialized = true;
621 static int tda18271c1_rf_tracking_filter_calibration(struct dvb_frontend *fe,
624 struct tda18271_priv *priv = fe->tuner_priv;
625 unsigned char *regs = priv->tda18271_regs;
628 /* calculate bp filter */
629 tda18271_calc_bp_filter(fe, &freq);
630 tda18271_write_regs(fe, R_EP1, 1);
634 tda18271_write_regs(fe, R_EB4, 1);
637 tda18271_write_regs(fe, R_EB7, 1);
640 tda18271_write_regs(fe, R_EB14, 1);
643 tda18271_write_regs(fe, R_EB20, 1);
645 /* set cal mode to RF tracking filter calibration */
648 /* calculate cal pll */
650 switch (priv->mode) {
651 case TDA18271_ANALOG:
654 case TDA18271_DIGITAL:
659 tda18271_calc_cal_pll(fe, N);
661 /* calculate main pll */
663 switch (priv->mode) {
664 case TDA18271_ANALOG:
667 case TDA18271_DIGITAL:
668 N = freq + bw / 2 + 1000000;
672 tda18271_calc_main_pll(fe, N);
674 tda18271_write_regs(fe, R_EP3, 11);
675 msleep(5); /* RF tracking filter calibration initialization */
677 /* search for K,M,CO for RF calibration */
678 tda18271_calc_km(fe, &freq);
679 tda18271_write_regs(fe, R_EB13, 1);
681 /* search for rf band */
682 tda18271_calc_rf_band(fe, &freq);
684 /* search for gain taper */
685 tda18271_calc_gain_taper(fe, &freq);
687 tda18271_write_regs(fe, R_EP2, 1);
688 tda18271_write_regs(fe, R_EP1, 1);
689 tda18271_write_regs(fe, R_EP2, 1);
690 tda18271_write_regs(fe, R_EP1, 1);
694 tda18271_write_regs(fe, R_EB4, 1);
697 tda18271_write_regs(fe, R_EB7, 1);
698 msleep(10); /* pll locking */
701 tda18271_write_regs(fe, R_EB20, 1);
702 msleep(60); /* RF tracking filter calibration completion */
704 regs[R_EP4] &= ~0x03; /* set cal mode to normal */
705 tda18271_write_regs(fe, R_EP4, 1);
707 tda18271_write_regs(fe, R_EP1, 1);
709 /* RF tracking filter correction for VHF_Low band */
710 if (0 == tda18271_calc_rf_cal(fe, &freq))
711 tda18271_write_regs(fe, R_EB14, 1);
716 /* ------------------------------------------------------------------ */
718 static int tda18271_ir_cal_init(struct dvb_frontend *fe)
720 struct tda18271_priv *priv = fe->tuner_priv;
721 unsigned char *regs = priv->tda18271_regs;
723 tda18271_read_regs(fe);
725 /* test IR_CAL_OK to see if we need init */
726 if ((regs[R_EP1] & 0x08) == 0)
727 tda18271_init_regs(fe);
732 static int tda18271_init(struct dvb_frontend *fe)
734 struct tda18271_priv *priv = fe->tuner_priv;
736 mutex_lock(&priv->lock);
739 tda18271_set_standby_mode(fe, 0, 0, 0);
742 tda18271_ir_cal_init(fe);
744 if (priv->id == TDA18271HDC2)
745 tda18271c2_rf_cal_init(fe);
747 mutex_unlock(&priv->lock);
752 static int tda18271_tune(struct dvb_frontend *fe,
753 struct tda18271_std_map_item *map, u32 freq, u32 bw)
755 struct tda18271_priv *priv = fe->tuner_priv;
757 tda_dbg("freq = %d, ifc = %d, bw = %d, agc_mode = %d, std = %d\n",
758 freq, map->if_freq, bw, map->agc_mode, map->std);
762 mutex_lock(&priv->lock);
766 tda18271c1_rf_tracking_filter_calibration(fe, freq, bw);
769 tda18271c2_rf_tracking_filters_correction(fe, freq);
772 tda18271_channel_configuration(fe, map, freq, bw);
774 mutex_unlock(&priv->lock);
779 /* ------------------------------------------------------------------ */
781 static int tda18271_set_params(struct dvb_frontend *fe,
782 struct dvb_frontend_parameters *params)
784 struct tda18271_priv *priv = fe->tuner_priv;
785 struct tda18271_std_map *std_map = &priv->std;
786 struct tda18271_std_map_item *map;
788 u32 bw, freq = params->frequency;
790 priv->mode = TDA18271_DIGITAL;
792 if (fe->ops.info.type == FE_ATSC) {
793 switch (params->u.vsb.modulation) {
796 map = &std_map->atsc_6;
800 map = &std_map->qam_6;
803 tda_warn("modulation not set!\n");
807 /* userspace request is already center adjusted */
808 freq += 1750000; /* Adjust to center (+1.75MHZ) */
811 } else if (fe->ops.info.type == FE_OFDM) {
812 switch (params->u.ofdm.bandwidth) {
813 case BANDWIDTH_6_MHZ:
815 map = &std_map->dvbt_6;
817 case BANDWIDTH_7_MHZ:
819 map = &std_map->dvbt_7;
821 case BANDWIDTH_8_MHZ:
823 map = &std_map->dvbt_8;
826 tda_warn("bandwidth not set!\n");
830 tda_warn("modulation type not supported!\n");
834 /* When tuning digital, the analog demod must be tri-stated */
835 if (fe->ops.analog_ops.standby)
836 fe->ops.analog_ops.standby(fe);
838 ret = tda18271_tune(fe, map, freq, bw);
843 priv->frequency = freq;
844 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
845 params->u.ofdm.bandwidth : 0;
850 static int tda18271_set_analog_params(struct dvb_frontend *fe,
851 struct analog_parameters *params)
853 struct tda18271_priv *priv = fe->tuner_priv;
854 struct tda18271_std_map *std_map = &priv->std;
855 struct tda18271_std_map_item *map;
858 u32 freq = params->frequency * 62500;
860 priv->mode = TDA18271_ANALOG;
862 if (params->mode == V4L2_TUNER_RADIO) {
864 map = &std_map->fm_radio;
866 } else if (params->std & V4L2_STD_MN) {
867 map = &std_map->atv_mn;
869 } else if (params->std & V4L2_STD_B) {
870 map = &std_map->atv_b;
872 } else if (params->std & V4L2_STD_GH) {
873 map = &std_map->atv_gh;
875 } else if (params->std & V4L2_STD_PAL_I) {
876 map = &std_map->atv_i;
878 } else if (params->std & V4L2_STD_DK) {
879 map = &std_map->atv_dk;
881 } else if (params->std & V4L2_STD_SECAM_L) {
882 map = &std_map->atv_l;
884 } else if (params->std & V4L2_STD_SECAM_LC) {
885 map = &std_map->atv_lc;
888 map = &std_map->atv_i;
892 tda_dbg("setting tda18271 to system %s\n", mode);
894 ret = tda18271_tune(fe, map, freq, 0);
899 priv->frequency = freq;
905 static int tda18271_sleep(struct dvb_frontend *fe)
907 struct tda18271_priv *priv = fe->tuner_priv;
909 mutex_lock(&priv->lock);
911 /* standby mode w/ slave tuner output
912 * & loop thru & xtal oscillator on */
913 tda18271_set_standby_mode(fe, 1, 0, 0);
915 mutex_unlock(&priv->lock);
920 static int tda18271_release(struct dvb_frontend *fe)
922 struct tda18271_priv *priv = fe->tuner_priv;
924 mutex_lock(&tda18271_list_mutex);
927 hybrid_tuner_release_state(priv);
929 mutex_unlock(&tda18271_list_mutex);
931 fe->tuner_priv = NULL;
936 static int tda18271_get_frequency(struct dvb_frontend *fe, u32 *frequency)
938 struct tda18271_priv *priv = fe->tuner_priv;
939 *frequency = priv->frequency;
943 static int tda18271_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
945 struct tda18271_priv *priv = fe->tuner_priv;
946 *bandwidth = priv->bandwidth;
950 /* ------------------------------------------------------------------ */
952 #define tda18271_update_std(std_cfg, name) do { \
953 if (map->std_cfg.if_freq + \
954 map->std_cfg.agc_mode + map->std_cfg.std + \
955 map->std_cfg.if_lvl + map->std_cfg.rfagc_top > 0) { \
956 tda_dbg("Using custom std config for %s\n", name); \
957 memcpy(&std->std_cfg, &map->std_cfg, \
958 sizeof(struct tda18271_std_map_item)); \
961 #define tda18271_dump_std_item(std_cfg, name) do { \
962 tda_dbg("(%s) if_freq = %d, agc_mode = %d, std = %d, " \
963 "if_lvl = %d, rfagc_top = 0x%02x\n", \
964 name, std->std_cfg.if_freq, \
965 std->std_cfg.agc_mode, std->std_cfg.std, \
966 std->std_cfg.if_lvl, std->std_cfg.rfagc_top); \
969 static int tda18271_dump_std_map(struct dvb_frontend *fe)
971 struct tda18271_priv *priv = fe->tuner_priv;
972 struct tda18271_std_map *std = &priv->std;
974 tda_dbg("========== STANDARD MAP SETTINGS ==========\n");
975 tda18271_dump_std_item(fm_radio, " fm ");
976 tda18271_dump_std_item(atv_b, "atv b ");
977 tda18271_dump_std_item(atv_dk, "atv dk");
978 tda18271_dump_std_item(atv_gh, "atv gh");
979 tda18271_dump_std_item(atv_i, "atv i ");
980 tda18271_dump_std_item(atv_l, "atv l ");
981 tda18271_dump_std_item(atv_lc, "atv l'");
982 tda18271_dump_std_item(atv_mn, "atv mn");
983 tda18271_dump_std_item(atsc_6, "atsc 6");
984 tda18271_dump_std_item(dvbt_6, "dvbt 6");
985 tda18271_dump_std_item(dvbt_7, "dvbt 7");
986 tda18271_dump_std_item(dvbt_8, "dvbt 8");
987 tda18271_dump_std_item(qam_6, "qam 6 ");
988 tda18271_dump_std_item(qam_8, "qam 8 ");
993 static int tda18271_update_std_map(struct dvb_frontend *fe,
994 struct tda18271_std_map *map)
996 struct tda18271_priv *priv = fe->tuner_priv;
997 struct tda18271_std_map *std = &priv->std;
1002 tda18271_update_std(fm_radio, "fm");
1003 tda18271_update_std(atv_b, "atv b");
1004 tda18271_update_std(atv_dk, "atv dk");
1005 tda18271_update_std(atv_gh, "atv gh");
1006 tda18271_update_std(atv_i, "atv i");
1007 tda18271_update_std(atv_l, "atv l");
1008 tda18271_update_std(atv_lc, "atv l'");
1009 tda18271_update_std(atv_mn, "atv mn");
1010 tda18271_update_std(atsc_6, "atsc 6");
1011 tda18271_update_std(dvbt_6, "dvbt 6");
1012 tda18271_update_std(dvbt_7, "dvbt 7");
1013 tda18271_update_std(dvbt_8, "dvbt 8");
1014 tda18271_update_std(qam_6, "qam 6");
1015 tda18271_update_std(qam_8, "qam 8");
1020 static int tda18271_get_id(struct dvb_frontend *fe)
1022 struct tda18271_priv *priv = fe->tuner_priv;
1023 unsigned char *regs = priv->tda18271_regs;
1027 mutex_lock(&priv->lock);
1028 tda18271_read_regs(fe);
1029 mutex_unlock(&priv->lock);
1031 switch (regs[R_ID] & 0x7f) {
1033 name = "TDA18271HD/C1";
1034 priv->id = TDA18271HDC1;
1037 name = "TDA18271HD/C2";
1038 priv->id = TDA18271HDC2;
1041 name = "Unknown device";
1046 tda_info("%s detected @ %d-%04x%s\n", name,
1047 i2c_adapter_id(priv->i2c_props.adap),
1048 priv->i2c_props.addr,
1049 (0 == ret) ? "" : ", device not supported.");
1054 static struct dvb_tuner_ops tda18271_tuner_ops = {
1056 .name = "NXP TDA18271HD",
1057 .frequency_min = 45000000,
1058 .frequency_max = 864000000,
1059 .frequency_step = 62500
1061 .init = tda18271_init,
1062 .sleep = tda18271_sleep,
1063 .set_params = tda18271_set_params,
1064 .set_analog_params = tda18271_set_analog_params,
1065 .release = tda18271_release,
1066 .get_frequency = tda18271_get_frequency,
1067 .get_bandwidth = tda18271_get_bandwidth,
1070 struct dvb_frontend *tda18271_attach(struct dvb_frontend *fe, u8 addr,
1071 struct i2c_adapter *i2c,
1072 struct tda18271_config *cfg)
1074 struct tda18271_priv *priv = NULL;
1077 mutex_lock(&tda18271_list_mutex);
1079 instance = hybrid_tuner_request_state(struct tda18271_priv, priv,
1080 hybrid_tuner_instance_list,
1081 i2c, addr, "tda18271");
1087 /* new tuner instance */
1088 priv->gate = (cfg) ? cfg->gate : TDA18271_GATE_AUTO;
1089 priv->role = (cfg) ? cfg->role : TDA18271_MASTER;
1090 priv->cal_initialized = false;
1091 mutex_init(&priv->lock);
1093 fe->tuner_priv = priv;
1096 priv->small_i2c = cfg->small_i2c;
1098 if (tda18271_get_id(fe) < 0)
1101 if (tda18271_assign_map_layout(fe) < 0)
1104 mutex_lock(&priv->lock);
1105 tda18271_init_regs(fe);
1107 if ((tda18271_cal_on_startup) && (priv->id == TDA18271HDC2))
1108 tda18271c2_rf_cal_init(fe);
1110 mutex_unlock(&priv->lock);
1113 /* existing tuner instance */
1114 fe->tuner_priv = priv;
1116 /* allow dvb driver to override i2c gate setting */
1117 if ((cfg) && (cfg->gate != TDA18271_GATE_ANALOG))
1118 priv->gate = cfg->gate;
1122 /* override default std map with values in config struct */
1123 if ((cfg) && (cfg->std_map))
1124 tda18271_update_std_map(fe, cfg->std_map);
1126 mutex_unlock(&tda18271_list_mutex);
1128 memcpy(&fe->ops.tuner_ops, &tda18271_tuner_ops,
1129 sizeof(struct dvb_tuner_ops));
1131 if (tda18271_debug & (DBG_MAP | DBG_ADV))
1132 tda18271_dump_std_map(fe);
1136 mutex_unlock(&tda18271_list_mutex);
1138 tda18271_release(fe);
1141 EXPORT_SYMBOL_GPL(tda18271_attach);
1142 MODULE_DESCRIPTION("NXP TDA18271HD analog / digital tuner driver");
1143 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
1144 MODULE_LICENSE("GPL");
1145 MODULE_VERSION("0.3");
1148 * Overrides for Emacs so that we follow Linus's tabbing style.
1149 * ---------------------------------------------------------------------------