blob: f8620741bb5fe0979cfc5b2a9935decfc27ad888 [file] [log] [blame]
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001/*
Michael Krufky6ca04de2007-11-23 16:52:15 -03002 tda18271-fe.c - driver for the Philips / NXP TDA18271 silicon tuner
Michael Krufky5bea1cd2007-10-22 09:56:38 -03003
Michael Krufky59067f72008-01-02 01:58:26 -03004 Copyright (C) 2007, 2008 Michael Krufky <mkrufky@linuxtv.org>
Michael Krufky5bea1cd2007-10-22 09:56:38 -03005
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.
10
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.
15
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.
19*/
20
Michael Krufky5bea1cd2007-10-22 09:56:38 -030021#include <linux/delay.h>
22#include <linux/videodev2.h>
Michael Krufky6ca04de2007-11-23 16:52:15 -030023#include "tda18271-priv.h"
Ondrej Zary1bacb2d2013-04-06 14:29:29 -030024#include "tda8290.h"
Michael Krufky5bea1cd2007-10-22 09:56:38 -030025
Michael Krufkyb5f3e1e2007-12-02 16:36:05 -030026int tda18271_debug;
Michael Krufky54465b02007-11-23 18:14:53 -030027module_param_named(debug, tda18271_debug, int, 0644);
Michael Krufky0e1fab92008-01-03 01:40:47 -030028MODULE_PARM_DESC(debug, "set debug level "
Michael Krufkycf04d292008-01-09 00:34:30 -030029 "(info=1, map=2, reg=4, adv=8, cal=16 (or-able))");
Michael Krufky5bea1cd2007-10-22 09:56:38 -030030
Michael Krufky81016b42009-08-27 16:58:06 -030031static int tda18271_cal_on_startup = -1;
Michael Krufky0f962512008-01-13 22:01:07 -030032module_param_named(cal, tda18271_cal_on_startup, int, 0644);
33MODULE_PARM_DESC(cal, "perform RF tracking filter calibration on startup");
34
Michael Krufkya4f263b2008-01-06 15:52:56 -030035static DEFINE_MUTEX(tda18271_list_mutex);
Michael Krufkyf9e315a2008-04-22 14:41:54 -030036static LIST_HEAD(hybrid_tuner_instance_list);
Michael Krufkya4f263b2008-01-06 15:52:56 -030037
Michael Krufky5bea1cd2007-10-22 09:56:38 -030038/*---------------------------------------------------------------------*/
39
Michael Krufky4240b462009-08-29 16:25:37 -030040static int tda18271_toggle_output(struct dvb_frontend *fe, int standby)
41{
42 struct tda18271_priv *priv = fe->tuner_priv;
43
44 int ret = tda18271_set_standby_mode(fe, standby ? 1 : 0,
45 priv->output_opt & TDA18271_OUTPUT_LT_OFF ? 1 : 0,
46 priv->output_opt & TDA18271_OUTPUT_XT_OFF ? 1 : 0);
47
48 if (tda_fail(ret))
49 goto fail;
50
51 tda_dbg("%s mode: xtal oscillator %s, slave tuner loop thru %s\n",
52 standby ? "standby" : "active",
53 priv->output_opt & TDA18271_OUTPUT_XT_OFF ? "off" : "on",
54 priv->output_opt & TDA18271_OUTPUT_LT_OFF ? "off" : "on");
55fail:
56 return ret;
57}
58
59/*---------------------------------------------------------------------*/
60
Michael Krufky868f5cc2008-04-22 14:46:23 -030061static inline int charge_pump_source(struct dvb_frontend *fe, int force)
62{
63 struct tda18271_priv *priv = fe->tuner_priv;
64 return tda18271_charge_pump_source(fe,
65 (priv->role == TDA18271_SLAVE) ?
66 TDA18271_CAL_PLL :
67 TDA18271_MAIN_PLL, force);
68}
69
Michael Krufky44e645c2008-06-08 20:10:29 -030070static inline void tda18271_set_if_notch(struct dvb_frontend *fe)
71{
72 struct tda18271_priv *priv = fe->tuner_priv;
73 unsigned char *regs = priv->tda18271_regs;
74
75 switch (priv->mode) {
76 case TDA18271_ANALOG:
77 regs[R_MPD] &= ~0x80; /* IF notch = 0 */
78 break;
79 case TDA18271_DIGITAL:
80 regs[R_MPD] |= 0x80; /* IF notch = 1 */
81 break;
82 }
83}
84
Michael Krufky255b5112008-01-01 22:52:09 -030085static int tda18271_channel_configuration(struct dvb_frontend *fe,
Michael Krufkyc293d0a2008-04-22 14:46:06 -030086 struct tda18271_std_map_item *map,
87 u32 freq, u32 bw)
Michael Krufky255b5112008-01-01 22:52:09 -030088{
89 struct tda18271_priv *priv = fe->tuner_priv;
90 unsigned char *regs = priv->tda18271_regs;
Michael Krufky31940e32008-05-04 19:37:27 -030091 int ret;
Michael Krufky255b5112008-01-01 22:52:09 -030092 u32 N;
93
94 /* update TV broadcast parameters */
95
96 /* set standard */
97 regs[R_EP3] &= ~0x1f; /* clear std bits */
Michael Krufky7f7203d2008-04-22 14:46:06 -030098 regs[R_EP3] |= (map->agc_mode << 3) | map->std;
Michael Krufky255b5112008-01-01 22:52:09 -030099
Michael Krufky51858d12008-06-09 02:03:31 -0300100 if (priv->id == TDA18271HDC2) {
101 /* set rfagc to high speed mode */
102 regs[R_EP3] &= ~0x04;
103 }
Michael Krufky40194b22008-04-22 14:46:22 -0300104
Michael Krufky255b5112008-01-01 22:52:09 -0300105 /* set cal mode to normal */
106 regs[R_EP4] &= ~0x03;
107
Michael Krufky44e645c2008-06-08 20:10:29 -0300108 /* update IF output level */
Michael Krufky255b5112008-01-01 22:52:09 -0300109 regs[R_EP4] &= ~0x1c; /* clear if level bits */
Michael Krufky14c74b22008-04-22 14:46:21 -0300110 regs[R_EP4] |= (map->if_lvl << 2);
Michael Krufky255b5112008-01-01 22:52:09 -0300111
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300112 /* update FM_RFn */
113 regs[R_EP4] &= ~0x80;
114 regs[R_EP4] |= map->fm_rfn << 7;
Michael Krufky255b5112008-01-01 22:52:09 -0300115
Michael Krufkyc0dc0c12008-04-22 14:46:22 -0300116 /* update rf top / if top */
117 regs[R_EB22] = 0x00;
118 regs[R_EB22] |= map->rfagc_top;
Michael Krufky31940e32008-05-04 19:37:27 -0300119 ret = tda18271_write_regs(fe, R_EB22, 1);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300120 if (tda_fail(ret))
Michael Krufky31940e32008-05-04 19:37:27 -0300121 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300122
123 /* --------------------------------------------------------------- */
124
125 /* disable Power Level Indicator */
126 regs[R_EP1] |= 0x40;
127
Michael Krufky7ae1ac42008-06-11 13:52:49 -0300128 /* make sure thermometer is off */
129 regs[R_TM] &= ~0x10;
130
Michael Krufky255b5112008-01-01 22:52:09 -0300131 /* frequency dependent parameters */
132
133 tda18271_calc_ir_measure(fe, &freq);
134
135 tda18271_calc_bp_filter(fe, &freq);
136
137 tda18271_calc_rf_band(fe, &freq);
138
139 tda18271_calc_gain_taper(fe, &freq);
140
141 /* --------------------------------------------------------------- */
142
143 /* dual tuner and agc1 extra configuration */
144
Michael Krufky868f5cc2008-04-22 14:46:23 -0300145 switch (priv->role) {
146 case TDA18271_MASTER:
147 regs[R_EB1] |= 0x04; /* main vco */
148 break;
149 case TDA18271_SLAVE:
150 regs[R_EB1] &= ~0x04; /* cal vco */
151 break;
152 }
Michael Krufky255b5112008-01-01 22:52:09 -0300153
154 /* agc1 always active */
155 regs[R_EB1] &= ~0x02;
156
157 /* agc1 has priority on agc2 */
158 regs[R_EB1] &= ~0x01;
159
Michael Krufky31940e32008-05-04 19:37:27 -0300160 ret = tda18271_write_regs(fe, R_EB1, 1);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300161 if (tda_fail(ret))
Michael Krufky31940e32008-05-04 19:37:27 -0300162 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300163
164 /* --------------------------------------------------------------- */
165
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300166 N = map->if_freq * 1000 + freq;
Michael Krufky255b5112008-01-01 22:52:09 -0300167
Michael Krufky868f5cc2008-04-22 14:46:23 -0300168 switch (priv->role) {
169 case TDA18271_MASTER:
170 tda18271_calc_main_pll(fe, N);
Michael Krufky44e645c2008-06-08 20:10:29 -0300171 tda18271_set_if_notch(fe);
Michael Krufky868f5cc2008-04-22 14:46:23 -0300172 tda18271_write_regs(fe, R_MPD, 4);
173 break;
174 case TDA18271_SLAVE:
175 tda18271_calc_cal_pll(fe, N);
176 tda18271_write_regs(fe, R_CPD, 4);
177
178 regs[R_MPD] = regs[R_CPD] & 0x7f;
Michael Krufky44e645c2008-06-08 20:10:29 -0300179 tda18271_set_if_notch(fe);
Michael Krufky868f5cc2008-04-22 14:46:23 -0300180 tda18271_write_regs(fe, R_MPD, 1);
181 break;
182 }
Michael Krufky255b5112008-01-01 22:52:09 -0300183
Michael Krufky31940e32008-05-04 19:37:27 -0300184 ret = tda18271_write_regs(fe, R_TM, 7);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300185 if (tda_fail(ret))
Michael Krufky31940e32008-05-04 19:37:27 -0300186 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300187
Michael Krufky868f5cc2008-04-22 14:46:23 -0300188 /* force charge pump source */
189 charge_pump_source(fe, 1);
Michael Krufky255b5112008-01-01 22:52:09 -0300190
191 msleep(1);
192
Michael Krufky868f5cc2008-04-22 14:46:23 -0300193 /* return pll to normal operation */
194 charge_pump_source(fe, 0);
Michael Krufky255b5112008-01-01 22:52:09 -0300195
Michael Krufky40194b22008-04-22 14:46:22 -0300196 msleep(20);
197
Michael Krufky51858d12008-06-09 02:03:31 -0300198 if (priv->id == TDA18271HDC2) {
199 /* set rfagc to normal speed mode */
200 if (map->fm_rfn)
201 regs[R_EP3] &= ~0x04;
202 else
203 regs[R_EP3] |= 0x04;
204 ret = tda18271_write_regs(fe, R_EP3, 1);
205 }
Michael Krufky31940e32008-05-04 19:37:27 -0300206fail:
207 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300208}
209
210static int tda18271_read_thermometer(struct dvb_frontend *fe)
211{
212 struct tda18271_priv *priv = fe->tuner_priv;
213 unsigned char *regs = priv->tda18271_regs;
214 int tm;
215
216 /* switch thermometer on */
217 regs[R_TM] |= 0x10;
218 tda18271_write_regs(fe, R_TM, 1);
219
220 /* read thermometer info */
221 tda18271_read_regs(fe);
222
223 if ((((regs[R_TM] & 0x0f) == 0x00) && ((regs[R_TM] & 0x20) == 0x20)) ||
224 (((regs[R_TM] & 0x0f) == 0x08) && ((regs[R_TM] & 0x20) == 0x00))) {
225
226 if ((regs[R_TM] & 0x20) == 0x20)
227 regs[R_TM] &= ~0x20;
228 else
229 regs[R_TM] |= 0x20;
230
231 tda18271_write_regs(fe, R_TM, 1);
232
233 msleep(10); /* temperature sensing */
234
235 /* read thermometer info */
236 tda18271_read_regs(fe);
237 }
238
239 tm = tda18271_lookup_thermometer(fe);
240
241 /* switch thermometer off */
242 regs[R_TM] &= ~0x10;
243 tda18271_write_regs(fe, R_TM, 1);
244
245 /* set CAL mode to normal */
246 regs[R_EP4] &= ~0x03;
247 tda18271_write_regs(fe, R_EP4, 1);
248
249 return tm;
250}
251
Michael Krufky12afe372008-04-22 14:42:07 -0300252/* ------------------------------------------------------------------ */
253
Michael Krufkyd1c53422008-04-22 14:42:07 -0300254static int tda18271c2_rf_tracking_filters_correction(struct dvb_frontend *fe,
255 u32 freq)
Michael Krufky255b5112008-01-01 22:52:09 -0300256{
257 struct tda18271_priv *priv = fe->tuner_priv;
258 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
259 unsigned char *regs = priv->tda18271_regs;
Michael Krufky3a6b49fe2009-09-27 23:10:20 -0300260 int i, ret;
261 u8 tm_current, dc_over_dt, rf_tab;
262 s32 rfcal_comp, approx;
Michael Krufky255b5112008-01-01 22:52:09 -0300263
264 /* power up */
Michael Krufky20f42062008-05-04 19:57:06 -0300265 ret = tda18271_set_standby_mode(fe, 0, 0, 0);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300266 if (tda_fail(ret))
Michael Krufky20f42062008-05-04 19:57:06 -0300267 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300268
269 /* read die current temperature */
270 tm_current = tda18271_read_thermometer(fe);
271
272 /* frequency dependent parameters */
273
274 tda18271_calc_rf_cal(fe, &freq);
275 rf_tab = regs[R_EB14];
276
277 i = tda18271_lookup_rf_band(fe, &freq, NULL);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300278 if (tda_fail(i))
279 return i;
Michael Krufky255b5112008-01-01 22:52:09 -0300280
281 if ((0 == map[i].rf3) || (freq / 1000 < map[i].rf2)) {
Michael Krufky3a6b49fe2009-09-27 23:10:20 -0300282 approx = map[i].rf_a1 * (s32)(freq / 1000 - map[i].rf1) +
283 map[i].rf_b1 + rf_tab;
Michael Krufky255b5112008-01-01 22:52:09 -0300284 } else {
Michael Krufky3a6b49fe2009-09-27 23:10:20 -0300285 approx = map[i].rf_a2 * (s32)(freq / 1000 - map[i].rf2) +
286 map[i].rf_b2 + rf_tab;
Michael Krufky255b5112008-01-01 22:52:09 -0300287 }
288
289 if (approx < 0)
290 approx = 0;
291 if (approx > 255)
292 approx = 255;
293
294 tda18271_lookup_map(fe, RF_CAL_DC_OVER_DT, &freq, &dc_over_dt);
295
296 /* calculate temperature compensation */
Michael Krufky3a6b49fe2009-09-27 23:10:20 -0300297 rfcal_comp = dc_over_dt * (s32)(tm_current - priv->tm_rfcal) / 1000;
Michael Krufky255b5112008-01-01 22:52:09 -0300298
Michael Krufky3a6b49fe2009-09-27 23:10:20 -0300299 regs[R_EB14] = (unsigned char)(approx + rfcal_comp);
Michael Krufky20f42062008-05-04 19:57:06 -0300300 ret = tda18271_write_regs(fe, R_EB14, 1);
301fail:
302 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300303}
304
305static int tda18271_por(struct dvb_frontend *fe)
306{
307 struct tda18271_priv *priv = fe->tuner_priv;
308 unsigned char *regs = priv->tda18271_regs;
Michael Krufky24124f72008-05-03 19:28:00 -0300309 int ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300310
311 /* power up detector 1 */
312 regs[R_EB12] &= ~0x20;
Michael Krufky24124f72008-05-03 19:28:00 -0300313 ret = tda18271_write_regs(fe, R_EB12, 1);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300314 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300315 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300316
317 regs[R_EB18] &= ~0x80; /* turn agc1 loop on */
318 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
Michael Krufky24124f72008-05-03 19:28:00 -0300319 ret = tda18271_write_regs(fe, R_EB18, 1);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300320 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300321 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300322
323 regs[R_EB21] |= 0x03; /* set agc2_gain to -6 dB */
324
325 /* POR mode */
Michael Krufky24124f72008-05-03 19:28:00 -0300326 ret = tda18271_set_standby_mode(fe, 1, 0, 0);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300327 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300328 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300329
330 /* disable 1.5 MHz low pass filter */
331 regs[R_EB23] &= ~0x04; /* forcelp_fc2_en = 0 */
332 regs[R_EB23] &= ~0x02; /* XXX: lp_fc[2] = 0 */
Michael Krufky24124f72008-05-03 19:28:00 -0300333 ret = tda18271_write_regs(fe, R_EB21, 3);
334fail:
335 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300336}
337
338static int tda18271_calibrate_rf(struct dvb_frontend *fe, u32 freq)
339{
340 struct tda18271_priv *priv = fe->tuner_priv;
341 unsigned char *regs = priv->tda18271_regs;
342 u32 N;
343
344 /* set CAL mode to normal */
345 regs[R_EP4] &= ~0x03;
346 tda18271_write_regs(fe, R_EP4, 1);
347
348 /* switch off agc1 */
349 regs[R_EP3] |= 0x40; /* sm_lt = 1 */
350
351 regs[R_EB18] |= 0x03; /* set agc1_gain to 15 dB */
352 tda18271_write_regs(fe, R_EB18, 1);
353
354 /* frequency dependent parameters */
355
356 tda18271_calc_bp_filter(fe, &freq);
357 tda18271_calc_gain_taper(fe, &freq);
358 tda18271_calc_rf_band(fe, &freq);
359 tda18271_calc_km(fe, &freq);
360
361 tda18271_write_regs(fe, R_EP1, 3);
362 tda18271_write_regs(fe, R_EB13, 1);
363
364 /* main pll charge pump source */
Michael Krufky4efb0ca2008-04-22 14:46:23 -0300365 tda18271_charge_pump_source(fe, TDA18271_MAIN_PLL, 1);
Michael Krufky255b5112008-01-01 22:52:09 -0300366
367 /* cal pll charge pump source */
Michael Krufky4efb0ca2008-04-22 14:46:23 -0300368 tda18271_charge_pump_source(fe, TDA18271_CAL_PLL, 1);
Michael Krufky255b5112008-01-01 22:52:09 -0300369
370 /* force dcdc converter to 0 V */
371 regs[R_EB14] = 0x00;
372 tda18271_write_regs(fe, R_EB14, 1);
373
374 /* disable plls lock */
375 regs[R_EB20] &= ~0x20;
376 tda18271_write_regs(fe, R_EB20, 1);
377
378 /* set CAL mode to RF tracking filter calibration */
379 regs[R_EP4] |= 0x03;
380 tda18271_write_regs(fe, R_EP4, 2);
381
382 /* --------------------------------------------------------------- */
383
384 /* set the internal calibration signal */
385 N = freq;
386
Michael Krufkyae07d042008-04-22 14:46:21 -0300387 tda18271_calc_cal_pll(fe, N);
388 tda18271_write_regs(fe, R_CPD, 4);
Michael Krufky255b5112008-01-01 22:52:09 -0300389
390 /* downconvert internal calibration */
391 N += 1000000;
392
393 tda18271_calc_main_pll(fe, N);
394 tda18271_write_regs(fe, R_MPD, 4);
395
396 msleep(5);
397
398 tda18271_write_regs(fe, R_EP2, 1);
399 tda18271_write_regs(fe, R_EP1, 1);
400 tda18271_write_regs(fe, R_EP2, 1);
401 tda18271_write_regs(fe, R_EP1, 1);
402
403 /* --------------------------------------------------------------- */
404
405 /* normal operation for the main pll */
Michael Krufky4efb0ca2008-04-22 14:46:23 -0300406 tda18271_charge_pump_source(fe, TDA18271_MAIN_PLL, 0);
Michael Krufky255b5112008-01-01 22:52:09 -0300407
408 /* normal operation for the cal pll */
Michael Krufky4efb0ca2008-04-22 14:46:23 -0300409 tda18271_charge_pump_source(fe, TDA18271_CAL_PLL, 0);
Michael Krufky255b5112008-01-01 22:52:09 -0300410
Michael Krufkyae07d042008-04-22 14:46:21 -0300411 msleep(10); /* plls locking */
Michael Krufky255b5112008-01-01 22:52:09 -0300412
413 /* launch the rf tracking filters calibration */
414 regs[R_EB20] |= 0x20;
415 tda18271_write_regs(fe, R_EB20, 1);
416
417 msleep(60); /* calibration */
418
419 /* --------------------------------------------------------------- */
420
421 /* set CAL mode to normal */
422 regs[R_EP4] &= ~0x03;
423
424 /* switch on agc1 */
425 regs[R_EP3] &= ~0x40; /* sm_lt = 0 */
426
427 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
428 tda18271_write_regs(fe, R_EB18, 1);
429
430 tda18271_write_regs(fe, R_EP3, 2);
431
432 /* synchronization */
433 tda18271_write_regs(fe, R_EP1, 1);
434
435 /* get calibration result */
436 tda18271_read_extended(fe);
437
438 return regs[R_EB14];
439}
440
441static int tda18271_powerscan(struct dvb_frontend *fe,
442 u32 *freq_in, u32 *freq_out)
443{
444 struct tda18271_priv *priv = fe->tuner_priv;
445 unsigned char *regs = priv->tda18271_regs;
Michael Krufky24124f72008-05-03 19:28:00 -0300446 int sgn, bcal, count, wait, ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300447 u8 cid_target;
448 u16 count_limit;
449 u32 freq;
450
451 freq = *freq_in;
452
453 tda18271_calc_rf_band(fe, &freq);
454 tda18271_calc_rf_cal(fe, &freq);
455 tda18271_calc_gain_taper(fe, &freq);
456 tda18271_lookup_cid_target(fe, &freq, &cid_target, &count_limit);
457
458 tda18271_write_regs(fe, R_EP2, 1);
459 tda18271_write_regs(fe, R_EB14, 1);
460
461 /* downconvert frequency */
462 freq += 1000000;
463
464 tda18271_calc_main_pll(fe, freq);
465 tda18271_write_regs(fe, R_MPD, 4);
466
467 msleep(5); /* pll locking */
468
469 /* detection mode */
470 regs[R_EP4] &= ~0x03;
471 regs[R_EP4] |= 0x01;
472 tda18271_write_regs(fe, R_EP4, 1);
473
474 /* launch power detection measurement */
475 tda18271_write_regs(fe, R_EP2, 1);
476
477 /* read power detection info, stored in EB10 */
Michael Krufky24124f72008-05-03 19:28:00 -0300478 ret = tda18271_read_extended(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300479 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300480 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300481
482 /* algorithm initialization */
483 sgn = 1;
484 *freq_out = *freq_in;
485 bcal = 0;
486 count = 0;
487 wait = false;
488
489 while ((regs[R_EB10] & 0x3f) < cid_target) {
490 /* downconvert updated freq to 1 MHz */
491 freq = *freq_in + (sgn * count) + 1000000;
492
493 tda18271_calc_main_pll(fe, freq);
494 tda18271_write_regs(fe, R_MPD, 4);
495
496 if (wait) {
497 msleep(5); /* pll locking */
498 wait = false;
499 } else
500 udelay(100); /* pll locking */
501
502 /* launch power detection measurement */
503 tda18271_write_regs(fe, R_EP2, 1);
504
505 /* read power detection info, stored in EB10 */
Michael Krufky24124f72008-05-03 19:28:00 -0300506 ret = tda18271_read_extended(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300507 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300508 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300509
510 count += 200;
511
Michael Krufkye7809a02008-04-22 14:46:22 -0300512 if (count <= count_limit)
Michael Krufky255b5112008-01-01 22:52:09 -0300513 continue;
514
515 if (sgn <= 0)
516 break;
517
518 sgn = -1 * sgn;
519 count = 200;
520 wait = true;
521 }
522
523 if ((regs[R_EB10] & 0x3f) >= cid_target) {
524 bcal = 1;
525 *freq_out = freq - 1000000;
526 } else
527 bcal = 0;
528
Michael Krufkycf04d292008-01-09 00:34:30 -0300529 tda_cal("bcal = %d, freq_in = %d, freq_out = %d (freq = %d)\n",
Michael Krufky255b5112008-01-01 22:52:09 -0300530 bcal, *freq_in, *freq_out, freq);
531
532 return bcal;
533}
534
535static int tda18271_powerscan_init(struct dvb_frontend *fe)
536{
537 struct tda18271_priv *priv = fe->tuner_priv;
538 unsigned char *regs = priv->tda18271_regs;
Michael Krufky24124f72008-05-03 19:28:00 -0300539 int ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300540
541 /* set standard to digital */
542 regs[R_EP3] &= ~0x1f; /* clear std bits */
543 regs[R_EP3] |= 0x12;
544
545 /* set cal mode to normal */
546 regs[R_EP4] &= ~0x03;
547
Michael Krufky44e645c2008-06-08 20:10:29 -0300548 /* update IF output level */
Michael Krufky255b5112008-01-01 22:52:09 -0300549 regs[R_EP4] &= ~0x1c; /* clear if level bits */
550
Michael Krufky24124f72008-05-03 19:28:00 -0300551 ret = tda18271_write_regs(fe, R_EP3, 2);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300552 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300553 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300554
555 regs[R_EB18] &= ~0x03; /* set agc1_gain to 6 dB */
Michael Krufky24124f72008-05-03 19:28:00 -0300556 ret = tda18271_write_regs(fe, R_EB18, 1);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300557 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300558 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300559
560 regs[R_EB21] &= ~0x03; /* set agc2_gain to -15 dB */
561
562 /* 1.5 MHz low pass filter */
563 regs[R_EB23] |= 0x04; /* forcelp_fc2_en = 1 */
564 regs[R_EB23] |= 0x02; /* lp_fc[2] = 1 */
565
Michael Krufky24124f72008-05-03 19:28:00 -0300566 ret = tda18271_write_regs(fe, R_EB21, 3);
567fail:
568 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300569}
570
571static int tda18271_rf_tracking_filters_init(struct dvb_frontend *fe, u32 freq)
572{
573 struct tda18271_priv *priv = fe->tuner_priv;
574 struct tda18271_rf_tracking_filter_cal *map = priv->rf_cal_state;
575 unsigned char *regs = priv->tda18271_regs;
576 int bcal, rf, i;
Michael Krufky3986bd12009-09-27 17:00:13 -0300577 s32 divisor, dividend;
Michael Krufky255b5112008-01-01 22:52:09 -0300578#define RF1 0
579#define RF2 1
580#define RF3 2
581 u32 rf_default[3];
582 u32 rf_freq[3];
Michael Krufky381ad0e2011-04-16 13:22:10 -0300583 s32 prog_cal[3];
584 s32 prog_tab[3];
Michael Krufky255b5112008-01-01 22:52:09 -0300585
586 i = tda18271_lookup_rf_band(fe, &freq, NULL);
587
Michael Krufky4bd5d102008-05-04 21:32:21 -0300588 if (tda_fail(i))
Michael Krufky255b5112008-01-01 22:52:09 -0300589 return i;
590
591 rf_default[RF1] = 1000 * map[i].rf1_def;
592 rf_default[RF2] = 1000 * map[i].rf2_def;
593 rf_default[RF3] = 1000 * map[i].rf3_def;
594
595 for (rf = RF1; rf <= RF3; rf++) {
596 if (0 == rf_default[rf])
597 return 0;
Michael Krufkycf04d292008-01-09 00:34:30 -0300598 tda_cal("freq = %d, rf = %d\n", freq, rf);
Michael Krufky255b5112008-01-01 22:52:09 -0300599
600 /* look for optimized calibration frequency */
601 bcal = tda18271_powerscan(fe, &rf_default[rf], &rf_freq[rf]);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300602 if (tda_fail(bcal))
Michael Krufky24124f72008-05-03 19:28:00 -0300603 return bcal;
Michael Krufky255b5112008-01-01 22:52:09 -0300604
605 tda18271_calc_rf_cal(fe, &rf_freq[rf]);
Michael Krufky381ad0e2011-04-16 13:22:10 -0300606 prog_tab[rf] = (s32)regs[R_EB14];
Michael Krufky255b5112008-01-01 22:52:09 -0300607
608 if (1 == bcal)
Michael Krufky381ad0e2011-04-16 13:22:10 -0300609 prog_cal[rf] =
610 (s32)tda18271_calibrate_rf(fe, rf_freq[rf]);
Michael Krufky255b5112008-01-01 22:52:09 -0300611 else
612 prog_cal[rf] = prog_tab[rf];
613
614 switch (rf) {
615 case RF1:
616 map[i].rf_a1 = 0;
Michael Krufky381ad0e2011-04-16 13:22:10 -0300617 map[i].rf_b1 = (prog_cal[RF1] - prog_tab[RF1]);
Michael Krufky255b5112008-01-01 22:52:09 -0300618 map[i].rf1 = rf_freq[RF1] / 1000;
619 break;
620 case RF2:
Michael Krufky381ad0e2011-04-16 13:22:10 -0300621 dividend = (prog_cal[RF2] - prog_tab[RF2] -
622 prog_cal[RF1] + prog_tab[RF1]);
Michael Krufky3986bd12009-09-27 17:00:13 -0300623 divisor = (s32)(rf_freq[RF2] - rf_freq[RF1]) / 1000;
624 map[i].rf_a1 = (dividend / divisor);
Michael Krufky255b5112008-01-01 22:52:09 -0300625 map[i].rf2 = rf_freq[RF2] / 1000;
626 break;
627 case RF3:
Michael Krufky381ad0e2011-04-16 13:22:10 -0300628 dividend = (prog_cal[RF3] - prog_tab[RF3] -
629 prog_cal[RF2] + prog_tab[RF2]);
Michael Krufky3986bd12009-09-27 17:00:13 -0300630 divisor = (s32)(rf_freq[RF3] - rf_freq[RF2]) / 1000;
631 map[i].rf_a2 = (dividend / divisor);
Michael Krufky381ad0e2011-04-16 13:22:10 -0300632 map[i].rf_b2 = (prog_cal[RF2] - prog_tab[RF2]);
Michael Krufky255b5112008-01-01 22:52:09 -0300633 map[i].rf3 = rf_freq[RF3] / 1000;
634 break;
635 default:
636 BUG();
637 }
638 }
639
640 return 0;
641}
642
Michael Krufky09f83c42008-01-05 20:00:09 -0300643static int tda18271_calc_rf_filter_curve(struct dvb_frontend *fe)
Michael Krufky255b5112008-01-01 22:52:09 -0300644{
645 struct tda18271_priv *priv = fe->tuner_priv;
646 unsigned int i;
Michael Krufky24124f72008-05-03 19:28:00 -0300647 int ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300648
649 tda_info("tda18271: performing RF tracking filter calibration\n");
650
651 /* wait for die temperature stabilization */
652 msleep(200);
653
Michael Krufky24124f72008-05-03 19:28:00 -0300654 ret = tda18271_powerscan_init(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300655 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300656 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300657
658 /* rf band calibration */
Michael Krufkyc151c322008-05-04 17:54:23 -0300659 for (i = 0; priv->rf_cal_state[i].rfmax != 0; i++) {
660 ret =
Michael Krufky255b5112008-01-01 22:52:09 -0300661 tda18271_rf_tracking_filters_init(fe, 1000 *
662 priv->rf_cal_state[i].rfmax);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300663 if (tda_fail(ret))
Michael Krufkyc151c322008-05-04 17:54:23 -0300664 goto fail;
665 }
Michael Krufky255b5112008-01-01 22:52:09 -0300666
Michael Krufky09f83c42008-01-05 20:00:09 -0300667 priv->tm_rfcal = tda18271_read_thermometer(fe);
Michael Krufky24124f72008-05-03 19:28:00 -0300668fail:
669 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300670}
671
672/* ------------------------------------------------------------------ */
673
Michael Krufky12afe372008-04-22 14:42:07 -0300674static int tda18271c2_rf_cal_init(struct dvb_frontend *fe)
Michael Krufky255b5112008-01-01 22:52:09 -0300675{
676 struct tda18271_priv *priv = fe->tuner_priv;
Michael Krufky839c6c92008-01-13 18:29:44 -0300677 unsigned char *regs = priv->tda18271_regs;
Michael Krufky24124f72008-05-03 19:28:00 -0300678 int ret;
Michael Krufky839c6c92008-01-13 18:29:44 -0300679
680 /* test RF_CAL_OK to see if we need init */
681 if ((regs[R_EP1] & 0x10) == 0)
682 priv->cal_initialized = false;
Michael Krufky255b5112008-01-01 22:52:09 -0300683
684 if (priv->cal_initialized)
685 return 0;
686
Michael Krufky24124f72008-05-03 19:28:00 -0300687 ret = tda18271_calc_rf_filter_curve(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300688 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300689 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300690
Michael Krufky24124f72008-05-03 19:28:00 -0300691 ret = tda18271_por(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300692 if (tda_fail(ret))
Michael Krufky24124f72008-05-03 19:28:00 -0300693 goto fail;
Michael Krufky255b5112008-01-01 22:52:09 -0300694
Michael Krufky6bfa6652008-01-07 00:51:48 -0300695 tda_info("tda18271: RF tracking filter calibration complete\n");
696
Michael Krufky255b5112008-01-01 22:52:09 -0300697 priv->cal_initialized = true;
Michael Krufkyc151c322008-05-04 17:54:23 -0300698 goto end;
Michael Krufky24124f72008-05-03 19:28:00 -0300699fail:
Michael Krufkyc151c322008-05-04 17:54:23 -0300700 tda_info("tda18271: RF tracking filter calibration failed!\n");
701end:
Michael Krufky24124f72008-05-03 19:28:00 -0300702 return ret;
Michael Krufky255b5112008-01-01 22:52:09 -0300703}
704
Michael Krufky4d2d42b2008-04-22 14:42:07 -0300705static int tda18271c1_rf_tracking_filter_calibration(struct dvb_frontend *fe,
706 u32 freq, u32 bw)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300707{
708 struct tda18271_priv *priv = fe->tuner_priv;
709 unsigned char *regs = priv->tda18271_regs;
Michael Krufky10ed0bf2008-05-04 20:26:47 -0300710 int ret;
Michael Krufkyfe0bf6d2007-12-24 05:05:05 -0300711 u32 N = 0;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300712
Michael Krufky255b5112008-01-01 22:52:09 -0300713 /* calculate bp filter */
Michael Krufkyb92bf0f2007-12-25 18:54:22 -0300714 tda18271_calc_bp_filter(fe, &freq);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300715 tda18271_write_regs(fe, R_EP1, 1);
716
717 regs[R_EB4] &= 0x07;
718 regs[R_EB4] |= 0x60;
719 tda18271_write_regs(fe, R_EB4, 1);
720
721 regs[R_EB7] = 0x60;
722 tda18271_write_regs(fe, R_EB7, 1);
723
724 regs[R_EB14] = 0x00;
725 tda18271_write_regs(fe, R_EB14, 1);
726
727 regs[R_EB20] = 0xcc;
728 tda18271_write_regs(fe, R_EB20, 1);
729
Michael Krufky255b5112008-01-01 22:52:09 -0300730 /* set cal mode to RF tracking filter calibration */
Michael Krufky26501a72007-12-21 14:28:46 -0300731 regs[R_EP4] |= 0x03;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300732
Michael Krufky255b5112008-01-01 22:52:09 -0300733 /* calculate cal pll */
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300734
735 switch (priv->mode) {
736 case TDA18271_ANALOG:
737 N = freq - 1250000;
738 break;
739 case TDA18271_DIGITAL:
740 N = freq + bw / 2;
741 break;
742 }
743
Michael Krufkyfe0bf6d2007-12-24 05:05:05 -0300744 tda18271_calc_cal_pll(fe, N);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300745
Michael Krufky255b5112008-01-01 22:52:09 -0300746 /* calculate main pll */
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300747
748 switch (priv->mode) {
749 case TDA18271_ANALOG:
750 N = freq - 250000;
751 break;
752 case TDA18271_DIGITAL:
753 N = freq + bw / 2 + 1000000;
754 break;
755 }
756
Michael Krufkyfe0bf6d2007-12-24 05:05:05 -0300757 tda18271_calc_main_pll(fe, N);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300758
Michael Krufky10ed0bf2008-05-04 20:26:47 -0300759 ret = tda18271_write_regs(fe, R_EP3, 11);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300760 if (tda_fail(ret))
Michael Krufky10ed0bf2008-05-04 20:26:47 -0300761 return ret;
762
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300763 msleep(5); /* RF tracking filter calibration initialization */
764
Michael Krufky255b5112008-01-01 22:52:09 -0300765 /* search for K,M,CO for RF calibration */
Michael Krufkyb92bf0f2007-12-25 18:54:22 -0300766 tda18271_calc_km(fe, &freq);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300767 tda18271_write_regs(fe, R_EB13, 1);
768
Michael Krufky255b5112008-01-01 22:52:09 -0300769 /* search for rf band */
Michael Krufkyb92bf0f2007-12-25 18:54:22 -0300770 tda18271_calc_rf_band(fe, &freq);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300771
Michael Krufky255b5112008-01-01 22:52:09 -0300772 /* search for gain taper */
Michael Krufkyb92bf0f2007-12-25 18:54:22 -0300773 tda18271_calc_gain_taper(fe, &freq);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300774
775 tda18271_write_regs(fe, R_EP2, 1);
776 tda18271_write_regs(fe, R_EP1, 1);
777 tda18271_write_regs(fe, R_EP2, 1);
778 tda18271_write_regs(fe, R_EP1, 1);
779
780 regs[R_EB4] &= 0x07;
781 regs[R_EB4] |= 0x40;
782 tda18271_write_regs(fe, R_EB4, 1);
783
784 regs[R_EB7] = 0x40;
785 tda18271_write_regs(fe, R_EB7, 1);
Michael Krufky4d2d42b2008-04-22 14:42:07 -0300786 msleep(10); /* pll locking */
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300787
788 regs[R_EB20] = 0xec;
789 tda18271_write_regs(fe, R_EB20, 1);
790 msleep(60); /* RF tracking filter calibration completion */
791
792 regs[R_EP4] &= ~0x03; /* set cal mode to normal */
793 tda18271_write_regs(fe, R_EP4, 1);
794
795 tda18271_write_regs(fe, R_EP1, 1);
796
Michael Krufkyb92bf0f2007-12-25 18:54:22 -0300797 /* RF tracking filter correction for VHF_Low band */
798 if (0 == tda18271_calc_rf_cal(fe, &freq))
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300799 tda18271_write_regs(fe, R_EB14, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300800
Michael Krufky4d2d42b2008-04-22 14:42:07 -0300801 return 0;
802}
803
Michael Krufkyd1c53422008-04-22 14:42:07 -0300804/* ------------------------------------------------------------------ */
805
Michael Krufky12afe372008-04-22 14:42:07 -0300806static int tda18271_ir_cal_init(struct dvb_frontend *fe)
807{
808 struct tda18271_priv *priv = fe->tuner_priv;
809 unsigned char *regs = priv->tda18271_regs;
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300810 int ret;
Michael Krufky12afe372008-04-22 14:42:07 -0300811
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300812 ret = tda18271_read_regs(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300813 if (tda_fail(ret))
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300814 goto fail;
Michael Krufky12afe372008-04-22 14:42:07 -0300815
816 /* test IR_CAL_OK to see if we need init */
817 if ((regs[R_EP1] & 0x08) == 0)
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300818 ret = tda18271_init_regs(fe);
819fail:
820 return ret;
Michael Krufky12afe372008-04-22 14:42:07 -0300821}
822
823static int tda18271_init(struct dvb_frontend *fe)
824{
825 struct tda18271_priv *priv = fe->tuner_priv;
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300826 int ret;
Michael Krufky12afe372008-04-22 14:42:07 -0300827
828 mutex_lock(&priv->lock);
829
Michael Krufky4240b462009-08-29 16:25:37 -0300830 /* full power up */
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300831 ret = tda18271_set_standby_mode(fe, 0, 0, 0);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300832 if (tda_fail(ret))
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300833 goto fail;
Michael Krufky12afe372008-04-22 14:42:07 -0300834
835 /* initialization */
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300836 ret = tda18271_ir_cal_init(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300837 if (tda_fail(ret))
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300838 goto fail;
Michael Krufky12afe372008-04-22 14:42:07 -0300839
840 if (priv->id == TDA18271HDC2)
841 tda18271c2_rf_cal_init(fe);
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300842fail:
Michael Krufky12afe372008-04-22 14:42:07 -0300843 mutex_unlock(&priv->lock);
844
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300845 return ret;
Michael Krufky12afe372008-04-22 14:42:07 -0300846}
847
Michael Krufkycc7e26d2009-08-29 16:27:21 -0300848static int tda18271_sleep(struct dvb_frontend *fe)
849{
850 struct tda18271_priv *priv = fe->tuner_priv;
851 int ret;
852
853 mutex_lock(&priv->lock);
854
855 /* enter standby mode, with required output features enabled */
856 ret = tda18271_toggle_output(fe, 1);
857
858 mutex_unlock(&priv->lock);
859
860 return ret;
861}
862
Michael Krufkyadcc4b32009-03-04 19:42:06 -0300863/* ------------------------------------------------------------------ */
864
865static int tda18271_agc(struct dvb_frontend *fe)
866{
867 struct tda18271_priv *priv = fe->tuner_priv;
868 int ret = 0;
869
870 switch (priv->config) {
Ondrej Zary1bacb2d2013-04-06 14:29:29 -0300871 case TDA8290_LNA_OFF:
Michael Krufkyecda4272009-09-06 14:38:48 -0300872 /* no external agc configuration required */
873 if (tda18271_debug & DBG_ADV)
874 tda_dbg("no agc configuration provided\n");
Michael Krufkyadcc4b32009-03-04 19:42:06 -0300875 break;
Ondrej Zary1bacb2d2013-04-06 14:29:29 -0300876 case TDA8290_LNA_ON_BRIDGE:
Michael Krufkyadcc4b32009-03-04 19:42:06 -0300877 /* switch with GPIO of saa713x */
878 tda_dbg("invoking callback\n");
879 if (fe->callback)
880 ret = fe->callback(priv->i2c_props.adap->algo_data,
881 DVB_FRONTEND_COMPONENT_TUNER,
882 TDA18271_CALLBACK_CMD_AGC_ENABLE,
883 priv->mode);
884 break;
Ondrej Zary1bacb2d2013-04-06 14:29:29 -0300885 case TDA8290_LNA_GP0_HIGH_ON:
886 case TDA8290_LNA_GP0_HIGH_OFF:
Michael Krufkyadcc4b32009-03-04 19:42:06 -0300887 default:
888 /* n/a - currently not supported */
889 tda_err("unsupported configuration: %d\n", priv->config);
890 ret = -EINVAL;
891 break;
892 }
893 return ret;
894}
895
Michael Krufkyd1c53422008-04-22 14:42:07 -0300896static int tda18271_tune(struct dvb_frontend *fe,
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300897 struct tda18271_std_map_item *map, u32 freq, u32 bw)
Michael Krufky4d2d42b2008-04-22 14:42:07 -0300898{
899 struct tda18271_priv *priv = fe->tuner_priv;
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300900 int ret;
Michael Krufky4d2d42b2008-04-22 14:42:07 -0300901
Michael Krufky7f7203d2008-04-22 14:46:06 -0300902 tda_dbg("freq = %d, ifc = %d, bw = %d, agc_mode = %d, std = %d\n",
903 freq, map->if_freq, bw, map->agc_mode, map->std);
Michael Krufkyd1c53422008-04-22 14:42:07 -0300904
Michael Krufkyadcc4b32009-03-04 19:42:06 -0300905 ret = tda18271_agc(fe);
906 if (tda_fail(ret))
907 tda_warn("failed to configure agc\n");
908
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300909 ret = tda18271_init(fe);
Michael Krufky4bd5d102008-05-04 21:32:21 -0300910 if (tda_fail(ret))
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300911 goto fail;
Michael Krufky4d2d42b2008-04-22 14:42:07 -0300912
913 mutex_lock(&priv->lock);
914
Michael Krufkyd1c53422008-04-22 14:42:07 -0300915 switch (priv->id) {
916 case TDA18271HDC1:
917 tda18271c1_rf_tracking_filter_calibration(fe, freq, bw);
918 break;
919 case TDA18271HDC2:
920 tda18271c2_rf_tracking_filters_correction(fe, freq);
921 break;
922 }
Michael Krufky31940e32008-05-04 19:37:27 -0300923 ret = tda18271_channel_configuration(fe, map, freq, bw);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300924
Michael Krufky8d316bf2008-01-06 15:31:35 -0300925 mutex_unlock(&priv->lock);
Michael Krufkyd35fcca2008-05-03 18:20:21 -0300926fail:
927 return ret;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300928}
929
930/* ------------------------------------------------------------------ */
931
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300932static int tda18271_set_params(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300933{
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300934 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
935 u32 delsys = c->delivery_system;
936 u32 bw = c->bandwidth_hz;
937 u32 freq = c->frequency;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300938 struct tda18271_priv *priv = fe->tuner_priv;
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300939 struct tda18271_std_map *std_map = &priv->std;
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300940 struct tda18271_std_map_item *map;
Michael Krufkyccbac9b2008-01-06 00:55:21 -0300941 int ret;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300942
943 priv->mode = TDA18271_DIGITAL;
944
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300945 switch (delsys) {
946 case SYS_ATSC:
947 map = &std_map->atsc_6;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300948 bw = 6000000;
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300949 break;
Mauro Carvalho Chehab083b6b82012-01-09 18:26:32 -0200950 case SYS_ISDBT:
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300951 case SYS_DVBT:
952 case SYS_DVBT2:
953 if (bw <= 6000000) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300954 map = &std_map->dvbt_6;
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300955 } else if (bw <= 7000000) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300956 map = &std_map->dvbt_7;
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300957 } else {
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300958 map = &std_map->dvbt_8;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300959 }
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300960 break;
961 case SYS_DVBC_ANNEX_B:
962 bw = 6000000;
963 /* falltrough */
964 case SYS_DVBC_ANNEX_A:
965 case SYS_DVBC_ANNEX_C:
966 if (bw <= 6000000) {
967 map = &std_map->qam_6;
968 } else if (bw <= 7000000) {
969 map = &std_map->qam_7;
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300970 } else {
971 map = &std_map->qam_8;
Mauro Carvalho Chehab5ca1c942011-12-21 08:15:29 -0300972 }
973 break;
974 default:
Michael Krufky182519f2007-12-25 15:10:11 -0300975 tda_warn("modulation type not supported!\n");
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300976 return -EINVAL;
977 }
978
Michael Krufkyed736832008-01-19 17:41:04 -0300979 /* When tuning digital, the analog demod must be tri-stated */
980 if (fe->ops.analog_ops.standby)
981 fe->ops.analog_ops.standby(fe);
982
Michael Krufkyc293d0a2008-04-22 14:46:06 -0300983 ret = tda18271_tune(fe, map, freq, bw);
Michael Krufkyccbac9b2008-01-06 00:55:21 -0300984
Michael Krufky4bd5d102008-05-04 21:32:21 -0300985 if (tda_fail(ret))
Michael Krufkyccbac9b2008-01-06 00:55:21 -0300986 goto fail;
987
Michael Krufky8c8ee112011-11-03 09:59:42 -0300988 priv->if_freq = map->if_freq;
Michael Krufkyccbac9b2008-01-06 00:55:21 -0300989 priv->frequency = freq;
Mauro Carvalho Chehabc6f56e72011-12-26 20:02:28 -0300990 priv->bandwidth = bw;
Michael Krufkyccbac9b2008-01-06 00:55:21 -0300991fail:
992 return ret;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300993}
994
995static int tda18271_set_analog_params(struct dvb_frontend *fe,
996 struct analog_parameters *params)
997{
998 struct tda18271_priv *priv = fe->tuner_priv;
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300999 struct tda18271_std_map *std_map = &priv->std;
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001000 struct tda18271_std_map_item *map;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001001 char *mode;
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001002 int ret;
Michael Krufky4d831782009-09-27 14:05:12 -03001003 u32 freq = params->frequency * 125 *
1004 ((params->mode == V4L2_TUNER_RADIO) ? 1 : 1000) / 2;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001005
1006 priv->mode = TDA18271_ANALOG;
1007
Michael Krufkyc353f422008-01-08 10:38:10 -03001008 if (params->mode == V4L2_TUNER_RADIO) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001009 map = &std_map->fm_radio;
Michael Krufkyc353f422008-01-08 10:38:10 -03001010 mode = "fm";
1011 } else if (params->std & V4L2_STD_MN) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001012 map = &std_map->atv_mn;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001013 mode = "MN";
1014 } else if (params->std & V4L2_STD_B) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001015 map = &std_map->atv_b;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001016 mode = "B";
1017 } else if (params->std & V4L2_STD_GH) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001018 map = &std_map->atv_gh;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001019 mode = "GH";
1020 } else if (params->std & V4L2_STD_PAL_I) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001021 map = &std_map->atv_i;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001022 mode = "I";
1023 } else if (params->std & V4L2_STD_DK) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001024 map = &std_map->atv_dk;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001025 mode = "DK";
1026 } else if (params->std & V4L2_STD_SECAM_L) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001027 map = &std_map->atv_l;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001028 mode = "L";
1029 } else if (params->std & V4L2_STD_SECAM_LC) {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001030 map = &std_map->atv_lc;
Michael Krufky95af8a22008-01-01 18:31:34 -03001031 mode = "L'";
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001032 } else {
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001033 map = &std_map->atv_i;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001034 mode = "xx";
1035 }
1036
Michael Krufky182519f2007-12-25 15:10:11 -03001037 tda_dbg("setting tda18271 to system %s\n", mode);
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001038
Michael Krufkyc293d0a2008-04-22 14:46:06 -03001039 ret = tda18271_tune(fe, map, freq, 0);
Michael Krufkyccbac9b2008-01-06 00:55:21 -03001040
Michael Krufky4bd5d102008-05-04 21:32:21 -03001041 if (tda_fail(ret))
Michael Krufkyccbac9b2008-01-06 00:55:21 -03001042 goto fail;
1043
Michael Krufky8c8ee112011-11-03 09:59:42 -03001044 priv->if_freq = map->if_freq;
Michael Krufkyccbac9b2008-01-06 00:55:21 -03001045 priv->frequency = freq;
1046 priv->bandwidth = 0;
1047fail:
1048 return ret;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001049}
1050
1051static int tda18271_release(struct dvb_frontend *fe)
1052{
Michael Krufkya4f263b2008-01-06 15:52:56 -03001053 struct tda18271_priv *priv = fe->tuner_priv;
1054
1055 mutex_lock(&tda18271_list_mutex);
1056
Michael Krufkyf9e315a2008-04-22 14:41:54 -03001057 if (priv)
1058 hybrid_tuner_release_state(priv);
Michael Krufkya4f263b2008-01-06 15:52:56 -03001059
Michael Krufkya4f263b2008-01-06 15:52:56 -03001060 mutex_unlock(&tda18271_list_mutex);
1061
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001062 fe->tuner_priv = NULL;
Michael Krufkya4f263b2008-01-06 15:52:56 -03001063
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001064 return 0;
1065}
1066
1067static int tda18271_get_frequency(struct dvb_frontend *fe, u32 *frequency)
1068{
1069 struct tda18271_priv *priv = fe->tuner_priv;
1070 *frequency = priv->frequency;
1071 return 0;
1072}
1073
1074static int tda18271_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
1075{
1076 struct tda18271_priv *priv = fe->tuner_priv;
1077 *bandwidth = priv->bandwidth;
1078 return 0;
1079}
1080
Michael Krufky8c8ee112011-11-03 09:59:42 -03001081static int tda18271_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
1082{
1083 struct tda18271_priv *priv = fe->tuner_priv;
1084 *frequency = (u32)priv->if_freq * 1000;
1085 return 0;
1086}
1087
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001088/* ------------------------------------------------------------------ */
1089
1090#define tda18271_update_std(std_cfg, name) do { \
Michael Krufky7f7203d2008-04-22 14:46:06 -03001091 if (map->std_cfg.if_freq + \
Michael Krufkyc7353722008-03-30 19:40:20 -03001092 map->std_cfg.agc_mode + map->std_cfg.std + \
1093 map->std_cfg.if_lvl + map->std_cfg.rfagc_top > 0) { \
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001094 tda_dbg("Using custom std config for %s\n", name); \
1095 memcpy(&std->std_cfg, &map->std_cfg, \
1096 sizeof(struct tda18271_std_map_item)); \
1097 } } while (0)
1098
1099#define tda18271_dump_std_item(std_cfg, name) do { \
Michael Krufkyc7353722008-03-30 19:40:20 -03001100 tda_dbg("(%s) if_freq = %d, agc_mode = %d, std = %d, " \
1101 "if_lvl = %d, rfagc_top = 0x%02x\n", \
Michael Krufky7f7203d2008-04-22 14:46:06 -03001102 name, std->std_cfg.if_freq, \
Michael Krufkyc7353722008-03-30 19:40:20 -03001103 std->std_cfg.agc_mode, std->std_cfg.std, \
1104 std->std_cfg.if_lvl, std->std_cfg.rfagc_top); \
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001105 } while (0)
1106
1107static int tda18271_dump_std_map(struct dvb_frontend *fe)
1108{
1109 struct tda18271_priv *priv = fe->tuner_priv;
1110 struct tda18271_std_map *std = &priv->std;
1111
1112 tda_dbg("========== STANDARD MAP SETTINGS ==========\n");
Michael Krufkyc7353722008-03-30 19:40:20 -03001113 tda18271_dump_std_item(fm_radio, " fm ");
1114 tda18271_dump_std_item(atv_b, "atv b ");
1115 tda18271_dump_std_item(atv_dk, "atv dk");
1116 tda18271_dump_std_item(atv_gh, "atv gh");
1117 tda18271_dump_std_item(atv_i, "atv i ");
1118 tda18271_dump_std_item(atv_l, "atv l ");
1119 tda18271_dump_std_item(atv_lc, "atv l'");
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001120 tda18271_dump_std_item(atv_mn, "atv mn");
1121 tda18271_dump_std_item(atsc_6, "atsc 6");
1122 tda18271_dump_std_item(dvbt_6, "dvbt 6");
1123 tda18271_dump_std_item(dvbt_7, "dvbt 7");
1124 tda18271_dump_std_item(dvbt_8, "dvbt 8");
Michael Krufkyc7353722008-03-30 19:40:20 -03001125 tda18271_dump_std_item(qam_6, "qam 6 ");
Frank Schäfer4e791042012-12-04 16:13:33 -03001126 tda18271_dump_std_item(qam_7, "qam 7 ");
Michael Krufkyc7353722008-03-30 19:40:20 -03001127 tda18271_dump_std_item(qam_8, "qam 8 ");
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001128
1129 return 0;
1130}
1131
1132static int tda18271_update_std_map(struct dvb_frontend *fe,
1133 struct tda18271_std_map *map)
1134{
1135 struct tda18271_priv *priv = fe->tuner_priv;
1136 struct tda18271_std_map *std = &priv->std;
1137
1138 if (!map)
1139 return -EINVAL;
1140
Michael Krufkyc353f422008-01-08 10:38:10 -03001141 tda18271_update_std(fm_radio, "fm");
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001142 tda18271_update_std(atv_b, "atv b");
1143 tda18271_update_std(atv_dk, "atv dk");
1144 tda18271_update_std(atv_gh, "atv gh");
1145 tda18271_update_std(atv_i, "atv i");
1146 tda18271_update_std(atv_l, "atv l");
1147 tda18271_update_std(atv_lc, "atv l'");
1148 tda18271_update_std(atv_mn, "atv mn");
1149 tda18271_update_std(atsc_6, "atsc 6");
1150 tda18271_update_std(dvbt_6, "dvbt 6");
1151 tda18271_update_std(dvbt_7, "dvbt 7");
1152 tda18271_update_std(dvbt_8, "dvbt 8");
1153 tda18271_update_std(qam_6, "qam 6");
Frank Schäfer4e791042012-12-04 16:13:33 -03001154 tda18271_update_std(qam_7, "qam 7");
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001155 tda18271_update_std(qam_8, "qam 8");
1156
1157 return 0;
1158}
1159
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001160static int tda18271_get_id(struct dvb_frontend *fe)
1161{
1162 struct tda18271_priv *priv = fe->tuner_priv;
1163 unsigned char *regs = priv->tda18271_regs;
1164 char *name;
Michael Krufky351d1872012-10-02 11:04:36 -03001165 int ret;
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001166
Michael Krufky8d316bf2008-01-06 15:31:35 -03001167 mutex_lock(&priv->lock);
Michael Krufky351d1872012-10-02 11:04:36 -03001168 ret = tda18271_read_regs(fe);
Michael Krufky8d316bf2008-01-06 15:31:35 -03001169 mutex_unlock(&priv->lock);
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001170
Michael Krufky351d1872012-10-02 11:04:36 -03001171 if (ret) {
1172 tda_info("Error reading device ID @ %d-%04x, bailing out.\n",
1173 i2c_adapter_id(priv->i2c_props.adap),
1174 priv->i2c_props.addr);
1175 return -EIO;
1176 }
1177
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001178 switch (regs[R_ID] & 0x7f) {
1179 case 3:
1180 name = "TDA18271HD/C1";
Michael Krufky255b5112008-01-01 22:52:09 -03001181 priv->id = TDA18271HDC1;
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001182 break;
1183 case 4:
1184 name = "TDA18271HD/C2";
Michael Krufky255b5112008-01-01 22:52:09 -03001185 priv->id = TDA18271HDC2;
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001186 break;
1187 default:
Mauro Carvalho Chehabbfc3d572010-09-26 00:39:26 -03001188 tda_info("Unknown device (%i) detected @ %d-%04x, device not supported.\n",
1189 regs[R_ID], i2c_adapter_id(priv->i2c_props.adap),
1190 priv->i2c_props.addr);
1191 return -EINVAL;
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001192 }
1193
Mauro Carvalho Chehabbfc3d572010-09-26 00:39:26 -03001194 tda_info("%s detected @ %d-%04x\n", name,
1195 i2c_adapter_id(priv->i2c_props.adap), priv->i2c_props.addr);
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001196
Mauro Carvalho Chehabbfc3d572010-09-26 00:39:26 -03001197 return 0;
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001198}
1199
Michael Krufkyc54e1dd2009-10-24 17:47:49 -03001200static int tda18271_setup_configuration(struct dvb_frontend *fe,
1201 struct tda18271_config *cfg)
Michael Krufky42f9a032009-10-23 03:20:45 -03001202{
1203 struct tda18271_priv *priv = fe->tuner_priv;
Michael Krufky42f9a032009-10-23 03:20:45 -03001204
1205 priv->gate = (cfg) ? cfg->gate : TDA18271_GATE_AUTO;
1206 priv->role = (cfg) ? cfg->role : TDA18271_MASTER;
1207 priv->config = (cfg) ? cfg->config : 0;
1208 priv->small_i2c = (cfg) ?
1209 cfg->small_i2c : TDA18271_39_BYTE_CHUNK_INIT;
1210 priv->output_opt = (cfg) ?
1211 cfg->output_opt : TDA18271_OUTPUT_LT_XT_ON;
1212
Michael Krufky42f9a032009-10-23 03:20:45 -03001213 return 0;
1214}
1215
Michael Krufky5881ecf2009-10-24 18:37:22 -03001216static inline int tda18271_need_cal_on_startup(struct tda18271_config *cfg)
1217{
1218 /* tda18271_cal_on_startup == -1 when cal module option is unset */
1219 return ((tda18271_cal_on_startup == -1) ?
1220 /* honor configuration setting */
1221 ((cfg) && (cfg->rf_cal_on_startup)) :
1222 /* module option overrides configuration setting */
1223 (tda18271_cal_on_startup)) ? 1 : 0;
1224}
1225
Michael Krufkyc54e1dd2009-10-24 17:47:49 -03001226static int tda18271_set_config(struct dvb_frontend *fe, void *priv_cfg)
1227{
1228 struct tda18271_config *cfg = (struct tda18271_config *) priv_cfg;
Michael Krufkyc54e1dd2009-10-24 17:47:49 -03001229
1230 tda18271_setup_configuration(fe, cfg);
1231
Michael Krufky5881ecf2009-10-24 18:37:22 -03001232 if (tda18271_need_cal_on_startup(cfg))
Michael Krufkyc54e1dd2009-10-24 17:47:49 -03001233 tda18271_init(fe);
1234
Michael Krufky972aacc2009-11-01 02:52:01 -03001235 /* override default std map with values in config struct */
1236 if ((cfg) && (cfg->std_map))
1237 tda18271_update_std_map(fe, cfg->std_map);
1238
Michael Krufkyc54e1dd2009-10-24 17:47:49 -03001239 return 0;
1240}
1241
Chris Rankin0b8bd832011-08-20 16:01:26 -03001242static const struct dvb_tuner_ops tda18271_tuner_ops = {
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001243 .info = {
1244 .name = "NXP TDA18271HD",
1245 .frequency_min = 45000000,
1246 .frequency_max = 864000000,
1247 .frequency_step = 62500
1248 },
Michael Krufkyefce8412007-12-01 17:40:16 -03001249 .init = tda18271_init,
Michael Krufky518d8732008-01-13 17:01:01 -03001250 .sleep = tda18271_sleep,
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001251 .set_params = tda18271_set_params,
1252 .set_analog_params = tda18271_set_analog_params,
1253 .release = tda18271_release,
Michael Krufky42f9a032009-10-23 03:20:45 -03001254 .set_config = tda18271_set_config,
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001255 .get_frequency = tda18271_get_frequency,
1256 .get_bandwidth = tda18271_get_bandwidth,
Michael Krufky8c8ee112011-11-03 09:59:42 -03001257 .get_if_frequency = tda18271_get_if_frequency,
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001258};
1259
1260struct dvb_frontend *tda18271_attach(struct dvb_frontend *fe, u8 addr,
Michael Krufkye435f952007-12-09 22:23:30 -03001261 struct i2c_adapter *i2c,
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001262 struct tda18271_config *cfg)
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001263{
1264 struct tda18271_priv *priv = NULL;
Michael Krufkyfab9bfb2010-05-03 02:10:15 -03001265 int instance, ret;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001266
Michael Krufkya4f263b2008-01-06 15:52:56 -03001267 mutex_lock(&tda18271_list_mutex);
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001268
Michael Krufkyf9e315a2008-04-22 14:41:54 -03001269 instance = hybrid_tuner_request_state(struct tda18271_priv, priv,
1270 hybrid_tuner_instance_list,
1271 i2c, addr, "tda18271");
1272 switch (instance) {
1273 case 0:
1274 goto fail;
Michael Krufkyf9e315a2008-04-22 14:41:54 -03001275 case 1:
1276 /* new tuner instance */
Michael Krufky42f9a032009-10-23 03:20:45 -03001277 fe->tuner_priv = priv;
1278
Michael Krufkyc54e1dd2009-10-24 17:47:49 -03001279 tda18271_setup_configuration(fe, cfg);
Michael Krufky81016b42009-08-27 16:58:06 -03001280
Michael Krufkya4f263b2008-01-06 15:52:56 -03001281 priv->cal_initialized = false;
1282 mutex_init(&priv->lock);
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001283
Michael Krufkyfab9bfb2010-05-03 02:10:15 -03001284 ret = tda18271_get_id(fe);
1285 if (tda_fail(ret))
Michael Krufkya4f263b2008-01-06 15:52:56 -03001286 goto fail;
1287
Michael Krufkyfab9bfb2010-05-03 02:10:15 -03001288 ret = tda18271_assign_map_layout(fe);
1289 if (tda_fail(ret))
Michael Krufkya4f263b2008-01-06 15:52:56 -03001290 goto fail;
1291
Michael Krufky6b82e0c2012-10-01 23:50:37 -03001292 /* if delay_cal is set, delay IR & RF calibration until init()
1293 * module option 'cal' overrides this delay */
1294 if ((cfg->delay_cal) && (!tda18271_need_cal_on_startup(cfg)))
1295 break;
1296
Michael Krufkya4f263b2008-01-06 15:52:56 -03001297 mutex_lock(&priv->lock);
1298 tda18271_init_regs(fe);
Michael Krufky0f962512008-01-13 22:01:07 -03001299
Michael Krufky5881ecf2009-10-24 18:37:22 -03001300 if ((tda18271_need_cal_on_startup(cfg)) &&
1301 (priv->id == TDA18271HDC2))
Michael Krufky12afe372008-04-22 14:42:07 -03001302 tda18271c2_rf_cal_init(fe);
Michael Krufky0f962512008-01-13 22:01:07 -03001303
Michael Krufky4cfae672012-09-29 16:06:23 -03001304 /* enter standby mode, with required output features enabled */
1305 ret = tda18271_toggle_output(fe, 1);
1306 tda_fail(ret);
1307
Michael Krufkya4f263b2008-01-06 15:52:56 -03001308 mutex_unlock(&priv->lock);
Michael Krufkyf9e315a2008-04-22 14:41:54 -03001309 break;
1310 default:
1311 /* existing tuner instance */
1312 fe->tuner_priv = priv;
1313
Michael Krufkyd5abef62009-08-30 03:07:10 -03001314 /* allow dvb driver to override configuration settings */
1315 if (cfg) {
1316 if (cfg->gate != TDA18271_GATE_ANALOG)
1317 priv->gate = cfg->gate;
1318 if (cfg->role)
1319 priv->role = cfg->role;
1320 if (cfg->config)
1321 priv->config = cfg->config;
1322 if (cfg->small_i2c)
1323 priv->small_i2c = cfg->small_i2c;
1324 if (cfg->output_opt)
1325 priv->output_opt = cfg->output_opt;
Michael Krufky42f9a032009-10-23 03:20:45 -03001326 if (cfg->std_map)
1327 tda18271_update_std_map(fe, cfg->std_map);
Michael Krufkyd5abef62009-08-30 03:07:10 -03001328 }
Michael Krufky5881ecf2009-10-24 18:37:22 -03001329 if (tda18271_need_cal_on_startup(cfg))
Michael Krufky188ea052009-10-24 18:18:03 -03001330 tda18271_init(fe);
Michael Krufkyf9e315a2008-04-22 14:41:54 -03001331 break;
Michael Krufkya4f263b2008-01-06 15:52:56 -03001332 }
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001333
Michael Krufky972aacc2009-11-01 02:52:01 -03001334 /* override default std map with values in config struct */
1335 if ((cfg) && (cfg->std_map))
1336 tda18271_update_std_map(fe, cfg->std_map);
1337
Michael Krufkya4f263b2008-01-06 15:52:56 -03001338 mutex_unlock(&tda18271_list_mutex);
1339
1340 memcpy(&fe->ops.tuner_ops, &tda18271_tuner_ops,
1341 sizeof(struct dvb_tuner_ops));
1342
Michael Krufkyc7353722008-03-30 19:40:20 -03001343 if (tda18271_debug & (DBG_MAP | DBG_ADV))
Michael Krufkyf21e0d72008-01-02 03:01:54 -03001344 tda18271_dump_std_map(fe);
1345
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001346 return fe;
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001347fail:
Michael Krufkya4f263b2008-01-06 15:52:56 -03001348 mutex_unlock(&tda18271_list_mutex);
1349
Michael Krufky49e7aaf2007-12-24 04:15:20 -03001350 tda18271_release(fe);
1351 return NULL;
Michael Krufky5bea1cd2007-10-22 09:56:38 -03001352}
1353EXPORT_SYMBOL_GPL(tda18271_attach);
1354MODULE_DESCRIPTION("NXP TDA18271HD analog / digital tuner driver");
1355MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
1356MODULE_LICENSE("GPL");
Michael Krufky5abaa532009-10-25 10:43:30 -03001357MODULE_VERSION("0.4");