2 STB0899 Multistandard Frontend driver
3 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
5 Copyright (C) ST Microelectronics
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 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/init.h>
23 #include <linux/jiffies.h>
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
27 #include <linux/string.h>
29 #include <linux/dvb/frontend.h>
30 #include "dvb_frontend.h"
32 #include "stb0899_drv.h"
33 #include "stb0899_priv.h"
34 #include "stb0899_reg.h"
36 /* Max transfer size done by I2C transfer functions */
37 #define MAX_XFER_SIZE 64
39 static unsigned int verbose
= 0;//1;
40 module_param(verbose
, int, 0644);
42 /* C/N in dB/10, NIRM/NIRL */
43 static const struct stb0899_tab stb0899_cn_tab
[] = {
66 /* DVB-S AGCIQ_VALUE vs. signal level in dBm/10.
67 * As measured, connected to a modulator.
68 * -8.0 to -50.0 dBm directly connected,
69 * -52.0 to -74.8 with extra attenuation.
70 * Cut-off to AGCIQ_VALUE = 0x80 below -74.8dBm.
71 * Crude linear extrapolation below -84.8dBm and above -8.0dBm.
73 static const struct stb0899_tab stb0899_dvbsrf_tab
[] = {
107 /* DVB-S2 IF_AGC_GAIN vs. signal level in dBm/10.
108 * As measured, connected to a modulator.
109 * -8.0 to -50.1 dBm directly connected,
110 * -53.0 to -76.6 with extra attenuation.
111 * Cut-off to IF_AGC_GAIN = 0x3fff below -76.6dBm.
112 * Crude linear extrapolation below -76.6dBm and above -8.0dBm.
114 static const struct stb0899_tab stb0899_dvbs2rf_tab
[] = {
141 /* DVB-S2 Es/N0 quant in dB/100 vs read value * 100*/
142 static struct stb0899_tab stb0899_quant_tab
[] = {
184 /* DVB-S2 Es/N0 estimate in dB/100 vs read value */
185 static struct stb0899_tab stb0899_est_tab
[] = {
225 static int _stb0899_read_reg(struct stb0899_state
*state
, unsigned int reg
)
229 u8 b0
[] = { reg
>> 8, reg
& 0xff };
232 struct i2c_msg msg
[] = {
234 .addr
= state
->config
->demod_address
,
239 .addr
= state
->config
->demod_address
,
246 ret
= i2c_transfer(state
->i2c
, msg
, 2);
248 if (ret
!= -ERESTARTSYS
)
249 dprintk(state
->verbose
, FE_ERROR
, 1,
250 "Read error, Reg=[0x%02x], Status=%d",
253 return ret
< 0 ? ret
: -EREMOTEIO
;
255 if (unlikely(*state
->verbose
>= FE_DEBUGREG
))
256 dprintk(state
->verbose
, FE_ERROR
, 1, "Reg=[0x%02x], data=%02x",
259 return (unsigned int)buf
;
262 int stb0899_read_reg(struct stb0899_state
*state
, unsigned int reg
)
266 result
= _stb0899_read_reg(state
, reg
);
269 * access to 0xf2xx/0xf6xx
270 * must be followed by read from 0xf2ff/0xf6ff.
272 if ((reg
!= 0xf2ff) && (reg
!= 0xf6ff) &&
273 (((reg
& 0xff00) == 0xf200) || ((reg
& 0xff00) == 0xf600)))
274 _stb0899_read_reg(state
, (reg
| 0x00ff));
279 u32
_stb0899_read_s2reg(struct stb0899_state
*state
,
281 u32 stb0899_base_addr
,
282 u16 stb0899_reg_offset
)
290 GETBYTE(stb0899_i2cdev
, BYTE1
), /* 0xf3 S2 Base Address (MSB) */
291 GETBYTE(stb0899_i2cdev
, BYTE0
), /* 0xfc S2 Base Address (LSB) */
292 GETBYTE(stb0899_base_addr
, BYTE0
), /* 0x00 Base Address (LSB) */
293 GETBYTE(stb0899_base_addr
, BYTE1
), /* 0x04 Base Address (LSB) */
294 GETBYTE(stb0899_base_addr
, BYTE2
), /* 0x00 Base Address (MSB) */
295 GETBYTE(stb0899_base_addr
, BYTE3
), /* 0x00 Base Address (MSB) */
298 0x00, /* 0xf3 Reg Offset */
299 0x00, /* 0x44 Reg Offset */
302 struct i2c_msg msg_0
= {
303 .addr
= state
->config
->demod_address
,
309 struct i2c_msg msg_1
= {
310 .addr
= state
->config
->demod_address
,
316 struct i2c_msg msg_r
= {
317 .addr
= state
->config
->demod_address
,
323 tmpaddr
= stb0899_reg_offset
& 0xff00;
324 if (!(stb0899_reg_offset
& 0x8))
325 tmpaddr
= stb0899_reg_offset
| 0x20;
327 buf_1
[0] = GETBYTE(tmpaddr
, BYTE1
);
328 buf_1
[1] = GETBYTE(tmpaddr
, BYTE0
);
330 status
= i2c_transfer(state
->i2c
, &msg_0
, 1);
332 if (status
!= -ERESTARTSYS
)
333 printk(KERN_ERR
"%s ERR(1), Device=[0x%04x], Base address=[0x%08x], Offset=[0x%04x], Status=%d\n",
334 __func__
, stb0899_i2cdev
, stb0899_base_addr
, stb0899_reg_offset
, status
);
340 status
= i2c_transfer(state
->i2c
, &msg_1
, 1);
344 status
= i2c_transfer(state
->i2c
, &msg_r
, 1);
348 buf_1
[0] = GETBYTE(stb0899_reg_offset
, BYTE1
);
349 buf_1
[1] = GETBYTE(stb0899_reg_offset
, BYTE0
);
352 status
= i2c_transfer(state
->i2c
, &msg_1
, 1);
354 if (status
!= -ERESTARTSYS
)
355 printk(KERN_ERR
"%s ERR(2), Device=[0x%04x], Base address=[0x%08x], Offset=[0x%04x], Status=%d\n",
356 __func__
, stb0899_i2cdev
, stb0899_base_addr
, stb0899_reg_offset
, status
);
360 status
= i2c_transfer(state
->i2c
, &msg_r
, 1);
362 if (status
!= -ERESTARTSYS
)
363 printk(KERN_ERR
"%s ERR(3), Device=[0x%04x], Base address=[0x%08x], Offset=[0x%04x], Status=%d\n",
364 __func__
, stb0899_i2cdev
, stb0899_base_addr
, stb0899_reg_offset
, status
);
365 return status
< 0 ? status
: -EREMOTEIO
;
368 data
= MAKEWORD32(buf
[3], buf
[2], buf
[1], buf
[0]);
369 if (unlikely(*state
->verbose
>= FE_DEBUGREG
))
370 printk(KERN_DEBUG
"%s Device=[0x%04x], Base address=[0x%08x], Offset=[0x%04x], Data=[0x%08x]\n",
371 __func__
, stb0899_i2cdev
, stb0899_base_addr
, stb0899_reg_offset
, data
);
376 return status
< 0 ? status
: -EREMOTEIO
;
379 int stb0899_write_s2reg(struct stb0899_state
*state
,
381 u32 stb0899_base_addr
,
382 u16 stb0899_reg_offset
,
387 /* Base Address Setup */
389 GETBYTE(stb0899_i2cdev
, BYTE1
), /* 0xf3 S2 Base Address (MSB) */
390 GETBYTE(stb0899_i2cdev
, BYTE0
), /* 0xfc S2 Base Address (LSB) */
391 GETBYTE(stb0899_base_addr
, BYTE0
), /* 0x00 Base Address (LSB) */
392 GETBYTE(stb0899_base_addr
, BYTE1
), /* 0x04 Base Address (LSB) */
393 GETBYTE(stb0899_base_addr
, BYTE2
), /* 0x00 Base Address (MSB) */
394 GETBYTE(stb0899_base_addr
, BYTE3
), /* 0x00 Base Address (MSB) */
397 0x00, /* 0xf3 Reg Offset */
398 0x00, /* 0x44 Reg Offset */
405 struct i2c_msg msg_0
= {
406 .addr
= state
->config
->demod_address
,
412 struct i2c_msg msg_1
= {
413 .addr
= state
->config
->demod_address
,
419 buf_1
[0] = GETBYTE(stb0899_reg_offset
, BYTE1
);
420 buf_1
[1] = GETBYTE(stb0899_reg_offset
, BYTE0
);
421 buf_1
[2] = GETBYTE(stb0899_data
, BYTE0
);
422 buf_1
[3] = GETBYTE(stb0899_data
, BYTE1
);
423 buf_1
[4] = GETBYTE(stb0899_data
, BYTE2
);
424 buf_1
[5] = GETBYTE(stb0899_data
, BYTE3
);
426 if (unlikely(*state
->verbose
>= FE_DEBUGREG
))
427 printk(KERN_DEBUG
"%s Device=[0x%04x], Base Address=[0x%08x], Offset=[0x%04x], Data=[0x%08x]\n",
428 __func__
, stb0899_i2cdev
, stb0899_base_addr
, stb0899_reg_offset
, stb0899_data
);
430 status
= i2c_transfer(state
->i2c
, &msg_0
, 1);
431 if (unlikely(status
< 1)) {
432 if (status
!= -ERESTARTSYS
)
433 printk(KERN_ERR
"%s ERR (1), Device=[0x%04x], Base Address=[0x%08x], Offset=[0x%04x], Data=[0x%08x], status=%d\n",
434 __func__
, stb0899_i2cdev
, stb0899_base_addr
, stb0899_reg_offset
, stb0899_data
, status
);
437 status
= i2c_transfer(state
->i2c
, &msg_1
, 1);
438 if (unlikely(status
< 1)) {
439 if (status
!= -ERESTARTSYS
)
440 printk(KERN_ERR
"%s ERR (2), Device=[0x%04x], Base Address=[0x%08x], Offset=[0x%04x], Data=[0x%08x], status=%d\n",
441 __func__
, stb0899_i2cdev
, stb0899_base_addr
, stb0899_reg_offset
, stb0899_data
, status
);
443 return status
< 0 ? status
: -EREMOTEIO
;
449 return status
< 0 ? status
: -EREMOTEIO
;
452 int stb0899_read_regs(struct stb0899_state
*state
, unsigned int reg
, u8
*buf
, u32 count
)
456 u8 b0
[] = { reg
>> 8, reg
& 0xff };
458 struct i2c_msg msg
[] = {
460 .addr
= state
->config
->demod_address
,
465 .addr
= state
->config
->demod_address
,
472 status
= i2c_transfer(state
->i2c
, msg
, 2);
474 if (status
!= -ERESTARTSYS
)
475 printk(KERN_ERR
"%s Read error, Reg=[0x%04x], Count=%u, Status=%d\n",
476 __func__
, reg
, count
, status
);
481 * access to 0xf2xx/0xf6xx
482 * must be followed by read from 0xf2ff/0xf6ff.
484 if ((reg
!= 0xf2ff) && (reg
!= 0xf6ff) &&
485 (((reg
& 0xff00) == 0xf200) || ((reg
& 0xff00) == 0xf600)))
486 _stb0899_read_reg(state
, (reg
| 0x00ff));
488 if (unlikely(*state
->verbose
>= FE_DEBUGREG
)) {
491 printk(KERN_DEBUG
"%s [0x%04x]:", __func__
, reg
);
492 for (i
= 0; i
< count
; i
++) {
493 printk(" %02x", buf
[i
]);
500 return status
< 0 ? status
: -EREMOTEIO
;
503 int stb0899_write_regs(struct stb0899_state
*state
, unsigned int reg
, u8
*data
, u32 count
)
506 u8 buf
[MAX_XFER_SIZE
];
507 struct i2c_msg i2c_msg
= {
508 .addr
= state
->config
->demod_address
,
514 if (2 + count
> sizeof(buf
)) {
516 "%s: i2c wr reg=%04x: len=%d is too big!\n",
517 KBUILD_MODNAME
, reg
, count
);
523 memcpy(&buf
[2], data
, count
);
525 if (unlikely(*state
->verbose
>= FE_DEBUGREG
)) {
528 printk(KERN_DEBUG
"%s [0x%04x]:", __func__
, reg
);
529 for (i
= 0; i
< count
; i
++)
530 printk(" %02x", data
[i
]);
533 ret
= i2c_transfer(state
->i2c
, &i2c_msg
, 1);
537 * access to 0xf2xx/0xf6xx
538 * must be followed by read from 0xf2ff/0xf6ff.
540 if ((((reg
& 0xff00) == 0xf200) || ((reg
& 0xff00) == 0xf600)))
541 stb0899_read_reg(state
, (reg
| 0x00ff));
544 if (ret
!= -ERESTARTSYS
)
545 dprintk(state
->verbose
, FE_ERROR
, 1, "Reg=[0x%04x], Data=[0x%02x ...], Count=%u, Status=%d",
546 reg
, data
[0], count
, ret
);
547 return ret
< 0 ? ret
: -EREMOTEIO
;
553 int stb0899_write_reg(struct stb0899_state
*state
, unsigned int reg
, u8 data
)
555 return stb0899_write_regs(state
, reg
, &data
, 1);
560 * Get STB0899 master clock frequency
561 * ExtClk: external clock frequency (Hz)
563 static u32
stb0899_get_mclk(struct stb0899_state
*state
)
565 u32 mclk
= 0, div
= 0;
567 div
= stb0899_read_reg(state
, STB0899_NCOARSE
);
568 mclk
= (div
+ 1) * state
->config
->xtal_freq
/ 6;
569 dprintk(state
->verbose
, FE_DEBUG
, 1, "div=%d, mclk=%d", div
, mclk
);
576 * Set STB0899 master Clock frequency
577 * Mclk: demodulator master clock
578 * ExtClk: external clock frequency (Hz)
580 static void stb0899_set_mclk(struct stb0899_state
*state
, u32 Mclk
)
582 struct stb0899_internal
*internal
= &state
->internal
;
585 dprintk(state
->verbose
, FE_DEBUG
, 1, "state->config=%p", state
->config
);
586 mdiv
= ((6 * Mclk
) / state
->config
->xtal_freq
) - 1;
587 dprintk(state
->verbose
, FE_DEBUG
, 1, "mdiv=%d", mdiv
);
589 stb0899_write_reg(state
, STB0899_NCOARSE
, mdiv
);
590 internal
->master_clk
= stb0899_get_mclk(state
);
592 dprintk(state
->verbose
, FE_DEBUG
, 1, "MasterCLOCK=%d", internal
->master_clk
);
595 static int stb0899_postproc(struct stb0899_state
*state
, u8 ctl
, int enable
)
597 struct stb0899_config
*config
= state
->config
;
598 const struct stb0899_postproc
*postproc
= config
->postproc
;
600 /* post process event */
603 if (postproc
[ctl
].level
== STB0899_GPIOPULLUP
)
604 stb0899_write_reg(state
, postproc
[ctl
].gpio
, 0x02);
606 stb0899_write_reg(state
, postproc
[ctl
].gpio
, 0x82);
608 if (postproc
[ctl
].level
== STB0899_GPIOPULLUP
)
609 stb0899_write_reg(state
, postproc
[ctl
].gpio
, 0x82);
611 stb0899_write_reg(state
, postproc
[ctl
].gpio
, 0x02);
617 static void stb0899_release(struct dvb_frontend
*fe
)
619 struct stb0899_state
*state
= fe
->demodulator_priv
;
621 dprintk(state
->verbose
, FE_DEBUG
, 1, "Release Frontend");
622 /* post process event */
623 stb0899_postproc(state
, STB0899_POSTPROC_GPIO_POWER
, 0);
631 static int stb0899_get_alpha(struct stb0899_state
*state
)
635 mode_coeff
= stb0899_read_reg(state
, STB0899_DEMOD
);
637 if (STB0899_GETFIELD(MODECOEFF
, mode_coeff
) == 1)
646 static void stb0899_init_calc(struct stb0899_state
*state
)
648 struct stb0899_internal
*internal
= &state
->internal
;
653 /* Read registers (in burst mode) */
654 stb0899_read_regs(state
, STB0899_AGC1REF
, agc
, 2); /* AGC1R and AGC2O */
656 /* Initial calculations */
657 master_clk
= stb0899_get_mclk(state
);
658 internal
->t_agc1
= 0;
659 internal
->t_agc2
= 0;
660 internal
->master_clk
= master_clk
;
661 internal
->mclk
= master_clk
/ 65536L;
662 internal
->rolloff
= stb0899_get_alpha(state
);
664 /* DVBS2 Initial calculations */
665 /* Set AGC value to the middle */
666 internal
->agc_gain
= 8154;
667 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, IF_AGC_CNTRL
);
668 STB0899_SETFIELD_VAL(IF_GAIN_INIT
, reg
, internal
->agc_gain
);
669 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_IF_AGC_CNTRL
, STB0899_OFF0_IF_AGC_CNTRL
, reg
);
671 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, RRC_ALPHA
);
672 internal
->rrc_alpha
= STB0899_GETFIELD(RRC_ALPHA
, reg
);
674 internal
->center_freq
= 0;
675 internal
->av_frame_coarse
= 10;
676 internal
->av_frame_fine
= 20;
677 internal
->step_size
= 2;
679 if ((pParams->SpectralInv == FE_IQ_NORMAL) || (pParams->SpectralInv == FE_IQ_AUTO))
680 pParams->IQLocked = 0;
682 pParams->IQLocked = 1;
686 static int stb0899_wait_diseqc_fifo_empty(struct stb0899_state
*state
, int timeout
)
689 unsigned long start
= jiffies
;
692 reg
= stb0899_read_reg(state
, STB0899_DISSTATUS
);
693 if (!STB0899_GETFIELD(FIFOFULL
, reg
))
695 if (time_after(jiffies
, start
+ timeout
)) {
696 dprintk(state
->verbose
, FE_ERROR
, 1, "timed out !!");
704 static int stb0899_send_diseqc_msg(struct dvb_frontend
*fe
, struct dvb_diseqc_master_cmd
*cmd
)
706 struct stb0899_state
*state
= fe
->demodulator_priv
;
709 if (cmd
->msg_len
> sizeof(cmd
->msg
))
712 /* enable FIFO precharge */
713 reg
= stb0899_read_reg(state
, STB0899_DISCNTRL1
);
714 STB0899_SETFIELD_VAL(DISPRECHARGE
, reg
, 1);
715 stb0899_write_reg(state
, STB0899_DISCNTRL1
, reg
);
716 for (i
= 0; i
< cmd
->msg_len
; i
++) {
717 /* wait for FIFO empty */
718 if (stb0899_wait_diseqc_fifo_empty(state
, 100) < 0)
721 stb0899_write_reg(state
, STB0899_DISFIFO
, cmd
->msg
[i
]);
723 reg
= stb0899_read_reg(state
, STB0899_DISCNTRL1
);
724 STB0899_SETFIELD_VAL(DISPRECHARGE
, reg
, 0);
725 stb0899_write_reg(state
, STB0899_DISCNTRL1
, reg
);
730 static int stb0899_wait_diseqc_rxidle(struct stb0899_state
*state
, int timeout
)
733 unsigned long start
= jiffies
;
735 while (!STB0899_GETFIELD(RXEND
, reg
)) {
736 reg
= stb0899_read_reg(state
, STB0899_DISRX_ST0
);
737 if (time_after(jiffies
, start
+ timeout
)) {
738 dprintk(state
->verbose
, FE_ERROR
, 1, "timed out!!");
747 static int stb0899_recv_slave_reply(struct dvb_frontend
*fe
, struct dvb_diseqc_slave_reply
*reply
)
749 struct stb0899_state
*state
= fe
->demodulator_priv
;
750 u8 reg
, length
= 0, i
;
753 if (stb0899_wait_diseqc_rxidle(state
, 100) < 0)
756 reg
= stb0899_read_reg(state
, STB0899_DISRX_ST0
);
757 if (STB0899_GETFIELD(RXEND
, reg
)) {
759 reg
= stb0899_read_reg(state
, STB0899_DISRX_ST1
);
760 length
= STB0899_GETFIELD(FIFOBYTENBR
, reg
);
762 if (length
> sizeof (reply
->msg
)) {
766 reply
->msg_len
= length
;
769 for (i
= 0; i
< length
; i
++)
770 reply
->msg
[i
] = stb0899_read_reg(state
, STB0899_DISFIFO
);
779 static int stb0899_wait_diseqc_txidle(struct stb0899_state
*state
, int timeout
)
782 unsigned long start
= jiffies
;
784 while (!STB0899_GETFIELD(TXIDLE
, reg
)) {
785 reg
= stb0899_read_reg(state
, STB0899_DISSTATUS
);
786 if (time_after(jiffies
, start
+ timeout
)) {
787 dprintk(state
->verbose
, FE_ERROR
, 1, "timed out!!");
795 static int stb0899_send_diseqc_burst(struct dvb_frontend
*fe
,
796 enum fe_sec_mini_cmd burst
)
798 struct stb0899_state
*state
= fe
->demodulator_priv
;
801 /* wait for diseqc idle */
802 if (stb0899_wait_diseqc_txidle(state
, 100) < 0)
805 reg
= stb0899_read_reg(state
, STB0899_DISCNTRL1
);
807 /* set to burst mode */
808 STB0899_SETFIELD_VAL(DISEQCMODE
, reg
, 0x03);
809 STB0899_SETFIELD_VAL(DISPRECHARGE
, reg
, 0x01);
810 stb0899_write_reg(state
, STB0899_DISCNTRL1
, reg
);
814 stb0899_write_reg(state
, STB0899_DISFIFO
, 0x00);
818 stb0899_write_reg(state
, STB0899_DISFIFO
, 0xff);
821 reg
= stb0899_read_reg(state
, STB0899_DISCNTRL1
);
822 STB0899_SETFIELD_VAL(DISPRECHARGE
, reg
, 0x00);
823 stb0899_write_reg(state
, STB0899_DISCNTRL1
, reg
);
824 /* wait for diseqc idle */
825 if (stb0899_wait_diseqc_txidle(state
, 100) < 0)
829 stb0899_write_reg(state
, STB0899_DISCNTRL1
, old_state
);
834 static int stb0899_diseqc_init(struct stb0899_state
*state
)
837 struct dvb_diseqc_slave_reply rx_data;
841 u32 mclk
, tx_freq
= 22000;/* count = 0, i; */
842 reg
= stb0899_read_reg(state
, STB0899_DISCNTRL2
);
843 STB0899_SETFIELD_VAL(ONECHIP_TRX
, reg
, 0);
844 stb0899_write_reg(state
, STB0899_DISCNTRL2
, reg
);
847 reg
= stb0899_read_reg(state
, STB0899_DISCNTRL1
);
848 STB0899_SETFIELD_VAL(DISEQCRESET
, reg
, 1);
849 stb0899_write_reg(state
, STB0899_DISCNTRL1
, reg
);
851 reg
= stb0899_read_reg(state
, STB0899_DISCNTRL1
);
852 STB0899_SETFIELD_VAL(DISEQCRESET
, reg
, 0);
853 stb0899_write_reg(state
, STB0899_DISCNTRL1
, reg
);
855 mclk
= stb0899_get_mclk(state
);
856 f22_tx
= mclk
/ (tx_freq
* 32);
857 stb0899_write_reg(state
, STB0899_DISF22
, f22_tx
); /* DiSEqC Tx freq */
858 state
->rx_freq
= 20000;
863 static int stb0899_sleep(struct dvb_frontend
*fe
)
865 struct stb0899_state
*state
= fe
->demodulator_priv
;
869 dprintk(state
->verbose
, FE_DEBUG
, 1, "Going to Sleep .. (Really tired .. :-))");
870 /* post process event */
871 stb0899_postproc(state
, STB0899_POSTPROC_GPIO_POWER
, 0);
876 static int stb0899_wakeup(struct dvb_frontend
*fe
)
879 struct stb0899_state
*state
= fe
->demodulator_priv
;
881 if ((rc
= stb0899_write_reg(state
, STB0899_SYNTCTRL
, STB0899_SELOSCI
)))
883 /* Activate all clocks; DVB-S2 registers are inaccessible otherwise. */
884 if ((rc
= stb0899_write_reg(state
, STB0899_STOPCLK1
, 0x00)))
886 if ((rc
= stb0899_write_reg(state
, STB0899_STOPCLK2
, 0x00)))
889 /* post process event */
890 stb0899_postproc(state
, STB0899_POSTPROC_GPIO_POWER
, 1);
895 static int stb0899_init(struct dvb_frontend
*fe
)
898 struct stb0899_state
*state
= fe
->demodulator_priv
;
899 struct stb0899_config
*config
= state
->config
;
901 dprintk(state
->verbose
, FE_DEBUG
, 1, "Initializing STB0899 ... ");
904 dprintk(state
->verbose
, FE_DEBUG
, 1, "init device");
905 for (i
= 0; config
->init_dev
[i
].address
!= 0xffff; i
++)
906 stb0899_write_reg(state
, config
->init_dev
[i
].address
, config
->init_dev
[i
].data
);
908 dprintk(state
->verbose
, FE_DEBUG
, 1, "init S2 demod");
910 for (i
= 0; config
->init_s2_demod
[i
].offset
!= 0xffff; i
++)
911 stb0899_write_s2reg(state
, STB0899_S2DEMOD
,
912 config
->init_s2_demod
[i
].base_address
,
913 config
->init_s2_demod
[i
].offset
,
914 config
->init_s2_demod
[i
].data
);
916 dprintk(state
->verbose
, FE_DEBUG
, 1, "init S1 demod");
918 for (i
= 0; config
->init_s1_demod
[i
].address
!= 0xffff; i
++)
919 stb0899_write_reg(state
, config
->init_s1_demod
[i
].address
, config
->init_s1_demod
[i
].data
);
921 dprintk(state
->verbose
, FE_DEBUG
, 1, "init S2 FEC");
923 for (i
= 0; config
->init_s2_fec
[i
].offset
!= 0xffff; i
++)
924 stb0899_write_s2reg(state
, STB0899_S2FEC
,
925 config
->init_s2_fec
[i
].base_address
,
926 config
->init_s2_fec
[i
].offset
,
927 config
->init_s2_fec
[i
].data
);
929 dprintk(state
->verbose
, FE_DEBUG
, 1, "init TST");
931 for (i
= 0; config
->init_tst
[i
].address
!= 0xffff; i
++)
932 stb0899_write_reg(state
, config
->init_tst
[i
].address
, config
->init_tst
[i
].data
);
934 stb0899_init_calc(state
);
935 stb0899_diseqc_init(state
);
940 static int stb0899_table_lookup(const struct stb0899_tab
*tab
, int max
, int val
)
945 if (val
< tab
[min
].read
)
947 else if (val
>= tab
[max
].read
)
950 while ((max
- min
) > 1) {
951 med
= (max
+ min
) / 2;
952 if (val
>= tab
[min
].read
&& val
< tab
[med
].read
)
957 res
= ((val
- tab
[min
].read
) *
958 (tab
[max
].real
- tab
[min
].real
) /
959 (tab
[max
].read
- tab
[min
].read
)) +
966 static int stb0899_read_signal_strength(struct dvb_frontend
*fe
, u16
*strength
)
968 struct stb0899_state
*state
= fe
->demodulator_priv
;
969 struct stb0899_internal
*internal
= &state
->internal
;
974 switch (state
->delsys
) {
977 if (internal
->lock
) {
978 reg
= stb0899_read_reg(state
, STB0899_VSTATUS
);
979 if (STB0899_GETFIELD(VSTATUS_LOCKEDVIT
, reg
)) {
981 reg
= stb0899_read_reg(state
, STB0899_AGCIQIN
);
982 val
= (s32
)(s8
)STB0899_GETFIELD(AGCIQVALUE
, reg
);
984 *strength
= stb0899_table_lookup(stb0899_dvbsrf_tab
, ARRAY_SIZE(stb0899_dvbsrf_tab
) - 1, val
);
986 dprintk(state
->verbose
, FE_DEBUG
, 1, "AGCIQVALUE = 0x%02x, C = %d * 0.1 dBm",
987 val
& 0xff, *strength
);
992 if (internal
->lock
) {
993 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, IF_AGC_GAIN
);
994 val
= STB0899_GETFIELD(IF_AGC_GAIN
, reg
);
996 *strength
= stb0899_table_lookup(stb0899_dvbs2rf_tab
, ARRAY_SIZE(stb0899_dvbs2rf_tab
) - 1, val
);
998 dprintk(state
->verbose
, FE_DEBUG
, 1, "IF_AGC_GAIN = 0x%04x, C = %d * 0.1 dBm",
999 val
& 0x3fff, *strength
);
1003 dprintk(state
->verbose
, FE_DEBUG
, 1, "Unsupported delivery system");
1010 static int stb0899_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
1012 struct stb0899_state
*state
= fe
->demodulator_priv
;
1013 struct stb0899_internal
*internal
= &state
->internal
;
1015 unsigned int val
, quant
, quantn
= -1, est
, estn
= -1;
1020 reg
= stb0899_read_reg(state
, STB0899_VSTATUS
);
1021 switch (state
->delsys
) {
1024 if (internal
->lock
) {
1025 if (STB0899_GETFIELD(VSTATUS_LOCKEDVIT
, reg
)) {
1027 stb0899_read_regs(state
, STB0899_NIRM
, buf
, 2);
1028 val
= MAKEWORD16(buf
[0], buf
[1]);
1030 *snr
= stb0899_table_lookup(stb0899_cn_tab
, ARRAY_SIZE(stb0899_cn_tab
) - 1, val
);
1031 dprintk(state
->verbose
, FE_DEBUG
, 1, "NIR = 0x%02x%02x = %u, C/N = %d * 0.1 dBm\n",
1032 buf
[0], buf
[1], val
, *snr
);
1037 if (internal
->lock
) {
1038 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, UWP_CNTRL1
);
1039 quant
= STB0899_GETFIELD(UWP_ESN0_QUANT
, reg
);
1040 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, UWP_STAT2
);
1041 est
= STB0899_GETFIELD(ESN0_EST
, reg
);
1043 val
= 301; /* C/N = 30.1 dB */
1045 val
= 270; /* C/N = 27.0 dB */
1047 /* quantn = 100 * log(quant^2) */
1048 quantn
= stb0899_table_lookup(stb0899_quant_tab
, ARRAY_SIZE(stb0899_quant_tab
) - 1, quant
* 100);
1049 /* estn = 100 * log(est) */
1050 estn
= stb0899_table_lookup(stb0899_est_tab
, ARRAY_SIZE(stb0899_est_tab
) - 1, est
);
1051 /* snr(dBm/10) = -10*(log(est)-log(quant^2)) => snr(dBm/10) = (100*log(quant^2)-100*log(est))/10 */
1052 val
= (quantn
- estn
) / 10;
1055 dprintk(state
->verbose
, FE_DEBUG
, 1, "Es/N0 quant = %d (%d) estimate = %u (%d), C/N = %d * 0.1 dBm",
1056 quant
, quantn
, est
, estn
, val
);
1060 dprintk(state
->verbose
, FE_DEBUG
, 1, "Unsupported delivery system");
1067 static int stb0899_read_status(struct dvb_frontend
*fe
, enum fe_status
*status
)
1069 struct stb0899_state
*state
= fe
->demodulator_priv
;
1070 struct stb0899_internal
*internal
= &state
->internal
;
1074 switch (state
->delsys
) {
1077 dprintk(state
->verbose
, FE_DEBUG
, 1, "Delivery system DVB-S/DSS");
1078 if (internal
->lock
) {
1079 reg
= stb0899_read_reg(state
, STB0899_VSTATUS
);
1080 if (STB0899_GETFIELD(VSTATUS_LOCKEDVIT
, reg
)) {
1081 dprintk(state
->verbose
, FE_DEBUG
, 1, "--------> FE_HAS_CARRIER | FE_HAS_LOCK");
1082 *status
|= FE_HAS_SIGNAL
| FE_HAS_CARRIER
| FE_HAS_LOCK
;
1084 reg
= stb0899_read_reg(state
, STB0899_PLPARM
);
1085 if (STB0899_GETFIELD(VITCURPUN
, reg
)) {
1086 dprintk(state
->verbose
, FE_DEBUG
, 1, "--------> FE_HAS_VITERBI | FE_HAS_SYNC");
1087 *status
|= FE_HAS_VITERBI
| FE_HAS_SYNC
;
1088 /* post process event */
1089 stb0899_postproc(state
, STB0899_POSTPROC_GPIO_LOCK
, 1);
1095 dprintk(state
->verbose
, FE_DEBUG
, 1, "Delivery system DVB-S2");
1096 if (internal
->lock
) {
1097 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_STAT2
);
1098 if (STB0899_GETFIELD(UWP_LOCK
, reg
) && STB0899_GETFIELD(CSM_LOCK
, reg
)) {
1099 *status
|= FE_HAS_CARRIER
;
1100 dprintk(state
->verbose
, FE_DEBUG
, 1,
1101 "UWP & CSM Lock ! ---> DVB-S2 FE_HAS_CARRIER");
1103 reg
= stb0899_read_reg(state
, STB0899_CFGPDELSTATUS1
);
1104 if (STB0899_GETFIELD(CFGPDELSTATUS_LOCK
, reg
)) {
1105 *status
|= FE_HAS_LOCK
;
1106 dprintk(state
->verbose
, FE_DEBUG
, 1,
1107 "Packet Delineator Locked ! -----> DVB-S2 FE_HAS_LOCK");
1110 if (STB0899_GETFIELD(CONTINUOUS_STREAM
, reg
)) {
1111 *status
|= FE_HAS_VITERBI
;
1112 dprintk(state
->verbose
, FE_DEBUG
, 1,
1113 "Packet Delineator found VITERBI ! -----> DVB-S2 FE_HAS_VITERBI");
1115 if (STB0899_GETFIELD(ACCEPTED_STREAM
, reg
)) {
1116 *status
|= FE_HAS_SYNC
;
1117 dprintk(state
->verbose
, FE_DEBUG
, 1,
1118 "Packet Delineator found SYNC ! -----> DVB-S2 FE_HAS_SYNC");
1119 /* post process event */
1120 stb0899_postproc(state
, STB0899_POSTPROC_GPIO_LOCK
, 1);
1126 dprintk(state
->verbose
, FE_DEBUG
, 1, "Unsupported delivery system");
1134 * viterbi error for DVB-S/DSS
1135 * packet error for DVB-S2
1136 * Bit Error Rate or Packet Error Rate * 10 ^ 7
1138 static int stb0899_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
1140 struct stb0899_state
*state
= fe
->demodulator_priv
;
1141 struct stb0899_internal
*internal
= &state
->internal
;
1147 switch (state
->delsys
) {
1150 if (internal
->lock
) {
1151 lsb
= stb0899_read_reg(state
, STB0899_ECNT1L
);
1152 msb
= stb0899_read_reg(state
, STB0899_ECNT1M
);
1153 *ber
= MAKEWORD16(msb
, lsb
);
1155 if (STB0899_GETFIELD(VSTATUS_PRFVIT
, internal
->v_status
)) {
1158 /* ber = ber * 10 ^ 7 */
1159 *ber
/= (-1 + (1 << (2 * STB0899_GETFIELD(NOE
, internal
->err_ctrl
))));
1165 if (internal
->lock
) {
1166 lsb
= stb0899_read_reg(state
, STB0899_ECNT1L
);
1167 msb
= stb0899_read_reg(state
, STB0899_ECNT1M
);
1168 *ber
= MAKEWORD16(msb
, lsb
);
1169 /* ber = ber * 10 ^ 7 */
1171 *ber
/= (-1 + (1 << (4 + 2 * STB0899_GETFIELD(NOE
, internal
->err_ctrl
))));
1175 dprintk(state
->verbose
, FE_DEBUG
, 1, "Unsupported delivery system");
1182 static int stb0899_set_voltage(struct dvb_frontend
*fe
,
1183 enum fe_sec_voltage voltage
)
1185 struct stb0899_state
*state
= fe
->demodulator_priv
;
1188 case SEC_VOLTAGE_13
:
1189 stb0899_write_reg(state
, STB0899_GPIO00CFG
, 0x82);
1190 stb0899_write_reg(state
, STB0899_GPIO01CFG
, 0x02);
1191 stb0899_write_reg(state
, STB0899_GPIO02CFG
, 0x00);
1193 case SEC_VOLTAGE_18
:
1194 stb0899_write_reg(state
, STB0899_GPIO00CFG
, 0x02);
1195 stb0899_write_reg(state
, STB0899_GPIO01CFG
, 0x02);
1196 stb0899_write_reg(state
, STB0899_GPIO02CFG
, 0x82);
1198 case SEC_VOLTAGE_OFF
:
1199 stb0899_write_reg(state
, STB0899_GPIO00CFG
, 0x82);
1200 stb0899_write_reg(state
, STB0899_GPIO01CFG
, 0x82);
1201 stb0899_write_reg(state
, STB0899_GPIO02CFG
, 0x82);
1210 static int stb0899_set_tone(struct dvb_frontend
*fe
, enum fe_sec_tone_mode tone
)
1212 struct stb0899_state
*state
= fe
->demodulator_priv
;
1213 struct stb0899_internal
*internal
= &state
->internal
;
1217 /* wait for diseqc idle */
1218 if (stb0899_wait_diseqc_txidle(state
, 100) < 0)
1223 div
= (internal
->master_clk
/ 100) / 5632;
1224 div
= (div
+ 5) / 10;
1225 stb0899_write_reg(state
, STB0899_DISEQCOCFG
, 0x66);
1226 reg
= stb0899_read_reg(state
, STB0899_ACRPRESC
);
1227 STB0899_SETFIELD_VAL(ACRPRESC
, reg
, 0x03);
1228 stb0899_write_reg(state
, STB0899_ACRPRESC
, reg
);
1229 stb0899_write_reg(state
, STB0899_ACRDIV1
, div
);
1232 stb0899_write_reg(state
, STB0899_DISEQCOCFG
, 0x20);
1240 int stb0899_i2c_gate_ctrl(struct dvb_frontend
*fe
, int enable
)
1243 struct stb0899_state
*state
= fe
->demodulator_priv
;
1245 i2c_stat
= stb0899_read_reg(state
, STB0899_I2CRPT
);
1250 dprintk(state
->verbose
, FE_DEBUG
, 1, "Enabling I2C Repeater ...");
1251 i2c_stat
|= STB0899_I2CTON
;
1252 if (stb0899_write_reg(state
, STB0899_I2CRPT
, i2c_stat
) < 0)
1255 dprintk(state
->verbose
, FE_DEBUG
, 1, "Disabling I2C Repeater ...");
1256 i2c_stat
&= ~STB0899_I2CTON
;
1257 if (stb0899_write_reg(state
, STB0899_I2CRPT
, i2c_stat
) < 0)
1262 dprintk(state
->verbose
, FE_ERROR
, 1, "I2C Repeater control failed");
1267 static inline void CONVERT32(u32 x
, char *str
)
1269 *str
++ = (x
>> 24) & 0xff;
1270 *str
++ = (x
>> 16) & 0xff;
1271 *str
++ = (x
>> 8) & 0xff;
1272 *str
++ = (x
>> 0) & 0xff;
1276 static int stb0899_get_dev_id(struct stb0899_state
*state
)
1278 u8 chip_id
, release
;
1280 u32 demod_ver
= 0, fec_ver
= 0;
1281 char demod_str
[5] = { 0 };
1282 char fec_str
[5] = { 0 };
1284 id
= stb0899_read_reg(state
, STB0899_DEV_ID
);
1285 dprintk(state
->verbose
, FE_DEBUG
, 1, "ID reg=[0x%02x]", id
);
1286 chip_id
= STB0899_GETFIELD(CHIP_ID
, id
);
1287 release
= STB0899_GETFIELD(CHIP_REL
, id
);
1289 dprintk(state
->verbose
, FE_ERROR
, 1, "Device ID=[%d], Release=[%d]",
1292 CONVERT32(STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_CORE_ID
), (char *)&demod_str
);
1294 demod_ver
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_VERSION_ID
);
1295 dprintk(state
->verbose
, FE_ERROR
, 1, "Demodulator Core ID=[%s], Version=[%d]", (char *) &demod_str
, demod_ver
);
1296 CONVERT32(STB0899_READ_S2REG(STB0899_S2FEC
, FEC_CORE_ID_REG
), (char *)&fec_str
);
1297 fec_ver
= STB0899_READ_S2REG(STB0899_S2FEC
, FEC_VER_ID_REG
);
1298 if (! (chip_id
> 0)) {
1299 dprintk(state
->verbose
, FE_ERROR
, 1, "couldn't find a STB 0899");
1303 dprintk(state
->verbose
, FE_ERROR
, 1, "FEC Core ID=[%s], Version=[%d]", (char*) &fec_str
, fec_ver
);
1308 static void stb0899_set_delivery(struct stb0899_state
*state
)
1313 stop_clk
[0] = stb0899_read_reg(state
, STB0899_STOPCLK1
);
1314 stop_clk
[1] = stb0899_read_reg(state
, STB0899_STOPCLK2
);
1316 switch (state
->delsys
) {
1318 dprintk(state
->verbose
, FE_DEBUG
, 1, "Delivery System -- DVB-S");
1319 /* FECM/Viterbi ON */
1320 reg
= stb0899_read_reg(state
, STB0899_FECM
);
1321 STB0899_SETFIELD_VAL(FECM_RSVD0
, reg
, 0);
1322 STB0899_SETFIELD_VAL(FECM_VITERBI_ON
, reg
, 1);
1323 stb0899_write_reg(state
, STB0899_FECM
, reg
);
1325 stb0899_write_reg(state
, STB0899_RSULC
, 0xb1);
1326 stb0899_write_reg(state
, STB0899_TSULC
, 0x40);
1327 stb0899_write_reg(state
, STB0899_RSLLC
, 0x42);
1328 stb0899_write_reg(state
, STB0899_TSLPL
, 0x12);
1330 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
1331 STB0899_SETFIELD_VAL(FRESLDPC
, reg
, 1);
1332 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
1334 STB0899_SETFIELD_VAL(STOP_CHK8PSK
, stop_clk
[0], 1);
1335 STB0899_SETFIELD_VAL(STOP_CKFEC108
, stop_clk
[0], 1);
1336 STB0899_SETFIELD_VAL(STOP_CKFEC216
, stop_clk
[0], 1);
1338 STB0899_SETFIELD_VAL(STOP_CKPKDLIN108
, stop_clk
[1], 1);
1339 STB0899_SETFIELD_VAL(STOP_CKPKDLIN216
, stop_clk
[1], 1);
1341 STB0899_SETFIELD_VAL(STOP_CKINTBUF216
, stop_clk
[0], 1);
1342 STB0899_SETFIELD_VAL(STOP_CKCORE216
, stop_clk
[0], 0);
1344 STB0899_SETFIELD_VAL(STOP_CKS2DMD108
, stop_clk
[1], 1);
1347 /* FECM/Viterbi OFF */
1348 reg
= stb0899_read_reg(state
, STB0899_FECM
);
1349 STB0899_SETFIELD_VAL(FECM_RSVD0
, reg
, 0);
1350 STB0899_SETFIELD_VAL(FECM_VITERBI_ON
, reg
, 0);
1351 stb0899_write_reg(state
, STB0899_FECM
, reg
);
1353 stb0899_write_reg(state
, STB0899_RSULC
, 0xb1);
1354 stb0899_write_reg(state
, STB0899_TSULC
, 0x42);
1355 stb0899_write_reg(state
, STB0899_RSLLC
, 0x40);
1356 stb0899_write_reg(state
, STB0899_TSLPL
, 0x02);
1358 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
1359 STB0899_SETFIELD_VAL(FRESLDPC
, reg
, 0);
1360 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
1362 STB0899_SETFIELD_VAL(STOP_CHK8PSK
, stop_clk
[0], 1);
1363 STB0899_SETFIELD_VAL(STOP_CKFEC108
, stop_clk
[0], 0);
1364 STB0899_SETFIELD_VAL(STOP_CKFEC216
, stop_clk
[0], 0);
1366 STB0899_SETFIELD_VAL(STOP_CKPKDLIN108
, stop_clk
[1], 0);
1367 STB0899_SETFIELD_VAL(STOP_CKPKDLIN216
, stop_clk
[1], 0);
1369 STB0899_SETFIELD_VAL(STOP_CKINTBUF216
, stop_clk
[0], 0);
1370 STB0899_SETFIELD_VAL(STOP_CKCORE216
, stop_clk
[0], 0);
1372 STB0899_SETFIELD_VAL(STOP_CKS2DMD108
, stop_clk
[1], 0);
1375 /* FECM/Viterbi ON */
1376 reg
= stb0899_read_reg(state
, STB0899_FECM
);
1377 STB0899_SETFIELD_VAL(FECM_RSVD0
, reg
, 1);
1378 STB0899_SETFIELD_VAL(FECM_VITERBI_ON
, reg
, 1);
1379 stb0899_write_reg(state
, STB0899_FECM
, reg
);
1381 stb0899_write_reg(state
, STB0899_RSULC
, 0xa1);
1382 stb0899_write_reg(state
, STB0899_TSULC
, 0x61);
1383 stb0899_write_reg(state
, STB0899_RSLLC
, 0x42);
1385 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
1386 STB0899_SETFIELD_VAL(FRESLDPC
, reg
, 1);
1387 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
1389 STB0899_SETFIELD_VAL(STOP_CHK8PSK
, stop_clk
[0], 1);
1390 STB0899_SETFIELD_VAL(STOP_CKFEC108
, stop_clk
[0], 1);
1391 STB0899_SETFIELD_VAL(STOP_CKFEC216
, stop_clk
[0], 1);
1393 STB0899_SETFIELD_VAL(STOP_CKPKDLIN108
, stop_clk
[1], 1);
1394 STB0899_SETFIELD_VAL(STOP_CKPKDLIN216
, stop_clk
[1], 1);
1396 STB0899_SETFIELD_VAL(STOP_CKCORE216
, stop_clk
[0], 0);
1398 STB0899_SETFIELD_VAL(STOP_CKS2DMD108
, stop_clk
[1], 1);
1401 dprintk(state
->verbose
, FE_ERROR
, 1, "Unsupported delivery system");
1404 STB0899_SETFIELD_VAL(STOP_CKADCI108
, stop_clk
[0], 0);
1405 stb0899_write_regs(state
, STB0899_STOPCLK1
, stop_clk
, 2);
1409 * stb0899_set_iterations
1410 * set the LDPC iteration scale function
1412 static void stb0899_set_iterations(struct stb0899_state
*state
)
1414 struct stb0899_internal
*internal
= &state
->internal
;
1415 struct stb0899_config
*config
= state
->config
;
1420 iter_scale
= 17 * (internal
->master_clk
/ 1000);
1421 iter_scale
+= 410000;
1422 iter_scale
/= (internal
->srate
/ 1000000);
1425 if (iter_scale
> config
->ldpc_max_iter
)
1426 iter_scale
= config
->ldpc_max_iter
;
1428 reg
= STB0899_READ_S2REG(STB0899_S2FEC
, MAX_ITER
);
1429 STB0899_SETFIELD_VAL(MAX_ITERATIONS
, reg
, iter_scale
);
1430 stb0899_write_s2reg(state
, STB0899_S2FEC
, STB0899_BASE_MAX_ITER
, STB0899_OFF0_MAX_ITER
, reg
);
1433 static enum dvbfe_search
stb0899_search(struct dvb_frontend
*fe
)
1435 struct stb0899_state
*state
= fe
->demodulator_priv
;
1436 struct stb0899_params
*i_params
= &state
->params
;
1437 struct stb0899_internal
*internal
= &state
->internal
;
1438 struct stb0899_config
*config
= state
->config
;
1439 struct dtv_frontend_properties
*props
= &fe
->dtv_property_cache
;
1441 u32 SearchRange
, gain
;
1443 i_params
->freq
= props
->frequency
;
1444 i_params
->srate
= props
->symbol_rate
;
1445 state
->delsys
= props
->delivery_system
;
1446 dprintk(state
->verbose
, FE_DEBUG
, 1, "delivery system=%d", state
->delsys
);
1448 SearchRange
= 10000000;
1449 dprintk(state
->verbose
, FE_DEBUG
, 1, "Frequency=%d, Srate=%d", i_params
->freq
, i_params
->srate
);
1450 /* checking Search Range is meaningless for a fixed 3 Mhz */
1451 if (INRANGE(i_params
->srate
, 1000000, 45000000)) {
1452 dprintk(state
->verbose
, FE_DEBUG
, 1, "Parameters IN RANGE");
1453 stb0899_set_delivery(state
);
1455 if (state
->config
->tuner_set_rfsiggain
) {
1456 if (internal
->srate
> 15000000)
1457 gain
= 8; /* 15Mb < srate < 45Mb, gain = 8dB */
1458 else if (internal
->srate
> 5000000)
1459 gain
= 12; /* 5Mb < srate < 15Mb, gain = 12dB */
1461 gain
= 14; /* 1Mb < srate < 5Mb, gain = 14db */
1462 state
->config
->tuner_set_rfsiggain(fe
, gain
);
1465 if (i_params
->srate
<= 5000000)
1466 stb0899_set_mclk(state
, config
->lo_clk
);
1468 stb0899_set_mclk(state
, config
->hi_clk
);
1470 switch (state
->delsys
) {
1473 dprintk(state
->verbose
, FE_DEBUG
, 1, "DVB-S delivery system");
1474 internal
->freq
= i_params
->freq
;
1475 internal
->srate
= i_params
->srate
;
1477 * search = user search range +
1479 * 2 * Tuner_step_size +
1480 * 10% of the symbol rate
1482 internal
->srch_range
= SearchRange
+ 1500000 + (i_params
->srate
/ 5);
1483 internal
->derot_percent
= 30;
1485 /* What to do for tuners having no bandwidth setup ? */
1486 /* enable tuner I/O */
1487 stb0899_i2c_gate_ctrl(&state
->frontend
, 1);
1489 if (state
->config
->tuner_set_bandwidth
)
1490 state
->config
->tuner_set_bandwidth(fe
, (13 * (stb0899_carr_width(state
) + SearchRange
)) / 10);
1491 if (state
->config
->tuner_get_bandwidth
)
1492 state
->config
->tuner_get_bandwidth(fe
, &internal
->tuner_bw
);
1494 /* disable tuner I/O */
1495 stb0899_i2c_gate_ctrl(&state
->frontend
, 0);
1497 /* Set DVB-S1 AGC */
1498 stb0899_write_reg(state
, STB0899_AGCRFCFG
, 0x11);
1500 /* Run the search algorithm */
1501 dprintk(state
->verbose
, FE_DEBUG
, 1, "running DVB-S search algo ..");
1502 if (stb0899_dvbs_algo(state
) == RANGEOK
) {
1504 dprintk(state
->verbose
, FE_DEBUG
, 1,
1505 "-------------------------------------> DVB-S LOCK !");
1507 // stb0899_write_reg(state, STB0899_ERRCTRL1, 0x3d); /* Viterbi Errors */
1508 // internal->v_status = stb0899_read_reg(state, STB0899_VSTATUS);
1509 // internal->err_ctrl = stb0899_read_reg(state, STB0899_ERRCTRL1);
1510 // dprintk(state->verbose, FE_DEBUG, 1, "VSTATUS=0x%02x", internal->v_status);
1511 // dprintk(state->verbose, FE_DEBUG, 1, "ERR_CTRL=0x%02x", internal->err_ctrl);
1513 return DVBFE_ALGO_SEARCH_SUCCESS
;
1517 return DVBFE_ALGO_SEARCH_FAILED
;
1521 internal
->freq
= i_params
->freq
;
1522 internal
->srate
= i_params
->srate
;
1523 internal
->srch_range
= SearchRange
;
1525 /* enable tuner I/O */
1526 stb0899_i2c_gate_ctrl(&state
->frontend
, 1);
1528 if (state
->config
->tuner_set_bandwidth
)
1529 state
->config
->tuner_set_bandwidth(fe
, (stb0899_carr_width(state
) + SearchRange
));
1530 if (state
->config
->tuner_get_bandwidth
)
1531 state
->config
->tuner_get_bandwidth(fe
, &internal
->tuner_bw
);
1533 /* disable tuner I/O */
1534 stb0899_i2c_gate_ctrl(&state
->frontend
, 0);
1536 // pParams->SpectralInv = pSearch->IQ_Inversion;
1538 /* Set DVB-S2 AGC */
1539 stb0899_write_reg(state
, STB0899_AGCRFCFG
, 0x1c);
1541 /* Set IterScale =f(MCLK,SYMB) */
1542 stb0899_set_iterations(state
);
1544 /* Run the search algorithm */
1545 dprintk(state
->verbose
, FE_DEBUG
, 1, "running DVB-S2 search algo ..");
1546 if (stb0899_dvbs2_algo(state
) == DVBS2_FEC_LOCK
) {
1548 dprintk(state
->verbose
, FE_DEBUG
, 1,
1549 "-------------------------------------> DVB-S2 LOCK !");
1551 // stb0899_write_reg(state, STB0899_ERRCTRL1, 0xb6); /* Packet Errors */
1552 // internal->v_status = stb0899_read_reg(state, STB0899_VSTATUS);
1553 // internal->err_ctrl = stb0899_read_reg(state, STB0899_ERRCTRL1);
1555 return DVBFE_ALGO_SEARCH_SUCCESS
;
1559 return DVBFE_ALGO_SEARCH_FAILED
;
1563 dprintk(state
->verbose
, FE_ERROR
, 1, "Unsupported delivery system");
1564 return DVBFE_ALGO_SEARCH_INVALID
;
1568 return DVBFE_ALGO_SEARCH_ERROR
;
1571 static int stb0899_get_frontend(struct dvb_frontend
*fe
)
1573 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
1574 struct stb0899_state
*state
= fe
->demodulator_priv
;
1575 struct stb0899_internal
*internal
= &state
->internal
;
1577 dprintk(state
->verbose
, FE_DEBUG
, 1, "Get params");
1578 p
->symbol_rate
= internal
->srate
;
1579 p
->frequency
= internal
->freq
;
1584 static enum dvbfe_algo
stb0899_frontend_algo(struct dvb_frontend
*fe
)
1586 return DVBFE_ALGO_CUSTOM
;
1589 static struct dvb_frontend_ops stb0899_ops
= {
1590 .delsys
= { SYS_DVBS
, SYS_DVBS2
, SYS_DSS
},
1592 .name
= "STB0899 Multistandard",
1593 .frequency_min
= 950000,
1594 .frequency_max
= 2150000,
1595 .frequency_stepsize
= 0,
1596 .frequency_tolerance
= 0,
1597 .symbol_rate_min
= 5000000,
1598 .symbol_rate_max
= 45000000,
1600 .caps
= FE_CAN_INVERSION_AUTO
|
1602 FE_CAN_2G_MODULATION
|
1606 .release
= stb0899_release
,
1607 .init
= stb0899_init
,
1608 .sleep
= stb0899_sleep
,
1609 // .wakeup = stb0899_wakeup,
1611 .i2c_gate_ctrl
= stb0899_i2c_gate_ctrl
,
1613 .get_frontend_algo
= stb0899_frontend_algo
,
1614 .search
= stb0899_search
,
1615 .get_frontend
= stb0899_get_frontend
,
1618 .read_status
= stb0899_read_status
,
1619 .read_snr
= stb0899_read_snr
,
1620 .read_signal_strength
= stb0899_read_signal_strength
,
1621 .read_ber
= stb0899_read_ber
,
1623 .set_voltage
= stb0899_set_voltage
,
1624 .set_tone
= stb0899_set_tone
,
1626 .diseqc_send_master_cmd
= stb0899_send_diseqc_msg
,
1627 .diseqc_recv_slave_reply
= stb0899_recv_slave_reply
,
1628 .diseqc_send_burst
= stb0899_send_diseqc_burst
,
1631 struct dvb_frontend
*stb0899_attach(struct stb0899_config
*config
, struct i2c_adapter
*i2c
)
1633 struct stb0899_state
*state
= NULL
;
1635 state
= kzalloc(sizeof (struct stb0899_state
), GFP_KERNEL
);
1639 state
->verbose
= &verbose
;
1640 state
->config
= config
;
1642 state
->frontend
.ops
= stb0899_ops
;
1643 state
->frontend
.demodulator_priv
= state
;
1644 /* use configured inversion as default -- we'll later autodetect inversion */
1645 state
->internal
.inversion
= config
->inversion
;
1647 stb0899_wakeup(&state
->frontend
);
1648 if (stb0899_get_dev_id(state
) == -ENODEV
) {
1649 printk("%s: Exiting .. !\n", __func__
);
1653 printk("%s: Attaching STB0899 \n", __func__
);
1654 return &state
->frontend
;
1660 EXPORT_SYMBOL(stb0899_attach
);
1661 MODULE_PARM_DESC(verbose
, "Set Verbosity level");
1662 MODULE_AUTHOR("Manu Abraham");
1663 MODULE_DESCRIPTION("STB0899 Multi-Std frontend");
1664 MODULE_LICENSE("GPL");