blob: ad8647a3c85e69c6caa321e2d2a334afa6e54526 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 VES1820 - Single Chip Cable Channel Receiver driver module
3
4 Copyright (C) 1999 Convergence Integrated Media GmbH <ralph@convergence.de>
5
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
21#include <linux/config.h>
22#include <linux/delay.h>
23#include <linux/errno.h>
24#include <linux/init.h>
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/string.h>
28#include <linux/slab.h>
29#include <asm/div64.h>
30
31#include "dvb_frontend.h"
32#include "ves1820.h"
33
34
35
36struct ves1820_state {
37 struct i2c_adapter* i2c;
38 struct dvb_frontend_ops ops;
39 /* configuration settings */
40 const struct ves1820_config* config;
41 struct dvb_frontend frontend;
42
43 /* private demodulator data */
44 u8 reg0;
45 u8 pwm;
46};
47
48
49static int verbose;
50
51static u8 ves1820_inittab[] = {
52 0x69, 0x6A, 0x93, 0x12, 0x12, 0x46, 0x26, 0x1A,
53 0x43, 0x6A, 0xAA, 0xAA, 0x1E, 0x85, 0x43, 0x20,
54 0xE0, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x00, 0x00,
55 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
56 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
57 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
58 0x00, 0x00, 0x00, 0x00, 0x40
59};
60
61static int ves1820_writereg(struct ves1820_state *state, u8 reg, u8 data)
62{
63 u8 buf[] = { 0x00, reg, data };
64 struct i2c_msg msg = {.addr = state->config->demod_address,.flags = 0,.buf = buf,.len = 3 };
65 int ret;
66
67 ret = i2c_transfer(state->i2c, &msg, 1);
68
69 if (ret != 1)
70 printk("ves1820: %s(): writereg error (reg == 0x%02x,"
71 "val == 0x%02x, ret == %i)\n", __FUNCTION__, reg, data, ret);
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return (ret != 1) ? -EREMOTEIO : 0;
74}
75
76static u8 ves1820_readreg(struct ves1820_state *state, u8 reg)
77{
78 u8 b0[] = { 0x00, reg };
79 u8 b1[] = { 0 };
80 struct i2c_msg msg[] = {
81 {.addr = state->config->demod_address,.flags = 0,.buf = b0,.len = 2},
82 {.addr = state->config->demod_address,.flags = I2C_M_RD,.buf = b1,.len = 1}
83 };
84 int ret;
85
86 ret = i2c_transfer(state->i2c, msg, 2);
87
88 if (ret != 2)
89 printk("ves1820: %s(): readreg error (reg == 0x%02x,"
90 "ret == %i)\n", __FUNCTION__, reg, ret);
91
92 return b1[0];
93}
94
95static int ves1820_setup_reg0(struct ves1820_state *state, u8 reg0, fe_spectral_inversion_t inversion)
96{
97 reg0 |= state->reg0 & 0x62;
98
99 if (INVERSION_ON == inversion) {
100 if (!state->config->invert) reg0 |= 0x20;
101 else reg0 &= ~0x20;
102 } else if (INVERSION_OFF == inversion) {
103 if (!state->config->invert) reg0 &= ~0x20;
104 else reg0 |= 0x20;
105 }
106
107 ves1820_writereg(state, 0x00, reg0 & 0xfe);
108 ves1820_writereg(state, 0x00, reg0 | 0x01);
109
110 state->reg0 = reg0;
111
112 return 0;
113}
114
115static int ves1820_set_symbolrate(struct ves1820_state *state, u32 symbolrate)
116{
117 s32 BDR;
118 s32 BDRI;
119 s16 SFIL = 0;
120 u16 NDEC = 0;
121 u32 ratio;
122 u32 fin;
123 u32 tmp;
124 u64 fptmp;
125 u64 fpxin;
126
127 if (symbolrate > state->config->xin / 2)
128 symbolrate = state->config->xin / 2;
129
130 if (symbolrate < 500000)
131 symbolrate = 500000;
132
133 if (symbolrate < state->config->xin / 16)
134 NDEC = 1;
135 if (symbolrate < state->config->xin / 32)
136 NDEC = 2;
137 if (symbolrate < state->config->xin / 64)
138 NDEC = 3;
139
140 /* yeuch! */
141 fpxin = state->config->xin * 10;
142 fptmp = fpxin; do_div(fptmp, 123);
Denis Vlasenko48063a72005-12-01 00:51:55 -0800143 if (symbolrate < fptmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 SFIL = 1;
145 fptmp = fpxin; do_div(fptmp, 160);
Denis Vlasenko48063a72005-12-01 00:51:55 -0800146 if (symbolrate < fptmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 SFIL = 0;
148 fptmp = fpxin; do_div(fptmp, 246);
Denis Vlasenko48063a72005-12-01 00:51:55 -0800149 if (symbolrate < fptmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 SFIL = 1;
151 fptmp = fpxin; do_div(fptmp, 320);
Denis Vlasenko48063a72005-12-01 00:51:55 -0800152 if (symbolrate < fptmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 SFIL = 0;
154 fptmp = fpxin; do_div(fptmp, 492);
Denis Vlasenko48063a72005-12-01 00:51:55 -0800155 if (symbolrate < fptmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 SFIL = 1;
157 fptmp = fpxin; do_div(fptmp, 640);
Denis Vlasenko48063a72005-12-01 00:51:55 -0800158 if (symbolrate < fptmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 SFIL = 0;
160 fptmp = fpxin; do_div(fptmp, 984);
Denis Vlasenko48063a72005-12-01 00:51:55 -0800161 if (symbolrate < fptmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 SFIL = 1;
163
164 fin = state->config->xin >> 4;
165 symbolrate <<= NDEC;
166 ratio = (symbolrate << 4) / fin;
167 tmp = ((symbolrate << 4) % fin) << 8;
168 ratio = (ratio << 8) + tmp / fin;
169 tmp = (tmp % fin) << 8;
170 ratio = (ratio << 8) + (tmp + fin / 2) / fin;
171
172 BDR = ratio;
173 BDRI = (((state->config->xin << 5) / symbolrate) + 1) / 2;
174
175 if (BDRI > 0xFF)
176 BDRI = 0xFF;
177
178 SFIL = (SFIL << 4) | ves1820_inittab[0x0E];
179
180 NDEC = (NDEC << 6) | ves1820_inittab[0x03];
181
182 ves1820_writereg(state, 0x03, NDEC);
183 ves1820_writereg(state, 0x0a, BDR & 0xff);
184 ves1820_writereg(state, 0x0b, (BDR >> 8) & 0xff);
185 ves1820_writereg(state, 0x0c, (BDR >> 16) & 0x3f);
186
187 ves1820_writereg(state, 0x0d, BDRI);
188 ves1820_writereg(state, 0x0e, SFIL);
189
190 return 0;
191}
192
193static int ves1820_init(struct dvb_frontend* fe)
194{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700195 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 ves1820_writereg(state, 0, 0);
199
Johannes Stezenbach6816a4c2005-09-09 13:02:34 -0700200 for (i = 0; i < sizeof(ves1820_inittab); i++)
201 ves1820_writereg(state, i, ves1820_inittab[i]);
202 if (state->config->selagc)
203 ves1820_writereg(state, 2, ves1820_inittab[2] | 0x08);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 ves1820_writereg(state, 0x34, state->pwm);
206
Johannes Stezenbach6816a4c2005-09-09 13:02:34 -0700207 if (state->config->pll_init)
208 state->config->pll_init(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 return 0;
211}
212
213static int ves1820_set_parameters(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
214{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700215 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 static const u8 reg0x00[] = { 0x00, 0x04, 0x08, 0x0c, 0x10 };
217 static const u8 reg0x01[] = { 140, 140, 106, 100, 92 };
218 static const u8 reg0x05[] = { 135, 100, 70, 54, 38 };
219 static const u8 reg0x08[] = { 162, 116, 67, 52, 35 };
220 static const u8 reg0x09[] = { 145, 150, 106, 126, 107 };
221 int real_qam = p->u.qam.modulation - QAM_16;
222
223 if (real_qam < 0 || real_qam > 4)
224 return -EINVAL;
225
226 state->config->pll_set(fe, p);
227 ves1820_set_symbolrate(state, p->u.qam.symbol_rate);
228 ves1820_writereg(state, 0x34, state->pwm);
229
230 ves1820_writereg(state, 0x01, reg0x01[real_qam]);
231 ves1820_writereg(state, 0x05, reg0x05[real_qam]);
232 ves1820_writereg(state, 0x08, reg0x08[real_qam]);
233 ves1820_writereg(state, 0x09, reg0x09[real_qam]);
234
235 ves1820_setup_reg0(state, reg0x00[real_qam], p->inversion);
Johannes Stezenbach6816a4c2005-09-09 13:02:34 -0700236 ves1820_writereg(state, 2, ves1820_inittab[2] | (state->config->selagc ? 0x08 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
238}
239
240static int ves1820_read_status(struct dvb_frontend* fe, fe_status_t* status)
241{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700242 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int sync;
244
245 *status = 0;
246 sync = ves1820_readreg(state, 0x11);
247
248 if (sync & 1)
249 *status |= FE_HAS_SIGNAL;
250
251 if (sync & 2)
252 *status |= FE_HAS_CARRIER;
253
254 if (sync & 2) /* XXX FIXME! */
255 *status |= FE_HAS_VITERBI;
256
257 if (sync & 4)
258 *status |= FE_HAS_SYNC;
259
260 if (sync & 8)
261 *status |= FE_HAS_LOCK;
262
263 return 0;
264}
265
266static int ves1820_read_ber(struct dvb_frontend* fe, u32* ber)
267{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700268 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 u32 _ber = ves1820_readreg(state, 0x14) |
271 (ves1820_readreg(state, 0x15) << 8) |
272 ((ves1820_readreg(state, 0x16) & 0x0f) << 16);
273 *ber = 10 * _ber;
274
275 return 0;
276}
277
278static int ves1820_read_signal_strength(struct dvb_frontend* fe, u16* strength)
279{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700280 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 u8 gain = ves1820_readreg(state, 0x17);
283 *strength = (gain << 8) | gain;
284
285 return 0;
286}
287
288static int ves1820_read_snr(struct dvb_frontend* fe, u16* snr)
289{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700290 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 u8 quality = ~ves1820_readreg(state, 0x18);
293 *snr = (quality << 8) | quality;
294
295 return 0;
296}
297
298static int ves1820_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
299{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700300 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 *ucblocks = ves1820_readreg(state, 0x13) & 0x7f;
303 if (*ucblocks == 0x7f)
304 *ucblocks = 0xffffffff;
305
306 /* reset uncorrected block counter */
307 ves1820_writereg(state, 0x10, ves1820_inittab[0x10] & 0xdf);
308 ves1820_writereg(state, 0x10, ves1820_inittab[0x10]);
309
310 return 0;
311}
312
313static int ves1820_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
314{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700315 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 int sync;
317 s8 afc = 0;
318
319 sync = ves1820_readreg(state, 0x11);
320 afc = ves1820_readreg(state, 0x19);
321 if (verbose) {
322 /* AFC only valid when carrier has been recovered */
323 printk(sync & 2 ? "ves1820: AFC (%d) %dHz\n" :
324 "ves1820: [AFC (%d) %dHz]\n", afc, -((s32) p->u.qam.symbol_rate * afc) >> 10);
325 }
326
327 if (!state->config->invert) {
328 p->inversion = (state->reg0 & 0x20) ? INVERSION_ON : INVERSION_OFF;
329 } else {
330 p->inversion = (!(state->reg0 & 0x20)) ? INVERSION_ON : INVERSION_OFF;
331 }
332
333 p->u.qam.modulation = ((state->reg0 >> 2) & 7) + QAM_16;
334
335 p->u.qam.fec_inner = FEC_NONE;
336
337 p->frequency = ((p->frequency + 31250) / 62500) * 62500;
338 if (sync & 2)
339 p->frequency -= ((s32) p->u.qam.symbol_rate * afc) >> 10;
340
341 return 0;
342}
343
344static int ves1820_sleep(struct dvb_frontend* fe)
345{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700346 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 ves1820_writereg(state, 0x1b, 0x02); /* pdown ADC */
349 ves1820_writereg(state, 0x00, 0x80); /* standby */
350
351 return 0;
352}
353
354static int ves1820_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings)
355{
356
357 fesettings->min_delay_ms = 200;
358 fesettings->step_size = 0;
359 fesettings->max_drift = 0;
360 return 0;
361}
362
363static void ves1820_release(struct dvb_frontend* fe)
364{
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700365 struct ves1820_state* state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 kfree(state);
367}
368
369static struct dvb_frontend_ops ves1820_ops;
370
371struct dvb_frontend* ves1820_attach(const struct ves1820_config* config,
372 struct i2c_adapter* i2c,
373 u8 pwm)
374{
375 struct ves1820_state* state = NULL;
376
377 /* allocate memory for the internal state */
Johannes Stezenbachb8742702005-05-16 21:54:31 -0700378 state = kmalloc(sizeof(struct ves1820_state), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (state == NULL)
380 goto error;
381
382 /* setup the state */
383 memcpy(&state->ops, &ves1820_ops, sizeof(struct dvb_frontend_ops));
384 state->reg0 = ves1820_inittab[0];
385 state->config = config;
386 state->i2c = i2c;
387 state->pwm = pwm;
388
389 /* check if the demod is there */
390 if ((ves1820_readreg(state, 0x1a) & 0xf0) != 0x70)
391 goto error;
392
393 if (verbose)
394 printk("ves1820: pwm=0x%02x\n", state->pwm);
395
396 state->ops.info.symbol_rate_min = (state->config->xin / 2) / 64; /* SACLK/64 == (XIN/2)/64 */
397 state->ops.info.symbol_rate_max = (state->config->xin / 2) / 4; /* SACLK/4 */
398
399 /* create dvb_frontend */
400 state->frontend.ops = &state->ops;
401 state->frontend.demodulator_priv = state;
402 return &state->frontend;
403
404error:
405 kfree(state);
406 return NULL;
407}
408
409static struct dvb_frontend_ops ves1820_ops = {
410
411 .info = {
412 .name = "VLSI VES1820 DVB-C",
413 .type = FE_QAM,
414 .frequency_stepsize = 62500,
415 .frequency_min = 51000000,
416 .frequency_max = 858000000,
417 .caps = FE_CAN_QAM_16 |
418 FE_CAN_QAM_32 |
419 FE_CAN_QAM_64 |
420 FE_CAN_QAM_128 |
421 FE_CAN_QAM_256 |
422 FE_CAN_FEC_AUTO
423 },
424
425 .release = ves1820_release,
426
427 .init = ves1820_init,
428 .sleep = ves1820_sleep,
429
430 .set_frontend = ves1820_set_parameters,
431 .get_frontend = ves1820_get_frontend,
432 .get_tune_settings = ves1820_get_tune_settings,
433
434 .read_status = ves1820_read_status,
435 .read_ber = ves1820_read_ber,
436 .read_signal_strength = ves1820_read_signal_strength,
437 .read_snr = ves1820_read_snr,
438 .read_ucblocks = ves1820_read_ucblocks,
439};
440
441module_param(verbose, int, 0644);
442MODULE_PARM_DESC(verbose, "print AFC offset after tuning for debugging the PWM setting");
443
444MODULE_DESCRIPTION("VLSI VES1820 DVB-C Demodulator driver");
445MODULE_AUTHOR("Ralph Metzler, Holger Waechtler");
446MODULE_LICENSE("GPL");
447
448EXPORT_SYMBOL(ves1820_attach);