1 // SPDX-License-Identifier: GPL-2.0-or-later
3 tda18271-fe.c - driver for the Philips / NXP TDA18271 silicon tuner
5 Copyright (C) 2007, 2008 Michael Krufky <mkrufky@linuxtv.org>
9 #include "tda18271-priv.h"
12 #include <linux/delay.h>
13 #include <linux/videodev2.h>
16 module_param_named(debug
, tda18271_debug
, int, 0644);
17 MODULE_PARM_DESC(debug
, "set debug level (info=1, map=2, reg=4, adv=8, cal=16 (or-able))");
19 static int tda18271_cal_on_startup
= -1;
20 module_param_named(cal
, tda18271_cal_on_startup
, int, 0644);
21 MODULE_PARM_DESC(cal
, "perform RF tracking filter calibration on startup");
23 static DEFINE_MUTEX(tda18271_list_mutex
);
24 static LIST_HEAD(hybrid_tuner_instance_list
);
26 /*---------------------------------------------------------------------*/
28 static int tda18271_toggle_output(struct dvb_frontend
*fe
, int standby
)
30 struct tda18271_priv
*priv
= fe
->tuner_priv
;
32 int ret
= tda18271_set_standby_mode(fe
, standby
? 1 : 0,
33 priv
->output_opt
& TDA18271_OUTPUT_LT_OFF
? 1 : 0,
34 priv
->output_opt
& TDA18271_OUTPUT_XT_OFF
? 1 : 0);
39 tda_dbg("%s mode: xtal oscillator %s, slave tuner loop through %s\n",
40 standby
? "standby" : "active",
41 priv
->output_opt
& TDA18271_OUTPUT_XT_OFF
? "off" : "on",
42 priv
->output_opt
& TDA18271_OUTPUT_LT_OFF
? "off" : "on");
47 /*---------------------------------------------------------------------*/
49 static inline int charge_pump_source(struct dvb_frontend
*fe
, int force
)
51 struct tda18271_priv
*priv
= fe
->tuner_priv
;
52 return tda18271_charge_pump_source(fe
,
53 (priv
->role
== TDA18271_SLAVE
) ?
55 TDA18271_MAIN_PLL
, force
);
58 static inline void tda18271_set_if_notch(struct dvb_frontend
*fe
)
60 struct tda18271_priv
*priv
= fe
->tuner_priv
;
61 unsigned char *regs
= priv
->tda18271_regs
;
65 regs
[R_MPD
] &= ~0x80; /* IF notch = 0 */
67 case TDA18271_DIGITAL
:
68 regs
[R_MPD
] |= 0x80; /* IF notch = 1 */
73 static int tda18271_channel_configuration(struct dvb_frontend
*fe
,
74 struct tda18271_std_map_item
*map
,
77 struct tda18271_priv
*priv
= fe
->tuner_priv
;
78 unsigned char *regs
= priv
->tda18271_regs
;
82 /* update TV broadcast parameters */
85 regs
[R_EP3
] &= ~0x1f; /* clear std bits */
86 regs
[R_EP3
] |= (map
->agc_mode
<< 3) | map
->std
;
88 if (priv
->id
== TDA18271HDC2
) {
89 /* set rfagc to high speed mode */
93 /* set cal mode to normal */
96 /* update IF output level */
97 regs
[R_EP4
] &= ~0x1c; /* clear if level bits */
98 regs
[R_EP4
] |= (map
->if_lvl
<< 2);
101 regs
[R_EP4
] &= ~0x80;
102 regs
[R_EP4
] |= map
->fm_rfn
<< 7;
104 /* update rf top / if top */
106 regs
[R_EB22
] |= map
->rfagc_top
;
107 ret
= tda18271_write_regs(fe
, R_EB22
, 1);
111 /* --------------------------------------------------------------- */
113 /* disable Power Level Indicator */
116 /* make sure thermometer is off */
119 /* frequency dependent parameters */
121 tda18271_calc_ir_measure(fe
, &freq
);
123 tda18271_calc_bp_filter(fe
, &freq
);
125 tda18271_calc_rf_band(fe
, &freq
);
127 tda18271_calc_gain_taper(fe
, &freq
);
129 /* --------------------------------------------------------------- */
131 /* dual tuner and agc1 extra configuration */
133 switch (priv
->role
) {
134 case TDA18271_MASTER
:
135 regs
[R_EB1
] |= 0x04; /* main vco */
138 regs
[R_EB1
] &= ~0x04; /* cal vco */
142 /* agc1 always active */
143 regs
[R_EB1
] &= ~0x02;
145 /* agc1 has priority on agc2 */
146 regs
[R_EB1
] &= ~0x01;
148 ret
= tda18271_write_regs(fe
, R_EB1
, 1);
152 /* --------------------------------------------------------------- */
154 N
= map
->if_freq
* 1000 + freq
;
156 switch (priv
->role
) {
157 case TDA18271_MASTER
:
158 tda18271_calc_main_pll(fe
, N
);
159 tda18271_set_if_notch(fe
);
160 tda18271_write_regs(fe
, R_MPD
, 4);
163 tda18271_calc_cal_pll(fe
, N
);
164 tda18271_write_regs(fe
, R_CPD
, 4);
166 regs
[R_MPD
] = regs
[R_CPD
] & 0x7f;
167 tda18271_set_if_notch(fe
);
168 tda18271_write_regs(fe
, R_MPD
, 1);
172 ret
= tda18271_write_regs(fe
, R_TM
, 7);
176 /* force charge pump source */
177 charge_pump_source(fe
, 1);
181 /* return pll to normal operation */
182 charge_pump_source(fe
, 0);
186 if (priv
->id
== TDA18271HDC2
) {
187 /* set rfagc to normal speed mode */
189 regs
[R_EP3
] &= ~0x04;
192 ret
= tda18271_write_regs(fe
, R_EP3
, 1);
198 static int tda18271_read_thermometer(struct dvb_frontend
*fe
)
200 struct tda18271_priv
*priv
= fe
->tuner_priv
;
201 unsigned char *regs
= priv
->tda18271_regs
;
204 /* switch thermometer on */
206 tda18271_write_regs(fe
, R_TM
, 1);
208 /* read thermometer info */
209 tda18271_read_regs(fe
);
211 if ((((regs
[R_TM
] & 0x0f) == 0x00) && ((regs
[R_TM
] & 0x20) == 0x20)) ||
212 (((regs
[R_TM
] & 0x0f) == 0x08) && ((regs
[R_TM
] & 0x20) == 0x00))) {
214 if ((regs
[R_TM
] & 0x20) == 0x20)
219 tda18271_write_regs(fe
, R_TM
, 1);
221 msleep(10); /* temperature sensing */
223 /* read thermometer info */
224 tda18271_read_regs(fe
);
227 tm
= tda18271_lookup_thermometer(fe
);
229 /* switch thermometer off */
231 tda18271_write_regs(fe
, R_TM
, 1);
233 /* set CAL mode to normal */
234 regs
[R_EP4
] &= ~0x03;
235 tda18271_write_regs(fe
, R_EP4
, 1);
240 /* ------------------------------------------------------------------ */
242 static int tda18271c2_rf_tracking_filters_correction(struct dvb_frontend
*fe
,
245 struct tda18271_priv
*priv
= fe
->tuner_priv
;
246 struct tda18271_rf_tracking_filter_cal
*map
= priv
->rf_cal_state
;
247 unsigned char *regs
= priv
->tda18271_regs
;
249 u8 tm_current
, dc_over_dt
, rf_tab
;
250 s32 rfcal_comp
, approx
;
253 ret
= tda18271_set_standby_mode(fe
, 0, 0, 0);
257 /* read die current temperature */
258 tm_current
= tda18271_read_thermometer(fe
);
260 /* frequency dependent parameters */
262 tda18271_calc_rf_cal(fe
, &freq
);
263 rf_tab
= regs
[R_EB14
];
265 i
= tda18271_lookup_rf_band(fe
, &freq
, NULL
);
269 if ((0 == map
[i
].rf3
) || (freq
/ 1000 < map
[i
].rf2
)) {
270 approx
= map
[i
].rf_a1
* (s32
)(freq
/ 1000 - map
[i
].rf1
) +
271 map
[i
].rf_b1
+ rf_tab
;
273 approx
= map
[i
].rf_a2
* (s32
)(freq
/ 1000 - map
[i
].rf2
) +
274 map
[i
].rf_b2
+ rf_tab
;
282 ret
= tda18271_lookup_map(fe
, RF_CAL_DC_OVER_DT
, &freq
, &dc_over_dt
);
286 /* calculate temperature compensation */
287 rfcal_comp
= dc_over_dt
* (s32
)(tm_current
- priv
->tm_rfcal
) / 1000;
289 regs
[R_EB14
] = (unsigned char)(approx
+ rfcal_comp
);
290 ret
= tda18271_write_regs(fe
, R_EB14
, 1);
295 static int tda18271_por(struct dvb_frontend
*fe
)
297 struct tda18271_priv
*priv
= fe
->tuner_priv
;
298 unsigned char *regs
= priv
->tda18271_regs
;
301 /* power up detector 1 */
302 regs
[R_EB12
] &= ~0x20;
303 ret
= tda18271_write_regs(fe
, R_EB12
, 1);
307 regs
[R_EB18
] &= ~0x80; /* turn agc1 loop on */
308 regs
[R_EB18
] &= ~0x03; /* set agc1_gain to 6 dB */
309 ret
= tda18271_write_regs(fe
, R_EB18
, 1);
313 regs
[R_EB21
] |= 0x03; /* set agc2_gain to -6 dB */
316 ret
= tda18271_set_standby_mode(fe
, 1, 0, 0);
320 /* disable 1.5 MHz low pass filter */
321 regs
[R_EB23
] &= ~0x04; /* forcelp_fc2_en = 0 */
322 regs
[R_EB23
] &= ~0x02; /* XXX: lp_fc[2] = 0 */
323 ret
= tda18271_write_regs(fe
, R_EB21
, 3);
328 static int tda18271_calibrate_rf(struct dvb_frontend
*fe
, u32 freq
)
330 struct tda18271_priv
*priv
= fe
->tuner_priv
;
331 unsigned char *regs
= priv
->tda18271_regs
;
334 /* set CAL mode to normal */
335 regs
[R_EP4
] &= ~0x03;
336 tda18271_write_regs(fe
, R_EP4
, 1);
338 /* switch off agc1 */
339 regs
[R_EP3
] |= 0x40; /* sm_lt = 1 */
341 regs
[R_EB18
] |= 0x03; /* set agc1_gain to 15 dB */
342 tda18271_write_regs(fe
, R_EB18
, 1);
344 /* frequency dependent parameters */
346 tda18271_calc_bp_filter(fe
, &freq
);
347 tda18271_calc_gain_taper(fe
, &freq
);
348 tda18271_calc_rf_band(fe
, &freq
);
349 tda18271_calc_km(fe
, &freq
);
351 tda18271_write_regs(fe
, R_EP1
, 3);
352 tda18271_write_regs(fe
, R_EB13
, 1);
354 /* main pll charge pump source */
355 tda18271_charge_pump_source(fe
, TDA18271_MAIN_PLL
, 1);
357 /* cal pll charge pump source */
358 tda18271_charge_pump_source(fe
, TDA18271_CAL_PLL
, 1);
360 /* force dcdc converter to 0 V */
362 tda18271_write_regs(fe
, R_EB14
, 1);
364 /* disable plls lock */
365 regs
[R_EB20
] &= ~0x20;
366 tda18271_write_regs(fe
, R_EB20
, 1);
368 /* set CAL mode to RF tracking filter calibration */
370 tda18271_write_regs(fe
, R_EP4
, 2);
372 /* --------------------------------------------------------------- */
374 /* set the internal calibration signal */
377 tda18271_calc_cal_pll(fe
, N
);
378 tda18271_write_regs(fe
, R_CPD
, 4);
380 /* downconvert internal calibration */
383 tda18271_calc_main_pll(fe
, N
);
384 tda18271_write_regs(fe
, R_MPD
, 4);
388 tda18271_write_regs(fe
, R_EP2
, 1);
389 tda18271_write_regs(fe
, R_EP1
, 1);
390 tda18271_write_regs(fe
, R_EP2
, 1);
391 tda18271_write_regs(fe
, R_EP1
, 1);
393 /* --------------------------------------------------------------- */
395 /* normal operation for the main pll */
396 tda18271_charge_pump_source(fe
, TDA18271_MAIN_PLL
, 0);
398 /* normal operation for the cal pll */
399 tda18271_charge_pump_source(fe
, TDA18271_CAL_PLL
, 0);
401 msleep(10); /* plls locking */
403 /* launch the rf tracking filters calibration */
404 regs
[R_EB20
] |= 0x20;
405 tda18271_write_regs(fe
, R_EB20
, 1);
407 msleep(60); /* calibration */
409 /* --------------------------------------------------------------- */
411 /* set CAL mode to normal */
412 regs
[R_EP4
] &= ~0x03;
415 regs
[R_EP3
] &= ~0x40; /* sm_lt = 0 */
417 regs
[R_EB18
] &= ~0x03; /* set agc1_gain to 6 dB */
418 tda18271_write_regs(fe
, R_EB18
, 1);
420 tda18271_write_regs(fe
, R_EP3
, 2);
422 /* synchronization */
423 tda18271_write_regs(fe
, R_EP1
, 1);
425 /* get calibration result */
426 tda18271_read_extended(fe
);
431 static int tda18271_powerscan(struct dvb_frontend
*fe
,
432 u32
*freq_in
, u32
*freq_out
)
434 struct tda18271_priv
*priv
= fe
->tuner_priv
;
435 unsigned char *regs
= priv
->tda18271_regs
;
436 int sgn
, bcal
, count
, wait
, ret
;
443 tda18271_calc_rf_band(fe
, &freq
);
444 tda18271_calc_rf_cal(fe
, &freq
);
445 tda18271_calc_gain_taper(fe
, &freq
);
446 tda18271_lookup_cid_target(fe
, &freq
, &cid_target
, &count_limit
);
448 tda18271_write_regs(fe
, R_EP2
, 1);
449 tda18271_write_regs(fe
, R_EB14
, 1);
451 /* downconvert frequency */
454 tda18271_calc_main_pll(fe
, freq
);
455 tda18271_write_regs(fe
, R_MPD
, 4);
457 msleep(5); /* pll locking */
460 regs
[R_EP4
] &= ~0x03;
462 tda18271_write_regs(fe
, R_EP4
, 1);
464 /* launch power detection measurement */
465 tda18271_write_regs(fe
, R_EP2
, 1);
467 /* read power detection info, stored in EB10 */
468 ret
= tda18271_read_extended(fe
);
472 /* algorithm initialization */
474 *freq_out
= *freq_in
;
478 while ((regs
[R_EB10
] & 0x3f) < cid_target
) {
479 /* downconvert updated freq to 1 MHz */
480 freq
= *freq_in
+ (sgn
* count
) + 1000000;
482 tda18271_calc_main_pll(fe
, freq
);
483 tda18271_write_regs(fe
, R_MPD
, 4);
486 msleep(5); /* pll locking */
489 udelay(100); /* pll locking */
491 /* launch power detection measurement */
492 tda18271_write_regs(fe
, R_EP2
, 1);
494 /* read power detection info, stored in EB10 */
495 ret
= tda18271_read_extended(fe
);
501 if (count
<= count_limit
)
512 if ((regs
[R_EB10
] & 0x3f) >= cid_target
) {
514 *freq_out
= freq
- 1000000;
518 tda_cal("bcal = %d, freq_in = %d, freq_out = %d (freq = %d)\n",
519 bcal
, *freq_in
, *freq_out
, freq
);
524 static int tda18271_powerscan_init(struct dvb_frontend
*fe
)
526 struct tda18271_priv
*priv
= fe
->tuner_priv
;
527 unsigned char *regs
= priv
->tda18271_regs
;
530 /* set standard to digital */
531 regs
[R_EP3
] &= ~0x1f; /* clear std bits */
534 /* set cal mode to normal */
535 regs
[R_EP4
] &= ~0x03;
537 /* update IF output level */
538 regs
[R_EP4
] &= ~0x1c; /* clear if level bits */
540 ret
= tda18271_write_regs(fe
, R_EP3
, 2);
544 regs
[R_EB18
] &= ~0x03; /* set agc1_gain to 6 dB */
545 ret
= tda18271_write_regs(fe
, R_EB18
, 1);
549 regs
[R_EB21
] &= ~0x03; /* set agc2_gain to -15 dB */
551 /* 1.5 MHz low pass filter */
552 regs
[R_EB23
] |= 0x04; /* forcelp_fc2_en = 1 */
553 regs
[R_EB23
] |= 0x02; /* lp_fc[2] = 1 */
555 ret
= tda18271_write_regs(fe
, R_EB21
, 3);
560 static int tda18271_rf_tracking_filters_init(struct dvb_frontend
*fe
, u32 freq
)
562 struct tda18271_priv
*priv
= fe
->tuner_priv
;
563 struct tda18271_rf_tracking_filter_cal
*map
= priv
->rf_cal_state
;
564 unsigned char *regs
= priv
->tda18271_regs
;
566 s32 divisor
, dividend
;
575 i
= tda18271_lookup_rf_band(fe
, &freq
, NULL
);
580 rf_default
[RF1
] = 1000 * map
[i
].rf1_def
;
581 rf_default
[RF2
] = 1000 * map
[i
].rf2_def
;
582 rf_default
[RF3
] = 1000 * map
[i
].rf3_def
;
584 for (rf
= RF1
; rf
<= RF3
; rf
++) {
585 if (0 == rf_default
[rf
])
587 tda_cal("freq = %d, rf = %d\n", freq
, rf
);
589 /* look for optimized calibration frequency */
590 bcal
= tda18271_powerscan(fe
, &rf_default
[rf
], &rf_freq
[rf
]);
594 tda18271_calc_rf_cal(fe
, &rf_freq
[rf
]);
595 prog_tab
[rf
] = (s32
)regs
[R_EB14
];
599 (s32
)tda18271_calibrate_rf(fe
, rf_freq
[rf
]);
601 prog_cal
[rf
] = prog_tab
[rf
];
606 map
[i
].rf_b1
= (prog_cal
[RF1
] - prog_tab
[RF1
]);
607 map
[i
].rf1
= rf_freq
[RF1
] / 1000;
610 dividend
= (prog_cal
[RF2
] - prog_tab
[RF2
] -
611 prog_cal
[RF1
] + prog_tab
[RF1
]);
612 divisor
= (s32
)(rf_freq
[RF2
] - rf_freq
[RF1
]) / 1000;
613 map
[i
].rf_a1
= (dividend
/ divisor
);
614 map
[i
].rf2
= rf_freq
[RF2
] / 1000;
617 dividend
= (prog_cal
[RF3
] - prog_tab
[RF3
] -
618 prog_cal
[RF2
] + prog_tab
[RF2
]);
619 divisor
= (s32
)(rf_freq
[RF3
] - rf_freq
[RF2
]) / 1000;
620 map
[i
].rf_a2
= (dividend
/ divisor
);
621 map
[i
].rf_b2
= (prog_cal
[RF2
] - prog_tab
[RF2
]);
622 map
[i
].rf3
= rf_freq
[RF3
] / 1000;
632 static int tda18271_calc_rf_filter_curve(struct dvb_frontend
*fe
)
634 struct tda18271_priv
*priv
= fe
->tuner_priv
;
638 tda_info("performing RF tracking filter calibration\n");
640 /* wait for die temperature stabilization */
643 ret
= tda18271_powerscan_init(fe
);
647 /* rf band calibration */
648 for (i
= 0; priv
->rf_cal_state
[i
].rfmax
!= 0; i
++) {
650 tda18271_rf_tracking_filters_init(fe
, 1000 *
651 priv
->rf_cal_state
[i
].rfmax
);
656 priv
->tm_rfcal
= tda18271_read_thermometer(fe
);
661 /* ------------------------------------------------------------------ */
663 static int tda18271c2_rf_cal_init(struct dvb_frontend
*fe
)
665 struct tda18271_priv
*priv
= fe
->tuner_priv
;
666 unsigned char *regs
= priv
->tda18271_regs
;
669 /* test RF_CAL_OK to see if we need init */
670 if ((regs
[R_EP1
] & 0x10) == 0)
671 priv
->cal_initialized
= false;
673 if (priv
->cal_initialized
)
676 ret
= tda18271_calc_rf_filter_curve(fe
);
680 ret
= tda18271_por(fe
);
684 tda_info("RF tracking filter calibration complete\n");
686 priv
->cal_initialized
= true;
689 tda_info("RF tracking filter calibration failed!\n");
694 static int tda18271c1_rf_tracking_filter_calibration(struct dvb_frontend
*fe
,
697 struct tda18271_priv
*priv
= fe
->tuner_priv
;
698 unsigned char *regs
= priv
->tda18271_regs
;
702 /* calculate bp filter */
703 tda18271_calc_bp_filter(fe
, &freq
);
704 tda18271_write_regs(fe
, R_EP1
, 1);
708 tda18271_write_regs(fe
, R_EB4
, 1);
711 tda18271_write_regs(fe
, R_EB7
, 1);
714 tda18271_write_regs(fe
, R_EB14
, 1);
717 tda18271_write_regs(fe
, R_EB20
, 1);
719 /* set cal mode to RF tracking filter calibration */
722 /* calculate cal pll */
724 switch (priv
->mode
) {
725 case TDA18271_ANALOG
:
728 case TDA18271_DIGITAL
:
733 tda18271_calc_cal_pll(fe
, N
);
735 /* calculate main pll */
737 switch (priv
->mode
) {
738 case TDA18271_ANALOG
:
741 case TDA18271_DIGITAL
:
742 N
= freq
+ bw
/ 2 + 1000000;
746 tda18271_calc_main_pll(fe
, N
);
748 ret
= tda18271_write_regs(fe
, R_EP3
, 11);
752 msleep(5); /* RF tracking filter calibration initialization */
754 /* search for K,M,CO for RF calibration */
755 tda18271_calc_km(fe
, &freq
);
756 tda18271_write_regs(fe
, R_EB13
, 1);
758 /* search for rf band */
759 tda18271_calc_rf_band(fe
, &freq
);
761 /* search for gain taper */
762 tda18271_calc_gain_taper(fe
, &freq
);
764 tda18271_write_regs(fe
, R_EP2
, 1);
765 tda18271_write_regs(fe
, R_EP1
, 1);
766 tda18271_write_regs(fe
, R_EP2
, 1);
767 tda18271_write_regs(fe
, R_EP1
, 1);
771 tda18271_write_regs(fe
, R_EB4
, 1);
774 tda18271_write_regs(fe
, R_EB7
, 1);
775 msleep(10); /* pll locking */
778 tda18271_write_regs(fe
, R_EB20
, 1);
779 msleep(60); /* RF tracking filter calibration completion */
781 regs
[R_EP4
] &= ~0x03; /* set cal mode to normal */
782 tda18271_write_regs(fe
, R_EP4
, 1);
784 tda18271_write_regs(fe
, R_EP1
, 1);
786 /* RF tracking filter correction for VHF_Low band */
787 if (0 == tda18271_calc_rf_cal(fe
, &freq
))
788 tda18271_write_regs(fe
, R_EB14
, 1);
793 /* ------------------------------------------------------------------ */
795 static int tda18271_ir_cal_init(struct dvb_frontend
*fe
)
797 struct tda18271_priv
*priv
= fe
->tuner_priv
;
798 unsigned char *regs
= priv
->tda18271_regs
;
801 ret
= tda18271_read_regs(fe
);
805 /* test IR_CAL_OK to see if we need init */
806 if ((regs
[R_EP1
] & 0x08) == 0)
807 ret
= tda18271_init_regs(fe
);
812 static int tda18271_init(struct dvb_frontend
*fe
)
814 struct tda18271_priv
*priv
= fe
->tuner_priv
;
817 mutex_lock(&priv
->lock
);
820 ret
= tda18271_set_standby_mode(fe
, 0, 0, 0);
825 ret
= tda18271_ir_cal_init(fe
);
829 if (priv
->id
== TDA18271HDC2
)
830 tda18271c2_rf_cal_init(fe
);
832 mutex_unlock(&priv
->lock
);
837 static int tda18271_sleep(struct dvb_frontend
*fe
)
839 struct tda18271_priv
*priv
= fe
->tuner_priv
;
842 mutex_lock(&priv
->lock
);
844 /* enter standby mode, with required output features enabled */
845 ret
= tda18271_toggle_output(fe
, 1);
847 mutex_unlock(&priv
->lock
);
852 /* ------------------------------------------------------------------ */
854 static int tda18271_agc(struct dvb_frontend
*fe
)
856 struct tda18271_priv
*priv
= fe
->tuner_priv
;
859 switch (priv
->config
) {
860 case TDA8290_LNA_OFF
:
861 /* no external agc configuration required */
862 if (tda18271_debug
& DBG_ADV
)
863 tda_dbg("no agc configuration provided\n");
865 case TDA8290_LNA_ON_BRIDGE
:
866 /* switch with GPIO of saa713x */
867 tda_dbg("invoking callback\n");
869 ret
= fe
->callback(priv
->i2c_props
.adap
->algo_data
,
870 DVB_FRONTEND_COMPONENT_TUNER
,
871 TDA18271_CALLBACK_CMD_AGC_ENABLE
,
874 case TDA8290_LNA_GP0_HIGH_ON
:
875 case TDA8290_LNA_GP0_HIGH_OFF
:
877 /* n/a - currently not supported */
878 tda_err("unsupported configuration: %d\n", priv
->config
);
885 static int tda18271_tune(struct dvb_frontend
*fe
,
886 struct tda18271_std_map_item
*map
, u32 freq
, u32 bw
)
888 struct tda18271_priv
*priv
= fe
->tuner_priv
;
891 tda_dbg("freq = %d, ifc = %d, bw = %d, agc_mode = %d, std = %d\n",
892 freq
, map
->if_freq
, bw
, map
->agc_mode
, map
->std
);
894 ret
= tda18271_agc(fe
);
896 tda_warn("failed to configure agc\n");
898 ret
= tda18271_init(fe
);
902 mutex_lock(&priv
->lock
);
906 tda18271c1_rf_tracking_filter_calibration(fe
, freq
, bw
);
909 tda18271c2_rf_tracking_filters_correction(fe
, freq
);
912 ret
= tda18271_channel_configuration(fe
, map
, freq
, bw
);
914 mutex_unlock(&priv
->lock
);
919 /* ------------------------------------------------------------------ */
921 static int tda18271_set_params(struct dvb_frontend
*fe
)
923 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
924 u32 delsys
= c
->delivery_system
;
925 u32 bw
= c
->bandwidth_hz
;
926 u32 freq
= c
->frequency
;
927 struct tda18271_priv
*priv
= fe
->tuner_priv
;
928 struct tda18271_std_map
*std_map
= &priv
->std
;
929 struct tda18271_std_map_item
*map
;
932 priv
->mode
= TDA18271_DIGITAL
;
936 map
= &std_map
->atsc_6
;
943 map
= &std_map
->dvbt_6
;
944 } else if (bw
<= 7000000) {
945 map
= &std_map
->dvbt_7
;
947 map
= &std_map
->dvbt_8
;
950 case SYS_DVBC_ANNEX_B
:
953 case SYS_DVBC_ANNEX_A
:
954 case SYS_DVBC_ANNEX_C
:
956 map
= &std_map
->qam_6
;
957 } else if (bw
<= 7000000) {
958 map
= &std_map
->qam_7
;
960 map
= &std_map
->qam_8
;
964 tda_warn("modulation type not supported!\n");
968 /* When tuning digital, the analog demod must be tri-stated */
969 if (fe
->ops
.analog_ops
.standby
)
970 fe
->ops
.analog_ops
.standby(fe
);
972 ret
= tda18271_tune(fe
, map
, freq
, bw
);
977 priv
->if_freq
= map
->if_freq
;
978 priv
->frequency
= freq
;
979 priv
->bandwidth
= bw
;
984 static int tda18271_set_analog_params(struct dvb_frontend
*fe
,
985 struct analog_parameters
*params
)
987 struct tda18271_priv
*priv
= fe
->tuner_priv
;
988 struct tda18271_std_map
*std_map
= &priv
->std
;
989 struct tda18271_std_map_item
*map
;
992 u32 freq
= params
->frequency
* 125 *
993 ((params
->mode
== V4L2_TUNER_RADIO
) ? 1 : 1000) / 2;
995 priv
->mode
= TDA18271_ANALOG
;
997 if (params
->mode
== V4L2_TUNER_RADIO
) {
998 map
= &std_map
->fm_radio
;
1000 } else if (params
->std
& V4L2_STD_MN
) {
1001 map
= &std_map
->atv_mn
;
1003 } else if (params
->std
& V4L2_STD_B
) {
1004 map
= &std_map
->atv_b
;
1006 } else if (params
->std
& V4L2_STD_GH
) {
1007 map
= &std_map
->atv_gh
;
1009 } else if (params
->std
& V4L2_STD_PAL_I
) {
1010 map
= &std_map
->atv_i
;
1012 } else if (params
->std
& V4L2_STD_DK
) {
1013 map
= &std_map
->atv_dk
;
1015 } else if (params
->std
& V4L2_STD_SECAM_L
) {
1016 map
= &std_map
->atv_l
;
1018 } else if (params
->std
& V4L2_STD_SECAM_LC
) {
1019 map
= &std_map
->atv_lc
;
1022 map
= &std_map
->atv_i
;
1026 tda_dbg("setting tda18271 to system %s\n", mode
);
1028 ret
= tda18271_tune(fe
, map
, freq
, 0);
1033 priv
->if_freq
= map
->if_freq
;
1034 priv
->frequency
= freq
;
1035 priv
->bandwidth
= 0;
1040 static void tda18271_release(struct dvb_frontend
*fe
)
1042 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1044 mutex_lock(&tda18271_list_mutex
);
1047 hybrid_tuner_release_state(priv
);
1049 mutex_unlock(&tda18271_list_mutex
);
1051 fe
->tuner_priv
= NULL
;
1054 static int tda18271_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
1056 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1057 *frequency
= priv
->frequency
;
1061 static int tda18271_get_bandwidth(struct dvb_frontend
*fe
, u32
*bandwidth
)
1063 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1064 *bandwidth
= priv
->bandwidth
;
1068 static int tda18271_get_if_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
1070 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1071 *frequency
= (u32
)priv
->if_freq
* 1000;
1075 /* ------------------------------------------------------------------ */
1077 #define tda18271_update_std(std_cfg, name) do { \
1078 if (map->std_cfg.if_freq + \
1079 map->std_cfg.agc_mode + map->std_cfg.std + \
1080 map->std_cfg.if_lvl + map->std_cfg.rfagc_top > 0) { \
1081 tda_dbg("Using custom std config for %s\n", name); \
1082 memcpy(&std->std_cfg, &map->std_cfg, \
1083 sizeof(struct tda18271_std_map_item)); \
1086 #define tda18271_dump_std_item(std_cfg, name) do { \
1087 tda_dbg("(%s) if_freq = %d, agc_mode = %d, std = %d, " \
1088 "if_lvl = %d, rfagc_top = 0x%02x\n", \
1089 name, std->std_cfg.if_freq, \
1090 std->std_cfg.agc_mode, std->std_cfg.std, \
1091 std->std_cfg.if_lvl, std->std_cfg.rfagc_top); \
1094 static int tda18271_dump_std_map(struct dvb_frontend
*fe
)
1096 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1097 struct tda18271_std_map
*std
= &priv
->std
;
1099 tda_dbg("========== STANDARD MAP SETTINGS ==========\n");
1100 tda18271_dump_std_item(fm_radio
, " fm ");
1101 tda18271_dump_std_item(atv_b
, "atv b ");
1102 tda18271_dump_std_item(atv_dk
, "atv dk");
1103 tda18271_dump_std_item(atv_gh
, "atv gh");
1104 tda18271_dump_std_item(atv_i
, "atv i ");
1105 tda18271_dump_std_item(atv_l
, "atv l ");
1106 tda18271_dump_std_item(atv_lc
, "atv l'");
1107 tda18271_dump_std_item(atv_mn
, "atv mn");
1108 tda18271_dump_std_item(atsc_6
, "atsc 6");
1109 tda18271_dump_std_item(dvbt_6
, "dvbt 6");
1110 tda18271_dump_std_item(dvbt_7
, "dvbt 7");
1111 tda18271_dump_std_item(dvbt_8
, "dvbt 8");
1112 tda18271_dump_std_item(qam_6
, "qam 6 ");
1113 tda18271_dump_std_item(qam_7
, "qam 7 ");
1114 tda18271_dump_std_item(qam_8
, "qam 8 ");
1119 static int tda18271_update_std_map(struct dvb_frontend
*fe
,
1120 struct tda18271_std_map
*map
)
1122 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1123 struct tda18271_std_map
*std
= &priv
->std
;
1128 tda18271_update_std(fm_radio
, "fm");
1129 tda18271_update_std(atv_b
, "atv b");
1130 tda18271_update_std(atv_dk
, "atv dk");
1131 tda18271_update_std(atv_gh
, "atv gh");
1132 tda18271_update_std(atv_i
, "atv i");
1133 tda18271_update_std(atv_l
, "atv l");
1134 tda18271_update_std(atv_lc
, "atv l'");
1135 tda18271_update_std(atv_mn
, "atv mn");
1136 tda18271_update_std(atsc_6
, "atsc 6");
1137 tda18271_update_std(dvbt_6
, "dvbt 6");
1138 tda18271_update_std(dvbt_7
, "dvbt 7");
1139 tda18271_update_std(dvbt_8
, "dvbt 8");
1140 tda18271_update_std(qam_6
, "qam 6");
1141 tda18271_update_std(qam_7
, "qam 7");
1142 tda18271_update_std(qam_8
, "qam 8");
1147 static int tda18271_get_id(struct dvb_frontend
*fe
)
1149 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1150 unsigned char *regs
= priv
->tda18271_regs
;
1154 mutex_lock(&priv
->lock
);
1155 ret
= tda18271_read_regs(fe
);
1156 mutex_unlock(&priv
->lock
);
1159 tda_info("Error reading device ID @ %d-%04x, bailing out.\n",
1160 i2c_adapter_id(priv
->i2c_props
.adap
),
1161 priv
->i2c_props
.addr
);
1165 switch (regs
[R_ID
] & 0x7f) {
1167 name
= "TDA18271HD/C1";
1168 priv
->id
= TDA18271HDC1
;
1171 name
= "TDA18271HD/C2";
1172 priv
->id
= TDA18271HDC2
;
1175 tda_info("Unknown device (%i) detected @ %d-%04x, device not supported.\n",
1176 regs
[R_ID
], i2c_adapter_id(priv
->i2c_props
.adap
),
1177 priv
->i2c_props
.addr
);
1181 tda_info("%s detected @ %d-%04x\n", name
,
1182 i2c_adapter_id(priv
->i2c_props
.adap
), priv
->i2c_props
.addr
);
1187 static int tda18271_setup_configuration(struct dvb_frontend
*fe
,
1188 struct tda18271_config
*cfg
)
1190 struct tda18271_priv
*priv
= fe
->tuner_priv
;
1192 priv
->gate
= (cfg
) ? cfg
->gate
: TDA18271_GATE_AUTO
;
1193 priv
->role
= (cfg
) ? cfg
->role
: TDA18271_MASTER
;
1194 priv
->config
= (cfg
) ? cfg
->config
: 0;
1195 priv
->small_i2c
= (cfg
) ?
1196 cfg
->small_i2c
: TDA18271_39_BYTE_CHUNK_INIT
;
1197 priv
->output_opt
= (cfg
) ?
1198 cfg
->output_opt
: TDA18271_OUTPUT_LT_XT_ON
;
1203 static inline int tda18271_need_cal_on_startup(struct tda18271_config
*cfg
)
1205 /* tda18271_cal_on_startup == -1 when cal module option is unset */
1206 return ((tda18271_cal_on_startup
== -1) ?
1207 /* honor configuration setting */
1208 ((cfg
) && (cfg
->rf_cal_on_startup
)) :
1209 /* module option overrides configuration setting */
1210 (tda18271_cal_on_startup
)) ? 1 : 0;
1213 static int tda18271_set_config(struct dvb_frontend
*fe
, void *priv_cfg
)
1215 struct tda18271_config
*cfg
= (struct tda18271_config
*) priv_cfg
;
1217 tda18271_setup_configuration(fe
, cfg
);
1219 if (tda18271_need_cal_on_startup(cfg
))
1222 /* override default std map with values in config struct */
1223 if ((cfg
) && (cfg
->std_map
))
1224 tda18271_update_std_map(fe
, cfg
->std_map
);
1229 static const struct dvb_tuner_ops tda18271_tuner_ops
= {
1231 .name
= "NXP TDA18271HD",
1232 .frequency_min_hz
= 45 * MHz
,
1233 .frequency_max_hz
= 864 * MHz
,
1234 .frequency_step_hz
= 62500
1236 .init
= tda18271_init
,
1237 .sleep
= tda18271_sleep
,
1238 .set_params
= tda18271_set_params
,
1239 .set_analog_params
= tda18271_set_analog_params
,
1240 .release
= tda18271_release
,
1241 .set_config
= tda18271_set_config
,
1242 .get_frequency
= tda18271_get_frequency
,
1243 .get_bandwidth
= tda18271_get_bandwidth
,
1244 .get_if_frequency
= tda18271_get_if_frequency
,
1247 struct dvb_frontend
*tda18271_attach(struct dvb_frontend
*fe
, u8 addr
,
1248 struct i2c_adapter
*i2c
,
1249 struct tda18271_config
*cfg
)
1251 struct tda18271_priv
*priv
= NULL
;
1254 mutex_lock(&tda18271_list_mutex
);
1256 instance
= hybrid_tuner_request_state(struct tda18271_priv
, priv
,
1257 hybrid_tuner_instance_list
,
1258 i2c
, addr
, "tda18271");
1263 /* new tuner instance */
1264 fe
->tuner_priv
= priv
;
1266 tda18271_setup_configuration(fe
, cfg
);
1268 priv
->cal_initialized
= false;
1269 mutex_init(&priv
->lock
);
1271 ret
= tda18271_get_id(fe
);
1275 ret
= tda18271_assign_map_layout(fe
);
1279 /* if delay_cal is set, delay IR & RF calibration until init()
1280 * module option 'cal' overrides this delay */
1281 if ((cfg
->delay_cal
) && (!tda18271_need_cal_on_startup(cfg
)))
1284 mutex_lock(&priv
->lock
);
1285 tda18271_init_regs(fe
);
1287 if ((tda18271_need_cal_on_startup(cfg
)) &&
1288 (priv
->id
== TDA18271HDC2
))
1289 tda18271c2_rf_cal_init(fe
);
1291 /* enter standby mode, with required output features enabled */
1292 ret
= tda18271_toggle_output(fe
, 1);
1295 mutex_unlock(&priv
->lock
);
1298 /* existing tuner instance */
1299 fe
->tuner_priv
= priv
;
1301 /* allow dvb driver to override configuration settings */
1303 if (cfg
->gate
!= TDA18271_GATE_ANALOG
)
1304 priv
->gate
= cfg
->gate
;
1306 priv
->role
= cfg
->role
;
1308 priv
->config
= cfg
->config
;
1310 priv
->small_i2c
= cfg
->small_i2c
;
1311 if (cfg
->output_opt
)
1312 priv
->output_opt
= cfg
->output_opt
;
1314 tda18271_update_std_map(fe
, cfg
->std_map
);
1316 if (tda18271_need_cal_on_startup(cfg
))
1321 /* override default std map with values in config struct */
1322 if ((cfg
) && (cfg
->std_map
))
1323 tda18271_update_std_map(fe
, cfg
->std_map
);
1325 mutex_unlock(&tda18271_list_mutex
);
1327 memcpy(&fe
->ops
.tuner_ops
, &tda18271_tuner_ops
,
1328 sizeof(struct dvb_tuner_ops
));
1330 if (tda18271_debug
& (DBG_MAP
| DBG_ADV
))
1331 tda18271_dump_std_map(fe
);
1335 mutex_unlock(&tda18271_list_mutex
);
1337 tda18271_release(fe
);
1340 EXPORT_SYMBOL_GPL(tda18271_attach
);
1341 MODULE_DESCRIPTION("NXP TDA18271HD analog / digital tuner driver");
1342 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
1343 MODULE_LICENSE("GPL");
1344 MODULE_VERSION("0.4");