1 // SPDX-License-Identifier: GPL-2.0-or-later
3 Driver for ST STV0299 demodulator
5 Copyright (C) 2001-2002 Convergence Integrated Media GmbH
6 <ralph@convergence.de>,
7 <holger@convergence.de>,
13 Copyright (C) 2002 by Peter Schildmann <peter.schildmann@web.de>
18 Copyright (C) 2002 Felix Domke <tmbinc@elitedvb.net>
19 & Andreas Oberritter <obi@linuxtv.org>
22 Support for Samsung TBMU24112IMB used on Technisat SkyStar2 rev. 2.6B
24 Copyright (C) 2003 Vadim Catana <skystar@moldova.cc>:
26 Support for Philips SU1278 on Technotrend hardware
28 Copyright (C) 2004 Andrew de Quincey <adq_dvb@lidskialf.net>
33 #include <linux/init.h>
34 #include <linux/kernel.h>
35 #include <linux/ktime.h>
36 #include <linux/module.h>
37 #include <linux/string.h>
38 #include <linux/slab.h>
39 #include <linux/jiffies.h>
40 #include <asm/div64.h>
42 #include <media/dvb_frontend.h>
45 struct stv0299_state
{
46 struct i2c_adapter
* i2c
;
47 const struct stv0299_config
* config
;
48 struct dvb_frontend frontend
;
53 enum fe_code_rate fec_inner
;
60 #define STATUS_UCBLOCKS 1
63 static int debug_legacy_dish_switch
;
64 #define dprintk(args...) \
66 if (debug) printk(KERN_DEBUG "stv0299: " args); \
70 static int stv0299_writeregI (struct stv0299_state
* state
, u8 reg
, u8 data
)
73 u8 buf
[] = { reg
, data
};
74 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= buf
, .len
= 2 };
76 ret
= i2c_transfer (state
->i2c
, &msg
, 1);
79 dprintk("%s: writereg error (reg == 0x%02x, val == 0x%02x, ret == %i)\n",
80 __func__
, reg
, data
, ret
);
82 return (ret
!= 1) ? -EREMOTEIO
: 0;
85 static int stv0299_write(struct dvb_frontend
* fe
, const u8 buf
[], int len
)
87 struct stv0299_state
* state
= fe
->demodulator_priv
;
92 return stv0299_writeregI(state
, buf
[0], buf
[1]);
95 static u8
stv0299_readreg (struct stv0299_state
* state
, u8 reg
)
100 struct i2c_msg msg
[] = { { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= b0
, .len
= 1 },
101 { .addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
, .buf
= b1
, .len
= 1 } };
103 ret
= i2c_transfer (state
->i2c
, msg
, 2);
106 dprintk("%s: readreg error (reg == 0x%02x, ret == %i)\n",
112 static int stv0299_readregs (struct stv0299_state
* state
, u8 reg1
, u8
*b
, u8 len
)
115 struct i2c_msg msg
[] = { { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= ®1
, .len
= 1 },
116 { .addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
, .buf
= b
, .len
= len
} };
118 ret
= i2c_transfer (state
->i2c
, msg
, 2);
121 dprintk("%s: readreg error (ret == %i)\n", __func__
, ret
);
123 return ret
== 2 ? 0 : ret
;
126 static int stv0299_set_FEC(struct stv0299_state
*state
, enum fe_code_rate fec
)
128 dprintk ("%s\n", __func__
);
133 return stv0299_writeregI (state
, 0x31, 0x1f);
137 return stv0299_writeregI (state
, 0x31, 0x01);
141 return stv0299_writeregI (state
, 0x31, 0x02);
145 return stv0299_writeregI (state
, 0x31, 0x04);
149 return stv0299_writeregI (state
, 0x31, 0x08);
153 return stv0299_writeregI (state
, 0x31, 0x10);
162 static enum fe_code_rate
stv0299_get_fec(struct stv0299_state
*state
)
164 static enum fe_code_rate fec_tab
[] = { FEC_2_3
, FEC_3_4
, FEC_5_6
,
168 dprintk ("%s\n", __func__
);
170 index
= stv0299_readreg (state
, 0x1b);
176 return fec_tab
[index
];
179 static int stv0299_wait_diseqc_fifo (struct stv0299_state
* state
, int timeout
)
181 unsigned long start
= jiffies
;
183 dprintk ("%s\n", __func__
);
185 while (stv0299_readreg(state
, 0x0a) & 1) {
186 if (jiffies
- start
> timeout
) {
187 dprintk ("%s: timeout!!\n", __func__
);
196 static int stv0299_wait_diseqc_idle (struct stv0299_state
* state
, int timeout
)
198 unsigned long start
= jiffies
;
200 dprintk ("%s\n", __func__
);
202 while ((stv0299_readreg(state
, 0x0a) & 3) != 2 ) {
203 if (jiffies
- start
> timeout
) {
204 dprintk ("%s: timeout!!\n", __func__
);
213 static int stv0299_set_symbolrate (struct dvb_frontend
* fe
, u32 srate
)
215 struct stv0299_state
* state
= fe
->demodulator_priv
;
219 // check rate is within limits
220 if ((srate
< 1000000) || (srate
> 45000000)) return -EINVAL
;
222 // calculate value to program
224 big
+= (state
->config
->mclk
-1); // round correctly
225 do_div(big
, state
->config
->mclk
);
228 return state
->config
->set_symbol_rate(fe
, srate
, ratio
);
231 static int stv0299_get_symbolrate (struct stv0299_state
* state
)
233 u32 Mclk
= state
->config
->mclk
/ 4096L;
239 dprintk ("%s\n", __func__
);
241 stv0299_readregs (state
, 0x1f, sfr
, 3);
242 stv0299_readregs (state
, 0x1a, (u8
*)&rtf
, 1);
244 srate
= (sfr
[0] << 8) | sfr
[1];
247 srate
+= (sfr
[2] >> 4) * Mclk
/ 256;
248 offset
= (s32
) rtf
* (srate
/ 4096L);
251 dprintk ("%s : srate = %i\n", __func__
, srate
);
252 dprintk ("%s : ofset = %i\n", __func__
, offset
);
263 static int stv0299_send_diseqc_msg (struct dvb_frontend
* fe
,
264 struct dvb_diseqc_master_cmd
*m
)
266 struct stv0299_state
* state
= fe
->demodulator_priv
;
270 dprintk ("%s\n", __func__
);
272 if (stv0299_wait_diseqc_idle (state
, 100) < 0)
275 val
= stv0299_readreg (state
, 0x08);
277 if (stv0299_writeregI (state
, 0x08, (val
& ~0x7) | 0x6)) /* DiSEqC mode */
280 for (i
=0; i
<m
->msg_len
; i
++) {
281 if (stv0299_wait_diseqc_fifo (state
, 100) < 0)
284 if (stv0299_writeregI (state
, 0x09, m
->msg
[i
]))
288 if (stv0299_wait_diseqc_idle (state
, 100) < 0)
294 static int stv0299_send_diseqc_burst(struct dvb_frontend
*fe
,
295 enum fe_sec_mini_cmd burst
)
297 struct stv0299_state
* state
= fe
->demodulator_priv
;
300 dprintk ("%s\n", __func__
);
302 if (stv0299_wait_diseqc_idle (state
, 100) < 0)
305 val
= stv0299_readreg (state
, 0x08);
307 if (stv0299_writeregI (state
, 0x08, (val
& ~0x7) | 0x2)) /* burst mode */
310 if (stv0299_writeregI (state
, 0x09, burst
== SEC_MINI_A
? 0x00 : 0xff))
313 if (stv0299_wait_diseqc_idle (state
, 100) < 0)
316 if (stv0299_writeregI (state
, 0x08, val
))
322 static int stv0299_set_tone(struct dvb_frontend
*fe
,
323 enum fe_sec_tone_mode tone
)
325 struct stv0299_state
* state
= fe
->demodulator_priv
;
328 if (stv0299_wait_diseqc_idle (state
, 100) < 0)
331 val
= stv0299_readreg (state
, 0x08);
335 return stv0299_writeregI (state
, 0x08, val
| 0x3);
338 return stv0299_writeregI (state
, 0x08, (val
& ~0x3) | 0x02);
345 static int stv0299_set_voltage(struct dvb_frontend
*fe
,
346 enum fe_sec_voltage voltage
)
348 struct stv0299_state
* state
= fe
->demodulator_priv
;
352 dprintk("%s: %s\n", __func__
,
353 voltage
== SEC_VOLTAGE_13
? "SEC_VOLTAGE_13" :
354 voltage
== SEC_VOLTAGE_18
? "SEC_VOLTAGE_18" : "??");
356 reg0x08
= stv0299_readreg (state
, 0x08);
357 reg0x0c
= stv0299_readreg (state
, 0x0c);
360 * H/V switching over OP0, OP1 and OP2 are LNB power enable bits
363 reg0x08
= (reg0x08
& 0x3f) | (state
->config
->lock_output
<< 6);
367 if (state
->config
->volt13_op0_op1
== STV0299_VOLT13_OP0
)
368 reg0x0c
|= 0x10; /* OP1 off, OP0 on */
370 reg0x0c
|= 0x40; /* OP1 on, OP0 off */
373 reg0x0c
|= 0x50; /* OP1 on, OP0 on */
375 case SEC_VOLTAGE_OFF
:
384 if (state
->config
->op0_off
)
387 stv0299_writeregI(state
, 0x08, reg0x08
);
388 return stv0299_writeregI(state
, 0x0c, reg0x0c
);
391 static int stv0299_send_legacy_dish_cmd (struct dvb_frontend
* fe
, unsigned long cmd
)
393 struct stv0299_state
* state
= fe
->demodulator_priv
;
402 reg0x08
= stv0299_readreg (state
, 0x08);
403 reg0x0c
= stv0299_readreg (state
, 0x0c);
405 stv0299_writeregI (state
, 0x08, (reg0x08
& 0x3f) | (state
->config
->lock_output
<< 6));
406 if (state
->config
->volt13_op0_op1
== STV0299_VOLT13_OP0
)
410 if (debug_legacy_dish_switch
)
411 printk ("%s switch command: 0x%04lx\n",__func__
, cmd
);
413 nexttime
= ktime_get_boottime();
414 if (debug_legacy_dish_switch
)
416 stv0299_writeregI (state
, 0x0c, reg0x0c
| 0x50); /* set LNB to 18V */
418 dvb_frontend_sleep_until(&nexttime
, 32000);
420 for (i
=0; i
<9; i
++) {
421 if (debug_legacy_dish_switch
)
422 tv
[i
+1] = ktime_get_boottime();
423 if((cmd
& 0x01) != last
) {
424 /* set voltage to (last ? 13V : 18V) */
425 stv0299_writeregI (state
, 0x0c, reg0x0c
| (last
? lv_mask
: 0x50));
426 last
= (last
) ? 0 : 1;
432 dvb_frontend_sleep_until(&nexttime
, 8000);
434 if (debug_legacy_dish_switch
) {
435 printk ("%s(%d): switch delay (should be 32k followed by all 8k\n",
436 __func__
, fe
->dvb
->num
);
437 for (i
= 1; i
< 10; i
++)
438 printk("%d: %d\n", i
,
439 (int) ktime_us_delta(tv
[i
], tv
[i
-1]));
445 static int stv0299_init (struct dvb_frontend
* fe
)
447 struct stv0299_state
* state
= fe
->demodulator_priv
;
452 dprintk("stv0299: init chip\n");
454 stv0299_writeregI(state
, 0x02, 0x30 | state
->mcr_reg
);
457 for (i
= 0; ; i
+= 2) {
458 reg
= state
->config
->inittab
[i
];
459 val
= state
->config
->inittab
[i
+1];
460 if (reg
== 0xff && val
== 0xff)
462 if (reg
== 0x0c && state
->config
->op0_off
)
465 state
->mcr_reg
= val
& 0xf;
466 stv0299_writeregI(state
, reg
, val
);
472 static int stv0299_read_status(struct dvb_frontend
*fe
,
473 enum fe_status
*status
)
475 struct stv0299_state
* state
= fe
->demodulator_priv
;
477 u8 signal
= 0xff - stv0299_readreg (state
, 0x18);
478 u8 sync
= stv0299_readreg (state
, 0x1b);
480 dprintk ("%s : FE_READ_STATUS : VSTATUS: 0x%02x\n", __func__
, sync
);
484 *status
|= FE_HAS_SIGNAL
;
487 *status
|= FE_HAS_CARRIER
;
490 *status
|= FE_HAS_VITERBI
;
493 *status
|= FE_HAS_SYNC
;
495 if ((sync
& 0x98) == 0x98)
496 *status
|= FE_HAS_LOCK
;
501 static int stv0299_read_ber(struct dvb_frontend
* fe
, u32
* ber
)
503 struct stv0299_state
* state
= fe
->demodulator_priv
;
505 if (state
->errmode
!= STATUS_BER
)
508 *ber
= stv0299_readreg(state
, 0x1e) | (stv0299_readreg(state
, 0x1d) << 8);
513 static int stv0299_read_signal_strength(struct dvb_frontend
* fe
, u16
* strength
)
515 struct stv0299_state
* state
= fe
->demodulator_priv
;
517 s32 signal
= 0xffff - ((stv0299_readreg (state
, 0x18) << 8)
518 | stv0299_readreg (state
, 0x19));
520 dprintk ("%s : FE_READ_SIGNAL_STRENGTH : AGC2I: 0x%02x%02x, signal=0x%04x\n", __func__
,
521 stv0299_readreg (state
, 0x18),
522 stv0299_readreg (state
, 0x19), (int) signal
);
524 signal
= signal
* 5 / 4;
525 *strength
= (signal
> 0xffff) ? 0xffff : (signal
< 0) ? 0 : signal
;
530 static int stv0299_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
532 struct stv0299_state
* state
= fe
->demodulator_priv
;
534 s32 xsnr
= 0xffff - ((stv0299_readreg (state
, 0x24) << 8)
535 | stv0299_readreg (state
, 0x25));
536 xsnr
= 3 * (xsnr
- 0xa100);
537 *snr
= (xsnr
> 0xffff) ? 0xffff : (xsnr
< 0) ? 0 : xsnr
;
542 static int stv0299_read_ucblocks(struct dvb_frontend
* fe
, u32
* ucblocks
)
544 struct stv0299_state
* state
= fe
->demodulator_priv
;
546 if (state
->errmode
!= STATUS_UCBLOCKS
)
549 state
->ucblocks
+= stv0299_readreg(state
, 0x1e);
550 state
->ucblocks
+= (stv0299_readreg(state
, 0x1d) << 8);
551 *ucblocks
= state
->ucblocks
;
556 static int stv0299_set_frontend(struct dvb_frontend
*fe
)
558 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
559 struct stv0299_state
* state
= fe
->demodulator_priv
;
562 dprintk ("%s : FE_SET_FRONTEND\n", __func__
);
563 if (state
->config
->set_ts_params
)
564 state
->config
->set_ts_params(fe
, 0);
567 if (p
->inversion
== INVERSION_OFF
) invval
= 0;
568 else if (p
->inversion
== INVERSION_ON
) invval
= 1;
570 printk("stv0299 does not support auto-inversion\n");
573 if (state
->config
->invert
) invval
= (~invval
) & 1;
574 stv0299_writeregI(state
, 0x0c, (stv0299_readreg(state
, 0x0c) & 0xfe) | invval
);
576 if (fe
->ops
.tuner_ops
.set_params
) {
577 fe
->ops
.tuner_ops
.set_params(fe
);
578 if (fe
->ops
.i2c_gate_ctrl
) fe
->ops
.i2c_gate_ctrl(fe
, 0);
581 stv0299_set_FEC(state
, p
->fec_inner
);
582 stv0299_set_symbolrate(fe
, p
->symbol_rate
);
583 stv0299_writeregI(state
, 0x22, 0x00);
584 stv0299_writeregI(state
, 0x23, 0x00);
586 state
->tuner_frequency
= p
->frequency
;
587 state
->fec_inner
= p
->fec_inner
;
588 state
->symbol_rate
= p
->symbol_rate
;
593 static int stv0299_get_frontend(struct dvb_frontend
*fe
,
594 struct dtv_frontend_properties
*p
)
596 struct stv0299_state
* state
= fe
->demodulator_priv
;
600 derot_freq
= (s32
)(s16
) ((stv0299_readreg (state
, 0x22) << 8)
601 | stv0299_readreg (state
, 0x23));
603 derot_freq
*= (state
->config
->mclk
>> 16);
607 p
->frequency
+= derot_freq
;
609 invval
= stv0299_readreg (state
, 0x0c) & 1;
610 if (state
->config
->invert
) invval
= (~invval
) & 1;
611 p
->inversion
= invval
? INVERSION_ON
: INVERSION_OFF
;
613 p
->fec_inner
= stv0299_get_fec(state
);
614 p
->symbol_rate
= stv0299_get_symbolrate(state
);
619 static int stv0299_sleep(struct dvb_frontend
* fe
)
621 struct stv0299_state
* state
= fe
->demodulator_priv
;
623 stv0299_writeregI(state
, 0x02, 0xb0 | state
->mcr_reg
);
624 state
->initialised
= 0;
629 static int stv0299_i2c_gate_ctrl(struct dvb_frontend
* fe
, int enable
)
631 struct stv0299_state
* state
= fe
->demodulator_priv
;
634 stv0299_writeregI(state
, 0x05, 0xb5);
636 stv0299_writeregI(state
, 0x05, 0x35);
642 static int stv0299_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
* fesettings
)
644 struct stv0299_state
* state
= fe
->demodulator_priv
;
645 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
647 fesettings
->min_delay_ms
= state
->config
->min_delay_ms
;
648 if (p
->symbol_rate
< 10000000) {
649 fesettings
->step_size
= p
->symbol_rate
/ 32000;
650 fesettings
->max_drift
= 5000;
652 fesettings
->step_size
= p
->symbol_rate
/ 16000;
653 fesettings
->max_drift
= p
->symbol_rate
/ 2000;
658 static void stv0299_release(struct dvb_frontend
* fe
)
660 struct stv0299_state
* state
= fe
->demodulator_priv
;
664 static const struct dvb_frontend_ops stv0299_ops
;
666 struct dvb_frontend
* stv0299_attach(const struct stv0299_config
* config
,
667 struct i2c_adapter
* i2c
)
669 struct stv0299_state
* state
= NULL
;
672 /* allocate memory for the internal state */
673 state
= kzalloc(sizeof(struct stv0299_state
), GFP_KERNEL
);
674 if (state
== NULL
) goto error
;
676 /* setup the state */
677 state
->config
= config
;
679 state
->initialised
= 0;
680 state
->tuner_frequency
= 0;
681 state
->symbol_rate
= 0;
682 state
->fec_inner
= 0;
683 state
->errmode
= STATUS_BER
;
685 /* check if the demod is there */
686 stv0299_writeregI(state
, 0x02, 0x30); /* standby off */
688 id
= stv0299_readreg(state
, 0x00);
690 /* register 0x00 contains 0xa1 for STV0299 and STV0299B */
691 /* register 0x00 might contain 0x80 when returning from standby */
692 if (id
!= 0xa1 && id
!= 0x80) goto error
;
694 /* create dvb_frontend */
695 memcpy(&state
->frontend
.ops
, &stv0299_ops
, sizeof(struct dvb_frontend_ops
));
696 state
->frontend
.demodulator_priv
= state
;
697 return &state
->frontend
;
704 static const struct dvb_frontend_ops stv0299_ops
= {
705 .delsys
= { SYS_DVBS
},
707 .name
= "ST STV0299 DVB-S",
708 .frequency_min_hz
= 950 * MHz
,
709 .frequency_max_hz
= 2150 * MHz
,
710 .frequency_stepsize_hz
= 125 * kHz
,
711 .symbol_rate_min
= 1000000,
712 .symbol_rate_max
= 45000000,
713 .symbol_rate_tolerance
= 500, /* ppm */
714 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
715 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
|
720 .release
= stv0299_release
,
722 .init
= stv0299_init
,
723 .sleep
= stv0299_sleep
,
724 .write
= stv0299_write
,
725 .i2c_gate_ctrl
= stv0299_i2c_gate_ctrl
,
727 .set_frontend
= stv0299_set_frontend
,
728 .get_frontend
= stv0299_get_frontend
,
729 .get_tune_settings
= stv0299_get_tune_settings
,
731 .read_status
= stv0299_read_status
,
732 .read_ber
= stv0299_read_ber
,
733 .read_signal_strength
= stv0299_read_signal_strength
,
734 .read_snr
= stv0299_read_snr
,
735 .read_ucblocks
= stv0299_read_ucblocks
,
737 .diseqc_send_master_cmd
= stv0299_send_diseqc_msg
,
738 .diseqc_send_burst
= stv0299_send_diseqc_burst
,
739 .set_tone
= stv0299_set_tone
,
740 .set_voltage
= stv0299_set_voltage
,
741 .dishnetwork_send_legacy_command
= stv0299_send_legacy_dish_cmd
,
744 module_param(debug_legacy_dish_switch
, int, 0444);
745 MODULE_PARM_DESC(debug_legacy_dish_switch
, "Enable timing analysis for Dish Network legacy switches");
747 module_param(debug
, int, 0644);
748 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
750 MODULE_DESCRIPTION("ST STV0299 DVB Demodulator driver");
751 MODULE_AUTHOR("Ralph Metzler, Holger Waechtler, Peter Schildmann, Felix Domke, Andreas Oberritter, Andrew de Quincey, Kenneth Aafly");
752 MODULE_LICENSE("GPL");
754 EXPORT_SYMBOL(stv0299_attach
);