1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Fitipower FC0012 tuner driver
5 * Copyright (C) 2012 Hans-Frieder Vogt <hfvogt@gmx.net>
9 #include "fc0012-priv.h"
11 static int fc0012_writereg(struct fc0012_priv
*priv
, u8 reg
, u8 val
)
13 u8 buf
[2] = {reg
, val
};
14 struct i2c_msg msg
= {
15 .addr
= priv
->cfg
->i2c_address
, .flags
= 0, .buf
= buf
, .len
= 2
18 if (i2c_transfer(priv
->i2c
, &msg
, 1) != 1) {
19 dev_err(&priv
->i2c
->dev
,
20 "%s: I2C write reg failed, reg: %02x, val: %02x\n",
21 KBUILD_MODNAME
, reg
, val
);
27 static int fc0012_readreg(struct fc0012_priv
*priv
, u8 reg
, u8
*val
)
29 struct i2c_msg msg
[2] = {
30 { .addr
= priv
->cfg
->i2c_address
, .flags
= 0,
31 .buf
= ®
, .len
= 1 },
32 { .addr
= priv
->cfg
->i2c_address
, .flags
= I2C_M_RD
,
33 .buf
= val
, .len
= 1 },
36 if (i2c_transfer(priv
->i2c
, msg
, 2) != 2) {
37 dev_err(&priv
->i2c
->dev
,
38 "%s: I2C read reg failed, reg: %02x\n",
45 static void fc0012_release(struct dvb_frontend
*fe
)
47 kfree(fe
->tuner_priv
);
48 fe
->tuner_priv
= NULL
;
51 static int fc0012_init(struct dvb_frontend
*fe
)
53 struct fc0012_priv
*priv
= fe
->tuner_priv
;
55 unsigned char reg
[] = {
56 0x00, /* dummy reg. 0 */
61 0x0f, /* reg. 0x05: may also be 0x0a */
62 0x00, /* reg. 0x06: divider 2, VCO slow */
63 0x00, /* reg. 0x07: may also be 0x0f */
64 0xff, /* reg. 0x08: AGC Clock divide by 256, AGC gain 1/256,
66 0x6e, /* reg. 0x09: Disable LoopThrough, Enable LoopThrough: 0x6f */
67 0xb8, /* reg. 0x0a: Disable LO Test Buffer */
68 0x82, /* reg. 0x0b: Output Clock is same as clock frequency,
70 0xfc, /* reg. 0x0c: depending on AGC Up-Down mode, may need 0xf8 */
71 0x02, /* reg. 0x0d: AGC Not Forcing & LNA Forcing, 0x02 for DVB-T */
74 0x00, /* reg. 0x10: may also be 0x0d */
76 0x1f, /* reg. 0x12: Set to maximum gain */
77 0x08, /* reg. 0x13: Set to Middle Gain: 0x08,
78 Low Gain: 0x00, High Gain: 0x10, enable IX2: 0x80 */
80 0x04, /* reg. 0x15: Enable LNA COMPS */
83 switch (priv
->cfg
->xtal_freq
) {
85 case FC_XTAL_28_8_MHZ
:
93 if (priv
->cfg
->dual_master
)
96 if (priv
->cfg
->loop_through
)
99 if (fe
->ops
.i2c_gate_ctrl
)
100 fe
->ops
.i2c_gate_ctrl(fe
, 1); /* open I2C-gate */
102 for (i
= 1; i
< sizeof(reg
); i
++) {
103 ret
= fc0012_writereg(priv
, i
, reg
[i
]);
108 if (fe
->ops
.i2c_gate_ctrl
)
109 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close I2C-gate */
112 dev_err(&priv
->i2c
->dev
, "%s: fc0012_writereg failed: %d\n",
113 KBUILD_MODNAME
, ret
);
118 static int fc0012_set_params(struct dvb_frontend
*fe
)
120 struct fc0012_priv
*priv
= fe
->tuner_priv
;
122 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
123 u32 freq
= p
->frequency
/ 1000;
124 u32 delsys
= p
->delivery_system
;
125 unsigned char reg
[7], am
, pm
, multi
, tmp
;
127 unsigned short xtal_freq_khz_2
, xin
, xdiv
;
128 bool vco_select
= false;
131 ret
= fe
->callback(priv
->i2c
, DVB_FRONTEND_COMPONENT_TUNER
,
132 FC_FE_CALLBACK_VHF_ENABLE
, (freq
> 300000 ? 0 : 1));
137 switch (priv
->cfg
->xtal_freq
) {
139 xtal_freq_khz_2
= 27000 / 2;
142 xtal_freq_khz_2
= 36000 / 2;
144 case FC_XTAL_28_8_MHZ
:
146 xtal_freq_khz_2
= 28800 / 2;
150 /* select frequency divider and the frequency of VCO */
151 if (freq
< 37084) { /* freq * 96 < 3560000 */
155 } else if (freq
< 55625) { /* freq * 64 < 3560000 */
159 } else if (freq
< 74167) { /* freq * 48 < 3560000 */
163 } else if (freq
< 111250) { /* freq * 32 < 3560000 */
167 } else if (freq
< 148334) { /* freq * 24 < 3560000 */
171 } else if (freq
< 222500) { /* freq * 16 < 3560000 */
175 } else if (freq
< 296667) { /* freq * 12 < 3560000 */
179 } else if (freq
< 445000) { /* freq * 8 < 3560000 */
183 } else if (freq
< 593334) { /* freq * 6 < 3560000 */
193 f_vco
= freq
* multi
;
195 if (f_vco
>= 3060000) {
201 /* From divided value (XDIV) determined the FA and FP value */
202 xdiv
= (unsigned short)(f_vco
/ xtal_freq_khz_2
);
203 if ((f_vco
- xdiv
* xtal_freq_khz_2
) >= (xtal_freq_khz_2
/ 2))
206 pm
= (unsigned char)(xdiv
/ 8);
207 am
= (unsigned char)(xdiv
- (8 * pm
));
217 /* fix for frequency less than 45 MHz */
225 /* From VCO frequency determines the XIN ( fractional part of Delta
226 Sigma PLL) and divided value (XDIV) */
227 xin
= (unsigned short)(f_vco
- (f_vco
/ xtal_freq_khz_2
) * xtal_freq_khz_2
);
228 xin
= (xin
<< 15) / xtal_freq_khz_2
;
232 reg
[3] = xin
>> 8; /* xin with 9 bit resolution */
235 if (delsys
== SYS_DVBT
) {
236 reg
[6] &= 0x3f; /* bits 6 and 7 describe the bandwidth */
237 switch (p
->bandwidth_hz
) {
249 dev_err(&priv
->i2c
->dev
, "%s: modulation type not supported!\n",
254 /* modified for Realtek demod */
257 if (fe
->ops
.i2c_gate_ctrl
)
258 fe
->ops
.i2c_gate_ctrl(fe
, 1); /* open I2C-gate */
260 for (i
= 1; i
<= 6; i
++) {
261 ret
= fc0012_writereg(priv
, i
, reg
[i
]);
266 /* VCO Calibration */
267 ret
= fc0012_writereg(priv
, 0x0e, 0x80);
269 ret
= fc0012_writereg(priv
, 0x0e, 0x00);
271 /* VCO Re-Calibration if needed */
273 ret
= fc0012_writereg(priv
, 0x0e, 0x00);
277 ret
= fc0012_readreg(priv
, 0x0e, &tmp
);
288 ret
= fc0012_writereg(priv
, 0x06, reg
[6]);
290 ret
= fc0012_writereg(priv
, 0x0e, 0x80);
292 ret
= fc0012_writereg(priv
, 0x0e, 0x00);
297 ret
= fc0012_writereg(priv
, 0x06, reg
[6]);
299 ret
= fc0012_writereg(priv
, 0x0e, 0x80);
301 ret
= fc0012_writereg(priv
, 0x0e, 0x00);
305 priv
->frequency
= p
->frequency
;
306 priv
->bandwidth
= p
->bandwidth_hz
;
309 if (fe
->ops
.i2c_gate_ctrl
)
310 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close I2C-gate */
312 dev_warn(&priv
->i2c
->dev
, "%s: %s failed: %d\n",
313 KBUILD_MODNAME
, __func__
, ret
);
317 static int fc0012_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
319 struct fc0012_priv
*priv
= fe
->tuner_priv
;
320 *frequency
= priv
->frequency
;
324 static int fc0012_get_if_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
326 *frequency
= 0; /* Zero-IF */
330 static int fc0012_get_bandwidth(struct dvb_frontend
*fe
, u32
*bandwidth
)
332 struct fc0012_priv
*priv
= fe
->tuner_priv
;
333 *bandwidth
= priv
->bandwidth
;
337 #define INPUT_ADC_LEVEL -8
339 static int fc0012_get_rf_strength(struct dvb_frontend
*fe
, u16
*strength
)
341 struct fc0012_priv
*priv
= fe
->tuner_priv
;
344 int int_temp
, lna_gain
, int_lna
, tot_agc_gain
, power
;
345 static const int fc0012_lna_gain_table
[] = {
357 if (fe
->ops
.i2c_gate_ctrl
)
358 fe
->ops
.i2c_gate_ctrl(fe
, 1); /* open I2C-gate */
360 ret
= fc0012_writereg(priv
, 0x12, 0x00);
364 ret
= fc0012_readreg(priv
, 0x12, &tmp
);
369 ret
= fc0012_readreg(priv
, 0x13, &tmp
);
372 lna_gain
= tmp
& 0x1f;
374 if (fe
->ops
.i2c_gate_ctrl
)
375 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close I2C-gate */
377 if (lna_gain
< ARRAY_SIZE(fc0012_lna_gain_table
)) {
378 int_lna
= fc0012_lna_gain_table
[lna_gain
];
379 tot_agc_gain
= (abs((int_temp
>> 5) - 7) - 2 +
380 (int_temp
& 0x1f)) * 2;
381 power
= INPUT_ADC_LEVEL
- tot_agc_gain
- int_lna
/ 10;
384 *strength
= 255; /* 100% */
385 else if (power
< -95)
388 *strength
= (power
+ 95) * 255 / 140;
390 *strength
|= *strength
<< 8;
398 if (fe
->ops
.i2c_gate_ctrl
)
399 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close I2C-gate */
402 dev_warn(&priv
->i2c
->dev
, "%s: %s failed: %d\n",
403 KBUILD_MODNAME
, __func__
, ret
);
407 static const struct dvb_tuner_ops fc0012_tuner_ops
= {
409 .name
= "Fitipower FC0012",
411 .frequency_min_hz
= 37 * MHz
, /* estimate */
412 .frequency_max_hz
= 862 * MHz
, /* estimate */
415 .release
= fc0012_release
,
419 .set_params
= fc0012_set_params
,
421 .get_frequency
= fc0012_get_frequency
,
422 .get_if_frequency
= fc0012_get_if_frequency
,
423 .get_bandwidth
= fc0012_get_bandwidth
,
425 .get_rf_strength
= fc0012_get_rf_strength
,
428 struct dvb_frontend
*fc0012_attach(struct dvb_frontend
*fe
,
429 struct i2c_adapter
*i2c
, const struct fc0012_config
*cfg
)
431 struct fc0012_priv
*priv
;
435 if (fe
->ops
.i2c_gate_ctrl
)
436 fe
->ops
.i2c_gate_ctrl(fe
, 1);
438 priv
= kzalloc(sizeof(struct fc0012_priv
), GFP_KERNEL
);
441 dev_err(&i2c
->dev
, "%s: kzalloc() failed\n", KBUILD_MODNAME
);
448 /* check if the tuner is there */
449 ret
= fc0012_readreg(priv
, 0x00, &chip_id
);
453 dev_dbg(&i2c
->dev
, "%s: chip_id=%02x\n", __func__
, chip_id
);
463 dev_info(&i2c
->dev
, "%s: Fitipower FC0012 successfully identified\n",
466 if (priv
->cfg
->loop_through
) {
467 ret
= fc0012_writereg(priv
, 0x09, 0x6f);
473 * TODO: Clock out en or div?
474 * For dual tuner configuration clearing bit [0] is required.
476 if (priv
->cfg
->clock_out
) {
477 ret
= fc0012_writereg(priv
, 0x0b, 0x82);
482 fe
->tuner_priv
= priv
;
483 memcpy(&fe
->ops
.tuner_ops
, &fc0012_tuner_ops
,
484 sizeof(struct dvb_tuner_ops
));
487 if (fe
->ops
.i2c_gate_ctrl
)
488 fe
->ops
.i2c_gate_ctrl(fe
, 0);
491 dev_dbg(&i2c
->dev
, "%s: failed: %d\n", __func__
, ret
);
498 EXPORT_SYMBOL(fc0012_attach
);
500 MODULE_DESCRIPTION("Fitipower FC0012 silicon tuner driver");
501 MODULE_AUTHOR("Hans-Frieder Vogt <hfvogt@gmx.net>");
502 MODULE_LICENSE("GPL");
503 MODULE_VERSION("0.6");