1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for Zarlink zl10036 DVB-S silicon tuner
5 * Copyright (C) 2006 Tino Reichardt
6 * Copyright (C) 2007-2009 Matthias Schwarzott <zzam@gentoo.de>
9 * The data sheet for this tuner can be found at:
10 * http://www.mcmilk.de/projects/dvb-card/datasheets/ZL10036.pdf
12 * This one is working: (at my Avermedia DVB-S Pro)
13 * - zl10036 (40pin, FTA)
15 * A driver for zl10038 should be very similar.
18 #include <linux/module.h>
19 #include <linux/dvb/frontend.h>
20 #include <linux/slab.h>
21 #include <linux/types.h>
25 static int zl10036_debug
;
26 #define dprintk(level, args...) \
27 do { if (zl10036_debug & level) printk(KERN_DEBUG "zl10036: " args); \
30 #define deb_info(args...) dprintk(0x01, args)
31 #define deb_i2c(args...) dprintk(0x02, args)
33 struct zl10036_state
{
34 struct i2c_adapter
*i2c
;
35 const struct zl10036_config
*config
;
41 /* This driver assumes the tuner is driven by a 10.111MHz Cristal */
44 /* Some of the possible dividers:
45 * 64, (write 0x05 to reg), freq step size 158kHz
46 * 10, (write 0x0a to reg), freq step size 1.011kHz (used here)
47 * 5, (write 0x09 to reg), freq step size 2.022kHz
51 #define _RDIV_REG 0x0a
52 #define _FR (_XTAL/_RDIV)
54 #define STATUS_POR 0x80 /* Power on Reset */
55 #define STATUS_FL 0x40 /* Frequency & Phase Lock */
57 /* read/write for zl10036 and zl10038 */
59 static int zl10036_read_status_reg(struct zl10036_state
*state
)
62 struct i2c_msg msg
[1] = {
63 { .addr
= state
->config
->tuner_address
, .flags
= I2C_M_RD
,
64 .buf
= &status
, .len
= sizeof(status
) },
67 if (i2c_transfer(state
->i2c
, msg
, 1) != 1) {
68 printk(KERN_ERR
"%s: i2c read failed at addr=%02x\n",
69 __func__
, state
->config
->tuner_address
);
73 deb_i2c("R(status): %02x [FL=%d]\n", status
,
74 (status
& STATUS_FL
) ? 1 : 0);
75 if (status
& STATUS_POR
)
76 deb_info("%s: Power-On-Reset bit enabled - need to initialize the tuner\n",
82 static int zl10036_write(struct zl10036_state
*state
, u8 buf
[], u8 count
)
84 struct i2c_msg msg
[1] = {
85 { .addr
= state
->config
->tuner_address
, .flags
= 0,
86 .buf
= buf
, .len
= count
},
91 if (zl10036_debug
& 0x02) {
92 /* every 8bit-value satisifes this!
93 * so only check for debug log */
94 if ((buf
[0] & 0x80) == 0x00)
96 else if ((buf
[0] & 0xc0) == 0x80)
98 else if ((buf
[0] & 0xf0) == 0xc0)
100 else if ((buf
[0] & 0xf0) == 0xd0)
102 else if ((buf
[0] & 0xf0) == 0xe0)
104 else if ((buf
[0] & 0xf0) == 0xf0)
107 deb_i2c("W(%d):", reg
);
110 for (i
= 0; i
< count
; i
++)
111 printk(KERN_CONT
" %02x", buf
[i
]);
112 printk(KERN_CONT
"\n");
116 ret
= i2c_transfer(state
->i2c
, msg
, 1);
118 printk(KERN_ERR
"%s: i2c error, ret=%d\n", __func__
, ret
);
125 static void zl10036_release(struct dvb_frontend
*fe
)
127 struct zl10036_state
*state
= fe
->tuner_priv
;
129 fe
->tuner_priv
= NULL
;
133 static int zl10036_sleep(struct dvb_frontend
*fe
)
135 struct zl10036_state
*state
= fe
->tuner_priv
;
136 u8 buf
[] = { 0xf0, 0x80 }; /* regs 12/13 */
139 deb_info("%s\n", __func__
);
141 if (fe
->ops
.i2c_gate_ctrl
)
142 fe
->ops
.i2c_gate_ctrl(fe
, 1); /* open i2c_gate */
144 ret
= zl10036_write(state
, buf
, sizeof(buf
));
146 if (fe
->ops
.i2c_gate_ctrl
)
147 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close i2c_gate */
153 * register map of the ZL10036/ZL10038
155 * reg[default] content
156 * 2[0x00]: 0 | N14 | N13 | N12 | N11 | N10 | N9 | N8
157 * 3[0x00]: N7 | N6 | N5 | N4 | N3 | N2 | N1 | N0
158 * 4[0x80]: 1 | 0 | RFG | BA1 | BA0 | BG1 | BG0 | LEN
159 * 5[0x00]: P0 | C1 | C0 | R4 | R3 | R2 | R1 | R0
160 * 6[0xc0]: 1 | 1 | 0 | 0 | RSD | 0 | 0 | 0
161 * 7[0x20]: P1 | BF6 | BF5 | BF4 | BF3 | BF2 | BF1 | 0
162 * 8[0xdb]: 1 | 1 | 0 | 1 | 0 | CC | 1 | 1
163 * 9[0x30]: VSD | V2 | V1 | V0 | S3 | S2 | S1 | S0
164 * 10[0xe1]: 1 | 1 | 1 | 0 | 0 | LS2 | LS1 | LS0
165 * 11[0xf5]: WS | WH2 | WH1 | WH0 | WL2 | WL1 | WL0 | WRE
166 * 12[0xf0]: 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0
167 * 13[0x28]: PD | BR4 | BR3 | BR2 | BR1 | BR0 | CLR | TL
170 static int zl10036_set_frequency(struct zl10036_state
*state
, u32 frequency
)
175 div
= (frequency
+ _FR
/2) / _FR
;
176 state
->frequency
= div
* _FR
;
178 foffset
= frequency
- state
->frequency
;
180 buf
[0] = (div
>> 8) & 0x7f;
181 buf
[1] = (div
>> 0) & 0xff;
183 deb_info("%s: ftodo=%u fpriv=%u ferr=%d div=%u\n", __func__
,
184 frequency
, state
->frequency
, foffset
, div
);
186 return zl10036_write(state
, buf
, sizeof(buf
));
189 static int zl10036_set_bandwidth(struct zl10036_state
*state
, u32 fbw
)
191 /* fbw is measured in kHz */
195 0xc0, 0x00, /* 6/7: rsd=0 bf=0 */
198 0xf0, 0x00, /* 12/13: br=0xa clr=0 tl=0*/
200 u8 zl10036_rsd_off
[] = { 0xc8 }; /* set RSD=1 */
202 /* ensure correct values */
208 #define _BR_MAXIMUM (_XTAL/575) /* _XTAL / 575kHz = 17 */
215 * f(bw)=34,6MHz f(xtal)=10.111MHz
216 * br = (10111/34600) * 63 * 1/K = 14;
218 br
= ((_XTAL
* 21 * 1000) / (fbw
* 419));
221 /* ensure correct values */
224 if (br
> _BR_MAXIMUM
)
229 * bf = fbw/_XTAL * br * k - 1 */
231 bf
= (fbw
* br
* 1257) / (_XTAL
* 1000) - 1;
233 /* ensure correct values */
237 buf_bf
[1] = (bf
<< 1) & 0x7e;
238 buf_br
[1] = (br
<< 2) & 0x7c;
239 deb_info("%s: BW=%d br=%u bf=%u\n", __func__
, fbw
, br
, bf
);
241 if (br
!= state
->br
) {
242 ret
= zl10036_write(state
, buf_br
, sizeof(buf_br
));
247 if (bf
!= state
->bf
) {
248 ret
= zl10036_write(state
, buf_bf
, sizeof(buf_bf
));
252 /* time = br/(32* fxtal) */
253 /* minimal sleep time to be calculated
254 * maximum br is 63 -> max time = 2 /10 MHz = 2e-7 */
257 ret
= zl10036_write(state
, zl10036_rsd_off
,
258 sizeof(zl10036_rsd_off
));
269 static int zl10036_set_gain_params(struct zl10036_state
*state
,
276 rfg
= 0; /* enable when using an lna */
281 buf
[0] = 0x80 | ((rfg
<< 5) & 0x20)
282 | ((ba
<< 3) & 0x18) | ((bg
<< 1) & 0x06);
284 if (!state
->config
->rf_loop_enable
)
288 buf
[1] = _RDIV_REG
| ((c
<< 5) & 0x60);
290 deb_info("%s: c=%u rfg=%u ba=%u bg=%u\n", __func__
, c
, rfg
, ba
, bg
);
291 return zl10036_write(state
, buf
, sizeof(buf
));
294 static int zl10036_set_params(struct dvb_frontend
*fe
)
296 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
297 struct zl10036_state
*state
= fe
->tuner_priv
;
299 u32 frequency
= p
->frequency
;
304 /* ensure correct values
305 * maybe redundant as core already checks this */
306 if ((frequency
< fe
->ops
.info
.frequency_min_hz
/ kHz
)
307 || (frequency
> fe
->ops
.info
.frequency_max_hz
/ kHz
))
311 * alpha = 1.35 for dvb-s
312 * fBW = (alpha*symbolrate)/(2*0.8)
313 * 1.35 / (2*0.8) = 27 / 32
315 fbw
= (27 * p
->symbol_rate
) / 32;
320 /* Add safe margin of 3MHz */
323 /* setting the charge pump - guessed values */
324 if (frequency
< 950000)
326 else if (frequency
< 1250000)
328 else if (frequency
< 1750000)
330 else if (frequency
< 2175000)
335 if (fe
->ops
.i2c_gate_ctrl
)
336 fe
->ops
.i2c_gate_ctrl(fe
, 1); /* open i2c_gate */
338 ret
= zl10036_set_gain_params(state
, c
);
342 ret
= zl10036_set_frequency(state
, p
->frequency
);
346 ret
= zl10036_set_bandwidth(state
, fbw
);
350 /* wait for tuner lock - no idea if this is really needed */
351 for (i
= 0; i
< 20; i
++) {
352 ret
= zl10036_read_status_reg(state
);
356 /* check Frequency & Phase Lock Bit */
364 if (fe
->ops
.i2c_gate_ctrl
)
365 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close i2c_gate */
370 static int zl10036_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
372 struct zl10036_state
*state
= fe
->tuner_priv
;
374 *frequency
= state
->frequency
;
379 static int zl10036_init_regs(struct zl10036_state
*state
)
384 /* could also be one block from reg 2 to 13 and additional 10/11 */
385 u8 zl10036_init_tab
[][2] = {
386 { 0x04, 0x00 }, /* 2/3: div=0x400 - arbitrary value */
387 { 0x8b, _RDIV_REG
}, /* 4/5: rfg=0 ba=1 bg=1 len=? */
388 /* p0=0 c=0 r=_RDIV_REG */
389 { 0xc0, 0x20 }, /* 6/7: rsd=0 bf=0x10 */
390 { 0xd3, 0x40 }, /* 8/9: from datasheet */
391 { 0xe3, 0x5b }, /* 10/11: lock window level */
392 { 0xf0, 0x28 }, /* 12/13: br=0xa clr=0 tl=0*/
393 { 0xe3, 0xf9 }, /* 10/11: unlock window level */
396 /* invalid values to trigger writing */
400 if (!state
->config
->rf_loop_enable
)
401 zl10036_init_tab
[1][0] |= 0x01;
403 deb_info("%s\n", __func__
);
405 for (i
= 0; i
< ARRAY_SIZE(zl10036_init_tab
); i
++) {
406 ret
= zl10036_write(state
, zl10036_init_tab
[i
], 2);
414 static int zl10036_init(struct dvb_frontend
*fe
)
416 struct zl10036_state
*state
= fe
->tuner_priv
;
419 if (fe
->ops
.i2c_gate_ctrl
)
420 fe
->ops
.i2c_gate_ctrl(fe
, 1); /* open i2c_gate */
422 ret
= zl10036_read_status_reg(state
);
426 /* Only init if Power-on-Reset bit is set? */
427 ret
= zl10036_init_regs(state
);
429 if (fe
->ops
.i2c_gate_ctrl
)
430 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close i2c_gate */
435 static const struct dvb_tuner_ops zl10036_tuner_ops
= {
437 .name
= "Zarlink ZL10036",
438 .frequency_min_hz
= 950 * MHz
,
439 .frequency_max_hz
= 2175 * MHz
441 .init
= zl10036_init
,
442 .release
= zl10036_release
,
443 .sleep
= zl10036_sleep
,
444 .set_params
= zl10036_set_params
,
445 .get_frequency
= zl10036_get_frequency
,
448 struct dvb_frontend
*zl10036_attach(struct dvb_frontend
*fe
,
449 const struct zl10036_config
*config
,
450 struct i2c_adapter
*i2c
)
452 struct zl10036_state
*state
;
456 printk(KERN_ERR
"%s: no config specified", __func__
);
460 state
= kzalloc(sizeof(struct zl10036_state
), GFP_KERNEL
);
464 state
->config
= config
;
467 if (fe
->ops
.i2c_gate_ctrl
)
468 fe
->ops
.i2c_gate_ctrl(fe
, 1); /* open i2c_gate */
470 ret
= zl10036_read_status_reg(state
);
472 printk(KERN_ERR
"%s: No zl10036 found\n", __func__
);
476 ret
= zl10036_init_regs(state
);
478 printk(KERN_ERR
"%s: tuner initialization failed\n",
483 if (fe
->ops
.i2c_gate_ctrl
)
484 fe
->ops
.i2c_gate_ctrl(fe
, 0); /* close i2c_gate */
486 fe
->tuner_priv
= state
;
488 memcpy(&fe
->ops
.tuner_ops
, &zl10036_tuner_ops
,
489 sizeof(struct dvb_tuner_ops
));
490 printk(KERN_INFO
"%s: tuner initialization (%s addr=0x%02x) ok\n",
491 __func__
, fe
->ops
.tuner_ops
.info
.name
, config
->tuner_address
);
499 EXPORT_SYMBOL(zl10036_attach
);
501 module_param_named(debug
, zl10036_debug
, int, 0644);
502 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
503 MODULE_DESCRIPTION("DVB ZL10036 driver");
504 MODULE_AUTHOR("Tino Reichardt");
505 MODULE_AUTHOR("Matthias Schwarzott");
506 MODULE_LICENSE("GPL");