2 * Driver for Zarlink ZL10039 DVB-S tuner
4 * Copyright 2007 Jan D. Louw <jd.louw@mweb.co.za>
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.
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
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/string.h>
25 #include <linux/slab.h>
26 #include <linux/dvb/frontend.h>
28 #include "dvb_frontend.h"
33 /* Max transfer size done by I2C transfer functions */
34 #define MAX_XFER_SIZE 64
36 #define dprintk(args...) \
39 printk(KERN_DEBUG args); \
42 enum zl10039_model_id
{
46 struct zl10039_state
{
47 struct i2c_adapter
*i2c
;
52 enum zl10039_reg_addr
{
71 static int zl10039_read(const struct zl10039_state
*state
,
72 const enum zl10039_reg_addr reg
, u8
*buf
,
75 u8 regbuf
[] = { reg
};
76 struct i2c_msg msg
[] = {
77 {/* Write register address */
78 .addr
= state
->i2c_addr
,
82 }, {/* Read count bytes */
83 .addr
= state
->i2c_addr
,
90 dprintk("%s\n", __func__
);
92 if (i2c_transfer(state
->i2c
, msg
, 2) != 2) {
93 dprintk("%s: i2c read error\n", __func__
);
97 return 0; /* Success */
100 static int zl10039_write(struct zl10039_state
*state
,
101 const enum zl10039_reg_addr reg
, const u8
*src
,
104 u8 buf
[MAX_XFER_SIZE
];
105 struct i2c_msg msg
= {
106 .addr
= state
->i2c_addr
,
112 if (1 + count
> sizeof(buf
)) {
114 "%s: i2c wr reg=%04x: len=%zd is too big!\n",
115 KBUILD_MODNAME
, reg
, count
);
119 dprintk("%s\n", __func__
);
120 /* Write register address and data in one go */
122 memcpy(&buf
[1], src
, count
);
123 if (i2c_transfer(state
->i2c
, &msg
, 1) != 1) {
124 dprintk("%s: i2c write error\n", __func__
);
128 return 0; /* Success */
131 static inline int zl10039_readreg(struct zl10039_state
*state
,
132 const enum zl10039_reg_addr reg
, u8
*val
)
134 return zl10039_read(state
, reg
, val
, 1);
137 static inline int zl10039_writereg(struct zl10039_state
*state
,
138 const enum zl10039_reg_addr reg
,
141 return zl10039_write(state
, reg
, &val
, 1);
144 static int zl10039_init(struct dvb_frontend
*fe
)
146 struct zl10039_state
*state
= fe
->tuner_priv
;
149 dprintk("%s\n", __func__
);
150 if (fe
->ops
.i2c_gate_ctrl
)
151 fe
->ops
.i2c_gate_ctrl(fe
, 1);
153 ret
= zl10039_writereg(state
, GENERAL
, 0x40);
155 dprintk("Note: i2c write error normal when resetting the "
159 ret
= zl10039_writereg(state
, GENERAL
, 0x01);
161 dprintk("Tuner power up failed\n");
164 if (fe
->ops
.i2c_gate_ctrl
)
165 fe
->ops
.i2c_gate_ctrl(fe
, 0);
170 static int zl10039_sleep(struct dvb_frontend
*fe
)
172 struct zl10039_state
*state
= fe
->tuner_priv
;
175 dprintk("%s\n", __func__
);
176 if (fe
->ops
.i2c_gate_ctrl
)
177 fe
->ops
.i2c_gate_ctrl(fe
, 1);
178 ret
= zl10039_writereg(state
, GENERAL
, 0x80);
180 dprintk("Tuner sleep failed\n");
183 if (fe
->ops
.i2c_gate_ctrl
)
184 fe
->ops
.i2c_gate_ctrl(fe
, 0);
189 static int zl10039_set_params(struct dvb_frontend
*fe
)
191 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
192 struct zl10039_state
*state
= fe
->tuner_priv
;
199 dprintk("%s\n", __func__
);
200 dprintk("Set frequency = %d, symbol rate = %d\n",
201 c
->frequency
, c
->symbol_rate
);
203 /* Assumed 10.111 MHz crystal oscillator */
204 /* Cancelled num/den 80 to prevent overflow */
205 div
= (c
->frequency
* 1000) / 126387;
206 fbw
= (c
->symbol_rate
* 27) / 32000;
207 /* Cancelled num/den 10 to prevent overflow */
208 bf
= ((fbw
* 5088) / 1011100) - 1;
211 buf
[0] = (div
>> 8) & 0x7f;
212 buf
[1] = (div
>> 0) & 0xff;
213 /*Reference divider*/
214 /* Select reference ratio of 80 */
218 /*RF Control register*/
219 buf
[4] = 0x6E; /* Bypass enable */
220 /*Baseband filter cutoff */
224 if (fe
->ops
.i2c_gate_ctrl
)
225 fe
->ops
.i2c_gate_ctrl(fe
, 1);
226 /* BR = 10, Enable filter adjustment */
227 ret
= zl10039_writereg(state
, BASE1
, 0x0A);
230 /* Write new config values */
231 ret
= zl10039_write(state
, PLL0
, buf
, sizeof(buf
));
234 /* BR = 10, Disable filter adjustment */
235 ret
= zl10039_writereg(state
, BASE1
, 0x6A);
240 if (fe
->ops
.i2c_gate_ctrl
)
241 fe
->ops
.i2c_gate_ctrl(fe
, 0);
244 dprintk("Error setting tuner\n");
248 static int zl10039_release(struct dvb_frontend
*fe
)
250 struct zl10039_state
*state
= fe
->tuner_priv
;
252 dprintk("%s\n", __func__
);
254 fe
->tuner_priv
= NULL
;
258 static struct dvb_tuner_ops zl10039_ops
= {
259 .release
= zl10039_release
,
260 .init
= zl10039_init
,
261 .sleep
= zl10039_sleep
,
262 .set_params
= zl10039_set_params
,
265 struct dvb_frontend
*zl10039_attach(struct dvb_frontend
*fe
,
266 u8 i2c_addr
, struct i2c_adapter
*i2c
)
268 struct zl10039_state
*state
= NULL
;
270 dprintk("%s\n", __func__
);
271 state
= kmalloc(sizeof(struct zl10039_state
), GFP_KERNEL
);
276 state
->i2c_addr
= i2c_addr
;
279 if (fe
->ops
.i2c_gate_ctrl
)
280 fe
->ops
.i2c_gate_ctrl(fe
, 1);
281 /* check if this is a valid tuner */
282 if (zl10039_readreg(state
, GENERAL
, &state
->id
) < 0) {
284 if (fe
->ops
.i2c_gate_ctrl
)
285 fe
->ops
.i2c_gate_ctrl(fe
, 0);
289 if (fe
->ops
.i2c_gate_ctrl
)
290 fe
->ops
.i2c_gate_ctrl(fe
, 0);
292 state
->id
= state
->id
& 0x0f;
295 strcpy(fe
->ops
.tuner_ops
.info
.name
,
296 "Zarlink ZL10039 DVB-S tuner");
299 dprintk("Chip ID=%x does not match a known type\n", state
->id
);
303 memcpy(&fe
->ops
.tuner_ops
, &zl10039_ops
, sizeof(struct dvb_tuner_ops
));
304 fe
->tuner_priv
= state
;
305 dprintk("Tuner attached @ i2c address 0x%02x\n", i2c_addr
);
311 EXPORT_SYMBOL(zl10039_attach
);
313 module_param(debug
, int, 0644);
314 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
315 MODULE_DESCRIPTION("Zarlink ZL10039 DVB-S tuner driver");
316 MODULE_AUTHOR("Jan D. Louw <jd.louw@mweb.co.za>");
317 MODULE_LICENSE("GPL");