4 * Driver for ST STV6110 satellite tuner IC.
6 * Copyright (C) 2009 NetUP Inc.
7 * Copyright (C) 2009 Igor M. Liplianin <liplianin@netup.ru>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include <linux/slab.h>
26 #include <linux/module.h>
27 #include <linux/dvb/frontend.h>
29 #include <linux/types.h>
37 struct i2c_adapter
*i2c
;
45 #define dprintk(args...) \
48 printk(KERN_DEBUG args); \
51 static s32
abssub(s32 a
, s32 b
)
59 static int stv6110_release(struct dvb_frontend
*fe
)
61 kfree(fe
->tuner_priv
);
62 fe
->tuner_priv
= NULL
;
66 static int stv6110_write_regs(struct dvb_frontend
*fe
, u8 buf
[],
69 struct stv6110_priv
*priv
= fe
->tuner_priv
;
72 struct i2c_msg msg
= {
73 .addr
= priv
->i2c_address
,
79 dprintk("%s\n", __func__
);
84 memcpy(&cmdbuf
[1], buf
, len
);
87 if (fe
->ops
.i2c_gate_ctrl
)
88 fe
->ops
.i2c_gate_ctrl(fe
, 1);
90 rc
= i2c_transfer(priv
->i2c
, &msg
, 1);
92 dprintk("%s: i2c error\n", __func__
);
94 if (fe
->ops
.i2c_gate_ctrl
)
95 fe
->ops
.i2c_gate_ctrl(fe
, 0);
100 static int stv6110_read_regs(struct dvb_frontend
*fe
, u8 regs
[],
103 struct stv6110_priv
*priv
= fe
->tuner_priv
;
105 u8 reg
[] = { start
};
106 struct i2c_msg msg
[] = {
108 .addr
= priv
->i2c_address
,
113 .addr
= priv
->i2c_address
,
120 if (fe
->ops
.i2c_gate_ctrl
)
121 fe
->ops
.i2c_gate_ctrl(fe
, 1);
123 rc
= i2c_transfer(priv
->i2c
, msg
, 2);
125 dprintk("%s: i2c error\n", __func__
);
127 if (fe
->ops
.i2c_gate_ctrl
)
128 fe
->ops
.i2c_gate_ctrl(fe
, 0);
130 memcpy(&priv
->regs
[start
], regs
, len
);
135 static int stv6110_read_reg(struct dvb_frontend
*fe
, int start
)
138 stv6110_read_regs(fe
, buf
, start
, 1);
143 static int stv6110_sleep(struct dvb_frontend
*fe
)
146 stv6110_write_regs(fe
, reg
, 0, 1);
151 static u32
carrier_width(u32 symbol_rate
, fe_rolloff_t rolloff
)
167 return symbol_rate
+ ((symbol_rate
* rlf
) / 100);
170 static int stv6110_set_bandwidth(struct dvb_frontend
*fe
, u32 bandwidth
)
172 struct stv6110_priv
*priv
= fe
->tuner_priv
;
176 if ((bandwidth
/ 2) > 36000000) /*BW/2 max=31+5=36 mhz for r8=31*/
178 else if ((bandwidth
/ 2) < 5000000) /* BW/2 min=5Mhz for F=0 */
180 else /*if 5 < BW/2 < 36*/
181 r8
= (bandwidth
/ 2) / 1000000 - 5;
183 /* ctrl3, RCCLKOFF = 0 Activate the calibration Clock */
184 /* ctrl3, CF = r8 Set the LPF value */
185 priv
->regs
[RSTV6110_CTRL3
] &= ~((1 << 6) | 0x1f);
186 priv
->regs
[RSTV6110_CTRL3
] |= (r8
& 0x1f);
187 stv6110_write_regs(fe
, &priv
->regs
[RSTV6110_CTRL3
], RSTV6110_CTRL3
, 1);
188 /* stat1, CALRCSTRT = 1 Start LPF auto calibration*/
189 priv
->regs
[RSTV6110_STAT1
] |= 0x02;
190 stv6110_write_regs(fe
, &priv
->regs
[RSTV6110_STAT1
], RSTV6110_STAT1
, 1);
193 /* Wait for CALRCSTRT == 0 */
194 while ((i
< 10) && (ret
!= 0)) {
195 ret
= ((stv6110_read_reg(fe
, RSTV6110_STAT1
)) & 0x02);
196 mdelay(1); /* wait for LPF auto calibration */
200 /* RCCLKOFF = 1 calibration done, desactivate the calibration Clock */
201 priv
->regs
[RSTV6110_CTRL3
] |= (1 << 6);
202 stv6110_write_regs(fe
, &priv
->regs
[RSTV6110_CTRL3
], RSTV6110_CTRL3
, 1);
206 static int stv6110_init(struct dvb_frontend
*fe
)
208 struct stv6110_priv
*priv
= fe
->tuner_priv
;
209 u8 buf0
[] = { 0x07, 0x11, 0xdc, 0x85, 0x17, 0x01, 0xe6, 0x1e };
211 memcpy(priv
->regs
, buf0
, 8);
212 /* K = (Reference / 1000000) - 16 */
213 priv
->regs
[RSTV6110_CTRL1
] &= ~(0x1f << 3);
214 priv
->regs
[RSTV6110_CTRL1
] |=
215 ((((priv
->mclk
/ 1000000) - 16) & 0x1f) << 3);
217 /* divisor value for the output clock */
218 priv
->regs
[RSTV6110_CTRL2
] &= ~0xc0;
219 priv
->regs
[RSTV6110_CTRL2
] |= (priv
->clk_div
<< 6);
221 stv6110_write_regs(fe
, &priv
->regs
[RSTV6110_CTRL1
], RSTV6110_CTRL1
, 8);
223 stv6110_set_bandwidth(fe
, 72000000);
228 static int stv6110_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
230 struct stv6110_priv
*priv
= fe
->tuner_priv
;
231 u32 nbsteps
, divider
, psd2
, freq
;
232 u8 regs
[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
234 stv6110_read_regs(fe
, regs
, 0, 8);
236 divider
= (priv
->regs
[RSTV6110_TUNING2
] & 0x0f) << 8;
237 divider
+= priv
->regs
[RSTV6110_TUNING1
];
240 nbsteps
= (priv
->regs
[RSTV6110_TUNING2
] >> 6) & 3;
242 psd2
= (priv
->regs
[RSTV6110_TUNING2
] >> 4) & 1;
244 freq
= divider
* (priv
->mclk
/ 1000);
245 freq
/= (1 << (nbsteps
+ psd2
));
253 static int stv6110_set_frequency(struct dvb_frontend
*fe
, u32 frequency
)
255 struct stv6110_priv
*priv
= fe
->tuner_priv
;
256 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
258 u32 divider
, ref
, p
, presc
, i
, result_freq
, vco_freq
;
259 s32 p_calc
, p_calc_opt
= 1000, r_div
, r_div_opt
= 0, p_val
;
262 dprintk("%s, freq=%d kHz, mclk=%d Hz\n", __func__
,
263 frequency
, priv
->mclk
);
265 /* K = (Reference / 1000000) - 16 */
266 priv
->regs
[RSTV6110_CTRL1
] &= ~(0x1f << 3);
267 priv
->regs
[RSTV6110_CTRL1
] |=
268 ((((priv
->mclk
/ 1000000) - 16) & 0x1f) << 3);
271 if (fe
->ops
.set_property
&& fe
->ops
.get_property
) {
272 srate
= c
->symbol_rate
;
273 dprintk("%s: Get Frontend parameters: srate=%d\n",
278 priv
->regs
[RSTV6110_CTRL2
] &= ~0x0f;
279 priv
->regs
[RSTV6110_CTRL2
] |= (priv
->gain
& 0x0f);
281 if (frequency
<= 1023000) {
284 } else if (frequency
<= 1300000) {
287 } else if (frequency
<= 2046000) {
295 priv
->regs
[RSTV6110_TUNING2
] &= ~(1 << 4);
296 priv
->regs
[RSTV6110_TUNING2
] |= (p
<< 4);
298 /* PRESC32ON = presc */
299 priv
->regs
[RSTV6110_TUNING2
] &= ~(1 << 5);
300 priv
->regs
[RSTV6110_TUNING2
] |= (presc
<< 5);
302 p_val
= (int)(1 << (p
+ 1)) * 10;/* P = 2 or P = 4 */
303 for (r_div
= 0; r_div
<= 3; r_div
++) {
304 p_calc
= (priv
->mclk
/ 100000);
305 p_calc
/= (1 << (r_div
+ 1));
306 if ((abssub(p_calc
, p_val
)) < (abssub(p_calc_opt
, p_val
)))
309 p_calc_opt
= (priv
->mclk
/ 100000);
310 p_calc_opt
/= (1 << (r_div_opt
+ 1));
313 ref
= priv
->mclk
/ ((1 << (r_div_opt
+ 1)) * (1 << (p
+ 1)));
314 divider
= (((frequency
* 1000) + (ref
>> 1)) / ref
);
316 /* RDIV = r_div_opt */
317 priv
->regs
[RSTV6110_TUNING2
] &= ~(3 << 6);
318 priv
->regs
[RSTV6110_TUNING2
] |= (((r_div_opt
) & 3) << 6);
320 /* NDIV_MSB = MSB(divider) */
321 priv
->regs
[RSTV6110_TUNING2
] &= ~0x0f;
322 priv
->regs
[RSTV6110_TUNING2
] |= (((divider
) >> 8) & 0x0f);
324 /* NDIV_LSB, LSB(divider) */
325 priv
->regs
[RSTV6110_TUNING1
] = (divider
& 0xff);
327 /* CALVCOSTRT = 1 VCO Auto Calibration */
328 priv
->regs
[RSTV6110_STAT1
] |= 0x04;
329 stv6110_write_regs(fe
, &priv
->regs
[RSTV6110_CTRL1
],
333 /* Wait for CALVCOSTRT == 0 */
334 while ((i
< 10) && (ret
!= 0)) {
335 ret
= ((stv6110_read_reg(fe
, RSTV6110_STAT1
)) & 0x04);
336 msleep(1); /* wait for VCO auto calibration */
340 ret
= stv6110_read_reg(fe
, RSTV6110_STAT1
);
341 stv6110_get_frequency(fe
, &result_freq
);
343 vco_freq
= divider
* ((priv
->mclk
/ 1000) / ((1 << (r_div_opt
+ 1))));
344 dprintk("%s, stat1=%x, lo_freq=%d kHz, vco_frec=%d kHz\n", __func__
,
345 ret
, result_freq
, vco_freq
);
350 static int stv6110_set_params(struct dvb_frontend
*fe
,
351 struct dvb_frontend_parameters
*params
)
353 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
354 u32 bandwidth
= carrier_width(c
->symbol_rate
, c
->rolloff
);
356 stv6110_set_frequency(fe
, c
->frequency
);
357 stv6110_set_bandwidth(fe
, bandwidth
);
362 static int stv6110_get_bandwidth(struct dvb_frontend
*fe
, u32
*bandwidth
)
364 struct stv6110_priv
*priv
= fe
->tuner_priv
;
366 u8 regs
[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
367 stv6110_read_regs(fe
, regs
, 0, 8);
370 r8
= priv
->regs
[RSTV6110_CTRL3
] & 0x1f;
371 *bandwidth
= (r8
+ 5) * 2000000;/* x2 for ZIF tuner BW/2 = F+5 Mhz */
376 static struct dvb_tuner_ops stv6110_tuner_ops
= {
378 .name
= "ST STV6110",
379 .frequency_min
= 950000,
380 .frequency_max
= 2150000,
381 .frequency_step
= 1000,
383 .init
= stv6110_init
,
384 .release
= stv6110_release
,
385 .sleep
= stv6110_sleep
,
386 .set_params
= stv6110_set_params
,
387 .get_frequency
= stv6110_get_frequency
,
388 .set_frequency
= stv6110_set_frequency
,
389 .get_bandwidth
= stv6110_get_bandwidth
,
390 .set_bandwidth
= stv6110_set_bandwidth
,
394 struct dvb_frontend
*stv6110_attach(struct dvb_frontend
*fe
,
395 const struct stv6110_config
*config
,
396 struct i2c_adapter
*i2c
)
398 struct stv6110_priv
*priv
= NULL
;
399 u8 reg0
[] = { 0x00, 0x07, 0x11, 0xdc, 0x85, 0x17, 0x01, 0xe6, 0x1e };
401 struct i2c_msg msg
[] = {
403 .addr
= config
->i2c_address
,
411 /* divisor value for the output clock */
413 reg0
[2] |= (config
->clk_div
<< 6);
415 if (fe
->ops
.i2c_gate_ctrl
)
416 fe
->ops
.i2c_gate_ctrl(fe
, 1);
418 ret
= i2c_transfer(i2c
, msg
, 1);
420 if (fe
->ops
.i2c_gate_ctrl
)
421 fe
->ops
.i2c_gate_ctrl(fe
, 0);
426 priv
= kzalloc(sizeof(struct stv6110_priv
), GFP_KERNEL
);
430 priv
->i2c_address
= config
->i2c_address
;
432 priv
->mclk
= config
->mclk
;
433 priv
->clk_div
= config
->clk_div
;
434 priv
->gain
= config
->gain
;
436 memcpy(&priv
->regs
, ®0
[1], 8);
438 memcpy(&fe
->ops
.tuner_ops
, &stv6110_tuner_ops
,
439 sizeof(struct dvb_tuner_ops
));
440 fe
->tuner_priv
= priv
;
441 printk(KERN_INFO
"STV6110 attached on addr=%x!\n", priv
->i2c_address
);
445 EXPORT_SYMBOL(stv6110_attach
);
447 module_param(debug
, int, 0644);
448 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
450 MODULE_DESCRIPTION("ST STV6110 driver");
451 MODULE_AUTHOR("Igor M. Liplianin");
452 MODULE_LICENSE("GPL");