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/bitops.h>
23 #include "stb0899_drv.h"
24 #include "stb0899_priv.h"
25 #include "stb0899_reg.h"
27 static inline u32
stb0899_do_div(u64 n
, u32 d
)
29 /* wrap do_div() for ease of use */
36 /* These functions are currently unused */
41 static u32
stb0899_calc_srate(u32 master_clk
, u8
*sfr
)
45 /* srate = (SFR * master_clk) >> 20 */
47 /* sfr is of size 20 bit, stored with an offset of 4 bit */
48 tmp
= (((u32
)sfr
[0]) << 16) | (((u32
)sfr
[1]) << 8) | sfr
[2];
58 * Get the current symbol rate
60 static u32
stb0899_get_srate(struct stb0899_state
*state
)
62 struct stb0899_internal
*internal
= &state
->internal
;
65 stb0899_read_regs(state
, STB0899_SFRH
, sfr
, 3);
67 return stb0899_calc_srate(internal
->master_clk
, sfr
);
73 * Set symbol frequency
74 * MasterClock: master clock frequency (hz)
75 * SymbolRate: symbol rate (bauds)
76 * return symbol frequency
78 static u32
stb0899_set_srate(struct stb0899_state
*state
, u32 master_clk
, u32 srate
)
83 dprintk(state
->verbose
, FE_DEBUG
, 1, "-->");
85 * in order to have the maximum precision, the symbol rate entered into
86 * the chip is computed as the closest value of the "true value".
87 * In this purpose, the symbol rate value is rounded (1 is added on the bit
90 * srate = (SFR * master_clk) >> 20
92 * SFR = srate << 20 / master_clk
95 * SFR = (srate << 21 + master_clk) / (2 * master_clk)
97 * stored as 20 bit number with an offset of 4 bit:
101 tmp
= stb0899_do_div((((u64
)srate
) << 21) + master_clk
, 2 * master_clk
);
108 stb0899_write_regs(state
, STB0899_SFRH
, sfr
, 3);
114 * stb0899_calc_derot_time
115 * Compute the amount of time needed by the derotator to lock
116 * SymbolRate: Symbol rate
117 * return: derotator time constant (ms)
119 static long stb0899_calc_derot_time(long srate
)
122 return (100000 / (srate
/ 1000));
129 * Compute the width of the carrier
130 * return: width of carrier (kHz or Mhz)
132 long stb0899_carr_width(struct stb0899_state
*state
)
134 struct stb0899_internal
*internal
= &state
->internal
;
136 return (internal
->srate
+ (internal
->srate
* internal
->rolloff
) / 100);
140 * stb0899_first_subrange
141 * Compute the first subrange of the search
143 static void stb0899_first_subrange(struct stb0899_state
*state
)
145 struct stb0899_internal
*internal
= &state
->internal
;
146 struct stb0899_params
*params
= &state
->params
;
147 struct stb0899_config
*config
= state
->config
;
152 if (config
->tuner_get_bandwidth
) {
153 stb0899_i2c_gate_ctrl(&state
->frontend
, 1);
154 config
->tuner_get_bandwidth(&state
->frontend
, &bandwidth
);
155 stb0899_i2c_gate_ctrl(&state
->frontend
, 0);
156 range
= bandwidth
- stb0899_carr_width(state
) / 2;
160 internal
->sub_range
= min(internal
->srch_range
, range
);
162 internal
->sub_range
= 0;
164 internal
->freq
= params
->freq
;
165 internal
->tuner_offst
= 0L;
166 internal
->sub_dir
= 1;
171 * check for timing lock
172 * internal.Ttiming: time to wait for loop lock
174 static enum stb0899_status
stb0899_check_tmg(struct stb0899_state
*state
)
176 struct stb0899_internal
*internal
= &state
->internal
;
181 msleep(internal
->t_derot
);
183 stb0899_write_reg(state
, STB0899_RTF
, 0xf2);
184 reg
= stb0899_read_reg(state
, STB0899_TLIR
);
185 lock
= STB0899_GETFIELD(TLIR_TMG_LOCK_IND
, reg
);
186 timing
= stb0899_read_reg(state
, STB0899_RTF
);
189 if ((lock
> 48) && (abs(timing
) >= 110)) {
190 internal
->status
= ANALOGCARRIER
;
191 dprintk(state
->verbose
, FE_DEBUG
, 1, "-->ANALOG Carrier !");
193 internal
->status
= TIMINGOK
;
194 dprintk(state
->verbose
, FE_DEBUG
, 1, "------->TIMING OK !");
197 internal
->status
= NOTIMING
;
198 dprintk(state
->verbose
, FE_DEBUG
, 1, "-->NO TIMING !");
200 return internal
->status
;
205 * perform a fs/2 zig-zag to find timing
207 static enum stb0899_status
stb0899_search_tmg(struct stb0899_state
*state
)
209 struct stb0899_internal
*internal
= &state
->internal
;
210 struct stb0899_params
*params
= &state
->params
;
212 short int derot_step
, derot_freq
= 0, derot_limit
, next_loop
= 3;
216 internal
->status
= NOTIMING
;
218 /* timing loop computation & symbol rate optimisation */
219 derot_limit
= (internal
->sub_range
/ 2L) / internal
->mclk
;
220 derot_step
= (params
->srate
/ 2L) / internal
->mclk
;
222 while ((stb0899_check_tmg(state
) != TIMINGOK
) && next_loop
) {
224 derot_freq
+= index
* internal
->direction
* derot_step
; /* next derot zig zag position */
226 if (abs(derot_freq
) > derot_limit
)
230 STB0899_SETFIELD_VAL(CFRM
, cfr
[0], MSB(internal
->inversion
* derot_freq
));
231 STB0899_SETFIELD_VAL(CFRL
, cfr
[1], LSB(internal
->inversion
* derot_freq
));
232 stb0899_write_regs(state
, STB0899_CFRM
, cfr
, 2); /* derotator frequency */
234 internal
->direction
= -internal
->direction
; /* Change zigzag direction */
237 if (internal
->status
== TIMINGOK
) {
238 stb0899_read_regs(state
, STB0899_CFRM
, cfr
, 2); /* get derotator frequency */
239 internal
->derot_freq
= internal
->inversion
* MAKEWORD16(cfr
[0], cfr
[1]);
240 dprintk(state
->verbose
, FE_DEBUG
, 1, "------->TIMING OK ! Derot Freq = %d", internal
->derot_freq
);
243 return internal
->status
;
247 * stb0899_check_carrier
248 * Check for carrier found
250 static enum stb0899_status
stb0899_check_carrier(struct stb0899_state
*state
)
252 struct stb0899_internal
*internal
= &state
->internal
;
255 msleep(internal
->t_derot
); /* wait for derotator ok */
257 reg
= stb0899_read_reg(state
, STB0899_CFD
);
258 STB0899_SETFIELD_VAL(CFD_ON
, reg
, 1);
259 stb0899_write_reg(state
, STB0899_CFD
, reg
);
261 reg
= stb0899_read_reg(state
, STB0899_DSTATUS
);
262 dprintk(state
->verbose
, FE_DEBUG
, 1, "--------------------> STB0899_DSTATUS=[0x%02x]", reg
);
263 if (STB0899_GETFIELD(CARRIER_FOUND
, reg
)) {
264 internal
->status
= CARRIEROK
;
265 dprintk(state
->verbose
, FE_DEBUG
, 1, "-------------> CARRIEROK !");
267 internal
->status
= NOCARRIER
;
268 dprintk(state
->verbose
, FE_DEBUG
, 1, "-------------> NOCARRIER !");
271 return internal
->status
;
275 * stb0899_search_carrier
276 * Search for a QPSK carrier with the derotator
278 static enum stb0899_status
stb0899_search_carrier(struct stb0899_state
*state
)
280 struct stb0899_internal
*internal
= &state
->internal
;
282 short int derot_freq
= 0, last_derot_freq
= 0, derot_limit
, next_loop
= 3;
287 internal
->status
= NOCARRIER
;
288 derot_limit
= (internal
->sub_range
/ 2L) / internal
->mclk
;
289 derot_freq
= internal
->derot_freq
;
291 reg
= stb0899_read_reg(state
, STB0899_CFD
);
292 STB0899_SETFIELD_VAL(CFD_ON
, reg
, 1);
293 stb0899_write_reg(state
, STB0899_CFD
, reg
);
296 dprintk(state
->verbose
, FE_DEBUG
, 1, "Derot Freq=%d, mclk=%d", derot_freq
, internal
->mclk
);
297 if (stb0899_check_carrier(state
) == NOCARRIER
) {
299 last_derot_freq
= derot_freq
;
300 derot_freq
+= index
* internal
->direction
* internal
->derot_step
; /* next zig zag derotator position */
302 if(abs(derot_freq
) > derot_limit
)
306 reg
= stb0899_read_reg(state
, STB0899_CFD
);
307 STB0899_SETFIELD_VAL(CFD_ON
, reg
, 1);
308 stb0899_write_reg(state
, STB0899_CFD
, reg
);
310 STB0899_SETFIELD_VAL(CFRM
, cfr
[0], MSB(internal
->inversion
* derot_freq
));
311 STB0899_SETFIELD_VAL(CFRL
, cfr
[1], LSB(internal
->inversion
* derot_freq
));
312 stb0899_write_regs(state
, STB0899_CFRM
, cfr
, 2); /* derotator frequency */
316 internal
->direction
= -internal
->direction
; /* Change zigzag direction */
317 } while ((internal
->status
!= CARRIEROK
) && next_loop
);
319 if (internal
->status
== CARRIEROK
) {
320 stb0899_read_regs(state
, STB0899_CFRM
, cfr
, 2); /* get derotator frequency */
321 internal
->derot_freq
= internal
->inversion
* MAKEWORD16(cfr
[0], cfr
[1]);
322 dprintk(state
->verbose
, FE_DEBUG
, 1, "----> CARRIER OK !, Derot Freq=%d", internal
->derot_freq
);
324 internal
->derot_freq
= last_derot_freq
;
327 return internal
->status
;
332 * Check for data found
334 static enum stb0899_status
stb0899_check_data(struct stb0899_state
*state
)
336 struct stb0899_internal
*internal
= &state
->internal
;
337 struct stb0899_params
*params
= &state
->params
;
339 int lock
= 0, index
= 0, dataTime
= 500, loop
;
342 internal
->status
= NODATA
;
345 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
346 STB0899_SETFIELD_VAL(FRESACS
, reg
, 1);
347 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
349 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
350 STB0899_SETFIELD_VAL(FRESACS
, reg
, 0);
351 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
353 if (params
->srate
<= 2000000)
355 else if (params
->srate
<= 5000000)
357 else if (params
->srate
<= 15000000)
362 /* clear previous failed END_LOOPVIT */
363 stb0899_read_reg(state
, STB0899_VSTATUS
);
365 stb0899_write_reg(state
, STB0899_DSTATUS2
, 0x00); /* force search loop */
367 /* WARNING! VIT LOCKED has to be tested before VIT_END_LOOOP */
368 reg
= stb0899_read_reg(state
, STB0899_VSTATUS
);
369 lock
= STB0899_GETFIELD(VSTATUS_LOCKEDVIT
, reg
);
370 loop
= STB0899_GETFIELD(VSTATUS_END_LOOPVIT
, reg
);
372 if (lock
|| loop
|| (index
> dataTime
))
377 if (lock
) { /* DATA LOCK indicator */
378 internal
->status
= DATAOK
;
379 dprintk(state
->verbose
, FE_DEBUG
, 1, "-----------------> DATA OK !");
382 return internal
->status
;
386 * stb0899_search_data
387 * Search for a QPSK carrier with the derotator
389 static enum stb0899_status
stb0899_search_data(struct stb0899_state
*state
)
391 short int derot_freq
, derot_step
, derot_limit
, next_loop
= 3;
396 struct stb0899_internal
*internal
= &state
->internal
;
397 struct stb0899_params
*params
= &state
->params
;
399 derot_step
= (params
->srate
/ 4L) / internal
->mclk
;
400 derot_limit
= (internal
->sub_range
/ 2L) / internal
->mclk
;
401 derot_freq
= internal
->derot_freq
;
404 if ((internal
->status
!= CARRIEROK
) || (stb0899_check_data(state
) != DATAOK
)) {
406 derot_freq
+= index
* internal
->direction
* derot_step
; /* next zig zag derotator position */
407 if (abs(derot_freq
) > derot_limit
)
411 dprintk(state
->verbose
, FE_DEBUG
, 1, "Derot freq=%d, mclk=%d", derot_freq
, internal
->mclk
);
412 reg
= stb0899_read_reg(state
, STB0899_CFD
);
413 STB0899_SETFIELD_VAL(CFD_ON
, reg
, 1);
414 stb0899_write_reg(state
, STB0899_CFD
, reg
);
416 STB0899_SETFIELD_VAL(CFRM
, cfr
[0], MSB(internal
->inversion
* derot_freq
));
417 STB0899_SETFIELD_VAL(CFRL
, cfr
[1], LSB(internal
->inversion
* derot_freq
));
418 stb0899_write_regs(state
, STB0899_CFRM
, cfr
, 2); /* derotator frequency */
420 stb0899_check_carrier(state
);
424 internal
->direction
= -internal
->direction
; /* change zig zag direction */
425 } while ((internal
->status
!= DATAOK
) && next_loop
);
427 if (internal
->status
== DATAOK
) {
428 stb0899_read_regs(state
, STB0899_CFRM
, cfr
, 2); /* get derotator frequency */
430 /* store autodetected IQ swapping as default for DVB-S2 tuning */
431 reg
= stb0899_read_reg(state
, STB0899_IQSWAP
);
432 if (STB0899_GETFIELD(SYM
, reg
))
433 internal
->inversion
= IQ_SWAP_ON
;
435 internal
->inversion
= IQ_SWAP_OFF
;
437 internal
->derot_freq
= internal
->inversion
* MAKEWORD16(cfr
[0], cfr
[1]);
438 dprintk(state
->verbose
, FE_DEBUG
, 1, "------> DATAOK ! Derot Freq=%d", internal
->derot_freq
);
441 return internal
->status
;
445 * stb0899_check_range
446 * check if the found frequency is in the correct range
448 static enum stb0899_status
stb0899_check_range(struct stb0899_state
*state
)
450 struct stb0899_internal
*internal
= &state
->internal
;
451 struct stb0899_params
*params
= &state
->params
;
453 int range_offst
, tp_freq
;
455 range_offst
= internal
->srch_range
/ 2000;
456 tp_freq
= internal
->freq
- (internal
->derot_freq
* internal
->mclk
) / 1000;
458 if ((tp_freq
>= params
->freq
- range_offst
) && (tp_freq
<= params
->freq
+ range_offst
)) {
459 internal
->status
= RANGEOK
;
460 dprintk(state
->verbose
, FE_DEBUG
, 1, "----> RANGEOK !");
462 internal
->status
= OUTOFRANGE
;
463 dprintk(state
->verbose
, FE_DEBUG
, 1, "----> OUT OF RANGE !");
466 return internal
->status
;
471 * Compute the next subrange of the search
473 static void next_sub_range(struct stb0899_state
*state
)
475 struct stb0899_internal
*internal
= &state
->internal
;
476 struct stb0899_params
*params
= &state
->params
;
480 if (internal
->sub_dir
> 0) {
481 old_sub_range
= internal
->sub_range
;
482 internal
->sub_range
= min((internal
->srch_range
/ 2) -
483 (internal
->tuner_offst
+ internal
->sub_range
/ 2),
484 internal
->sub_range
);
486 if (internal
->sub_range
< 0)
487 internal
->sub_range
= 0;
489 internal
->tuner_offst
+= (old_sub_range
+ internal
->sub_range
) / 2;
492 internal
->freq
= params
->freq
+ (internal
->sub_dir
* internal
->tuner_offst
) / 1000;
493 internal
->sub_dir
= -internal
->sub_dir
;
498 * Search for a signal, timing, carrier and data for a
499 * given frequency in a given range
501 enum stb0899_status
stb0899_dvbs_algo(struct stb0899_state
*state
)
503 struct stb0899_params
*params
= &state
->params
;
504 struct stb0899_internal
*internal
= &state
->internal
;
505 struct stb0899_config
*config
= state
->config
;
513 /* BETA values rated @ 99MHz */
514 s32 betaTab
[5][4] = {
516 { 37, 34, 32, 31 }, /* QPSK 1/2 */
517 { 37, 35, 33, 31 }, /* QPSK 2/3 */
518 { 37, 35, 33, 31 }, /* QPSK 3/4 */
519 { 37, 36, 33, 32 }, /* QPSK 5/6 */
520 { 37, 36, 33, 32 } /* QPSK 7/8 */
523 internal
->direction
= 1;
525 stb0899_set_srate(state
, internal
->master_clk
, params
->srate
);
526 /* Carrier loop optimization versus symbol rate for acquisition*/
527 if (params
->srate
<= 5000000) {
528 stb0899_write_reg(state
, STB0899_ACLC
, 0x89);
529 bclc
= stb0899_read_reg(state
, STB0899_BCLC
);
530 STB0899_SETFIELD_VAL(BETA
, bclc
, 0x1c);
531 stb0899_write_reg(state
, STB0899_BCLC
, bclc
);
533 } else if (params
->srate
<= 15000000) {
534 stb0899_write_reg(state
, STB0899_ACLC
, 0xc9);
535 bclc
= stb0899_read_reg(state
, STB0899_BCLC
);
536 STB0899_SETFIELD_VAL(BETA
, bclc
, 0x22);
537 stb0899_write_reg(state
, STB0899_BCLC
, bclc
);
539 } else if(params
->srate
<= 25000000) {
540 stb0899_write_reg(state
, STB0899_ACLC
, 0x89);
541 bclc
= stb0899_read_reg(state
, STB0899_BCLC
);
542 STB0899_SETFIELD_VAL(BETA
, bclc
, 0x27);
543 stb0899_write_reg(state
, STB0899_BCLC
, bclc
);
546 stb0899_write_reg(state
, STB0899_ACLC
, 0xc8);
547 bclc
= stb0899_read_reg(state
, STB0899_BCLC
);
548 STB0899_SETFIELD_VAL(BETA
, bclc
, 0x29);
549 stb0899_write_reg(state
, STB0899_BCLC
, bclc
);
553 dprintk(state
->verbose
, FE_DEBUG
, 1, "Set the timing loop to acquisition");
554 /* Set the timing loop to acquisition */
555 stb0899_write_reg(state
, STB0899_RTC
, 0x46);
556 stb0899_write_reg(state
, STB0899_CFD
, 0xee);
559 * Do not read any status variables while acquisition,
560 * If any needed, read before the acquisition starts
561 * querying status while acquiring causes the
562 * acquisition to go bad and hence no locks.
564 dprintk(state
->verbose
, FE_DEBUG
, 1, "Derot Percent=%d Srate=%d mclk=%d",
565 internal
->derot_percent
, params
->srate
, internal
->mclk
);
567 /* Initial calculations */
568 internal
->derot_step
= internal
->derot_percent
* (params
->srate
/ 1000L) / internal
->mclk
; /* DerotStep/1000 * Fsymbol */
569 internal
->t_derot
= stb0899_calc_derot_time(params
->srate
);
570 internal
->t_data
= 500;
572 dprintk(state
->verbose
, FE_DEBUG
, 1, "RESET stream merger");
573 /* RESET Stream merger */
574 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
575 STB0899_SETFIELD_VAL(FRESRS
, reg
, 1);
576 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
579 * Set KDIVIDER to an intermediate value between
580 * 1/2 and 7/8 for acquisition
582 reg
= stb0899_read_reg(state
, STB0899_DEMAPVIT
);
583 STB0899_SETFIELD_VAL(DEMAPVIT_KDIVIDER
, reg
, 60);
584 stb0899_write_reg(state
, STB0899_DEMAPVIT
, reg
);
586 stb0899_write_reg(state
, STB0899_EQON
, 0x01); /* Equalizer OFF while acquiring */
587 stb0899_write_reg(state
, STB0899_VITSYNC
, 0x19);
589 stb0899_first_subrange(state
);
591 /* Initialisations */
593 stb0899_write_regs(state
, STB0899_CFRM
, cfr
, 2); /* RESET derotator frequency */
595 stb0899_write_reg(state
, STB0899_RTF
, 0);
596 reg
= stb0899_read_reg(state
, STB0899_CFD
);
597 STB0899_SETFIELD_VAL(CFD_ON
, reg
, 1);
598 stb0899_write_reg(state
, STB0899_CFD
, reg
);
600 internal
->derot_freq
= 0;
601 internal
->status
= NOAGC1
;
603 /* enable tuner I/O */
604 stb0899_i2c_gate_ctrl(&state
->frontend
, 1);
606 /* Move tuner to frequency */
607 dprintk(state
->verbose
, FE_DEBUG
, 1, "Tuner set frequency");
608 if (state
->config
->tuner_set_frequency
)
609 state
->config
->tuner_set_frequency(&state
->frontend
, internal
->freq
);
611 if (state
->config
->tuner_get_frequency
)
612 state
->config
->tuner_get_frequency(&state
->frontend
, &internal
->freq
);
614 msleep(internal
->t_agc1
+ internal
->t_agc2
+ internal
->t_derot
); /* AGC1, AGC2 and timing loop */
615 dprintk(state
->verbose
, FE_DEBUG
, 1, "current derot freq=%d", internal
->derot_freq
);
616 internal
->status
= AGC1OK
;
618 /* There is signal in the band */
619 if (config
->tuner_get_bandwidth
)
620 config
->tuner_get_bandwidth(&state
->frontend
, &bandwidth
);
622 /* disable tuner I/O */
623 stb0899_i2c_gate_ctrl(&state
->frontend
, 0);
625 if (params
->srate
<= bandwidth
/ 2)
626 stb0899_search_tmg(state
); /* For low rates (SCPC) */
628 stb0899_check_tmg(state
); /* For high rates (MCPC) */
630 if (internal
->status
== TIMINGOK
) {
631 dprintk(state
->verbose
, FE_DEBUG
, 1,
632 "TIMING OK ! Derot freq=%d, mclk=%d",
633 internal
->derot_freq
, internal
->mclk
);
635 if (stb0899_search_carrier(state
) == CARRIEROK
) { /* Search for carrier */
636 dprintk(state
->verbose
, FE_DEBUG
, 1,
637 "CARRIER OK ! Derot freq=%d, mclk=%d",
638 internal
->derot_freq
, internal
->mclk
);
640 if (stb0899_search_data(state
) == DATAOK
) { /* Check for data */
641 dprintk(state
->verbose
, FE_DEBUG
, 1,
642 "DATA OK ! Derot freq=%d, mclk=%d",
643 internal
->derot_freq
, internal
->mclk
);
645 if (stb0899_check_range(state
) == RANGEOK
) {
646 dprintk(state
->verbose
, FE_DEBUG
, 1,
647 "RANGE OK ! derot freq=%d, mclk=%d",
648 internal
->derot_freq
, internal
->mclk
);
650 internal
->freq
= params
->freq
- ((internal
->derot_freq
* internal
->mclk
) / 1000);
651 reg
= stb0899_read_reg(state
, STB0899_PLPARM
);
652 internal
->fecrate
= STB0899_GETFIELD(VITCURPUN
, reg
);
653 dprintk(state
->verbose
, FE_DEBUG
, 1,
654 "freq=%d, internal resultant freq=%d",
655 params
->freq
, internal
->freq
);
657 dprintk(state
->verbose
, FE_DEBUG
, 1,
658 "internal puncture rate=%d",
664 if (internal
->status
!= RANGEOK
)
665 next_sub_range(state
);
667 } while (internal
->sub_range
&& internal
->status
!= RANGEOK
);
669 /* Set the timing loop to tracking */
670 stb0899_write_reg(state
, STB0899_RTC
, 0x33);
671 stb0899_write_reg(state
, STB0899_CFD
, 0xf7);
672 /* if locked and range ok, set Kdiv */
673 if (internal
->status
== RANGEOK
) {
674 dprintk(state
->verbose
, FE_DEBUG
, 1, "Locked & Range OK !");
675 stb0899_write_reg(state
, STB0899_EQON
, 0x41); /* Equalizer OFF while acquiring */
676 stb0899_write_reg(state
, STB0899_VITSYNC
, 0x39); /* SN to b'11 for acquisition */
679 * Carrier loop optimization versus
680 * symbol Rate/Puncture Rate for Tracking
682 reg
= stb0899_read_reg(state
, STB0899_BCLC
);
683 switch (internal
->fecrate
) {
684 case STB0899_FEC_1_2
: /* 13 */
685 stb0899_write_reg(state
, STB0899_DEMAPVIT
, 0x1a);
686 STB0899_SETFIELD_VAL(BETA
, reg
, betaTab
[0][clnI
]);
687 stb0899_write_reg(state
, STB0899_BCLC
, reg
);
689 case STB0899_FEC_2_3
: /* 18 */
690 stb0899_write_reg(state
, STB0899_DEMAPVIT
, 44);
691 STB0899_SETFIELD_VAL(BETA
, reg
, betaTab
[1][clnI
]);
692 stb0899_write_reg(state
, STB0899_BCLC
, reg
);
694 case STB0899_FEC_3_4
: /* 21 */
695 stb0899_write_reg(state
, STB0899_DEMAPVIT
, 60);
696 STB0899_SETFIELD_VAL(BETA
, reg
, betaTab
[2][clnI
]);
697 stb0899_write_reg(state
, STB0899_BCLC
, reg
);
699 case STB0899_FEC_5_6
: /* 24 */
700 stb0899_write_reg(state
, STB0899_DEMAPVIT
, 75);
701 STB0899_SETFIELD_VAL(BETA
, reg
, betaTab
[3][clnI
]);
702 stb0899_write_reg(state
, STB0899_BCLC
, reg
);
704 case STB0899_FEC_6_7
: /* 25 */
705 stb0899_write_reg(state
, STB0899_DEMAPVIT
, 88);
706 stb0899_write_reg(state
, STB0899_ACLC
, 0x88);
707 stb0899_write_reg(state
, STB0899_BCLC
, 0x9a);
709 case STB0899_FEC_7_8
: /* 26 */
710 stb0899_write_reg(state
, STB0899_DEMAPVIT
, 94);
711 STB0899_SETFIELD_VAL(BETA
, reg
, betaTab
[4][clnI
]);
712 stb0899_write_reg(state
, STB0899_BCLC
, reg
);
715 dprintk(state
->verbose
, FE_DEBUG
, 1, "Unsupported Puncture Rate");
718 /* release stream merger RESET */
719 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
720 STB0899_SETFIELD_VAL(FRESRS
, reg
, 0);
721 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
723 /* disable carrier detector */
724 reg
= stb0899_read_reg(state
, STB0899_CFD
);
725 STB0899_SETFIELD_VAL(CFD_ON
, reg
, 0);
726 stb0899_write_reg(state
, STB0899_CFD
, reg
);
728 stb0899_read_regs(state
, STB0899_EQUAI1
, eq_const
, 10);
731 return internal
->status
;
735 * stb0899_dvbs2_config_uwp
736 * Configure UWP state machine
738 static void stb0899_dvbs2_config_uwp(struct stb0899_state
*state
)
740 struct stb0899_internal
*internal
= &state
->internal
;
741 struct stb0899_config
*config
= state
->config
;
742 u32 uwp1
, uwp2
, uwp3
, reg
;
744 uwp1
= STB0899_READ_S2REG(STB0899_S2DEMOD
, UWP_CNTRL1
);
745 uwp2
= STB0899_READ_S2REG(STB0899_S2DEMOD
, UWP_CNTRL2
);
746 uwp3
= STB0899_READ_S2REG(STB0899_S2DEMOD
, UWP_CNTRL3
);
748 STB0899_SETFIELD_VAL(UWP_ESN0_AVE
, uwp1
, config
->esno_ave
);
749 STB0899_SETFIELD_VAL(UWP_ESN0_QUANT
, uwp1
, config
->esno_quant
);
750 STB0899_SETFIELD_VAL(UWP_TH_SOF
, uwp1
, config
->uwp_threshold_sof
);
752 STB0899_SETFIELD_VAL(FE_COARSE_TRK
, uwp2
, internal
->av_frame_coarse
);
753 STB0899_SETFIELD_VAL(FE_FINE_TRK
, uwp2
, internal
->av_frame_fine
);
754 STB0899_SETFIELD_VAL(UWP_MISS_TH
, uwp2
, config
->miss_threshold
);
756 STB0899_SETFIELD_VAL(UWP_TH_ACQ
, uwp3
, config
->uwp_threshold_acq
);
757 STB0899_SETFIELD_VAL(UWP_TH_TRACK
, uwp3
, config
->uwp_threshold_track
);
759 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_UWP_CNTRL1
, STB0899_OFF0_UWP_CNTRL1
, uwp1
);
760 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_UWP_CNTRL2
, STB0899_OFF0_UWP_CNTRL2
, uwp2
);
761 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_UWP_CNTRL3
, STB0899_OFF0_UWP_CNTRL3
, uwp3
);
763 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, SOF_SRCH_TO
);
764 STB0899_SETFIELD_VAL(SOF_SEARCH_TIMEOUT
, reg
, config
->sof_search_timeout
);
765 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_SOF_SRCH_TO
, STB0899_OFF0_SOF_SRCH_TO
, reg
);
769 * stb0899_dvbs2_config_csm_auto
770 * Set CSM to AUTO mode
772 static void stb0899_dvbs2_config_csm_auto(struct stb0899_state
*state
)
776 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL1
);
777 STB0899_SETFIELD_VAL(CSM_AUTO_PARAM
, reg
, 1);
778 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL1
, STB0899_OFF0_CSM_CNTRL1
, reg
);
781 static long Log2Int(int number
)
786 while ((1 << i
) <= abs(number
))
796 * stb0899_dvbs2_calc_srate
797 * compute BTR_NOM_FREQ for the symbol rate
799 static u32
stb0899_dvbs2_calc_srate(struct stb0899_state
*state
)
801 struct stb0899_internal
*internal
= &state
->internal
;
802 struct stb0899_config
*config
= state
->config
;
804 u32 dec_ratio
, dec_rate
, decim
, remain
, intval
, btr_nom_freq
;
805 u32 master_clk
, srate
;
807 dec_ratio
= (internal
->master_clk
* 2) / (5 * internal
->srate
);
808 dec_ratio
= (dec_ratio
== 0) ? 1 : dec_ratio
;
809 dec_rate
= Log2Int(dec_ratio
);
810 decim
= 1 << dec_rate
;
811 master_clk
= internal
->master_clk
/ 1000;
812 srate
= internal
->srate
/ 1000;
815 intval
= (decim
* (1 << (config
->btr_nco_bits
- 1))) / master_clk
;
816 remain
= (decim
* (1 << (config
->btr_nco_bits
- 1))) % master_clk
;
818 intval
= (1 << (config
->btr_nco_bits
- 1)) / (master_clk
/ 100) * decim
/ 100;
819 remain
= (decim
* (1 << (config
->btr_nco_bits
- 1))) % master_clk
;
821 btr_nom_freq
= (intval
* srate
) + ((remain
* srate
) / master_clk
);
827 * stb0899_dvbs2_calc_dev
828 * compute the correction to be applied to symbol rate
830 static u32
stb0899_dvbs2_calc_dev(struct stb0899_state
*state
)
832 struct stb0899_internal
*internal
= &state
->internal
;
833 u32 dec_ratio
, correction
, master_clk
, srate
;
835 dec_ratio
= (internal
->master_clk
* 2) / (5 * internal
->srate
);
836 dec_ratio
= (dec_ratio
== 0) ? 1 : dec_ratio
;
838 master_clk
= internal
->master_clk
/ 1000; /* for integer Caculation*/
839 srate
= internal
->srate
/ 1000; /* for integer Caculation*/
840 correction
= (512 * master_clk
) / (2 * dec_ratio
* srate
);
846 * stb0899_dvbs2_set_srate
847 * Set DVBS2 symbol rate
849 static void stb0899_dvbs2_set_srate(struct stb0899_state
*state
)
851 struct stb0899_internal
*internal
= &state
->internal
;
853 u32 dec_ratio
, dec_rate
, win_sel
, decim
, f_sym
, btr_nom_freq
;
854 u32 correction
, freq_adj
, band_lim
, decim_cntrl
, reg
;
857 /*set decimation to 1*/
858 dec_ratio
= (internal
->master_clk
* 2) / (5 * internal
->srate
);
859 dec_ratio
= (dec_ratio
== 0) ? 1 : dec_ratio
;
860 dec_rate
= Log2Int(dec_ratio
);
864 win_sel
= dec_rate
- 4;
866 decim
= (1 << dec_rate
);
867 /* (FSamp/Fsymbol *100) for integer Caculation */
868 f_sym
= internal
->master_clk
/ ((decim
* internal
->srate
) / 1000);
870 if (f_sym
<= 2250) /* don't band limit signal going into btr block*/
873 band_lim
= 0; /* band limit signal going into btr block*/
875 decim_cntrl
= ((win_sel
<< 3) & 0x18) + ((band_lim
<< 5) & 0x20) + (dec_rate
& 0x7);
876 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_DECIM_CNTRL
, STB0899_OFF0_DECIM_CNTRL
, decim_cntrl
);
880 else if (f_sym
<= 4250)
885 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_ANTI_ALIAS_SEL
, STB0899_OFF0_ANTI_ALIAS_SEL
, anti_alias
);
886 btr_nom_freq
= stb0899_dvbs2_calc_srate(state
);
887 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_NOM_FREQ
, STB0899_OFF0_BTR_NOM_FREQ
, btr_nom_freq
);
889 correction
= stb0899_dvbs2_calc_dev(state
);
890 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, BTR_CNTRL
);
891 STB0899_SETFIELD_VAL(BTR_FREQ_CORR
, reg
, correction
);
892 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_CNTRL
, STB0899_OFF0_BTR_CNTRL
, reg
);
894 /* scale UWP+CSM frequency to sample rate*/
895 freq_adj
= internal
->srate
/ (internal
->master_clk
/ 4096);
896 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_FREQ_ADJ_SCALE
, STB0899_OFF0_FREQ_ADJ_SCALE
, freq_adj
);
900 * stb0899_dvbs2_set_btr_loopbw
901 * set bit timing loop bandwidth as a percentage of the symbol rate
903 static void stb0899_dvbs2_set_btr_loopbw(struct stb0899_state
*state
)
905 struct stb0899_internal
*internal
= &state
->internal
;
906 struct stb0899_config
*config
= state
->config
;
908 u32 sym_peak
= 23, zeta
= 707, loopbw_percent
= 60;
909 s32 dec_ratio
, dec_rate
, k_btr1_rshft
, k_btr1
, k_btr0_rshft
;
910 s32 k_btr0
, k_btr2_rshft
, k_direct_shift
, k_indirect_shift
;
911 u32 decim
, K
, wn
, k_direct
, k_indirect
;
914 dec_ratio
= (internal
->master_clk
* 2) / (5 * internal
->srate
);
915 dec_ratio
= (dec_ratio
== 0) ? 1 : dec_ratio
;
916 dec_rate
= Log2Int(dec_ratio
);
917 decim
= (1 << dec_rate
);
920 K
= (1 << config
->btr_nco_bits
) / (internal
->master_clk
/ 1000);
921 K
*= (internal
->srate
/ 1000000) * decim
; /*k=k 10^-8*/
925 wn
= (4 * zeta
* zeta
) + 1000000;
926 wn
= (2 * (loopbw_percent
* 1000) * 40 * zeta
) /wn
; /*wn =wn 10^-8*/
928 k_indirect
= (wn
* wn
) / K
; /*kindirect = kindirect 10^-6*/
929 k_direct
= (2 * wn
* zeta
) / K
; /*kDirect = kDirect 10^-2*/
932 k_direct_shift
= Log2Int(k_direct
) - Log2Int(10000) - 2;
933 k_btr1_rshft
= (-1 * k_direct_shift
) + config
->btr_gain_shift_offset
;
934 k_btr1
= k_direct
/ (1 << k_direct_shift
);
937 k_indirect_shift
= Log2Int(k_indirect
+ 15) - 20 /*- 2*/;
938 k_btr0_rshft
= (-1 * k_indirect_shift
) + config
->btr_gain_shift_offset
;
939 k_btr0
= k_indirect
* (1 << (-k_indirect_shift
));
943 if (k_btr0_rshft
> 15) {
944 k_btr2_rshft
= k_btr0_rshft
- 15;
947 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, BTR_LOOP_GAIN
);
948 STB0899_SETFIELD_VAL(KBTR0_RSHFT
, reg
, k_btr0_rshft
);
949 STB0899_SETFIELD_VAL(KBTR0
, reg
, k_btr0
);
950 STB0899_SETFIELD_VAL(KBTR1_RSHFT
, reg
, k_btr1_rshft
);
951 STB0899_SETFIELD_VAL(KBTR1
, reg
, k_btr1
);
952 STB0899_SETFIELD_VAL(KBTR2_RSHFT
, reg
, k_btr2_rshft
);
953 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_LOOP_GAIN
, STB0899_OFF0_BTR_LOOP_GAIN
, reg
);
955 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_LOOP_GAIN
, STB0899_OFF0_BTR_LOOP_GAIN
, 0xc4c4f);
959 * stb0899_dvbs2_set_carr_freq
960 * set nominal frequency for carrier search
962 static void stb0899_dvbs2_set_carr_freq(struct stb0899_state
*state
, s32 carr_freq
, u32 master_clk
)
964 struct stb0899_config
*config
= state
->config
;
968 crl_nom_freq
= (1 << config
->crl_nco_bits
) / master_clk
;
969 crl_nom_freq
*= carr_freq
;
970 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CRL_NOM_FREQ
);
971 STB0899_SETFIELD_VAL(CRL_NOM_FREQ
, reg
, crl_nom_freq
);
972 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_NOM_FREQ
, STB0899_OFF0_CRL_NOM_FREQ
, reg
);
976 * stb0899_dvbs2_init_calc
977 * Initialize DVBS2 UWP, CSM, carrier and timing loops
979 static void stb0899_dvbs2_init_calc(struct stb0899_state
*state
)
981 struct stb0899_internal
*internal
= &state
->internal
;
982 s32 steps
, step_size
;
985 /* config uwp and csm */
986 stb0899_dvbs2_config_uwp(state
);
987 stb0899_dvbs2_config_csm_auto(state
);
990 stb0899_dvbs2_set_srate(state
);
991 stb0899_dvbs2_set_btr_loopbw(state
);
993 if (internal
->srate
/ 1000000 >= 15)
994 step_size
= (1 << 17) / 5;
995 else if (internal
->srate
/ 1000000 >= 10)
996 step_size
= (1 << 17) / 7;
997 else if (internal
->srate
/ 1000000 >= 5)
998 step_size
= (1 << 17) / 10;
1000 step_size
= (1 << 17) / 4;
1002 range
= internal
->srch_range
/ 1000000;
1003 steps
= (10 * range
* (1 << 17)) / (step_size
* (internal
->srate
/ 1000000));
1004 steps
= (steps
+ 6) / 10;
1005 steps
= (steps
== 0) ? 1 : steps
;
1007 stb0899_dvbs2_set_carr_freq(state
, internal
->center_freq
-
1008 (internal
->step_size
* (internal
->srate
/ 20000000)),
1009 (internal
->master_clk
) / 1000000);
1011 stb0899_dvbs2_set_carr_freq(state
, internal
->center_freq
, (internal
->master_clk
) / 1000000);
1013 /*Set Carrier Search params (zigzag, num steps and freq step size*/
1014 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, ACQ_CNTRL2
);
1015 STB0899_SETFIELD_VAL(ZIGZAG
, reg
, 1);
1016 STB0899_SETFIELD_VAL(NUM_STEPS
, reg
, steps
);
1017 STB0899_SETFIELD_VAL(FREQ_STEPSIZE
, reg
, step_size
);
1018 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_ACQ_CNTRL2
, STB0899_OFF0_ACQ_CNTRL2
, reg
);
1022 * stb0899_dvbs2_btr_init
1023 * initialize the timing loop
1025 static void stb0899_dvbs2_btr_init(struct stb0899_state
*state
)
1029 /* set enable BTR loopback */
1030 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, BTR_CNTRL
);
1031 STB0899_SETFIELD_VAL(INTRP_PHS_SENSE
, reg
, 1);
1032 STB0899_SETFIELD_VAL(BTR_ERR_ENA
, reg
, 1);
1033 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_CNTRL
, STB0899_OFF0_BTR_CNTRL
, reg
);
1035 /* fix btr freq accum at 0 */
1036 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_FREQ_INIT
, STB0899_OFF0_BTR_FREQ_INIT
, 0x10000000);
1037 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_FREQ_INIT
, STB0899_OFF0_BTR_FREQ_INIT
, 0x00000000);
1039 /* fix btr freq accum at 0 */
1040 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_PHS_INIT
, STB0899_OFF0_BTR_PHS_INIT
, 0x10000000);
1041 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_BTR_PHS_INIT
, STB0899_OFF0_BTR_PHS_INIT
, 0x00000000);
1045 * stb0899_dvbs2_reacquire
1046 * trigger a DVB-S2 acquisition
1048 static void stb0899_dvbs2_reacquire(struct stb0899_state
*state
)
1052 /* demod soft reset */
1053 STB0899_SETFIELD_VAL(DVBS2_RESET
, reg
, 1);
1054 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_RESET_CNTRL
, STB0899_OFF0_RESET_CNTRL
, reg
);
1056 /*Reset Timing Loop */
1057 stb0899_dvbs2_btr_init(state
);
1059 /* reset Carrier loop */
1060 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_FREQ_INIT
, STB0899_OFF0_CRL_FREQ_INIT
, (1 << 30));
1061 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_FREQ_INIT
, STB0899_OFF0_CRL_FREQ_INIT
, 0);
1062 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_LOOP_GAIN
, STB0899_OFF0_CRL_LOOP_GAIN
, 0);
1063 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_PHS_INIT
, STB0899_OFF0_CRL_PHS_INIT
, (1 << 30));
1064 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_PHS_INIT
, STB0899_OFF0_CRL_PHS_INIT
, 0);
1066 /*release demod soft reset */
1068 STB0899_SETFIELD_VAL(DVBS2_RESET
, reg
, 0);
1069 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_RESET_CNTRL
, STB0899_OFF0_RESET_CNTRL
, reg
);
1071 /* start acquisition process */
1072 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_ACQUIRE_TRIG
, STB0899_OFF0_ACQUIRE_TRIG
, 1);
1073 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_LOCK_LOST
, STB0899_OFF0_LOCK_LOST
, 0);
1075 /* equalizer Init */
1076 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_EQUALIZER_INIT
, STB0899_OFF0_EQUALIZER_INIT
, 1);
1078 /*Start equilizer */
1079 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_EQUALIZER_INIT
, STB0899_OFF0_EQUALIZER_INIT
, 0);
1081 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, EQ_CNTRL
);
1082 STB0899_SETFIELD_VAL(EQ_SHIFT
, reg
, 0);
1083 STB0899_SETFIELD_VAL(EQ_DISABLE_UPDATE
, reg
, 0);
1084 STB0899_SETFIELD_VAL(EQ_DELAY
, reg
, 0x05);
1085 STB0899_SETFIELD_VAL(EQ_ADAPT_MODE
, reg
, 0x01);
1086 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_EQ_CNTRL
, STB0899_OFF0_EQ_CNTRL
, reg
);
1088 /* RESET Packet delineator */
1089 stb0899_write_reg(state
, STB0899_PDELCTRL
, 0x4a);
1093 * stb0899_dvbs2_get_dmd_status
1094 * get DVB-S2 Demod LOCK status
1096 static enum stb0899_status
stb0899_dvbs2_get_dmd_status(struct stb0899_state
*state
, int timeout
)
1098 int time
= -10, lock
= 0, uwp
, csm
;
1102 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_STATUS
);
1103 dprintk(state
->verbose
, FE_DEBUG
, 1, "DMD_STATUS=[0x%02x]", reg
);
1104 if (STB0899_GETFIELD(IF_AGC_LOCK
, reg
))
1105 dprintk(state
->verbose
, FE_DEBUG
, 1, "------------->IF AGC LOCKED !");
1106 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_STAT2
);
1107 dprintk(state
->verbose
, FE_DEBUG
, 1, "----------->DMD STAT2=[0x%02x]", reg
);
1108 uwp
= STB0899_GETFIELD(UWP_LOCK
, reg
);
1109 csm
= STB0899_GETFIELD(CSM_LOCK
, reg
);
1116 } while ((!lock
) && (time
<= timeout
));
1119 dprintk(state
->verbose
, FE_DEBUG
, 1, "----------------> DVB-S2 LOCK !");
1120 return DVBS2_DEMOD_LOCK
;
1122 return DVBS2_DEMOD_NOLOCK
;
1127 * stb0899_dvbs2_get_data_lock
1130 static int stb0899_dvbs2_get_data_lock(struct stb0899_state
*state
, int timeout
)
1132 int time
= 0, lock
= 0;
1135 while ((!lock
) && (time
< timeout
)) {
1136 reg
= stb0899_read_reg(state
, STB0899_CFGPDELSTATUS1
);
1137 dprintk(state
->verbose
, FE_DEBUG
, 1, "---------> CFGPDELSTATUS=[0x%02x]", reg
);
1138 lock
= STB0899_GETFIELD(CFGPDELSTATUS_LOCK
, reg
);
1146 * stb0899_dvbs2_get_fec_status
1147 * get DVB-S2 FEC LOCK status
1149 static enum stb0899_status
stb0899_dvbs2_get_fec_status(struct stb0899_state
*state
, int timeout
)
1151 int time
= 0, Locked
;
1154 Locked
= stb0899_dvbs2_get_data_lock(state
, 1);
1158 } while ((!Locked
) && (time
< timeout
));
1161 dprintk(state
->verbose
, FE_DEBUG
, 1, "---------->DVB-S2 FEC LOCK !");
1162 return DVBS2_FEC_LOCK
;
1164 return DVBS2_FEC_NOLOCK
;
1170 * stb0899_dvbs2_init_csm
1171 * set parameters for manual mode
1173 static void stb0899_dvbs2_init_csm(struct stb0899_state
*state
, int pilots
, enum stb0899_modcod modcod
)
1175 struct stb0899_internal
*internal
= &state
->internal
;
1177 s32 dvt_tbl
= 1, two_pass
= 0, agc_gain
= 6, agc_shift
= 0, loop_shift
= 0, phs_diff_thr
= 0x80;
1178 s32 gamma_acq
, gamma_rho_acq
, gamma_trk
, gamma_rho_trk
, lock_count_thr
;
1179 u32 csm1
, csm2
, csm3
, csm4
;
1181 if (((internal
->master_clk
/ internal
->srate
) <= 4) && (modcod
<= 11) && (pilots
== 1)) {
1183 case STB0899_QPSK_12
:
1185 gamma_rho_acq
= 2700;
1187 gamma_rho_trk
= 180;
1190 case STB0899_QPSK_35
:
1192 gamma_rho_acq
= 7182;
1194 gamma_rho_trk
= 308;
1197 case STB0899_QPSK_23
:
1199 gamma_rho_acq
= 9408;
1201 gamma_rho_trk
= 476;
1204 case STB0899_QPSK_34
:
1206 gamma_rho_acq
= 16642;
1208 gamma_rho_trk
= 646;
1211 case STB0899_QPSK_45
:
1213 gamma_rho_acq
= 17119;
1215 gamma_rho_trk
= 880;
1218 case STB0899_QPSK_56
:
1220 gamma_rho_acq
= 19250;
1222 gamma_rho_trk
= 989;
1225 case STB0899_QPSK_89
:
1227 gamma_rho_acq
= 24240;
1229 gamma_rho_trk
= 1176;
1232 case STB0899_QPSK_910
:
1234 gamma_rho_acq
= 29634;
1236 gamma_rho_trk
= 1176;
1241 gamma_rho_acq
= 29634;
1243 gamma_rho_trk
= 1176;
1248 csm1
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL1
);
1249 STB0899_SETFIELD_VAL(CSM_AUTO_PARAM
, csm1
, 0);
1250 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL1
, STB0899_OFF0_CSM_CNTRL1
, csm1
);
1252 csm1
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL1
);
1253 csm2
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL2
);
1254 csm3
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL3
);
1255 csm4
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL4
);
1257 STB0899_SETFIELD_VAL(CSM_DVT_TABLE
, csm1
, dvt_tbl
);
1258 STB0899_SETFIELD_VAL(CSM_TWO_PASS
, csm1
, two_pass
);
1259 STB0899_SETFIELD_VAL(CSM_AGC_GAIN
, csm1
, agc_gain
);
1260 STB0899_SETFIELD_VAL(CSM_AGC_SHIFT
, csm1
, agc_shift
);
1261 STB0899_SETFIELD_VAL(FE_LOOP_SHIFT
, csm1
, loop_shift
);
1262 STB0899_SETFIELD_VAL(CSM_GAMMA_ACQ
, csm2
, gamma_acq
);
1263 STB0899_SETFIELD_VAL(CSM_GAMMA_RHOACQ
, csm2
, gamma_rho_acq
);
1264 STB0899_SETFIELD_VAL(CSM_GAMMA_TRACK
, csm3
, gamma_trk
);
1265 STB0899_SETFIELD_VAL(CSM_GAMMA_RHOTRACK
, csm3
, gamma_rho_trk
);
1266 STB0899_SETFIELD_VAL(CSM_LOCKCOUNT_THRESH
, csm4
, lock_count_thr
);
1267 STB0899_SETFIELD_VAL(CSM_PHASEDIFF_THRESH
, csm4
, phs_diff_thr
);
1269 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL1
, STB0899_OFF0_CSM_CNTRL1
, csm1
);
1270 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL2
, STB0899_OFF0_CSM_CNTRL2
, csm2
);
1271 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL3
, STB0899_OFF0_CSM_CNTRL3
, csm3
);
1272 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL4
, STB0899_OFF0_CSM_CNTRL4
, csm4
);
1277 * stb0899_dvbs2_get_srate
1278 * get DVB-S2 Symbol Rate
1280 static u32
stb0899_dvbs2_get_srate(struct stb0899_state
*state
)
1282 struct stb0899_internal
*internal
= &state
->internal
;
1283 struct stb0899_config
*config
= state
->config
;
1285 u32 bTrNomFreq
, srate
, decimRate
, intval1
, intval2
, reg
;
1286 int div1
, div2
, rem1
, rem2
;
1288 div1
= config
->btr_nco_bits
/ 2;
1289 div2
= config
->btr_nco_bits
- div1
- 1;
1291 bTrNomFreq
= STB0899_READ_S2REG(STB0899_S2DEMOD
, BTR_NOM_FREQ
);
1293 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DECIM_CNTRL
);
1294 decimRate
= STB0899_GETFIELD(DECIM_RATE
, reg
);
1295 decimRate
= (1 << decimRate
);
1297 intval1
= internal
->master_clk
/ (1 << div1
);
1298 intval2
= bTrNomFreq
/ (1 << div2
);
1300 rem1
= internal
->master_clk
% (1 << div1
);
1301 rem2
= bTrNomFreq
% (1 << div2
);
1302 /* only for integer calculation */
1303 srate
= (intval1
* intval2
) + ((intval1
* rem2
) / (1 << div2
)) + ((intval2
* rem1
) / (1 << div1
));
1304 srate
/= decimRate
; /*symbrate = (btrnomfreq_register_val*MasterClock)/2^(27+decim_rate_field) */
1310 * stb0899_dvbs2_algo
1311 * Search for signal, timing, carrier and data for a given
1312 * frequency in a given range
1314 enum stb0899_status
stb0899_dvbs2_algo(struct stb0899_state
*state
)
1316 struct stb0899_internal
*internal
= &state
->internal
;
1317 enum stb0899_modcod modcod
;
1319 s32 offsetfreq
, searchTime
, FecLockTime
, pilots
, iqSpectrum
;
1323 if (internal
->srate
<= 2000000) {
1324 searchTime
= 5000; /* 5000 ms max time to lock UWP and CSM, SYMB <= 2Mbs */
1325 FecLockTime
= 350; /* 350 ms max time to lock FEC, SYMB <= 2Mbs */
1326 } else if (internal
->srate
<= 5000000) {
1327 searchTime
= 2500; /* 2500 ms max time to lock UWP and CSM, 2Mbs < SYMB <= 5Mbs */
1328 FecLockTime
= 170; /* 170 ms max time to lock FEC, 2Mbs< SYMB <= 5Mbs */
1329 } else if (internal
->srate
<= 10000000) {
1330 searchTime
= 1500; /* 1500 ms max time to lock UWP and CSM, 5Mbs <SYMB <= 10Mbs */
1331 FecLockTime
= 80; /* 80 ms max time to lock FEC, 5Mbs< SYMB <= 10Mbs */
1332 } else if (internal
->srate
<= 15000000) {
1333 searchTime
= 500; /* 500 ms max time to lock UWP and CSM, 10Mbs <SYMB <= 15Mbs */
1334 FecLockTime
= 50; /* 50 ms max time to lock FEC, 10Mbs< SYMB <= 15Mbs */
1335 } else if (internal
->srate
<= 20000000) {
1336 searchTime
= 300; /* 300 ms max time to lock UWP and CSM, 15Mbs < SYMB <= 20Mbs */
1337 FecLockTime
= 30; /* 50 ms max time to lock FEC, 15Mbs< SYMB <= 20Mbs */
1338 } else if (internal
->srate
<= 25000000) {
1339 searchTime
= 250; /* 250 ms max time to lock UWP and CSM, 20 Mbs < SYMB <= 25Mbs */
1340 FecLockTime
= 25; /* 25 ms max time to lock FEC, 20Mbs< SYMB <= 25Mbs */
1342 searchTime
= 150; /* 150 ms max time to lock UWP and CSM, SYMB > 25Mbs */
1343 FecLockTime
= 20; /* 20 ms max time to lock FEC, 20Mbs< SYMB <= 25Mbs */
1346 /* Maintain Stream Merger in reset during acquisition */
1347 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
1348 STB0899_SETFIELD_VAL(FRESRS
, reg
, 1);
1349 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
1351 /* enable tuner I/O */
1352 stb0899_i2c_gate_ctrl(&state
->frontend
, 1);
1354 /* Move tuner to frequency */
1355 if (state
->config
->tuner_set_frequency
)
1356 state
->config
->tuner_set_frequency(&state
->frontend
, internal
->freq
);
1357 if (state
->config
->tuner_get_frequency
)
1358 state
->config
->tuner_get_frequency(&state
->frontend
, &internal
->freq
);
1360 /* disable tuner I/O */
1361 stb0899_i2c_gate_ctrl(&state
->frontend
, 0);
1363 /* Set IF AGC to acquisition */
1364 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, IF_AGC_CNTRL
);
1365 STB0899_SETFIELD_VAL(IF_LOOP_GAIN
, reg
, 4);
1366 STB0899_SETFIELD_VAL(IF_AGC_REF
, reg
, 32);
1367 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_IF_AGC_CNTRL
, STB0899_OFF0_IF_AGC_CNTRL
, reg
);
1369 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, IF_AGC_CNTRL2
);
1370 STB0899_SETFIELD_VAL(IF_AGC_DUMP_PER
, reg
, 0);
1371 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_IF_AGC_CNTRL2
, STB0899_OFF0_IF_AGC_CNTRL2
, reg
);
1373 /* Initialisation */
1374 stb0899_dvbs2_init_calc(state
);
1376 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_CNTRL2
);
1377 switch (internal
->inversion
) {
1379 STB0899_SETFIELD_VAL(SPECTRUM_INVERT
, reg
, 0);
1382 STB0899_SETFIELD_VAL(SPECTRUM_INVERT
, reg
, 1);
1385 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_DMD_CNTRL2
, STB0899_OFF0_DMD_CNTRL2
, reg
);
1386 stb0899_dvbs2_reacquire(state
);
1388 /* Wait for demod lock (UWP and CSM) */
1389 internal
->status
= stb0899_dvbs2_get_dmd_status(state
, searchTime
);
1391 if (internal
->status
== DVBS2_DEMOD_LOCK
) {
1392 dprintk(state
->verbose
, FE_DEBUG
, 1, "------------> DVB-S2 DEMOD LOCK !");
1394 /* Demod Locked, check FEC status */
1395 internal
->status
= stb0899_dvbs2_get_fec_status(state
, FecLockTime
);
1397 /*If false lock (UWP and CSM Locked but no FEC) try 3 time max*/
1398 while ((internal
->status
!= DVBS2_FEC_LOCK
) && (i
< 3)) {
1399 /* Read the frequency offset*/
1400 offsetfreq
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CRL_FREQ
);
1402 /* Set the Nominal frequency to the found frequency offset for the next reacquire*/
1403 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CRL_NOM_FREQ
);
1404 STB0899_SETFIELD_VAL(CRL_NOM_FREQ
, reg
, offsetfreq
);
1405 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_NOM_FREQ
, STB0899_OFF0_CRL_NOM_FREQ
, reg
);
1406 stb0899_dvbs2_reacquire(state
);
1407 internal
->status
= stb0899_dvbs2_get_fec_status(state
, searchTime
);
1412 if (internal
->status
!= DVBS2_FEC_LOCK
) {
1413 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_CNTRL2
);
1414 iqSpectrum
= STB0899_GETFIELD(SPECTRUM_INVERT
, reg
);
1415 /* IQ Spectrum Inversion */
1416 STB0899_SETFIELD_VAL(SPECTRUM_INVERT
, reg
, !iqSpectrum
);
1417 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_DMD_CNTRL2
, STB0899_OFF0_DMD_CNTRL2
, reg
);
1418 /* start acquistion process */
1419 stb0899_dvbs2_reacquire(state
);
1421 /* Wait for demod lock (UWP and CSM) */
1422 internal
->status
= stb0899_dvbs2_get_dmd_status(state
, searchTime
);
1423 if (internal
->status
== DVBS2_DEMOD_LOCK
) {
1425 /* Demod Locked, check FEC */
1426 internal
->status
= stb0899_dvbs2_get_fec_status(state
, FecLockTime
);
1427 /*try thrice for false locks, (UWP and CSM Locked but no FEC) */
1428 while ((internal
->status
!= DVBS2_FEC_LOCK
) && (i
< 3)) {
1429 /* Read the frequency offset*/
1430 offsetfreq
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CRL_FREQ
);
1432 /* Set the Nominal frequency to the found frequency offset for the next reacquire*/
1433 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CRL_NOM_FREQ
);
1434 STB0899_SETFIELD_VAL(CRL_NOM_FREQ
, reg
, offsetfreq
);
1435 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CRL_NOM_FREQ
, STB0899_OFF0_CRL_NOM_FREQ
, reg
);
1437 stb0899_dvbs2_reacquire(state
);
1438 internal
->status
= stb0899_dvbs2_get_fec_status(state
, searchTime
);
1443 if (pParams->DVBS2State == FE_DVBS2_FEC_LOCKED)
1444 pParams->IQLocked = !iqSpectrum;
1447 if (internal
->status
== DVBS2_FEC_LOCK
) {
1448 dprintk(state
->verbose
, FE_DEBUG
, 1, "----------------> DVB-S2 FEC Lock !");
1449 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, UWP_STAT2
);
1450 modcod
= STB0899_GETFIELD(UWP_DECODE_MOD
, reg
) >> 2;
1451 pilots
= STB0899_GETFIELD(UWP_DECODE_MOD
, reg
) & 0x01;
1453 if ((((10 * internal
->master_clk
) / (internal
->srate
/ 10)) <= 410) &&
1454 (INRANGE(STB0899_QPSK_23
, modcod
, STB0899_QPSK_910
)) &&
1457 stb0899_dvbs2_init_csm(state
, pilots
, modcod
);
1458 /* Wait for UWP,CSM and data LOCK 20ms max */
1459 internal
->status
= stb0899_dvbs2_get_fec_status(state
, FecLockTime
);
1462 while ((internal
->status
!= DVBS2_FEC_LOCK
) && (i
< 3)) {
1463 csm1
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL1
);
1464 STB0899_SETFIELD_VAL(CSM_TWO_PASS
, csm1
, 1);
1465 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL1
, STB0899_OFF0_CSM_CNTRL1
, csm1
);
1466 csm1
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CSM_CNTRL1
);
1467 STB0899_SETFIELD_VAL(CSM_TWO_PASS
, csm1
, 0);
1468 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_CSM_CNTRL1
, STB0899_OFF0_CSM_CNTRL1
, csm1
);
1470 internal
->status
= stb0899_dvbs2_get_fec_status(state
, FecLockTime
);
1475 if ((((10 * internal
->master_clk
) / (internal
->srate
/ 10)) <= 410) &&
1476 (INRANGE(STB0899_QPSK_12
, modcod
, STB0899_QPSK_35
)) &&
1479 /* Equalizer Disable update */
1480 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, EQ_CNTRL
);
1481 STB0899_SETFIELD_VAL(EQ_DISABLE_UPDATE
, reg
, 1);
1482 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_EQ_CNTRL
, STB0899_OFF0_EQ_CNTRL
, reg
);
1485 /* slow down the Equalizer once locked */
1486 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, EQ_CNTRL
);
1487 STB0899_SETFIELD_VAL(EQ_SHIFT
, reg
, 0x02);
1488 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_EQ_CNTRL
, STB0899_OFF0_EQ_CNTRL
, reg
);
1490 /* Store signal parameters */
1491 offsetfreq
= STB0899_READ_S2REG(STB0899_S2DEMOD
, CRL_FREQ
);
1493 offsetfreq
= sign_extend32(offsetfreq
, 29);
1495 offsetfreq
= offsetfreq
/ ((1 << 30) / 1000);
1496 offsetfreq
*= (internal
->master_clk
/ 1000000);
1498 /* store current inversion for next run */
1499 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, DMD_CNTRL2
);
1500 if (STB0899_GETFIELD(SPECTRUM_INVERT
, reg
))
1501 internal
->inversion
= IQ_SWAP_ON
;
1503 internal
->inversion
= IQ_SWAP_OFF
;
1505 internal
->freq
= internal
->freq
+ offsetfreq
;
1506 internal
->srate
= stb0899_dvbs2_get_srate(state
);
1508 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, UWP_STAT2
);
1509 internal
->modcod
= STB0899_GETFIELD(UWP_DECODE_MOD
, reg
) >> 2;
1510 internal
->pilots
= STB0899_GETFIELD(UWP_DECODE_MOD
, reg
) & 0x01;
1511 internal
->frame_length
= (STB0899_GETFIELD(UWP_DECODE_MOD
, reg
) >> 1) & 0x01;
1513 /* Set IF AGC to tracking */
1514 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, IF_AGC_CNTRL
);
1515 STB0899_SETFIELD_VAL(IF_LOOP_GAIN
, reg
, 3);
1517 /* if QPSK 1/2,QPSK 3/5 or QPSK 2/3 set IF AGC reference to 16 otherwise 32*/
1518 if (INRANGE(STB0899_QPSK_12
, internal
->modcod
, STB0899_QPSK_23
))
1519 STB0899_SETFIELD_VAL(IF_AGC_REF
, reg
, 16);
1521 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_IF_AGC_CNTRL
, STB0899_OFF0_IF_AGC_CNTRL
, reg
);
1523 reg
= STB0899_READ_S2REG(STB0899_S2DEMOD
, IF_AGC_CNTRL2
);
1524 STB0899_SETFIELD_VAL(IF_AGC_DUMP_PER
, reg
, 7);
1525 stb0899_write_s2reg(state
, STB0899_S2DEMOD
, STB0899_BASE_IF_AGC_CNTRL2
, STB0899_OFF0_IF_AGC_CNTRL2
, reg
);
1528 /* Release Stream Merger Reset */
1529 reg
= stb0899_read_reg(state
, STB0899_TSTRES
);
1530 STB0899_SETFIELD_VAL(FRESRS
, reg
, 0);
1531 stb0899_write_reg(state
, STB0899_TSTRES
, reg
);
1533 return internal
->status
;