2 Driver for VES1893 and VES1993 QPSK Demodulators
4 Copyright (C) 1999 Convergence Integrated Media GmbH <ralph@convergence.de>
5 Copyright (C) 2001 Ronny Strutz <3des@elitedvb.de>
6 Copyright (C) 2002 Dennis Noermann <dennis.noermann@noernet.de>
7 Copyright (C) 2002-2003 Andreas Oberritter <obi@linuxtv.org>
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.
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/init.h>
29 #include <linux/string.h>
30 #include <linux/slab.h>
31 #include <linux/delay.h>
33 #include "dvb_frontend.h"
37 struct ves1x93_state
{
38 struct i2c_adapter
* i2c
;
39 /* configuration settings */
40 const struct ves1x93_config
* config
;
41 struct dvb_frontend frontend
;
43 /* previous uncorrected block counter */
44 enum fe_spectral_inversion inversion
;
53 #define dprintk if (debug) printk
55 #define DEMOD_VES1893 0
56 #define DEMOD_VES1993 1
58 static u8 init_1893_tab
[] = {
59 0x01, 0xa4, 0x35, 0x80, 0x2a, 0x0b, 0x55, 0xc4,
60 0x09, 0x69, 0x00, 0x86, 0x4c, 0x28, 0x7f, 0x00,
61 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
62 0x80, 0x00, 0x21, 0xb0, 0x14, 0x00, 0xdc, 0x00,
63 0x81, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
64 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
65 0x00, 0x55, 0x00, 0x00, 0x7f, 0x00
68 static u8 init_1993_tab
[] = {
69 0x00, 0x9c, 0x35, 0x80, 0x6a, 0x09, 0x72, 0x8c,
70 0x09, 0x6b, 0x00, 0x00, 0x4c, 0x08, 0x00, 0x00,
71 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
72 0x80, 0x40, 0x21, 0xb0, 0x00, 0x00, 0x00, 0x10,
73 0x81, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
74 0x00, 0x00, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00,
75 0x00, 0x55, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03,
76 0x00, 0x00, 0x0e, 0x80, 0x00
79 static u8 init_1893_wtab
[] =
81 1,1,1,1,1,1,1,1, 1,1,0,0,1,1,0,0,
82 0,1,0,0,0,0,0,0, 1,0,1,1,0,0,0,1,
83 1,1,1,0,0,0,0,0, 0,0,1,1,0,0,0,0,
87 static u8 init_1993_wtab
[] =
89 1,1,1,1,1,1,1,1, 1,1,0,0,1,1,0,0,
90 0,1,0,0,0,0,0,0, 1,1,1,1,0,0,0,1,
91 1,1,1,0,0,0,0,0, 0,0,1,1,0,0,0,0,
92 1,1,1,0,1,1,1,1, 1,1,1,1,1
95 static int ves1x93_writereg (struct ves1x93_state
* state
, u8 reg
, u8 data
)
97 u8 buf
[] = { 0x00, reg
, data
};
98 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= buf
, .len
= 3 };
101 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
102 dprintk ("%s: writereg error (err == %i, reg == 0x%02x, data == 0x%02x)\n", __func__
, err
, reg
, data
);
109 static u8
ves1x93_readreg (struct ves1x93_state
* state
, u8 reg
)
112 u8 b0
[] = { 0x00, reg
};
114 struct i2c_msg msg
[] = { { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= b0
, .len
= 2 },
115 { .addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
, .buf
= b1
, .len
= 1 } };
117 ret
= i2c_transfer (state
->i2c
, msg
, 2);
119 if (ret
!= 2) return ret
;
124 static int ves1x93_clr_bit (struct ves1x93_state
* state
)
127 ves1x93_writereg (state
, 0, state
->init_1x93_tab
[0] & 0xfe);
128 ves1x93_writereg (state
, 0, state
->init_1x93_tab
[0]);
133 static int ves1x93_set_inversion(struct ves1x93_state
*state
,
134 enum fe_spectral_inversion inversion
)
139 * inversion on/off are interchanged because i and q seem to
140 * be swapped on the hardware
157 return ves1x93_writereg (state
, 0x0c, (state
->init_1x93_tab
[0x0c] & 0x3f) | val
);
160 static int ves1x93_set_fec(struct ves1x93_state
*state
, enum fe_code_rate fec
)
163 return ves1x93_writereg (state
, 0x0d, 0x08);
164 else if (fec
< FEC_1_2
|| fec
> FEC_8_9
)
167 return ves1x93_writereg (state
, 0x0d, fec
- FEC_1_2
);
170 static enum fe_code_rate
ves1x93_get_fec(struct ves1x93_state
*state
)
172 return FEC_1_2
+ ((ves1x93_readreg (state
, 0x0d) >> 4) & 0x7);
175 static int ves1x93_set_symbolrate (struct ves1x93_state
* state
, u32 srate
)
179 u8 ADCONF
, FCONF
, FNR
, AGCR
;
184 dprintk("%s: srate == %d\n", __func__
, (unsigned int) srate
);
186 if (srate
> state
->config
->xin
/2)
187 srate
= state
->config
->xin
/2;
192 #define MUL (1UL<<26)
194 FIN
= (state
->config
->xin
+ 6000) >> 4;
199 tmp
= (tmp
% FIN
) << 8;
200 ratio
= (ratio
<< 8) + tmp
/ FIN
;
202 tmp
= (tmp
% FIN
) << 8;
203 ratio
= (ratio
<< 8) + tmp
/ FIN
;
207 if (ratio
< MUL
/3) FNR
= 0;
208 if (ratio
< (MUL
*11)/50) FNR
= 1;
209 if (ratio
< MUL
/6) FNR
= 2;
210 if (ratio
< MUL
/9) FNR
= 3;
211 if (ratio
< MUL
/12) FNR
= 4;
212 if (ratio
< (MUL
*11)/200) FNR
= 5;
213 if (ratio
< MUL
/24) FNR
= 6;
214 if (ratio
< (MUL
*27)/1000) FNR
= 7;
215 if (ratio
< MUL
/48) FNR
= 8;
216 if (ratio
< (MUL
*137)/10000) FNR
= 9;
224 FCONF
= 0x88 | (FNR
>> 1) | ((FNR
& 0x01) << 5);
225 /*FCONF = 0x80 | ((FNR & 0x01) << 5) | (((FNR > 1) & 0x03) << 3) | ((FNR >> 1) & 0x07);*/
228 BDR
= (( (ratio
<< (FNR
>> 1)) >> 4) + 1) >> 1;
229 BDRI
= ( ((FIN
<< 8) / ((srate
<< (FNR
>> 1)) >> 2)) + 1) >> 1;
231 dprintk("FNR= %d\n", FNR
);
232 dprintk("ratio= %08x\n", (unsigned int) ratio
);
233 dprintk("BDR= %08x\n", (unsigned int) BDR
);
234 dprintk("BDRI= %02x\n", (unsigned int) BDRI
);
239 ves1x93_writereg (state
, 0x06, 0xff & BDR
);
240 ves1x93_writereg (state
, 0x07, 0xff & (BDR
>> 8));
241 ves1x93_writereg (state
, 0x08, 0x0f & (BDR
>> 16));
243 ves1x93_writereg (state
, 0x09, BDRI
);
244 ves1x93_writereg (state
, 0x20, ADCONF
);
245 ves1x93_writereg (state
, 0x21, FCONF
);
247 AGCR
= state
->init_1x93_tab
[0x05];
248 if (state
->config
->invert_pwm
)
256 ves1x93_writereg (state
, 0x05, AGCR
);
258 /* ves1993 hates this, will lose lock */
259 if (state
->demod_type
!= DEMOD_VES1993
)
260 ves1x93_clr_bit (state
);
265 static int ves1x93_init (struct dvb_frontend
* fe
)
267 struct ves1x93_state
* state
= fe
->demodulator_priv
;
271 dprintk("%s: init chip\n", __func__
);
273 for (i
= 0; i
< state
->tab_size
; i
++) {
274 if (state
->init_1x93_wtab
[i
]) {
275 val
= state
->init_1x93_tab
[i
];
277 if (state
->config
->invert_pwm
&& (i
== 0x05)) val
|= 0x20; /* invert PWM */
278 ves1x93_writereg (state
, i
, val
);
285 static int ves1x93_set_voltage(struct dvb_frontend
*fe
,
286 enum fe_sec_voltage voltage
)
288 struct ves1x93_state
* state
= fe
->demodulator_priv
;
292 return ves1x93_writereg (state
, 0x1f, 0x20);
294 return ves1x93_writereg (state
, 0x1f, 0x30);
295 case SEC_VOLTAGE_OFF
:
296 return ves1x93_writereg (state
, 0x1f, 0x00);
302 static int ves1x93_read_status(struct dvb_frontend
*fe
,
303 enum fe_status
*status
)
305 struct ves1x93_state
* state
= fe
->demodulator_priv
;
307 u8 sync
= ves1x93_readreg (state
, 0x0e);
310 * The ves1893 sometimes returns sync values that make no sense,
311 * because, e.g., the SIGNAL bit is 0, while some of the higher
312 * bits are 1 (and how can there be a CARRIER w/o a SIGNAL?).
313 * Tests showed that the VITERBI and SYNC bits are returned
314 * reliably, while the SIGNAL and CARRIER bits ar sometimes wrong.
315 * If such a case occurs, we read the value again, until we get a
318 int maxtry
= 10; /* just for safety - let's not get stuck here */
319 while ((sync
& 0x03) != 0x03 && (sync
& 0x0c) && maxtry
--) {
321 sync
= ves1x93_readreg (state
, 0x0e);
327 *status
|= FE_HAS_SIGNAL
;
330 *status
|= FE_HAS_CARRIER
;
333 *status
|= FE_HAS_VITERBI
;
336 *status
|= FE_HAS_SYNC
;
338 if ((sync
& 0x1f) == 0x1f)
339 *status
|= FE_HAS_LOCK
;
344 static int ves1x93_read_ber(struct dvb_frontend
* fe
, u32
* ber
)
346 struct ves1x93_state
* state
= fe
->demodulator_priv
;
348 *ber
= ves1x93_readreg (state
, 0x15);
349 *ber
|= (ves1x93_readreg (state
, 0x16) << 8);
350 *ber
|= ((ves1x93_readreg (state
, 0x17) & 0x0F) << 16);
356 static int ves1x93_read_signal_strength(struct dvb_frontend
* fe
, u16
* strength
)
358 struct ves1x93_state
* state
= fe
->demodulator_priv
;
360 u8 signal
= ~ves1x93_readreg (state
, 0x0b);
361 *strength
= (signal
<< 8) | signal
;
366 static int ves1x93_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
368 struct ves1x93_state
* state
= fe
->demodulator_priv
;
370 u8 _snr
= ~ves1x93_readreg (state
, 0x1c);
371 *snr
= (_snr
<< 8) | _snr
;
376 static int ves1x93_read_ucblocks(struct dvb_frontend
* fe
, u32
* ucblocks
)
378 struct ves1x93_state
* state
= fe
->demodulator_priv
;
380 *ucblocks
= ves1x93_readreg (state
, 0x18) & 0x7f;
382 if (*ucblocks
== 0x7f)
383 *ucblocks
= 0xffffffff; /* counter overflow... */
385 ves1x93_writereg (state
, 0x18, 0x00); /* reset the counter */
386 ves1x93_writereg (state
, 0x18, 0x80); /* dto. */
391 static int ves1x93_set_frontend(struct dvb_frontend
*fe
)
393 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
394 struct ves1x93_state
* state
= fe
->demodulator_priv
;
396 if (fe
->ops
.tuner_ops
.set_params
) {
397 fe
->ops
.tuner_ops
.set_params(fe
);
398 if (fe
->ops
.i2c_gate_ctrl
) fe
->ops
.i2c_gate_ctrl(fe
, 0);
400 ves1x93_set_inversion (state
, p
->inversion
);
401 ves1x93_set_fec(state
, p
->fec_inner
);
402 ves1x93_set_symbolrate(state
, p
->symbol_rate
);
403 state
->inversion
= p
->inversion
;
404 state
->frequency
= p
->frequency
;
409 static int ves1x93_get_frontend(struct dvb_frontend
*fe
,
410 struct dtv_frontend_properties
*p
)
412 struct ves1x93_state
* state
= fe
->demodulator_priv
;
415 afc
= ((int)((char)(ves1x93_readreg (state
, 0x0a) << 1)))/2;
416 afc
= (afc
* (int)(p
->symbol_rate
/1000/8))/16;
418 p
->frequency
= state
->frequency
- afc
;
421 * inversion indicator is only valid
422 * if auto inversion was used
424 if (state
->inversion
== INVERSION_AUTO
)
425 p
->inversion
= (ves1x93_readreg (state
, 0x0f) & 2) ?
426 INVERSION_OFF
: INVERSION_ON
;
427 p
->fec_inner
= ves1x93_get_fec(state
);
428 /* XXX FIXME: timing offset !! */
433 static int ves1x93_sleep(struct dvb_frontend
* fe
)
435 struct ves1x93_state
* state
= fe
->demodulator_priv
;
437 return ves1x93_writereg (state
, 0x00, 0x08);
440 static void ves1x93_release(struct dvb_frontend
* fe
)
442 struct ves1x93_state
* state
= fe
->demodulator_priv
;
446 static int ves1x93_i2c_gate_ctrl(struct dvb_frontend
* fe
, int enable
)
448 struct ves1x93_state
* state
= fe
->demodulator_priv
;
451 return ves1x93_writereg(state
, 0x00, 0x11);
453 return ves1x93_writereg(state
, 0x00, 0x01);
457 static const struct dvb_frontend_ops ves1x93_ops
;
459 struct dvb_frontend
* ves1x93_attach(const struct ves1x93_config
* config
,
460 struct i2c_adapter
* i2c
)
462 struct ves1x93_state
* state
= NULL
;
465 /* allocate memory for the internal state */
466 state
= kzalloc(sizeof(struct ves1x93_state
), GFP_KERNEL
);
467 if (state
== NULL
) goto error
;
469 /* setup the state */
470 state
->config
= config
;
472 state
->inversion
= INVERSION_OFF
;
474 /* check if the demod is there + identify it */
475 identity
= ves1x93_readreg(state
, 0x1e);
477 case 0xdc: /* VES1893A rev1 */
478 printk("ves1x93: Detected ves1893a rev1\n");
479 state
->demod_type
= DEMOD_VES1893
;
480 state
->init_1x93_tab
= init_1893_tab
;
481 state
->init_1x93_wtab
= init_1893_wtab
;
482 state
->tab_size
= sizeof(init_1893_tab
);
485 case 0xdd: /* VES1893A rev2 */
486 printk("ves1x93: Detected ves1893a rev2\n");
487 state
->demod_type
= DEMOD_VES1893
;
488 state
->init_1x93_tab
= init_1893_tab
;
489 state
->init_1x93_wtab
= init_1893_wtab
;
490 state
->tab_size
= sizeof(init_1893_tab
);
493 case 0xde: /* VES1993 */
494 printk("ves1x93: Detected ves1993\n");
495 state
->demod_type
= DEMOD_VES1993
;
496 state
->init_1x93_tab
= init_1993_tab
;
497 state
->init_1x93_wtab
= init_1993_wtab
;
498 state
->tab_size
= sizeof(init_1993_tab
);
505 /* create dvb_frontend */
506 memcpy(&state
->frontend
.ops
, &ves1x93_ops
, sizeof(struct dvb_frontend_ops
));
507 state
->frontend
.demodulator_priv
= state
;
508 return &state
->frontend
;
515 static const struct dvb_frontend_ops ves1x93_ops
= {
516 .delsys
= { SYS_DVBS
},
518 .name
= "VLSI VES1x93 DVB-S",
519 .frequency_min
= 950000,
520 .frequency_max
= 2150000,
521 .frequency_stepsize
= 125, /* kHz for QPSK frontends */
522 .frequency_tolerance
= 29500,
523 .symbol_rate_min
= 1000000,
524 .symbol_rate_max
= 45000000,
525 /* .symbol_rate_tolerance = ???,*/
526 .caps
= FE_CAN_INVERSION_AUTO
|
527 FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
528 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
532 .release
= ves1x93_release
,
534 .init
= ves1x93_init
,
535 .sleep
= ves1x93_sleep
,
536 .i2c_gate_ctrl
= ves1x93_i2c_gate_ctrl
,
538 .set_frontend
= ves1x93_set_frontend
,
539 .get_frontend
= ves1x93_get_frontend
,
541 .read_status
= ves1x93_read_status
,
542 .read_ber
= ves1x93_read_ber
,
543 .read_signal_strength
= ves1x93_read_signal_strength
,
544 .read_snr
= ves1x93_read_snr
,
545 .read_ucblocks
= ves1x93_read_ucblocks
,
547 .set_voltage
= ves1x93_set_voltage
,
550 module_param(debug
, int, 0644);
552 MODULE_DESCRIPTION("VLSI VES1x93 DVB-S Demodulator driver");
553 MODULE_AUTHOR("Ralph Metzler");
554 MODULE_LICENSE("GPL");
556 EXPORT_SYMBOL(ves1x93_attach
);