2 STV0900/0903 Multistandard Broadcast 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/kernel.h>
24 #include <linux/module.h>
25 #include <linux/string.h>
26 #include <linux/slab.h>
27 #include <linux/mutex.h>
29 #include <linux/dvb/frontend.h>
30 #include "dvb_frontend.h"
32 #include "stv6110x.h" /* for demodulator internal modes */
34 #include "stv090x_reg.h"
36 #include "stv090x_priv.h"
38 static unsigned int verbose
;
39 module_param(verbose
, int, 0644);
41 /* internal params node */
43 /* pointer for internal params, one for each pair of demods */
44 struct stv090x_internal
*internal
;
45 struct stv090x_dev
*next_dev
;
48 /* first internal params */
49 static struct stv090x_dev
*stv090x_first_dev
;
51 /* find chip by i2c adapter and i2c address */
52 static struct stv090x_dev
*find_dev(struct i2c_adapter
*i2c_adap
,
55 struct stv090x_dev
*temp_dev
= stv090x_first_dev
;
58 Search of the last stv0900 chip or
59 find it by i2c adapter and i2c address */
60 while ((temp_dev
!= NULL
) &&
61 ((temp_dev
->internal
->i2c_adap
!= i2c_adap
) ||
62 (temp_dev
->internal
->i2c_addr
!= i2c_addr
))) {
64 temp_dev
= temp_dev
->next_dev
;
70 /* deallocating chip */
71 static void remove_dev(struct stv090x_internal
*internal
)
73 struct stv090x_dev
*prev_dev
= stv090x_first_dev
;
74 struct stv090x_dev
*del_dev
= find_dev(internal
->i2c_adap
,
77 if (del_dev
!= NULL
) {
78 if (del_dev
== stv090x_first_dev
) {
79 stv090x_first_dev
= del_dev
->next_dev
;
81 while (prev_dev
->next_dev
!= del_dev
)
82 prev_dev
= prev_dev
->next_dev
;
84 prev_dev
->next_dev
= del_dev
->next_dev
;
91 /* allocating new chip */
92 static struct stv090x_dev
*append_internal(struct stv090x_internal
*internal
)
94 struct stv090x_dev
*new_dev
;
95 struct stv090x_dev
*temp_dev
;
97 new_dev
= kmalloc(sizeof(struct stv090x_dev
), GFP_KERNEL
);
98 if (new_dev
!= NULL
) {
99 new_dev
->internal
= internal
;
100 new_dev
->next_dev
= NULL
;
103 if (stv090x_first_dev
== NULL
) {
104 stv090x_first_dev
= new_dev
;
106 temp_dev
= stv090x_first_dev
;
107 while (temp_dev
->next_dev
!= NULL
)
108 temp_dev
= temp_dev
->next_dev
;
110 temp_dev
->next_dev
= new_dev
;
118 /* DVBS1 and DSS C/N Lookup table */
119 static const struct stv090x_tab stv090x_s1cn_tab
[] = {
120 { 0, 8917 }, /* 0.0dB */
121 { 5, 8801 }, /* 0.5dB */
122 { 10, 8667 }, /* 1.0dB */
123 { 15, 8522 }, /* 1.5dB */
124 { 20, 8355 }, /* 2.0dB */
125 { 25, 8175 }, /* 2.5dB */
126 { 30, 7979 }, /* 3.0dB */
127 { 35, 7763 }, /* 3.5dB */
128 { 40, 7530 }, /* 4.0dB */
129 { 45, 7282 }, /* 4.5dB */
130 { 50, 7026 }, /* 5.0dB */
131 { 55, 6781 }, /* 5.5dB */
132 { 60, 6514 }, /* 6.0dB */
133 { 65, 6241 }, /* 6.5dB */
134 { 70, 5965 }, /* 7.0dB */
135 { 75, 5690 }, /* 7.5dB */
136 { 80, 5424 }, /* 8.0dB */
137 { 85, 5161 }, /* 8.5dB */
138 { 90, 4902 }, /* 9.0dB */
139 { 95, 4654 }, /* 9.5dB */
140 { 100, 4417 }, /* 10.0dB */
141 { 105, 4186 }, /* 10.5dB */
142 { 110, 3968 }, /* 11.0dB */
143 { 115, 3757 }, /* 11.5dB */
144 { 120, 3558 }, /* 12.0dB */
145 { 125, 3366 }, /* 12.5dB */
146 { 130, 3185 }, /* 13.0dB */
147 { 135, 3012 }, /* 13.5dB */
148 { 140, 2850 }, /* 14.0dB */
149 { 145, 2698 }, /* 14.5dB */
150 { 150, 2550 }, /* 15.0dB */
151 { 160, 2283 }, /* 16.0dB */
152 { 170, 2042 }, /* 17.0dB */
153 { 180, 1827 }, /* 18.0dB */
154 { 190, 1636 }, /* 19.0dB */
155 { 200, 1466 }, /* 20.0dB */
156 { 210, 1315 }, /* 21.0dB */
157 { 220, 1181 }, /* 22.0dB */
158 { 230, 1064 }, /* 23.0dB */
159 { 240, 960 }, /* 24.0dB */
160 { 250, 869 }, /* 25.0dB */
161 { 260, 792 }, /* 26.0dB */
162 { 270, 724 }, /* 27.0dB */
163 { 280, 665 }, /* 28.0dB */
164 { 290, 616 }, /* 29.0dB */
165 { 300, 573 }, /* 30.0dB */
166 { 310, 537 }, /* 31.0dB */
167 { 320, 507 }, /* 32.0dB */
168 { 330, 483 }, /* 33.0dB */
169 { 400, 398 }, /* 40.0dB */
170 { 450, 381 }, /* 45.0dB */
171 { 500, 377 } /* 50.0dB */
174 /* DVBS2 C/N Lookup table */
175 static const struct stv090x_tab stv090x_s2cn_tab
[] = {
176 { -30, 13348 }, /* -3.0dB */
177 { -20, 12640 }, /* -2d.0B */
178 { -10, 11883 }, /* -1.0dB */
179 { 0, 11101 }, /* -0.0dB */
180 { 5, 10718 }, /* 0.5dB */
181 { 10, 10339 }, /* 1.0dB */
182 { 15, 9947 }, /* 1.5dB */
183 { 20, 9552 }, /* 2.0dB */
184 { 25, 9183 }, /* 2.5dB */
185 { 30, 8799 }, /* 3.0dB */
186 { 35, 8422 }, /* 3.5dB */
187 { 40, 8062 }, /* 4.0dB */
188 { 45, 7707 }, /* 4.5dB */
189 { 50, 7353 }, /* 5.0dB */
190 { 55, 7025 }, /* 5.5dB */
191 { 60, 6684 }, /* 6.0dB */
192 { 65, 6331 }, /* 6.5dB */
193 { 70, 6036 }, /* 7.0dB */
194 { 75, 5727 }, /* 7.5dB */
195 { 80, 5437 }, /* 8.0dB */
196 { 85, 5164 }, /* 8.5dB */
197 { 90, 4902 }, /* 9.0dB */
198 { 95, 4653 }, /* 9.5dB */
199 { 100, 4408 }, /* 10.0dB */
200 { 105, 4187 }, /* 10.5dB */
201 { 110, 3961 }, /* 11.0dB */
202 { 115, 3751 }, /* 11.5dB */
203 { 120, 3558 }, /* 12.0dB */
204 { 125, 3368 }, /* 12.5dB */
205 { 130, 3191 }, /* 13.0dB */
206 { 135, 3017 }, /* 13.5dB */
207 { 140, 2862 }, /* 14.0dB */
208 { 145, 2710 }, /* 14.5dB */
209 { 150, 2565 }, /* 15.0dB */
210 { 160, 2300 }, /* 16.0dB */
211 { 170, 2058 }, /* 17.0dB */
212 { 180, 1849 }, /* 18.0dB */
213 { 190, 1663 }, /* 19.0dB */
214 { 200, 1495 }, /* 20.0dB */
215 { 210, 1349 }, /* 21.0dB */
216 { 220, 1222 }, /* 22.0dB */
217 { 230, 1110 }, /* 23.0dB */
218 { 240, 1011 }, /* 24.0dB */
219 { 250, 925 }, /* 25.0dB */
220 { 260, 853 }, /* 26.0dB */
221 { 270, 789 }, /* 27.0dB */
222 { 280, 734 }, /* 28.0dB */
223 { 290, 690 }, /* 29.0dB */
224 { 300, 650 }, /* 30.0dB */
225 { 310, 619 }, /* 31.0dB */
226 { 320, 593 }, /* 32.0dB */
227 { 330, 571 }, /* 33.0dB */
228 { 400, 498 }, /* 40.0dB */
229 { 450, 484 }, /* 45.0dB */
230 { 500, 481 } /* 50.0dB */
233 /* RF level C/N lookup table */
234 static const struct stv090x_tab stv090x_rf_tab
[] = {
235 { -5, 0xcaa1 }, /* -5dBm */
236 { -10, 0xc229 }, /* -10dBm */
237 { -15, 0xbb08 }, /* -15dBm */
238 { -20, 0xb4bc }, /* -20dBm */
239 { -25, 0xad5a }, /* -25dBm */
240 { -30, 0xa298 }, /* -30dBm */
241 { -35, 0x98a8 }, /* -35dBm */
242 { -40, 0x8389 }, /* -40dBm */
243 { -45, 0x59be }, /* -45dBm */
244 { -50, 0x3a14 }, /* -50dBm */
245 { -55, 0x2d11 }, /* -55dBm */
246 { -60, 0x210d }, /* -60dBm */
247 { -65, 0xa14f }, /* -65dBm */
248 { -70, 0x07aa } /* -70dBm */
252 static struct stv090x_reg stv0900_initval
[] = {
254 { STV090x_OUTCFG
, 0x00 },
255 { STV090x_MODECFG
, 0xff },
256 { STV090x_AGCRF1CFG
, 0x11 },
257 { STV090x_AGCRF2CFG
, 0x13 },
258 { STV090x_TSGENERAL1X
, 0x14 },
259 { STV090x_TSTTNR2
, 0x21 },
260 { STV090x_TSTTNR4
, 0x21 },
261 { STV090x_P2_DISTXCTL
, 0x22 },
262 { STV090x_P2_F22TX
, 0xc0 },
263 { STV090x_P2_F22RX
, 0xc0 },
264 { STV090x_P2_DISRXCTL
, 0x00 },
265 { STV090x_P2_DMDCFGMD
, 0xF9 },
266 { STV090x_P2_DEMOD
, 0x08 },
267 { STV090x_P2_DMDCFG3
, 0xc4 },
268 { STV090x_P2_CARFREQ
, 0xed },
269 { STV090x_P2_LDT
, 0xd0 },
270 { STV090x_P2_LDT2
, 0xb8 },
271 { STV090x_P2_TMGCFG
, 0xd2 },
272 { STV090x_P2_TMGTHRISE
, 0x20 },
273 { STV090x_P1_TMGCFG
, 0xd2 },
275 { STV090x_P2_TMGTHFALL
, 0x00 },
276 { STV090x_P2_FECSPY
, 0x88 },
277 { STV090x_P2_FSPYDATA
, 0x3a },
278 { STV090x_P2_FBERCPT4
, 0x00 },
279 { STV090x_P2_FSPYBER
, 0x10 },
280 { STV090x_P2_ERRCTRL1
, 0x35 },
281 { STV090x_P2_ERRCTRL2
, 0xc1 },
282 { STV090x_P2_CFRICFG
, 0xf8 },
283 { STV090x_P2_NOSCFG
, 0x1c },
284 { STV090x_P2_DMDTOM
, 0x20 },
285 { STV090x_P2_CORRELMANT
, 0x70 },
286 { STV090x_P2_CORRELABS
, 0x88 },
287 { STV090x_P2_AGC2O
, 0x5b },
288 { STV090x_P2_AGC2REF
, 0x38 },
289 { STV090x_P2_CARCFG
, 0xe4 },
290 { STV090x_P2_ACLC
, 0x1A },
291 { STV090x_P2_BCLC
, 0x09 },
292 { STV090x_P2_CARHDR
, 0x08 },
293 { STV090x_P2_KREFTMG
, 0xc1 },
294 { STV090x_P2_SFRUPRATIO
, 0xf0 },
295 { STV090x_P2_SFRLOWRATIO
, 0x70 },
296 { STV090x_P2_SFRSTEP
, 0x58 },
297 { STV090x_P2_TMGCFG2
, 0x01 },
298 { STV090x_P2_CAR2CFG
, 0x26 },
299 { STV090x_P2_BCLC2S2Q
, 0x86 },
300 { STV090x_P2_BCLC2S28
, 0x86 },
301 { STV090x_P2_SMAPCOEF7
, 0x77 },
302 { STV090x_P2_SMAPCOEF6
, 0x85 },
303 { STV090x_P2_SMAPCOEF5
, 0x77 },
304 { STV090x_P2_TSCFGL
, 0x20 },
305 { STV090x_P2_DMDCFG2
, 0x3b },
306 { STV090x_P2_MODCODLST0
, 0xff },
307 { STV090x_P2_MODCODLST1
, 0xff },
308 { STV090x_P2_MODCODLST2
, 0xff },
309 { STV090x_P2_MODCODLST3
, 0xff },
310 { STV090x_P2_MODCODLST4
, 0xff },
311 { STV090x_P2_MODCODLST5
, 0xff },
312 { STV090x_P2_MODCODLST6
, 0xff },
313 { STV090x_P2_MODCODLST7
, 0xcc },
314 { STV090x_P2_MODCODLST8
, 0xcc },
315 { STV090x_P2_MODCODLST9
, 0xcc },
316 { STV090x_P2_MODCODLSTA
, 0xcc },
317 { STV090x_P2_MODCODLSTB
, 0xcc },
318 { STV090x_P2_MODCODLSTC
, 0xcc },
319 { STV090x_P2_MODCODLSTD
, 0xcc },
320 { STV090x_P2_MODCODLSTE
, 0xcc },
321 { STV090x_P2_MODCODLSTF
, 0xcf },
322 { STV090x_P1_DISTXCTL
, 0x22 },
323 { STV090x_P1_F22TX
, 0xc0 },
324 { STV090x_P1_F22RX
, 0xc0 },
325 { STV090x_P1_DISRXCTL
, 0x00 },
326 { STV090x_P1_DMDCFGMD
, 0xf9 },
327 { STV090x_P1_DEMOD
, 0x08 },
328 { STV090x_P1_DMDCFG3
, 0xc4 },
329 { STV090x_P1_DMDTOM
, 0x20 },
330 { STV090x_P1_CARFREQ
, 0xed },
331 { STV090x_P1_LDT
, 0xd0 },
332 { STV090x_P1_LDT2
, 0xb8 },
333 { STV090x_P1_TMGCFG
, 0xd2 },
334 { STV090x_P1_TMGTHRISE
, 0x20 },
335 { STV090x_P1_TMGTHFALL
, 0x00 },
336 { STV090x_P1_SFRUPRATIO
, 0xf0 },
337 { STV090x_P1_SFRLOWRATIO
, 0x70 },
338 { STV090x_P1_TSCFGL
, 0x20 },
339 { STV090x_P1_FECSPY
, 0x88 },
340 { STV090x_P1_FSPYDATA
, 0x3a },
341 { STV090x_P1_FBERCPT4
, 0x00 },
342 { STV090x_P1_FSPYBER
, 0x10 },
343 { STV090x_P1_ERRCTRL1
, 0x35 },
344 { STV090x_P1_ERRCTRL2
, 0xc1 },
345 { STV090x_P1_CFRICFG
, 0xf8 },
346 { STV090x_P1_NOSCFG
, 0x1c },
347 { STV090x_P1_CORRELMANT
, 0x70 },
348 { STV090x_P1_CORRELABS
, 0x88 },
349 { STV090x_P1_AGC2O
, 0x5b },
350 { STV090x_P1_AGC2REF
, 0x38 },
351 { STV090x_P1_CARCFG
, 0xe4 },
352 { STV090x_P1_ACLC
, 0x1A },
353 { STV090x_P1_BCLC
, 0x09 },
354 { STV090x_P1_CARHDR
, 0x08 },
355 { STV090x_P1_KREFTMG
, 0xc1 },
356 { STV090x_P1_SFRSTEP
, 0x58 },
357 { STV090x_P1_TMGCFG2
, 0x01 },
358 { STV090x_P1_CAR2CFG
, 0x26 },
359 { STV090x_P1_BCLC2S2Q
, 0x86 },
360 { STV090x_P1_BCLC2S28
, 0x86 },
361 { STV090x_P1_SMAPCOEF7
, 0x77 },
362 { STV090x_P1_SMAPCOEF6
, 0x85 },
363 { STV090x_P1_SMAPCOEF5
, 0x77 },
364 { STV090x_P1_DMDCFG2
, 0x3b },
365 { STV090x_P1_MODCODLST0
, 0xff },
366 { STV090x_P1_MODCODLST1
, 0xff },
367 { STV090x_P1_MODCODLST2
, 0xff },
368 { STV090x_P1_MODCODLST3
, 0xff },
369 { STV090x_P1_MODCODLST4
, 0xff },
370 { STV090x_P1_MODCODLST5
, 0xff },
371 { STV090x_P1_MODCODLST6
, 0xff },
372 { STV090x_P1_MODCODLST7
, 0xcc },
373 { STV090x_P1_MODCODLST8
, 0xcc },
374 { STV090x_P1_MODCODLST9
, 0xcc },
375 { STV090x_P1_MODCODLSTA
, 0xcc },
376 { STV090x_P1_MODCODLSTB
, 0xcc },
377 { STV090x_P1_MODCODLSTC
, 0xcc },
378 { STV090x_P1_MODCODLSTD
, 0xcc },
379 { STV090x_P1_MODCODLSTE
, 0xcc },
380 { STV090x_P1_MODCODLSTF
, 0xcf },
381 { STV090x_GENCFG
, 0x1d },
382 { STV090x_NBITER_NF4
, 0x37 },
383 { STV090x_NBITER_NF5
, 0x29 },
384 { STV090x_NBITER_NF6
, 0x37 },
385 { STV090x_NBITER_NF7
, 0x33 },
386 { STV090x_NBITER_NF8
, 0x31 },
387 { STV090x_NBITER_NF9
, 0x2f },
388 { STV090x_NBITER_NF10
, 0x39 },
389 { STV090x_NBITER_NF11
, 0x3a },
390 { STV090x_NBITER_NF12
, 0x29 },
391 { STV090x_NBITER_NF13
, 0x37 },
392 { STV090x_NBITER_NF14
, 0x33 },
393 { STV090x_NBITER_NF15
, 0x2f },
394 { STV090x_NBITER_NF16
, 0x39 },
395 { STV090x_NBITER_NF17
, 0x3a },
396 { STV090x_NBITERNOERR
, 0x04 },
397 { STV090x_GAINLLR_NF4
, 0x0C },
398 { STV090x_GAINLLR_NF5
, 0x0F },
399 { STV090x_GAINLLR_NF6
, 0x11 },
400 { STV090x_GAINLLR_NF7
, 0x14 },
401 { STV090x_GAINLLR_NF8
, 0x17 },
402 { STV090x_GAINLLR_NF9
, 0x19 },
403 { STV090x_GAINLLR_NF10
, 0x20 },
404 { STV090x_GAINLLR_NF11
, 0x21 },
405 { STV090x_GAINLLR_NF12
, 0x0D },
406 { STV090x_GAINLLR_NF13
, 0x0F },
407 { STV090x_GAINLLR_NF14
, 0x13 },
408 { STV090x_GAINLLR_NF15
, 0x1A },
409 { STV090x_GAINLLR_NF16
, 0x1F },
410 { STV090x_GAINLLR_NF17
, 0x21 },
411 { STV090x_RCCFGH
, 0x20 },
412 { STV090x_P1_FECM
, 0x01 }, /* disable DSS modes */
413 { STV090x_P2_FECM
, 0x01 }, /* disable DSS modes */
414 { STV090x_P1_PRVIT
, 0x2F }, /* disable PR 6/7 */
415 { STV090x_P2_PRVIT
, 0x2F }, /* disable PR 6/7 */
418 static struct stv090x_reg stv0903_initval
[] = {
419 { STV090x_OUTCFG
, 0x00 },
420 { STV090x_AGCRF1CFG
, 0x11 },
421 { STV090x_STOPCLK1
, 0x48 },
422 { STV090x_STOPCLK2
, 0x14 },
423 { STV090x_TSTTNR1
, 0x27 },
424 { STV090x_TSTTNR2
, 0x21 },
425 { STV090x_P1_DISTXCTL
, 0x22 },
426 { STV090x_P1_F22TX
, 0xc0 },
427 { STV090x_P1_F22RX
, 0xc0 },
428 { STV090x_P1_DISRXCTL
, 0x00 },
429 { STV090x_P1_DMDCFGMD
, 0xF9 },
430 { STV090x_P1_DEMOD
, 0x08 },
431 { STV090x_P1_DMDCFG3
, 0xc4 },
432 { STV090x_P1_CARFREQ
, 0xed },
433 { STV090x_P1_TNRCFG2
, 0x82 },
434 { STV090x_P1_LDT
, 0xd0 },
435 { STV090x_P1_LDT2
, 0xb8 },
436 { STV090x_P1_TMGCFG
, 0xd2 },
437 { STV090x_P1_TMGTHRISE
, 0x20 },
438 { STV090x_P1_TMGTHFALL
, 0x00 },
439 { STV090x_P1_SFRUPRATIO
, 0xf0 },
440 { STV090x_P1_SFRLOWRATIO
, 0x70 },
441 { STV090x_P1_TSCFGL
, 0x20 },
442 { STV090x_P1_FECSPY
, 0x88 },
443 { STV090x_P1_FSPYDATA
, 0x3a },
444 { STV090x_P1_FBERCPT4
, 0x00 },
445 { STV090x_P1_FSPYBER
, 0x10 },
446 { STV090x_P1_ERRCTRL1
, 0x35 },
447 { STV090x_P1_ERRCTRL2
, 0xc1 },
448 { STV090x_P1_CFRICFG
, 0xf8 },
449 { STV090x_P1_NOSCFG
, 0x1c },
450 { STV090x_P1_DMDTOM
, 0x20 },
451 { STV090x_P1_CORRELMANT
, 0x70 },
452 { STV090x_P1_CORRELABS
, 0x88 },
453 { STV090x_P1_AGC2O
, 0x5b },
454 { STV090x_P1_AGC2REF
, 0x38 },
455 { STV090x_P1_CARCFG
, 0xe4 },
456 { STV090x_P1_ACLC
, 0x1A },
457 { STV090x_P1_BCLC
, 0x09 },
458 { STV090x_P1_CARHDR
, 0x08 },
459 { STV090x_P1_KREFTMG
, 0xc1 },
460 { STV090x_P1_SFRSTEP
, 0x58 },
461 { STV090x_P1_TMGCFG2
, 0x01 },
462 { STV090x_P1_CAR2CFG
, 0x26 },
463 { STV090x_P1_BCLC2S2Q
, 0x86 },
464 { STV090x_P1_BCLC2S28
, 0x86 },
465 { STV090x_P1_SMAPCOEF7
, 0x77 },
466 { STV090x_P1_SMAPCOEF6
, 0x85 },
467 { STV090x_P1_SMAPCOEF5
, 0x77 },
468 { STV090x_P1_DMDCFG2
, 0x3b },
469 { STV090x_P1_MODCODLST0
, 0xff },
470 { STV090x_P1_MODCODLST1
, 0xff },
471 { STV090x_P1_MODCODLST2
, 0xff },
472 { STV090x_P1_MODCODLST3
, 0xff },
473 { STV090x_P1_MODCODLST4
, 0xff },
474 { STV090x_P1_MODCODLST5
, 0xff },
475 { STV090x_P1_MODCODLST6
, 0xff },
476 { STV090x_P1_MODCODLST7
, 0xcc },
477 { STV090x_P1_MODCODLST8
, 0xcc },
478 { STV090x_P1_MODCODLST9
, 0xcc },
479 { STV090x_P1_MODCODLSTA
, 0xcc },
480 { STV090x_P1_MODCODLSTB
, 0xcc },
481 { STV090x_P1_MODCODLSTC
, 0xcc },
482 { STV090x_P1_MODCODLSTD
, 0xcc },
483 { STV090x_P1_MODCODLSTE
, 0xcc },
484 { STV090x_P1_MODCODLSTF
, 0xcf },
485 { STV090x_GENCFG
, 0x1c },
486 { STV090x_NBITER_NF4
, 0x37 },
487 { STV090x_NBITER_NF5
, 0x29 },
488 { STV090x_NBITER_NF6
, 0x37 },
489 { STV090x_NBITER_NF7
, 0x33 },
490 { STV090x_NBITER_NF8
, 0x31 },
491 { STV090x_NBITER_NF9
, 0x2f },
492 { STV090x_NBITER_NF10
, 0x39 },
493 { STV090x_NBITER_NF11
, 0x3a },
494 { STV090x_NBITER_NF12
, 0x29 },
495 { STV090x_NBITER_NF13
, 0x37 },
496 { STV090x_NBITER_NF14
, 0x33 },
497 { STV090x_NBITER_NF15
, 0x2f },
498 { STV090x_NBITER_NF16
, 0x39 },
499 { STV090x_NBITER_NF17
, 0x3a },
500 { STV090x_NBITERNOERR
, 0x04 },
501 { STV090x_GAINLLR_NF4
, 0x0C },
502 { STV090x_GAINLLR_NF5
, 0x0F },
503 { STV090x_GAINLLR_NF6
, 0x11 },
504 { STV090x_GAINLLR_NF7
, 0x14 },
505 { STV090x_GAINLLR_NF8
, 0x17 },
506 { STV090x_GAINLLR_NF9
, 0x19 },
507 { STV090x_GAINLLR_NF10
, 0x20 },
508 { STV090x_GAINLLR_NF11
, 0x21 },
509 { STV090x_GAINLLR_NF12
, 0x0D },
510 { STV090x_GAINLLR_NF13
, 0x0F },
511 { STV090x_GAINLLR_NF14
, 0x13 },
512 { STV090x_GAINLLR_NF15
, 0x1A },
513 { STV090x_GAINLLR_NF16
, 0x1F },
514 { STV090x_GAINLLR_NF17
, 0x21 },
515 { STV090x_RCCFGH
, 0x20 },
516 { STV090x_P1_FECM
, 0x01 }, /*disable the DSS mode */
517 { STV090x_P1_PRVIT
, 0x2f } /*disable puncture rate 6/7*/
520 static struct stv090x_reg stv0900_cut20_val
[] = {
522 { STV090x_P2_DMDCFG3
, 0xe8 },
523 { STV090x_P2_DMDCFG4
, 0x10 },
524 { STV090x_P2_CARFREQ
, 0x38 },
525 { STV090x_P2_CARHDR
, 0x20 },
526 { STV090x_P2_KREFTMG
, 0x5a },
527 { STV090x_P2_SMAPCOEF7
, 0x06 },
528 { STV090x_P2_SMAPCOEF6
, 0x00 },
529 { STV090x_P2_SMAPCOEF5
, 0x04 },
530 { STV090x_P2_NOSCFG
, 0x0c },
531 { STV090x_P1_DMDCFG3
, 0xe8 },
532 { STV090x_P1_DMDCFG4
, 0x10 },
533 { STV090x_P1_CARFREQ
, 0x38 },
534 { STV090x_P1_CARHDR
, 0x20 },
535 { STV090x_P1_KREFTMG
, 0x5a },
536 { STV090x_P1_SMAPCOEF7
, 0x06 },
537 { STV090x_P1_SMAPCOEF6
, 0x00 },
538 { STV090x_P1_SMAPCOEF5
, 0x04 },
539 { STV090x_P1_NOSCFG
, 0x0c },
540 { STV090x_GAINLLR_NF4
, 0x21 },
541 { STV090x_GAINLLR_NF5
, 0x21 },
542 { STV090x_GAINLLR_NF6
, 0x20 },
543 { STV090x_GAINLLR_NF7
, 0x1F },
544 { STV090x_GAINLLR_NF8
, 0x1E },
545 { STV090x_GAINLLR_NF9
, 0x1E },
546 { STV090x_GAINLLR_NF10
, 0x1D },
547 { STV090x_GAINLLR_NF11
, 0x1B },
548 { STV090x_GAINLLR_NF12
, 0x20 },
549 { STV090x_GAINLLR_NF13
, 0x20 },
550 { STV090x_GAINLLR_NF14
, 0x20 },
551 { STV090x_GAINLLR_NF15
, 0x20 },
552 { STV090x_GAINLLR_NF16
, 0x20 },
553 { STV090x_GAINLLR_NF17
, 0x21 },
556 static struct stv090x_reg stv0903_cut20_val
[] = {
557 { STV090x_P1_DMDCFG3
, 0xe8 },
558 { STV090x_P1_DMDCFG4
, 0x10 },
559 { STV090x_P1_CARFREQ
, 0x38 },
560 { STV090x_P1_CARHDR
, 0x20 },
561 { STV090x_P1_KREFTMG
, 0x5a },
562 { STV090x_P1_SMAPCOEF7
, 0x06 },
563 { STV090x_P1_SMAPCOEF6
, 0x00 },
564 { STV090x_P1_SMAPCOEF5
, 0x04 },
565 { STV090x_P1_NOSCFG
, 0x0c },
566 { STV090x_GAINLLR_NF4
, 0x21 },
567 { STV090x_GAINLLR_NF5
, 0x21 },
568 { STV090x_GAINLLR_NF6
, 0x20 },
569 { STV090x_GAINLLR_NF7
, 0x1F },
570 { STV090x_GAINLLR_NF8
, 0x1E },
571 { STV090x_GAINLLR_NF9
, 0x1E },
572 { STV090x_GAINLLR_NF10
, 0x1D },
573 { STV090x_GAINLLR_NF11
, 0x1B },
574 { STV090x_GAINLLR_NF12
, 0x20 },
575 { STV090x_GAINLLR_NF13
, 0x20 },
576 { STV090x_GAINLLR_NF14
, 0x20 },
577 { STV090x_GAINLLR_NF15
, 0x20 },
578 { STV090x_GAINLLR_NF16
, 0x20 },
579 { STV090x_GAINLLR_NF17
, 0x21 }
582 /* Cut 2.0 Long Frame Tracking CR loop */
583 static struct stv090x_long_frame_crloop stv090x_s2_crl_cut20
[] = {
584 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
585 { STV090x_QPSK_12
, 0x1f, 0x3f, 0x1e, 0x3f, 0x3d, 0x1f, 0x3d, 0x3e, 0x3d, 0x1e },
586 { STV090x_QPSK_35
, 0x2f, 0x3f, 0x2e, 0x2f, 0x3d, 0x0f, 0x0e, 0x2e, 0x3d, 0x0e },
587 { STV090x_QPSK_23
, 0x2f, 0x3f, 0x2e, 0x2f, 0x0e, 0x0f, 0x0e, 0x1e, 0x3d, 0x3d },
588 { STV090x_QPSK_34
, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
589 { STV090x_QPSK_45
, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
590 { STV090x_QPSK_56
, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
591 { STV090x_QPSK_89
, 0x3f, 0x3f, 0x3e, 0x1f, 0x1e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
592 { STV090x_QPSK_910
, 0x3f, 0x3f, 0x3e, 0x1f, 0x1e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
593 { STV090x_8PSK_35
, 0x3c, 0x3e, 0x1c, 0x2e, 0x0c, 0x1e, 0x2b, 0x2d, 0x1b, 0x1d },
594 { STV090x_8PSK_23
, 0x1d, 0x3e, 0x3c, 0x2e, 0x2c, 0x1e, 0x0c, 0x2d, 0x2b, 0x1d },
595 { STV090x_8PSK_34
, 0x0e, 0x3e, 0x3d, 0x2e, 0x0d, 0x1e, 0x2c, 0x2d, 0x0c, 0x1d },
596 { STV090x_8PSK_56
, 0x2e, 0x3e, 0x1e, 0x2e, 0x2d, 0x1e, 0x3c, 0x2d, 0x2c, 0x1d },
597 { STV090x_8PSK_89
, 0x3e, 0x3e, 0x1e, 0x2e, 0x3d, 0x1e, 0x0d, 0x2d, 0x3c, 0x1d },
598 { STV090x_8PSK_910
, 0x3e, 0x3e, 0x1e, 0x2e, 0x3d, 0x1e, 0x1d, 0x2d, 0x0d, 0x1d }
601 /* Cut 3.0 Long Frame Tracking CR loop */
602 static struct stv090x_long_frame_crloop stv090x_s2_crl_cut30
[] = {
603 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
604 { STV090x_QPSK_12
, 0x3c, 0x2c, 0x0c, 0x2c, 0x1b, 0x2c, 0x1b, 0x1c, 0x0b, 0x3b },
605 { STV090x_QPSK_35
, 0x0d, 0x0d, 0x0c, 0x0d, 0x1b, 0x3c, 0x1b, 0x1c, 0x0b, 0x3b },
606 { STV090x_QPSK_23
, 0x1d, 0x0d, 0x0c, 0x1d, 0x2b, 0x3c, 0x1b, 0x1c, 0x0b, 0x3b },
607 { STV090x_QPSK_34
, 0x1d, 0x1d, 0x0c, 0x1d, 0x2b, 0x3c, 0x1b, 0x1c, 0x0b, 0x3b },
608 { STV090x_QPSK_45
, 0x2d, 0x1d, 0x1c, 0x1d, 0x2b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b },
609 { STV090x_QPSK_56
, 0x2d, 0x1d, 0x1c, 0x1d, 0x2b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b },
610 { STV090x_QPSK_89
, 0x3d, 0x2d, 0x1c, 0x1d, 0x3b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b },
611 { STV090x_QPSK_910
, 0x3d, 0x2d, 0x1c, 0x1d, 0x3b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b },
612 { STV090x_8PSK_35
, 0x39, 0x29, 0x39, 0x19, 0x19, 0x19, 0x19, 0x19, 0x09, 0x19 },
613 { STV090x_8PSK_23
, 0x2a, 0x39, 0x1a, 0x0a, 0x39, 0x0a, 0x29, 0x39, 0x29, 0x0a },
614 { STV090x_8PSK_34
, 0x2b, 0x3a, 0x1b, 0x1b, 0x3a, 0x1b, 0x1a, 0x0b, 0x1a, 0x3a },
615 { STV090x_8PSK_56
, 0x0c, 0x1b, 0x3b, 0x3b, 0x1b, 0x3b, 0x3a, 0x3b, 0x3a, 0x1b },
616 { STV090x_8PSK_89
, 0x0d, 0x3c, 0x2c, 0x2c, 0x2b, 0x0c, 0x0b, 0x3b, 0x0b, 0x1b },
617 { STV090x_8PSK_910
, 0x0d, 0x0d, 0x2c, 0x3c, 0x3b, 0x1c, 0x0b, 0x3b, 0x0b, 0x1b }
620 /* Cut 2.0 Long Frame Tracking CR Loop */
621 static struct stv090x_long_frame_crloop stv090x_s2_apsk_crl_cut20
[] = {
622 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
623 { STV090x_16APSK_23
, 0x0c, 0x0c, 0x0c, 0x0c, 0x1d, 0x0c, 0x3c, 0x0c, 0x2c, 0x0c },
624 { STV090x_16APSK_34
, 0x0c, 0x0c, 0x0c, 0x0c, 0x0e, 0x0c, 0x2d, 0x0c, 0x1d, 0x0c },
625 { STV090x_16APSK_45
, 0x0c, 0x0c, 0x0c, 0x0c, 0x1e, 0x0c, 0x3d, 0x0c, 0x2d, 0x0c },
626 { STV090x_16APSK_56
, 0x0c, 0x0c, 0x0c, 0x0c, 0x1e, 0x0c, 0x3d, 0x0c, 0x2d, 0x0c },
627 { STV090x_16APSK_89
, 0x0c, 0x0c, 0x0c, 0x0c, 0x2e, 0x0c, 0x0e, 0x0c, 0x3d, 0x0c },
628 { STV090x_16APSK_910
, 0x0c, 0x0c, 0x0c, 0x0c, 0x2e, 0x0c, 0x0e, 0x0c, 0x3d, 0x0c },
629 { STV090x_32APSK_34
, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
630 { STV090x_32APSK_45
, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
631 { STV090x_32APSK_56
, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
632 { STV090x_32APSK_89
, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
633 { STV090x_32APSK_910
, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c }
636 /* Cut 3.0 Long Frame Tracking CR Loop */
637 static struct stv090x_long_frame_crloop stv090x_s2_apsk_crl_cut30
[] = {
638 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
639 { STV090x_16APSK_23
, 0x0a, 0x0a, 0x0a, 0x0a, 0x1a, 0x0a, 0x3a, 0x0a, 0x2a, 0x0a },
640 { STV090x_16APSK_34
, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x0a, 0x3b, 0x0a, 0x1b, 0x0a },
641 { STV090x_16APSK_45
, 0x0a, 0x0a, 0x0a, 0x0a, 0x1b, 0x0a, 0x3b, 0x0a, 0x2b, 0x0a },
642 { STV090x_16APSK_56
, 0x0a, 0x0a, 0x0a, 0x0a, 0x1b, 0x0a, 0x3b, 0x0a, 0x2b, 0x0a },
643 { STV090x_16APSK_89
, 0x0a, 0x0a, 0x0a, 0x0a, 0x2b, 0x0a, 0x0c, 0x0a, 0x3b, 0x0a },
644 { STV090x_16APSK_910
, 0x0a, 0x0a, 0x0a, 0x0a, 0x2b, 0x0a, 0x0c, 0x0a, 0x3b, 0x0a },
645 { STV090x_32APSK_34
, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a },
646 { STV090x_32APSK_45
, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a },
647 { STV090x_32APSK_56
, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a },
648 { STV090x_32APSK_89
, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a },
649 { STV090x_32APSK_910
, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a }
652 static struct stv090x_long_frame_crloop stv090x_s2_lowqpsk_crl_cut20
[] = {
653 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
654 { STV090x_QPSK_14
, 0x0f, 0x3f, 0x0e, 0x3f, 0x2d, 0x2f, 0x2d, 0x1f, 0x3d, 0x3e },
655 { STV090x_QPSK_13
, 0x0f, 0x3f, 0x0e, 0x3f, 0x2d, 0x2f, 0x3d, 0x0f, 0x3d, 0x2e },
656 { STV090x_QPSK_25
, 0x1f, 0x3f, 0x1e, 0x3f, 0x3d, 0x1f, 0x3d, 0x3e, 0x3d, 0x2e }
659 static struct stv090x_long_frame_crloop stv090x_s2_lowqpsk_crl_cut30
[] = {
660 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
661 { STV090x_QPSK_14
, 0x0c, 0x3c, 0x0b, 0x3c, 0x2a, 0x2c, 0x2a, 0x1c, 0x3a, 0x3b },
662 { STV090x_QPSK_13
, 0x0c, 0x3c, 0x0b, 0x3c, 0x2a, 0x2c, 0x3a, 0x0c, 0x3a, 0x2b },
663 { STV090x_QPSK_25
, 0x1c, 0x3c, 0x1b, 0x3c, 0x3a, 0x1c, 0x3a, 0x3b, 0x3a, 0x2b }
666 /* Cut 2.0 Short Frame Tracking CR Loop */
667 static struct stv090x_short_frame_crloop stv090x_s2_short_crl_cut20
[] = {
668 /* MODCOD 2M 5M 10M 20M 30M */
669 { STV090x_QPSK
, 0x2f, 0x2e, 0x0e, 0x0e, 0x3d },
670 { STV090x_8PSK
, 0x3e, 0x0e, 0x2d, 0x0d, 0x3c },
671 { STV090x_16APSK
, 0x1e, 0x1e, 0x1e, 0x3d, 0x2d },
672 { STV090x_32APSK
, 0x1e, 0x1e, 0x1e, 0x3d, 0x2d }
675 /* Cut 3.0 Short Frame Tracking CR Loop */
676 static struct stv090x_short_frame_crloop stv090x_s2_short_crl_cut30
[] = {
677 /* MODCOD 2M 5M 10M 20M 30M */
678 { STV090x_QPSK
, 0x2C, 0x2B, 0x0B, 0x0B, 0x3A },
679 { STV090x_8PSK
, 0x3B, 0x0B, 0x2A, 0x0A, 0x39 },
680 { STV090x_16APSK
, 0x1B, 0x1B, 0x1B, 0x3A, 0x2A },
681 { STV090x_32APSK
, 0x1B, 0x1B, 0x1B, 0x3A, 0x2A }
684 static inline s32
comp2(s32 __x
, s32 __width
)
689 return (__x
>= (1 << (__width
- 1))) ? (__x
- (1 << __width
)) : __x
;
692 static int stv090x_read_reg(struct stv090x_state
*state
, unsigned int reg
)
694 const struct stv090x_config
*config
= state
->config
;
697 u8 b0
[] = { reg
>> 8, reg
& 0xff };
700 struct i2c_msg msg
[] = {
701 { .addr
= config
->address
, .flags
= 0, .buf
= b0
, .len
= 2 },
702 { .addr
= config
->address
, .flags
= I2C_M_RD
, .buf
= &buf
, .len
= 1 }
705 ret
= i2c_transfer(state
->i2c
, msg
, 2);
707 if (ret
!= -ERESTARTSYS
)
709 "Read error, Reg=[0x%02x], Status=%d",
712 return ret
< 0 ? ret
: -EREMOTEIO
;
714 if (unlikely(*state
->verbose
>= FE_DEBUGREG
))
715 dprintk(FE_ERROR
, 1, "Reg=[0x%02x], data=%02x",
718 return (unsigned int) buf
;
721 static int stv090x_write_regs(struct stv090x_state
*state
, unsigned int reg
, u8
*data
, u32 count
)
723 const struct stv090x_config
*config
= state
->config
;
726 struct i2c_msg i2c_msg
= { .addr
= config
->address
, .flags
= 0, .buf
= buf
, .len
= 2 + count
};
730 memcpy(&buf
[2], data
, count
);
732 if (unlikely(*state
->verbose
>= FE_DEBUGREG
)) {
735 printk(KERN_DEBUG
"%s [0x%04x]:", __func__
, reg
);
736 for (i
= 0; i
< count
; i
++)
737 printk(" %02x", data
[i
]);
741 ret
= i2c_transfer(state
->i2c
, &i2c_msg
, 1);
743 if (ret
!= -ERESTARTSYS
)
744 dprintk(FE_ERROR
, 1, "Reg=[0x%04x], Data=[0x%02x ...], Count=%u, Status=%d",
745 reg
, data
[0], count
, ret
);
746 return ret
< 0 ? ret
: -EREMOTEIO
;
752 static int stv090x_write_reg(struct stv090x_state
*state
, unsigned int reg
, u8 data
)
754 return stv090x_write_regs(state
, reg
, &data
, 1);
757 static int stv090x_i2c_gate_ctrl(struct stv090x_state
*state
, int enable
)
762 * NOTE! A lock is used as a FSM to control the state in which
763 * access is serialized between two tuners on the same demod.
764 * This has nothing to do with a lock to protect a critical section
765 * which may in some other cases be confused with protecting I/O
766 * access to the demodulator gate.
767 * In case of any error, the lock is unlocked and exit within the
768 * relevant operations themselves.
771 mutex_lock(&state
->internal
->tuner_lock
);
773 reg
= STV090x_READ_DEMOD(state
, I2CRPT
);
775 dprintk(FE_DEBUG
, 1, "Enable Gate");
776 STV090x_SETFIELD_Px(reg
, I2CT_ON_FIELD
, 1);
777 if (STV090x_WRITE_DEMOD(state
, I2CRPT
, reg
) < 0)
781 dprintk(FE_DEBUG
, 1, "Disable Gate");
782 STV090x_SETFIELD_Px(reg
, I2CT_ON_FIELD
, 0);
783 if ((STV090x_WRITE_DEMOD(state
, I2CRPT
, reg
)) < 0)
788 mutex_unlock(&state
->internal
->tuner_lock
);
792 dprintk(FE_ERROR
, 1, "I/O error");
793 mutex_unlock(&state
->internal
->tuner_lock
);
797 static void stv090x_get_lock_tmg(struct stv090x_state
*state
)
799 switch (state
->algo
) {
800 case STV090x_BLIND_SEARCH
:
801 dprintk(FE_DEBUG
, 1, "Blind Search");
802 if (state
->srate
<= 1500000) { /*10Msps< SR <=15Msps*/
803 state
->DemodTimeout
= 1500;
804 state
->FecTimeout
= 400;
805 } else if (state
->srate
<= 5000000) { /*10Msps< SR <=15Msps*/
806 state
->DemodTimeout
= 1000;
807 state
->FecTimeout
= 300;
808 } else { /*SR >20Msps*/
809 state
->DemodTimeout
= 700;
810 state
->FecTimeout
= 100;
814 case STV090x_COLD_SEARCH
:
815 case STV090x_WARM_SEARCH
:
817 dprintk(FE_DEBUG
, 1, "Normal Search");
818 if (state
->srate
<= 1000000) { /*SR <=1Msps*/
819 state
->DemodTimeout
= 4500;
820 state
->FecTimeout
= 1700;
821 } else if (state
->srate
<= 2000000) { /*1Msps < SR <= 2Msps */
822 state
->DemodTimeout
= 2500;
823 state
->FecTimeout
= 1100;
824 } else if (state
->srate
<= 5000000) { /*2Msps < SR <= 5Msps */
825 state
->DemodTimeout
= 1000;
826 state
->FecTimeout
= 550;
827 } else if (state
->srate
<= 10000000) { /*5Msps < SR <= 10Msps */
828 state
->DemodTimeout
= 700;
829 state
->FecTimeout
= 250;
830 } else if (state
->srate
<= 20000000) { /*10Msps < SR <= 20Msps */
831 state
->DemodTimeout
= 400;
832 state
->FecTimeout
= 130;
833 } else { /*SR >20Msps*/
834 state
->DemodTimeout
= 300;
835 state
->FecTimeout
= 100;
840 if (state
->algo
== STV090x_WARM_SEARCH
)
841 state
->DemodTimeout
/= 2;
844 static int stv090x_set_srate(struct stv090x_state
*state
, u32 srate
)
848 if (srate
> 60000000) {
849 sym
= (srate
<< 4); /* SR * 2^16 / master_clk */
850 sym
/= (state
->internal
->mclk
>> 12);
851 } else if (srate
> 6000000) {
853 sym
/= (state
->internal
->mclk
>> 10);
856 sym
/= (state
->internal
->mclk
>> 7);
859 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, (sym
>> 8) & 0x7f) < 0) /* MSB */
861 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, (sym
& 0xff)) < 0) /* LSB */
866 dprintk(FE_ERROR
, 1, "I/O error");
870 static int stv090x_set_max_srate(struct stv090x_state
*state
, u32 clk
, u32 srate
)
874 srate
= 105 * (srate
/ 100);
875 if (srate
> 60000000) {
876 sym
= (srate
<< 4); /* SR * 2^16 / master_clk */
877 sym
/= (state
->internal
->mclk
>> 12);
878 } else if (srate
> 6000000) {
880 sym
/= (state
->internal
->mclk
>> 10);
883 sym
/= (state
->internal
->mclk
>> 7);
887 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, (sym
>> 8) & 0x7f) < 0) /* MSB */
889 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, sym
& 0xff) < 0) /* LSB */
892 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x7f) < 0) /* MSB */
894 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, 0xff) < 0) /* LSB */
900 dprintk(FE_ERROR
, 1, "I/O error");
904 static int stv090x_set_min_srate(struct stv090x_state
*state
, u32 clk
, u32 srate
)
908 srate
= 95 * (srate
/ 100);
909 if (srate
> 60000000) {
910 sym
= (srate
<< 4); /* SR * 2^16 / master_clk */
911 sym
/= (state
->internal
->mclk
>> 12);
912 } else if (srate
> 6000000) {
914 sym
/= (state
->internal
->mclk
>> 10);
917 sym
/= (state
->internal
->mclk
>> 7);
920 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, ((sym
>> 8) & 0x7f)) < 0) /* MSB */
922 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, (sym
& 0xff)) < 0) /* LSB */
926 dprintk(FE_ERROR
, 1, "I/O error");
930 static u32
stv090x_car_width(u32 srate
, enum stv090x_rolloff rolloff
)
947 return srate
+ (srate
* ro
) / 100;
950 static int stv090x_set_vit_thacq(struct stv090x_state
*state
)
952 if (STV090x_WRITE_DEMOD(state
, VTH12
, 0x96) < 0)
954 if (STV090x_WRITE_DEMOD(state
, VTH23
, 0x64) < 0)
956 if (STV090x_WRITE_DEMOD(state
, VTH34
, 0x36) < 0)
958 if (STV090x_WRITE_DEMOD(state
, VTH56
, 0x23) < 0)
960 if (STV090x_WRITE_DEMOD(state
, VTH67
, 0x1e) < 0)
962 if (STV090x_WRITE_DEMOD(state
, VTH78
, 0x19) < 0)
966 dprintk(FE_ERROR
, 1, "I/O error");
970 static int stv090x_set_vit_thtracq(struct stv090x_state
*state
)
972 if (STV090x_WRITE_DEMOD(state
, VTH12
, 0xd0) < 0)
974 if (STV090x_WRITE_DEMOD(state
, VTH23
, 0x7d) < 0)
976 if (STV090x_WRITE_DEMOD(state
, VTH34
, 0x53) < 0)
978 if (STV090x_WRITE_DEMOD(state
, VTH56
, 0x2f) < 0)
980 if (STV090x_WRITE_DEMOD(state
, VTH67
, 0x24) < 0)
982 if (STV090x_WRITE_DEMOD(state
, VTH78
, 0x1f) < 0)
986 dprintk(FE_ERROR
, 1, "I/O error");
990 static int stv090x_set_viterbi(struct stv090x_state
*state
)
992 switch (state
->search_mode
) {
993 case STV090x_SEARCH_AUTO
:
994 if (STV090x_WRITE_DEMOD(state
, FECM
, 0x10) < 0) /* DVB-S and DVB-S2 */
996 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x3f) < 0) /* all puncture rate */
999 case STV090x_SEARCH_DVBS1
:
1000 if (STV090x_WRITE_DEMOD(state
, FECM
, 0x00) < 0) /* disable DSS */
1002 switch (state
->fec
) {
1004 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x01) < 0)
1009 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x02) < 0)
1014 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x04) < 0)
1019 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x08) < 0)
1024 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x20) < 0)
1029 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x2f) < 0) /* all */
1034 case STV090x_SEARCH_DSS
:
1035 if (STV090x_WRITE_DEMOD(state
, FECM
, 0x80) < 0)
1037 switch (state
->fec
) {
1039 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x01) < 0)
1044 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x02) < 0)
1049 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x10) < 0)
1054 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x13) < 0) /* 1/2, 2/3, 6/7 */
1064 dprintk(FE_ERROR
, 1, "I/O error");
1068 static int stv090x_stop_modcod(struct stv090x_state
*state
)
1070 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
1072 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xff) < 0)
1074 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0xff) < 0)
1076 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0xff) < 0)
1078 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0xff) < 0)
1080 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0xff) < 0)
1082 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0xff) < 0)
1084 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0xff) < 0)
1086 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0xff) < 0)
1088 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0xff) < 0)
1090 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0xff) < 0)
1092 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0xff) < 0)
1094 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0xff) < 0)
1096 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0xff) < 0)
1098 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0xff) < 0)
1100 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0xff) < 0)
1104 dprintk(FE_ERROR
, 1, "I/O error");
1108 static int stv090x_activate_modcod(struct stv090x_state
*state
)
1110 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
1112 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xfc) < 0)
1114 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0xcc) < 0)
1116 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0xcc) < 0)
1118 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0xcc) < 0)
1120 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0xcc) < 0)
1122 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0xcc) < 0)
1124 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0xcc) < 0)
1126 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0xcc) < 0)
1128 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0xcc) < 0)
1130 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0xcc) < 0)
1132 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0xcc) < 0)
1134 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0xcc) < 0)
1136 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0xcc) < 0)
1138 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0xcc) < 0)
1140 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0xcf) < 0)
1145 dprintk(FE_ERROR
, 1, "I/O error");
1149 static int stv090x_activate_modcod_single(struct stv090x_state
*state
)
1152 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
1154 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xf0) < 0)
1156 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0x00) < 0)
1158 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0x00) < 0)
1160 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0x00) < 0)
1162 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0x00) < 0)
1164 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0x00) < 0)
1166 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0x00) < 0)
1168 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0x00) < 0)
1170 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0x00) < 0)
1172 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0x00) < 0)
1174 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0x00) < 0)
1176 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0x00) < 0)
1178 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0x00) < 0)
1180 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0x00) < 0)
1182 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0x0f) < 0)
1188 dprintk(FE_ERROR
, 1, "I/O error");
1192 static int stv090x_vitclk_ctl(struct stv090x_state
*state
, int enable
)
1196 switch (state
->demod
) {
1197 case STV090x_DEMODULATOR_0
:
1198 mutex_lock(&state
->internal
->demod_lock
);
1199 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
1200 STV090x_SETFIELD(reg
, STOP_CLKVIT1_FIELD
, enable
);
1201 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
1203 mutex_unlock(&state
->internal
->demod_lock
);
1206 case STV090x_DEMODULATOR_1
:
1207 mutex_lock(&state
->internal
->demod_lock
);
1208 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
1209 STV090x_SETFIELD(reg
, STOP_CLKVIT2_FIELD
, enable
);
1210 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
1212 mutex_unlock(&state
->internal
->demod_lock
);
1216 dprintk(FE_ERROR
, 1, "Wrong demodulator!");
1221 mutex_unlock(&state
->internal
->demod_lock
);
1222 dprintk(FE_ERROR
, 1, "I/O error");
1226 static int stv090x_dvbs_track_crl(struct stv090x_state
*state
)
1228 if (state
->internal
->dev_ver
>= 0x30) {
1229 /* Set ACLC BCLC optimised value vs SR */
1230 if (state
->srate
>= 15000000) {
1231 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x2b) < 0)
1233 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x1a) < 0)
1235 } else if ((state
->srate
>= 7000000) && (15000000 > state
->srate
)) {
1236 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x0c) < 0)
1238 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x1b) < 0)
1240 } else if (state
->srate
< 7000000) {
1241 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x2c) < 0)
1243 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x1c) < 0)
1249 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x1a) < 0)
1251 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x09) < 0)
1256 dprintk(FE_ERROR
, 1, "I/O error");
1260 static int stv090x_delivery_search(struct stv090x_state
*state
)
1264 switch (state
->search_mode
) {
1265 case STV090x_SEARCH_DVBS1
:
1266 case STV090x_SEARCH_DSS
:
1267 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1268 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
1269 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
1270 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1273 /* Activate Viterbi decoder in legacy search,
1274 * do not use FRESVIT1, might impact VITERBI2
1276 if (stv090x_vitclk_ctl(state
, 0) < 0)
1279 if (stv090x_dvbs_track_crl(state
) < 0)
1282 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x22) < 0) /* disable DVB-S2 */
1285 if (stv090x_set_vit_thacq(state
) < 0)
1287 if (stv090x_set_viterbi(state
) < 0)
1291 case STV090x_SEARCH_DVBS2
:
1292 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1293 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 0);
1294 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
1295 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1297 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
1298 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
1299 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1302 if (stv090x_vitclk_ctl(state
, 1) < 0)
1305 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x1a) < 0) /* stop DVB-S CR loop */
1307 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x09) < 0)
1310 if (state
->internal
->dev_ver
<= 0x20) {
1311 /* enable S2 carrier loop */
1312 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x26) < 0)
1315 /* > Cut 3: Stop carrier 3 */
1316 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x66) < 0)
1320 if (state
->demod_mode
!= STV090x_SINGLE
) {
1321 /* Cut 2: enable link during search */
1322 if (stv090x_activate_modcod(state
) < 0)
1325 /* Single demodulator
1326 * Authorize SHORT and LONG frames,
1327 * QPSK, 8PSK, 16APSK and 32APSK
1329 if (stv090x_activate_modcod_single(state
) < 0)
1333 if (stv090x_set_vit_thtracq(state
) < 0)
1337 case STV090x_SEARCH_AUTO
:
1339 /* enable DVB-S2 and DVB-S2 in Auto MODE */
1340 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1341 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 0);
1342 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
1343 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1345 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
1346 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
1347 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1350 if (stv090x_vitclk_ctl(state
, 0) < 0)
1353 if (stv090x_dvbs_track_crl(state
) < 0)
1356 if (state
->internal
->dev_ver
<= 0x20) {
1357 /* enable S2 carrier loop */
1358 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x26) < 0)
1361 /* > Cut 3: Stop carrier 3 */
1362 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x66) < 0)
1366 if (state
->demod_mode
!= STV090x_SINGLE
) {
1367 /* Cut 2: enable link during search */
1368 if (stv090x_activate_modcod(state
) < 0)
1371 /* Single demodulator
1372 * Authorize SHORT and LONG frames,
1373 * QPSK, 8PSK, 16APSK and 32APSK
1375 if (stv090x_activate_modcod_single(state
) < 0)
1379 if (stv090x_set_vit_thacq(state
) < 0)
1382 if (stv090x_set_viterbi(state
) < 0)
1388 dprintk(FE_ERROR
, 1, "I/O error");
1392 static int stv090x_start_search(struct stv090x_state
*state
)
1397 /* Reset demodulator */
1398 reg
= STV090x_READ_DEMOD(state
, DMDISTATE
);
1399 STV090x_SETFIELD_Px(reg
, I2C_DEMOD_MODE_FIELD
, 0x1f);
1400 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, reg
) < 0)
1403 if (state
->internal
->dev_ver
<= 0x20) {
1404 if (state
->srate
<= 5000000) {
1405 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0x44) < 0)
1407 if (STV090x_WRITE_DEMOD(state
, CFRUP1
, 0x0f) < 0)
1409 if (STV090x_WRITE_DEMOD(state
, CFRUP0
, 0xff) < 0)
1411 if (STV090x_WRITE_DEMOD(state
, CFRLOW1
, 0xf0) < 0)
1413 if (STV090x_WRITE_DEMOD(state
, CFRLOW0
, 0x00) < 0)
1416 /*enlarge the timing bandwith for Low SR*/
1417 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x68) < 0)
1420 /* If the symbol rate is >5 Msps
1421 Set The carrier search up and low to auto mode */
1422 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0xc4) < 0)
1424 /*reduce the timing bandwith for high SR*/
1425 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x44) < 0)
1430 if (state
->srate
<= 5000000) {
1431 /* enlarge the timing bandwith for Low SR */
1432 STV090x_WRITE_DEMOD(state
, RTCS2
, 0x68);
1434 /* reduce timing bandwith for high SR */
1435 STV090x_WRITE_DEMOD(state
, RTCS2
, 0x44);
1438 /* Set CFR min and max to manual mode */
1439 STV090x_WRITE_DEMOD(state
, CARCFG
, 0x46);
1441 if (state
->algo
== STV090x_WARM_SEARCH
) {
1446 freq_abs
= 1000 << 16;
1447 freq_abs
/= (state
->internal
->mclk
/ 1000);
1448 freq
= (s16
) freq_abs
;
1451 * CFR min =- (SearchRange / 2 + 600KHz)
1452 * CFR max = +(SearchRange / 2 + 600KHz)
1453 * (600KHz for the tuner step size)
1455 freq_abs
= (state
->search_range
/ 2000) + 600;
1456 freq_abs
= freq_abs
<< 16;
1457 freq_abs
/= (state
->internal
->mclk
/ 1000);
1458 freq
= (s16
) freq_abs
;
1461 if (STV090x_WRITE_DEMOD(state
, CFRUP1
, MSB(freq
)) < 0)
1463 if (STV090x_WRITE_DEMOD(state
, CFRUP0
, LSB(freq
)) < 0)
1468 if (STV090x_WRITE_DEMOD(state
, CFRLOW1
, MSB(freq
)) < 0)
1470 if (STV090x_WRITE_DEMOD(state
, CFRLOW0
, LSB(freq
)) < 0)
1475 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0) < 0)
1477 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0) < 0)
1480 if (state
->internal
->dev_ver
>= 0x20) {
1481 if (STV090x_WRITE_DEMOD(state
, EQUALCFG
, 0x41) < 0)
1483 if (STV090x_WRITE_DEMOD(state
, FFECFG
, 0x41) < 0)
1486 if ((state
->search_mode
== STV090x_DVBS1
) ||
1487 (state
->search_mode
== STV090x_DSS
) ||
1488 (state
->search_mode
== STV090x_SEARCH_AUTO
)) {
1490 if (STV090x_WRITE_DEMOD(state
, VITSCALE
, 0x82) < 0)
1492 if (STV090x_WRITE_DEMOD(state
, VAVSRVIT
, 0x00) < 0)
1497 if (STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x00) < 0)
1499 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0xe0) < 0)
1501 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0xc0) < 0)
1504 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1505 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 0);
1506 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0);
1507 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1509 reg
= STV090x_READ_DEMOD(state
, DMDCFG2
);
1510 STV090x_SETFIELD_Px(reg
, S1S2_SEQUENTIAL_FIELD
, 0x0);
1511 if (STV090x_WRITE_DEMOD(state
, DMDCFG2
, reg
) < 0)
1514 if (STV090x_WRITE_DEMOD(state
, RTC
, 0x88) < 0)
1517 if (state
->internal
->dev_ver
>= 0x20) {
1518 /*Frequency offset detector setting*/
1519 if (state
->srate
< 2000000) {
1520 if (state
->internal
->dev_ver
<= 0x20) {
1522 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x39) < 0)
1526 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x89) < 0)
1529 if (STV090x_WRITE_DEMOD(state
, CARHDR
, 0x40) < 0)
1531 } else if (state
->srate
< 10000000) {
1532 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x4c) < 0)
1534 if (STV090x_WRITE_DEMOD(state
, CARHDR
, 0x20) < 0)
1537 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x4b) < 0)
1539 if (STV090x_WRITE_DEMOD(state
, CARHDR
, 0x20) < 0)
1543 if (state
->srate
< 10000000) {
1544 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0xef) < 0)
1547 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0xed) < 0)
1552 switch (state
->algo
) {
1553 case STV090x_WARM_SEARCH
:
1554 /* The symbol rate and the exact
1555 * carrier Frequency are known
1557 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
1559 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0)
1563 case STV090x_COLD_SEARCH
:
1564 /* The symbol rate is known */
1565 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
1567 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0)
1576 dprintk(FE_ERROR
, 1, "I/O error");
1580 static int stv090x_get_agc2_min_level(struct stv090x_state
*state
)
1582 u32 agc2_min
= 0xffff, agc2
= 0, freq_init
, freq_step
, reg
;
1583 s32 i
, j
, steps
, dir
;
1585 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
1587 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1588 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 0);
1589 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0);
1590 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1593 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x83) < 0) /* SR = 65 Msps Max */
1595 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, 0xc0) < 0)
1597 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, 0x82) < 0) /* SR= 400 ksps Min */
1599 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, 0xa0) < 0)
1601 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x00) < 0) /* stop acq @ coarse carrier state */
1603 if (stv090x_set_srate(state
, 1000000) < 0)
1606 steps
= state
->search_range
/ 1000000;
1611 freq_step
= (1000000 * 256) / (state
->internal
->mclk
/ 256);
1614 for (i
= 0; i
< steps
; i
++) {
1616 freq_init
= freq_init
+ (freq_step
* i
);
1618 freq_init
= freq_init
- (freq_step
* i
);
1622 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x5c) < 0) /* Demod RESET */
1624 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, (freq_init
>> 8) & 0xff) < 0)
1626 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, freq_init
& 0xff) < 0)
1628 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x58) < 0) /* Demod RESET */
1633 for (j
= 0; j
< 10; j
++) {
1634 agc2
+= (STV090x_READ_DEMOD(state
, AGC2I1
) << 8) |
1635 STV090x_READ_DEMOD(state
, AGC2I0
);
1638 if (agc2
< agc2_min
)
1644 dprintk(FE_ERROR
, 1, "I/O error");
1648 static u32
stv090x_get_srate(struct stv090x_state
*state
, u32 clk
)
1651 s32 srate
, int_1
, int_2
, tmp_1
, tmp_2
;
1653 r3
= STV090x_READ_DEMOD(state
, SFR3
);
1654 r2
= STV090x_READ_DEMOD(state
, SFR2
);
1655 r1
= STV090x_READ_DEMOD(state
, SFR1
);
1656 r0
= STV090x_READ_DEMOD(state
, SFR0
);
1658 srate
= ((r3
<< 24) | (r2
<< 16) | (r1
<< 8) | r0
);
1661 int_2
= srate
>> 16;
1663 tmp_1
= clk
% 0x10000;
1664 tmp_2
= srate
% 0x10000;
1666 srate
= (int_1
* int_2
) +
1667 ((int_1
* tmp_2
) >> 16) +
1668 ((int_2
* tmp_1
) >> 16);
1673 static u32
stv090x_srate_srch_coarse(struct stv090x_state
*state
)
1675 struct dvb_frontend
*fe
= &state
->frontend
;
1677 int tmg_lock
= 0, i
;
1678 s32 tmg_cpt
= 0, dir
= 1, steps
, cur_step
= 0, freq
;
1679 u32 srate_coarse
= 0, agc2
= 0, car_step
= 1200, reg
;
1682 if (state
->internal
->dev_ver
>= 0x30)
1687 reg
= STV090x_READ_DEMOD(state
, DMDISTATE
);
1688 STV090x_SETFIELD_Px(reg
, I2C_DEMOD_MODE_FIELD
, 0x1f); /* Demod RESET */
1689 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, reg
) < 0)
1691 if (STV090x_WRITE_DEMOD(state
, TMGCFG
, 0x12) < 0)
1693 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc0) < 0)
1695 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0xf0) < 0)
1697 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0xe0) < 0)
1699 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1700 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 1);
1701 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0);
1702 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1705 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x83) < 0)
1707 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, 0xc0) < 0)
1709 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, 0x82) < 0)
1711 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, 0xa0) < 0)
1713 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x00) < 0)
1715 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x50) < 0)
1718 if (state
->internal
->dev_ver
>= 0x30) {
1719 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x99) < 0)
1721 if (STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x98) < 0)
1724 } else if (state
->internal
->dev_ver
>= 0x20) {
1725 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x6a) < 0)
1727 if (STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x95) < 0)
1731 if (state
->srate
<= 2000000)
1733 else if (state
->srate
<= 5000000)
1735 else if (state
->srate
<= 12000000)
1740 steps
= -1 + ((state
->search_range
/ 1000) / car_step
);
1742 steps
= (2 * steps
) + 1;
1745 else if (steps
> 10) {
1747 car_step
= (state
->search_range
/ 1000) / 10;
1751 freq
= state
->frequency
;
1753 while ((!tmg_lock
) && (cur_step
< steps
)) {
1754 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x5f) < 0) /* Demod RESET */
1756 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0x00) < 0)
1758 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0x00) < 0)
1760 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, 0x00) < 0)
1762 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, 0x00) < 0)
1764 /* trigger acquisition */
1765 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x40) < 0)
1768 for (i
= 0; i
< 10; i
++) {
1769 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
1770 if (STV090x_GETFIELD_Px(reg
, TMGLOCK_QUALITY_FIELD
) >= 2)
1772 agc2
+= (STV090x_READ_DEMOD(state
, AGC2I1
) << 8) |
1773 STV090x_READ_DEMOD(state
, AGC2I0
);
1776 srate_coarse
= stv090x_get_srate(state
, state
->internal
->mclk
);
1779 if ((tmg_cpt
>= 5) && (agc2
< agc2th
) &&
1780 (srate_coarse
< 50000000) && (srate_coarse
> 850000))
1782 else if (cur_step
< steps
) {
1784 freq
+= cur_step
* car_step
;
1786 freq
-= cur_step
* car_step
;
1789 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
1792 if (state
->config
->tuner_set_frequency
) {
1793 if (state
->config
->tuner_set_frequency(fe
, freq
) < 0)
1797 if (state
->config
->tuner_set_bandwidth
) {
1798 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
1802 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
1807 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
1810 if (state
->config
->tuner_get_status
) {
1811 if (state
->config
->tuner_get_status(fe
, ®
) < 0)
1816 dprintk(FE_DEBUG
, 1, "Tuner phase locked");
1818 dprintk(FE_DEBUG
, 1, "Tuner unlocked");
1820 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
1828 srate_coarse
= stv090x_get_srate(state
, state
->internal
->mclk
);
1830 return srate_coarse
;
1833 stv090x_i2c_gate_ctrl(state
, 0);
1835 dprintk(FE_ERROR
, 1, "I/O error");
1839 static u32
stv090x_srate_srch_fine(struct stv090x_state
*state
)
1841 u32 srate_coarse
, freq_coarse
, sym
, reg
;
1843 srate_coarse
= stv090x_get_srate(state
, state
->internal
->mclk
);
1844 freq_coarse
= STV090x_READ_DEMOD(state
, CFR2
) << 8;
1845 freq_coarse
|= STV090x_READ_DEMOD(state
, CFR1
);
1846 sym
= 13 * (srate_coarse
/ 10); /* SFRUP = SFR + 30% */
1848 if (sym
< state
->srate
)
1851 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0) /* Demod RESET */
1853 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc1) < 0)
1855 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0x20) < 0)
1857 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0x00) < 0)
1859 if (STV090x_WRITE_DEMOD(state
, TMGCFG
, 0xd2) < 0)
1861 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1862 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0x00);
1863 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1866 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
1869 if (state
->internal
->dev_ver
>= 0x30) {
1870 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x79) < 0)
1872 } else if (state
->internal
->dev_ver
>= 0x20) {
1873 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x49) < 0)
1877 if (srate_coarse
> 3000000) {
1878 sym
= 13 * (srate_coarse
/ 10); /* SFRUP = SFR + 30% */
1879 sym
= (sym
/ 1000) * 65536;
1880 sym
/= (state
->internal
->mclk
/ 1000);
1881 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, (sym
>> 8) & 0x7f) < 0)
1883 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, sym
& 0xff) < 0)
1885 sym
= 10 * (srate_coarse
/ 13); /* SFRLOW = SFR - 30% */
1886 sym
= (sym
/ 1000) * 65536;
1887 sym
/= (state
->internal
->mclk
/ 1000);
1888 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, (sym
>> 8) & 0x7f) < 0)
1890 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, sym
& 0xff) < 0)
1892 sym
= (srate_coarse
/ 1000) * 65536;
1893 sym
/= (state
->internal
->mclk
/ 1000);
1894 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, (sym
>> 8) & 0xff) < 0)
1896 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, sym
& 0xff) < 0)
1899 sym
= 13 * (srate_coarse
/ 10); /* SFRUP = SFR + 30% */
1900 sym
= (sym
/ 100) * 65536;
1901 sym
/= (state
->internal
->mclk
/ 100);
1902 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, (sym
>> 8) & 0x7f) < 0)
1904 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, sym
& 0xff) < 0)
1906 sym
= 10 * (srate_coarse
/ 14); /* SFRLOW = SFR - 30% */
1907 sym
= (sym
/ 100) * 65536;
1908 sym
/= (state
->internal
->mclk
/ 100);
1909 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, (sym
>> 8) & 0x7f) < 0)
1911 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, sym
& 0xff) < 0)
1913 sym
= (srate_coarse
/ 100) * 65536;
1914 sym
/= (state
->internal
->mclk
/ 100);
1915 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, (sym
>> 8) & 0xff) < 0)
1917 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, sym
& 0xff) < 0)
1920 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x20) < 0)
1922 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, (freq_coarse
>> 8) & 0xff) < 0)
1924 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, freq_coarse
& 0xff) < 0)
1926 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0) /* trigger acquisition */
1930 return srate_coarse
;
1933 dprintk(FE_ERROR
, 1, "I/O error");
1937 static int stv090x_get_dmdlock(struct stv090x_state
*state
, s32 timeout
)
1939 s32 timer
= 0, lock
= 0;
1943 while ((timer
< timeout
) && (!lock
)) {
1944 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
1945 stat
= STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
);
1948 case 0: /* searching */
1949 case 1: /* first PLH detected */
1951 dprintk(FE_DEBUG
, 1, "Demodulator searching ..");
1954 case 2: /* DVB-S2 mode */
1955 case 3: /* DVB-S1/legacy mode */
1956 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
1957 lock
= STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
);
1964 dprintk(FE_DEBUG
, 1, "Demodulator acquired LOCK");
1971 static int stv090x_blind_search(struct stv090x_state
*state
)
1973 u32 agc2
, reg
, srate_coarse
;
1974 s32 cpt_fail
, agc2_ovflw
, i
;
1975 u8 k_ref
, k_max
, k_min
;
1976 int coarse_fail
= 0;
1982 agc2
= stv090x_get_agc2_min_level(state
);
1984 if (agc2
> STV090x_SEARCH_AGC2_TH(state
->internal
->dev_ver
)) {
1988 if (state
->internal
->dev_ver
<= 0x20) {
1989 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0xc4) < 0)
1993 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0x06) < 0)
1997 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x44) < 0)
2000 if (state
->internal
->dev_ver
>= 0x20) {
2001 if (STV090x_WRITE_DEMOD(state
, EQUALCFG
, 0x41) < 0)
2003 if (STV090x_WRITE_DEMOD(state
, FFECFG
, 0x41) < 0)
2005 if (STV090x_WRITE_DEMOD(state
, VITSCALE
, 0x82) < 0)
2007 if (STV090x_WRITE_DEMOD(state
, VAVSRVIT
, 0x00) < 0) /* set viterbi hysteresis */
2013 if (STV090x_WRITE_DEMOD(state
, KREFTMG
, k_ref
) < 0)
2015 if (stv090x_srate_srch_coarse(state
) != 0) {
2016 srate_coarse
= stv090x_srate_srch_fine(state
);
2017 if (srate_coarse
!= 0) {
2018 stv090x_get_lock_tmg(state
);
2019 lock
= stv090x_get_dmdlock(state
,
2020 state
->DemodTimeout
);
2027 for (i
= 0; i
< 10; i
++) {
2028 agc2
+= (STV090x_READ_DEMOD(state
, AGC2I1
) << 8) |
2029 STV090x_READ_DEMOD(state
, AGC2I0
);
2032 reg
= STV090x_READ_DEMOD(state
, DSTATUS2
);
2033 if ((STV090x_GETFIELD_Px(reg
, CFR_OVERFLOW_FIELD
) == 0x01) &&
2034 (STV090x_GETFIELD_Px(reg
, DEMOD_DELOCK_FIELD
) == 0x01))
2038 if ((cpt_fail
> 7) || (agc2_ovflw
> 7))
2044 } while ((k_ref
>= k_min
) && (!lock
) && (!coarse_fail
));
2050 dprintk(FE_ERROR
, 1, "I/O error");
2054 static int stv090x_chk_tmg(struct stv090x_state
*state
)
2058 u8 freq
, tmg_thh
, tmg_thl
;
2061 freq
= STV090x_READ_DEMOD(state
, CARFREQ
);
2062 tmg_thh
= STV090x_READ_DEMOD(state
, TMGTHRISE
);
2063 tmg_thl
= STV090x_READ_DEMOD(state
, TMGTHFALL
);
2064 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0x20) < 0)
2066 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0x00) < 0)
2069 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2070 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0x00); /* stop carrier offset search */
2071 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2073 if (STV090x_WRITE_DEMOD(state
, RTC
, 0x80) < 0)
2076 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x40) < 0)
2078 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x00) < 0)
2081 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0x00) < 0) /* set car ofset to 0 */
2083 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0x00) < 0)
2085 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x65) < 0)
2088 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0) /* trigger acquisition */
2092 for (i
= 0; i
< 10; i
++) {
2093 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
2094 if (STV090x_GETFIELD_Px(reg
, TMGLOCK_QUALITY_FIELD
) >= 2)
2101 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
2103 if (STV090x_WRITE_DEMOD(state
, RTC
, 0x88) < 0) /* DVB-S1 timing */
2105 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x68) < 0) /* DVB-S2 timing */
2108 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, freq
) < 0)
2110 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, tmg_thh
) < 0)
2112 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, tmg_thl
) < 0)
2118 dprintk(FE_ERROR
, 1, "I/O error");
2122 static int stv090x_get_coldlock(struct stv090x_state
*state
, s32 timeout_dmd
)
2124 struct dvb_frontend
*fe
= &state
->frontend
;
2127 s32 car_step
, steps
, cur_step
, dir
, freq
, timeout_lock
;
2130 if (state
->srate
>= 10000000)
2131 timeout_lock
= timeout_dmd
/ 3;
2133 timeout_lock
= timeout_dmd
/ 2;
2135 lock
= stv090x_get_dmdlock(state
, timeout_lock
); /* cold start wait */
2137 if (state
->srate
>= 10000000) {
2138 if (stv090x_chk_tmg(state
)) {
2139 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
2141 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0)
2143 lock
= stv090x_get_dmdlock(state
, timeout_dmd
);
2148 if (state
->srate
<= 4000000)
2150 else if (state
->srate
<= 7000000)
2152 else if (state
->srate
<= 10000000)
2157 steps
= (state
->search_range
/ 1000) / car_step
;
2159 steps
= 2 * (steps
+ 1);
2162 else if (steps
> 12)
2169 freq
= state
->frequency
;
2170 state
->tuner_bw
= stv090x_car_width(state
->srate
, state
->rolloff
) + state
->srate
;
2171 while ((cur_step
<= steps
) && (!lock
)) {
2173 freq
+= cur_step
* car_step
;
2175 freq
-= cur_step
* car_step
;
2178 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2181 if (state
->config
->tuner_set_frequency
) {
2182 if (state
->config
->tuner_set_frequency(fe
, freq
) < 0)
2186 if (state
->config
->tuner_set_bandwidth
) {
2187 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
2191 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2196 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2199 if (state
->config
->tuner_get_status
) {
2200 if (state
->config
->tuner_get_status(fe
, ®
) < 0)
2205 dprintk(FE_DEBUG
, 1, "Tuner phase locked");
2207 dprintk(FE_DEBUG
, 1, "Tuner unlocked");
2209 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2212 STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1c);
2213 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0x00) < 0)
2215 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0x00) < 0)
2217 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
2219 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0)
2221 lock
= stv090x_get_dmdlock(state
, (timeout_dmd
/ 3));
2233 stv090x_i2c_gate_ctrl(state
, 0);
2235 dprintk(FE_ERROR
, 1, "I/O error");
2239 static int stv090x_get_loop_params(struct stv090x_state
*state
, s32
*freq_inc
, s32
*timeout_sw
, s32
*steps
)
2241 s32 timeout
, inc
, steps_max
, srate
, car_max
;
2243 srate
= state
->srate
;
2244 car_max
= state
->search_range
/ 1000;
2245 car_max
+= car_max
/ 10;
2246 car_max
= 65536 * (car_max
/ 2);
2247 car_max
/= (state
->internal
->mclk
/ 1000);
2249 if (car_max
> 0x4000)
2250 car_max
= 0x4000 ; /* maxcarrier should be<= +-1/4 Mclk */
2253 inc
/= state
->internal
->mclk
/ 1000;
2258 switch (state
->search_mode
) {
2259 case STV090x_SEARCH_DVBS1
:
2260 case STV090x_SEARCH_DSS
:
2261 inc
*= 3; /* freq step = 3% of srate */
2265 case STV090x_SEARCH_DVBS2
:
2270 case STV090x_SEARCH_AUTO
:
2277 if ((inc
> car_max
) || (inc
< 0))
2278 inc
= car_max
/ 2; /* increment <= 1/8 Mclk */
2280 timeout
*= 27500; /* 27.5 Msps reference */
2282 timeout
/= (srate
/ 1000);
2284 if ((timeout
> 100) || (timeout
< 0))
2287 steps_max
= (car_max
/ inc
) + 1; /* min steps = 3 */
2288 if ((steps_max
> 100) || (steps_max
< 0)) {
2289 steps_max
= 100; /* max steps <= 100 */
2290 inc
= car_max
/ steps_max
;
2293 *timeout_sw
= timeout
;
2299 static int stv090x_chk_signal(struct stv090x_state
*state
)
2301 s32 offst_car
, agc2
, car_max
;
2304 offst_car
= STV090x_READ_DEMOD(state
, CFR2
) << 8;
2305 offst_car
|= STV090x_READ_DEMOD(state
, CFR1
);
2306 offst_car
= comp2(offst_car
, 16);
2308 agc2
= STV090x_READ_DEMOD(state
, AGC2I1
) << 8;
2309 agc2
|= STV090x_READ_DEMOD(state
, AGC2I0
);
2310 car_max
= state
->search_range
/ 1000;
2312 car_max
+= (car_max
/ 10); /* 10% margin */
2313 car_max
= (65536 * car_max
/ 2);
2314 car_max
/= state
->internal
->mclk
/ 1000;
2316 if (car_max
> 0x4000)
2319 if ((agc2
> 0x2000) || (offst_car
> 2 * car_max
) || (offst_car
< -2 * car_max
)) {
2321 dprintk(FE_DEBUG
, 1, "No Signal");
2324 dprintk(FE_DEBUG
, 1, "Found Signal");
2330 static int stv090x_search_car_loop(struct stv090x_state
*state
, s32 inc
, s32 timeout
, int zigzag
, s32 steps_max
)
2332 int no_signal
, lock
= 0;
2333 s32 cpt_step
= 0, offst_freq
, car_max
;
2336 car_max
= state
->search_range
/ 1000;
2337 car_max
+= (car_max
/ 10);
2338 car_max
= (65536 * car_max
/ 2);
2339 car_max
/= (state
->internal
->mclk
/ 1000);
2340 if (car_max
> 0x4000)
2346 offst_freq
= -car_max
+ inc
;
2349 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1c) < 0)
2351 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, ((offst_freq
/ 256) & 0xff)) < 0)
2353 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, offst_freq
& 0xff) < 0)
2355 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0)
2358 reg
= STV090x_READ_DEMOD(state
, PDELCTRL1
);
2359 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0x1); /* stop DVB-S2 packet delin */
2360 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
2364 if (offst_freq
>= 0)
2365 offst_freq
= -offst_freq
- 2 * inc
;
2367 offst_freq
= -offst_freq
;
2369 offst_freq
+= 2 * inc
;
2374 lock
= stv090x_get_dmdlock(state
, timeout
);
2375 no_signal
= stv090x_chk_signal(state
);
2379 ((offst_freq
- inc
) < car_max
) &&
2380 ((offst_freq
+ inc
) > -car_max
) &&
2381 (cpt_step
< steps_max
));
2383 reg
= STV090x_READ_DEMOD(state
, PDELCTRL1
);
2384 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0);
2385 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
2390 dprintk(FE_ERROR
, 1, "I/O error");
2394 static int stv090x_sw_algo(struct stv090x_state
*state
)
2396 int no_signal
, zigzag
, lock
= 0;
2399 s32 dvbs2_fly_wheel
;
2400 s32 inc
, timeout_step
, trials
, steps_max
;
2403 stv090x_get_loop_params(state
, &inc
, &timeout_step
, &steps_max
);
2405 switch (state
->search_mode
) {
2406 case STV090x_SEARCH_DVBS1
:
2407 case STV090x_SEARCH_DSS
:
2408 /* accelerate the frequency detector */
2409 if (state
->internal
->dev_ver
>= 0x20) {
2410 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x3B) < 0)
2414 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0x49) < 0)
2419 case STV090x_SEARCH_DVBS2
:
2420 if (state
->internal
->dev_ver
>= 0x20) {
2421 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x79) < 0)
2425 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0x89) < 0)
2430 case STV090x_SEARCH_AUTO
:
2432 /* accelerate the frequency detector */
2433 if (state
->internal
->dev_ver
>= 0x20) {
2434 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x3b) < 0)
2436 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x79) < 0)
2440 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0xc9) < 0)
2448 lock
= stv090x_search_car_loop(state
, inc
, timeout_step
, zigzag
, steps_max
);
2449 no_signal
= stv090x_chk_signal(state
);
2452 /*run the SW search 2 times maximum*/
2453 if (lock
|| no_signal
|| (trials
== 2)) {
2454 /*Check if the demod is not losing lock in DVBS2*/
2455 if (state
->internal
->dev_ver
>= 0x20) {
2456 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x49) < 0)
2458 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x9e) < 0)
2462 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
2463 if ((lock
) && (STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
) == STV090x_DVBS2
)) {
2464 /*Check if the demod is not losing lock in DVBS2*/
2465 msleep(timeout_step
);
2466 reg
= STV090x_READ_DEMOD(state
, DMDFLYW
);
2467 dvbs2_fly_wheel
= STV090x_GETFIELD_Px(reg
, FLYWHEEL_CPT_FIELD
);
2468 if (dvbs2_fly_wheel
< 0xd) { /*if correct frames is decrementing */
2469 msleep(timeout_step
);
2470 reg
= STV090x_READ_DEMOD(state
, DMDFLYW
);
2471 dvbs2_fly_wheel
= STV090x_GETFIELD_Px(reg
, FLYWHEEL_CPT_FIELD
);
2473 if (dvbs2_fly_wheel
< 0xd) {
2474 /*FALSE lock, The demod is loosing lock */
2477 if (state
->internal
->dev_ver
>= 0x20) {
2478 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x79) < 0)
2482 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0x89) < 0)
2488 } while ((!lock
) && (trials
< 2) && (!no_signal
));
2492 dprintk(FE_ERROR
, 1, "I/O error");
2496 static enum stv090x_delsys
stv090x_get_std(struct stv090x_state
*state
)
2499 enum stv090x_delsys delsys
;
2501 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
2502 if (STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
) == 2)
2503 delsys
= STV090x_DVBS2
;
2504 else if (STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
) == 3) {
2505 reg
= STV090x_READ_DEMOD(state
, FECM
);
2506 if (STV090x_GETFIELD_Px(reg
, DSS_DVB_FIELD
) == 1)
2507 delsys
= STV090x_DSS
;
2509 delsys
= STV090x_DVBS1
;
2511 delsys
= STV090x_ERROR
;
2518 static s32
stv090x_get_car_freq(struct stv090x_state
*state
, u32 mclk
)
2520 s32 derot
, int_1
, int_2
, tmp_1
, tmp_2
;
2522 derot
= STV090x_READ_DEMOD(state
, CFR2
) << 16;
2523 derot
|= STV090x_READ_DEMOD(state
, CFR1
) << 8;
2524 derot
|= STV090x_READ_DEMOD(state
, CFR0
);
2526 derot
= comp2(derot
, 24);
2528 int_2
= derot
>> 12;
2530 /* carrier_frequency = MasterClock * Reg / 2^24 */
2531 tmp_1
= mclk
% 0x1000;
2532 tmp_2
= derot
% 0x1000;
2534 derot
= (int_1
* int_2
) +
2535 ((int_1
* tmp_2
) >> 12) +
2536 ((int_2
* tmp_1
) >> 12);
2541 static int stv090x_get_viterbi(struct stv090x_state
*state
)
2545 reg
= STV090x_READ_DEMOD(state
, VITCURPUN
);
2546 rate
= STV090x_GETFIELD_Px(reg
, VIT_CURPUN_FIELD
);
2550 state
->fec
= STV090x_PR12
;
2554 state
->fec
= STV090x_PR23
;
2558 state
->fec
= STV090x_PR34
;
2562 state
->fec
= STV090x_PR56
;
2566 state
->fec
= STV090x_PR67
;
2570 state
->fec
= STV090x_PR78
;
2574 state
->fec
= STV090x_PRERR
;
2581 static enum stv090x_signal_state
stv090x_get_sig_params(struct stv090x_state
*state
)
2583 struct dvb_frontend
*fe
= &state
->frontend
;
2587 s32 i
= 0, offst_freq
;
2591 if (state
->algo
== STV090x_BLIND_SEARCH
) {
2592 tmg
= STV090x_READ_DEMOD(state
, TMGREG2
);
2593 STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x5c);
2594 while ((i
<= 50) && (tmg
!= 0) && (tmg
!= 0xff)) {
2595 tmg
= STV090x_READ_DEMOD(state
, TMGREG2
);
2600 state
->delsys
= stv090x_get_std(state
);
2602 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2605 if (state
->config
->tuner_get_frequency
) {
2606 if (state
->config
->tuner_get_frequency(fe
, &state
->frequency
) < 0)
2610 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2613 offst_freq
= stv090x_get_car_freq(state
, state
->internal
->mclk
) / 1000;
2614 state
->frequency
+= offst_freq
;
2616 if (stv090x_get_viterbi(state
) < 0)
2619 reg
= STV090x_READ_DEMOD(state
, DMDMODCOD
);
2620 state
->modcod
= STV090x_GETFIELD_Px(reg
, DEMOD_MODCOD_FIELD
);
2621 state
->pilots
= STV090x_GETFIELD_Px(reg
, DEMOD_TYPE_FIELD
) & 0x01;
2622 state
->frame_len
= STV090x_GETFIELD_Px(reg
, DEMOD_TYPE_FIELD
) >> 1;
2623 reg
= STV090x_READ_DEMOD(state
, TMGOBS
);
2624 state
->rolloff
= STV090x_GETFIELD_Px(reg
, ROLLOFF_STATUS_FIELD
);
2625 reg
= STV090x_READ_DEMOD(state
, FECM
);
2626 state
->inversion
= STV090x_GETFIELD_Px(reg
, IQINV_FIELD
);
2628 if ((state
->algo
== STV090x_BLIND_SEARCH
) || (state
->srate
< 10000000)) {
2630 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2633 if (state
->config
->tuner_get_frequency
) {
2634 if (state
->config
->tuner_get_frequency(fe
, &state
->frequency
) < 0)
2638 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2641 if (abs(offst_freq
) <= ((state
->search_range
/ 2000) + 500))
2642 return STV090x_RANGEOK
;
2643 else if (abs(offst_freq
) <= (stv090x_car_width(state
->srate
, state
->rolloff
) / 2000))
2644 return STV090x_RANGEOK
;
2646 return STV090x_OUTOFRANGE
; /* Out of Range */
2648 if (abs(offst_freq
) <= ((state
->search_range
/ 2000) + 500))
2649 return STV090x_RANGEOK
;
2651 return STV090x_OUTOFRANGE
;
2654 return STV090x_OUTOFRANGE
;
2657 stv090x_i2c_gate_ctrl(state
, 0);
2659 dprintk(FE_ERROR
, 1, "I/O error");
2663 static u32
stv090x_get_tmgoffst(struct stv090x_state
*state
, u32 srate
)
2667 offst_tmg
= STV090x_READ_DEMOD(state
, TMGREG2
) << 16;
2668 offst_tmg
|= STV090x_READ_DEMOD(state
, TMGREG1
) << 8;
2669 offst_tmg
|= STV090x_READ_DEMOD(state
, TMGREG0
);
2671 offst_tmg
= comp2(offst_tmg
, 24); /* 2's complement */
2675 offst_tmg
= ((s32
) srate
* 10) / ((s32
) 0x1000000 / offst_tmg
);
2681 static u8
stv090x_optimize_carloop(struct stv090x_state
*state
, enum stv090x_modcod modcod
, s32 pilots
)
2685 struct stv090x_long_frame_crloop
*car_loop
, *car_loop_qpsk_low
, *car_loop_apsk_low
;
2687 if (state
->internal
->dev_ver
== 0x20) {
2688 car_loop
= stv090x_s2_crl_cut20
;
2689 car_loop_qpsk_low
= stv090x_s2_lowqpsk_crl_cut20
;
2690 car_loop_apsk_low
= stv090x_s2_apsk_crl_cut20
;
2693 car_loop
= stv090x_s2_crl_cut30
;
2694 car_loop_qpsk_low
= stv090x_s2_lowqpsk_crl_cut30
;
2695 car_loop_apsk_low
= stv090x_s2_apsk_crl_cut30
;
2698 if (modcod
< STV090x_QPSK_12
) {
2700 while ((i
< 3) && (modcod
!= car_loop_qpsk_low
[i
].modcod
))
2708 while ((i
< 14) && (modcod
!= car_loop
[i
].modcod
))
2713 while ((i
< 11) && (modcod
!= car_loop_apsk_low
[i
].modcod
))
2721 if (modcod
<= STV090x_QPSK_25
) {
2723 if (state
->srate
<= 3000000)
2724 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_2
;
2725 else if (state
->srate
<= 7000000)
2726 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_5
;
2727 else if (state
->srate
<= 15000000)
2728 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_10
;
2729 else if (state
->srate
<= 25000000)
2730 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_20
;
2732 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_30
;
2734 if (state
->srate
<= 3000000)
2735 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_2
;
2736 else if (state
->srate
<= 7000000)
2737 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_5
;
2738 else if (state
->srate
<= 15000000)
2739 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_10
;
2740 else if (state
->srate
<= 25000000)
2741 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_20
;
2743 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_30
;
2746 } else if (modcod
<= STV090x_8PSK_910
) {
2748 if (state
->srate
<= 3000000)
2749 aclc
= car_loop
[i
].crl_pilots_on_2
;
2750 else if (state
->srate
<= 7000000)
2751 aclc
= car_loop
[i
].crl_pilots_on_5
;
2752 else if (state
->srate
<= 15000000)
2753 aclc
= car_loop
[i
].crl_pilots_on_10
;
2754 else if (state
->srate
<= 25000000)
2755 aclc
= car_loop
[i
].crl_pilots_on_20
;
2757 aclc
= car_loop
[i
].crl_pilots_on_30
;
2759 if (state
->srate
<= 3000000)
2760 aclc
= car_loop
[i
].crl_pilots_off_2
;
2761 else if (state
->srate
<= 7000000)
2762 aclc
= car_loop
[i
].crl_pilots_off_5
;
2763 else if (state
->srate
<= 15000000)
2764 aclc
= car_loop
[i
].crl_pilots_off_10
;
2765 else if (state
->srate
<= 25000000)
2766 aclc
= car_loop
[i
].crl_pilots_off_20
;
2768 aclc
= car_loop
[i
].crl_pilots_off_30
;
2770 } else { /* 16APSK and 32APSK */
2771 if (state
->srate
<= 3000000)
2772 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_2
;
2773 else if (state
->srate
<= 7000000)
2774 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_5
;
2775 else if (state
->srate
<= 15000000)
2776 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_10
;
2777 else if (state
->srate
<= 25000000)
2778 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_20
;
2780 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_30
;
2786 static u8
stv090x_optimize_carloop_short(struct stv090x_state
*state
)
2788 struct stv090x_short_frame_crloop
*short_crl
= NULL
;
2792 switch (state
->modulation
) {
2800 case STV090x_16APSK
:
2803 case STV090x_32APSK
:
2808 if (state
->internal
->dev_ver
>= 0x30) {
2809 /* Cut 3.0 and up */
2810 short_crl
= stv090x_s2_short_crl_cut30
;
2812 /* Cut 2.0 and up: we don't support cuts older than 2.0 */
2813 short_crl
= stv090x_s2_short_crl_cut20
;
2816 if (state
->srate
<= 3000000)
2817 aclc
= short_crl
[index
].crl_2
;
2818 else if (state
->srate
<= 7000000)
2819 aclc
= short_crl
[index
].crl_5
;
2820 else if (state
->srate
<= 15000000)
2821 aclc
= short_crl
[index
].crl_10
;
2822 else if (state
->srate
<= 25000000)
2823 aclc
= short_crl
[index
].crl_20
;
2825 aclc
= short_crl
[index
].crl_30
;
2830 static int stv090x_optimize_track(struct stv090x_state
*state
)
2832 struct dvb_frontend
*fe
= &state
->frontend
;
2834 enum stv090x_rolloff rolloff
;
2835 enum stv090x_modcod modcod
;
2837 s32 srate
, pilots
, aclc
, f_1
, f_0
, i
= 0, blind_tune
= 0;
2840 srate
= stv090x_get_srate(state
, state
->internal
->mclk
);
2841 srate
+= stv090x_get_tmgoffst(state
, srate
);
2843 switch (state
->delsys
) {
2846 if (state
->search_mode
== STV090x_SEARCH_AUTO
) {
2847 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2848 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
2849 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
2850 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2853 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
2854 STV090x_SETFIELD_Px(reg
, ROLLOFF_CONTROL_FIELD
, state
->rolloff
);
2855 STV090x_SETFIELD_Px(reg
, MANUAL_SXROLLOFF_FIELD
, 0x01);
2856 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
2859 if (state
->internal
->dev_ver
>= 0x30) {
2860 if (stv090x_get_viterbi(state
) < 0)
2863 if (state
->fec
== STV090x_PR12
) {
2864 if (STV090x_WRITE_DEMOD(state
, GAUSSR0
, 0x98) < 0)
2866 if (STV090x_WRITE_DEMOD(state
, CCIR0
, 0x18) < 0)
2869 if (STV090x_WRITE_DEMOD(state
, GAUSSR0
, 0x18) < 0)
2871 if (STV090x_WRITE_DEMOD(state
, CCIR0
, 0x18) < 0)
2876 if (STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x75) < 0)
2881 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2882 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 0);
2883 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
2884 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2886 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0) < 0)
2888 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0) < 0)
2890 if (state
->frame_len
== STV090x_LONG_FRAME
) {
2891 reg
= STV090x_READ_DEMOD(state
, DMDMODCOD
);
2892 modcod
= STV090x_GETFIELD_Px(reg
, DEMOD_MODCOD_FIELD
);
2893 pilots
= STV090x_GETFIELD_Px(reg
, DEMOD_TYPE_FIELD
) & 0x01;
2894 aclc
= stv090x_optimize_carloop(state
, modcod
, pilots
);
2895 if (modcod
<= STV090x_QPSK_910
) {
2896 STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, aclc
);
2897 } else if (modcod
<= STV090x_8PSK_910
) {
2898 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2900 if (STV090x_WRITE_DEMOD(state
, ACLC2S28
, aclc
) < 0)
2903 if ((state
->demod_mode
== STV090x_SINGLE
) && (modcod
> STV090x_8PSK_910
)) {
2904 if (modcod
<= STV090x_16APSK_910
) {
2905 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2907 if (STV090x_WRITE_DEMOD(state
, ACLC2S216A
, aclc
) < 0)
2910 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2912 if (STV090x_WRITE_DEMOD(state
, ACLC2S232A
, aclc
) < 0)
2917 /*Carrier loop setting for short frame*/
2918 aclc
= stv090x_optimize_carloop_short(state
);
2919 if (state
->modulation
== STV090x_QPSK
) {
2920 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, aclc
) < 0)
2922 } else if (state
->modulation
== STV090x_8PSK
) {
2923 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2925 if (STV090x_WRITE_DEMOD(state
, ACLC2S28
, aclc
) < 0)
2927 } else if (state
->modulation
== STV090x_16APSK
) {
2928 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2930 if (STV090x_WRITE_DEMOD(state
, ACLC2S216A
, aclc
) < 0)
2932 } else if (state
->modulation
== STV090x_32APSK
) {
2933 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2935 if (STV090x_WRITE_DEMOD(state
, ACLC2S232A
, aclc
) < 0)
2940 STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x67); /* PER */
2943 case STV090x_UNKNOWN
:
2945 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2946 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
2947 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
2948 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2953 f_1
= STV090x_READ_DEMOD(state
, CFR2
);
2954 f_0
= STV090x_READ_DEMOD(state
, CFR1
);
2955 reg
= STV090x_READ_DEMOD(state
, TMGOBS
);
2956 rolloff
= STV090x_GETFIELD_Px(reg
, ROLLOFF_STATUS_FIELD
);
2958 if (state
->algo
== STV090x_BLIND_SEARCH
) {
2959 STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x00);
2960 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2961 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 0x00);
2962 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0x00);
2963 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2965 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc1) < 0)
2968 if (stv090x_set_srate(state
, srate
) < 0)
2972 if (stv090x_dvbs_track_crl(state
) < 0)
2976 if (state
->internal
->dev_ver
>= 0x20) {
2977 if ((state
->search_mode
== STV090x_SEARCH_DVBS1
) ||
2978 (state
->search_mode
== STV090x_SEARCH_DSS
) ||
2979 (state
->search_mode
== STV090x_SEARCH_AUTO
)) {
2981 if (STV090x_WRITE_DEMOD(state
, VAVSRVIT
, 0x0a) < 0)
2983 if (STV090x_WRITE_DEMOD(state
, VITSCALE
, 0x00) < 0)
2988 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
2991 /* AUTO tracking MODE */
2992 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x80) < 0)
2994 /* AUTO tracking MODE */
2995 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, 0x80) < 0)
2998 if ((state
->internal
->dev_ver
>= 0x20) || (blind_tune
== 1) ||
2999 (state
->srate
< 10000000)) {
3000 /* update initial carrier freq with the found freq offset */
3001 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, f_1
) < 0)
3003 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, f_0
) < 0)
3005 state
->tuner_bw
= stv090x_car_width(srate
, state
->rolloff
) + 10000000;
3007 if ((state
->internal
->dev_ver
>= 0x20) || (blind_tune
== 1)) {
3009 if (state
->algo
!= STV090x_WARM_SEARCH
) {
3011 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3014 if (state
->config
->tuner_set_bandwidth
) {
3015 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
3019 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3024 if ((state
->algo
== STV090x_BLIND_SEARCH
) || (state
->srate
< 10000000))
3025 msleep(50); /* blind search: wait 50ms for SR stabilization */
3029 stv090x_get_lock_tmg(state
);
3031 if (!(stv090x_get_dmdlock(state
, (state
->DemodTimeout
/ 2)))) {
3032 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
3034 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, f_1
) < 0)
3036 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, f_0
) < 0)
3038 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0)
3043 while ((!(stv090x_get_dmdlock(state
, (state
->DemodTimeout
/ 2)))) && (i
<= 2)) {
3045 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
3047 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, f_1
) < 0)
3049 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, f_0
) < 0)
3051 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0)
3059 if (state
->internal
->dev_ver
>= 0x20) {
3060 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x49) < 0)
3064 if ((state
->delsys
== STV090x_DVBS1
) || (state
->delsys
== STV090x_DSS
))
3065 stv090x_set_vit_thtracq(state
);
3070 stv090x_i2c_gate_ctrl(state
, 0);
3072 dprintk(FE_ERROR
, 1, "I/O error");
3076 static int stv090x_get_feclock(struct stv090x_state
*state
, s32 timeout
)
3078 s32 timer
= 0, lock
= 0, stat
;
3081 while ((timer
< timeout
) && (!lock
)) {
3082 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
3083 stat
= STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
);
3086 case 0: /* searching */
3087 case 1: /* first PLH detected */
3092 case 2: /* DVB-S2 mode */
3093 reg
= STV090x_READ_DEMOD(state
, PDELSTATUS1
);
3094 lock
= STV090x_GETFIELD_Px(reg
, PKTDELIN_LOCK_FIELD
);
3097 case 3: /* DVB-S1/legacy mode */
3098 reg
= STV090x_READ_DEMOD(state
, VSTATUSVIT
);
3099 lock
= STV090x_GETFIELD_Px(reg
, LOCKEDVIT_FIELD
);
3110 static int stv090x_get_lock(struct stv090x_state
*state
, s32 timeout_dmd
, s32 timeout_fec
)
3116 lock
= stv090x_get_dmdlock(state
, timeout_dmd
);
3118 lock
= stv090x_get_feclock(state
, timeout_fec
);
3123 while ((timer
< timeout_fec
) && (!lock
)) {
3124 reg
= STV090x_READ_DEMOD(state
, TSSTATUS
);
3125 lock
= STV090x_GETFIELD_Px(reg
, TSFIFO_LINEOK_FIELD
);
3134 static int stv090x_set_s2rolloff(struct stv090x_state
*state
)
3138 if (state
->internal
->dev_ver
<= 0x20) {
3139 /* rolloff to auto mode if DVBS2 */
3140 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
3141 STV090x_SETFIELD_Px(reg
, MANUAL_SXROLLOFF_FIELD
, 0x00);
3142 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
3145 /* DVB-S2 rolloff to auto mode if DVBS2 */
3146 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
3147 STV090x_SETFIELD_Px(reg
, MANUAL_S2ROLLOFF_FIELD
, 0x00);
3148 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
3153 dprintk(FE_ERROR
, 1, "I/O error");
3158 static enum stv090x_signal_state
stv090x_algo(struct stv090x_state
*state
)
3160 struct dvb_frontend
*fe
= &state
->frontend
;
3161 enum stv090x_signal_state signal_state
= STV090x_NOCARRIER
;
3163 s32 agc1_power
, power_iq
= 0, i
;
3164 int lock
= 0, low_sr
= 0, no_signal
= 0;
3166 reg
= STV090x_READ_DEMOD(state
, TSCFGH
);
3167 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 1); /* Stop path 1 stream merger */
3168 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3171 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x5c) < 0) /* Demod stop */
3174 if (state
->internal
->dev_ver
>= 0x20) {
3175 if (state
->srate
> 5000000) {
3176 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x9e) < 0)
3179 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x82) < 0)
3184 stv090x_get_lock_tmg(state
);
3186 if (state
->algo
== STV090x_BLIND_SEARCH
) {
3187 state
->tuner_bw
= 2 * 36000000; /* wide bw for unknown srate */
3188 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc0) < 0) /* wider srate scan */
3190 if (STV090x_WRITE_DEMOD(state
, CORRELMANT
, 0x70) < 0)
3192 if (stv090x_set_srate(state
, 1000000) < 0) /* inital srate = 1Msps */
3196 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x20) < 0)
3198 if (STV090x_WRITE_DEMOD(state
, TMGCFG
, 0xd2) < 0)
3201 if (state
->srate
< 2000000) {
3203 if (STV090x_WRITE_DEMOD(state
, CORRELMANT
, 0x63) < 0)
3207 if (STV090x_WRITE_DEMOD(state
, CORRELMANT
, 0x70) < 0)
3211 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
3214 if (state
->internal
->dev_ver
>= 0x20) {
3215 if (STV090x_WRITE_DEMOD(state
, KREFTMG
, 0x5a) < 0)
3217 if (state
->algo
== STV090x_COLD_SEARCH
)
3218 state
->tuner_bw
= (15 * (stv090x_car_width(state
->srate
, state
->rolloff
) + 10000000)) / 10;
3219 else if (state
->algo
== STV090x_WARM_SEARCH
)
3220 state
->tuner_bw
= stv090x_car_width(state
->srate
, state
->rolloff
) + 10000000;
3223 /* if cold start or warm (Symbolrate is known)
3224 * use a Narrow symbol rate scan range
3226 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc1) < 0) /* narrow srate scan */
3229 if (stv090x_set_srate(state
, state
->srate
) < 0)
3232 if (stv090x_set_max_srate(state
, state
->internal
->mclk
,
3235 if (stv090x_set_min_srate(state
, state
->internal
->mclk
,
3239 if (state
->srate
>= 10000000)
3246 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3249 if (state
->config
->tuner_set_bbgain
) {
3250 reg
= state
->config
->tuner_bbgain
;
3252 reg
= 10; /* default: 10dB */
3253 if (state
->config
->tuner_set_bbgain(fe
, reg
) < 0)
3257 if (state
->config
->tuner_set_frequency
) {
3258 if (state
->config
->tuner_set_frequency(fe
, state
->frequency
) < 0)
3262 if (state
->config
->tuner_set_bandwidth
) {
3263 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
3267 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3272 if (state
->config
->tuner_get_status
) {
3273 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3275 if (state
->config
->tuner_get_status(fe
, ®
) < 0)
3277 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3281 dprintk(FE_DEBUG
, 1, "Tuner phase locked");
3283 dprintk(FE_DEBUG
, 1, "Tuner unlocked");
3284 return STV090x_NOCARRIER
;
3289 agc1_power
= MAKEWORD16(STV090x_READ_DEMOD(state
, AGCIQIN1
),
3290 STV090x_READ_DEMOD(state
, AGCIQIN0
));
3292 if (agc1_power
== 0) {
3293 /* If AGC1 integrator value is 0
3294 * then read POWERI, POWERQ
3296 for (i
= 0; i
< 5; i
++) {
3297 power_iq
+= (STV090x_READ_DEMOD(state
, POWERI
) +
3298 STV090x_READ_DEMOD(state
, POWERQ
)) >> 1;
3303 if ((agc1_power
== 0) && (power_iq
< STV090x_IQPOWER_THRESHOLD
)) {
3304 dprintk(FE_ERROR
, 1, "No Signal: POWER_IQ=0x%02x", power_iq
);
3306 signal_state
= STV090x_NOAGC1
;
3308 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
3309 STV090x_SETFIELD_Px(reg
, SPECINV_CONTROL_FIELD
, state
->inversion
);
3311 if (state
->internal
->dev_ver
<= 0x20) {
3312 /* rolloff to auto mode if DVBS2 */
3313 STV090x_SETFIELD_Px(reg
, MANUAL_SXROLLOFF_FIELD
, 1);
3315 /* DVB-S2 rolloff to auto mode if DVBS2 */
3316 STV090x_SETFIELD_Px(reg
, MANUAL_S2ROLLOFF_FIELD
, 1);
3318 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
3321 if (stv090x_delivery_search(state
) < 0)
3324 if (state
->algo
!= STV090x_BLIND_SEARCH
) {
3325 if (stv090x_start_search(state
) < 0)
3330 if (signal_state
== STV090x_NOAGC1
)
3331 return signal_state
;
3333 if (state
->algo
== STV090x_BLIND_SEARCH
)
3334 lock
= stv090x_blind_search(state
);
3336 else if (state
->algo
== STV090x_COLD_SEARCH
)
3337 lock
= stv090x_get_coldlock(state
, state
->DemodTimeout
);
3339 else if (state
->algo
== STV090x_WARM_SEARCH
)
3340 lock
= stv090x_get_dmdlock(state
, state
->DemodTimeout
);
3342 if ((!lock
) && (state
->algo
== STV090x_COLD_SEARCH
)) {
3344 if (stv090x_chk_tmg(state
))
3345 lock
= stv090x_sw_algo(state
);
3350 signal_state
= stv090x_get_sig_params(state
);
3352 if ((lock
) && (signal_state
== STV090x_RANGEOK
)) { /* signal within Range */
3353 stv090x_optimize_track(state
);
3355 if (state
->internal
->dev_ver
>= 0x20) {
3356 /* >= Cut 2.0 :release TS reset after
3357 * demod lock and optimized Tracking
3359 reg
= STV090x_READ_DEMOD(state
, TSCFGH
);
3360 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0); /* release merger reset */
3361 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3366 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 1); /* merger reset */
3367 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3370 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0); /* release merger reset */
3371 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3375 lock
= stv090x_get_lock(state
, state
->FecTimeout
,
3378 if (state
->delsys
== STV090x_DVBS2
) {
3379 stv090x_set_s2rolloff(state
);
3381 reg
= STV090x_READ_DEMOD(state
, PDELCTRL2
);
3382 STV090x_SETFIELD_Px(reg
, RESET_UPKO_COUNT
, 1);
3383 if (STV090x_WRITE_DEMOD(state
, PDELCTRL2
, reg
) < 0)
3385 /* Reset DVBS2 packet delinator error counter */
3386 reg
= STV090x_READ_DEMOD(state
, PDELCTRL2
);
3387 STV090x_SETFIELD_Px(reg
, RESET_UPKO_COUNT
, 0);
3388 if (STV090x_WRITE_DEMOD(state
, PDELCTRL2
, reg
) < 0)
3391 if (STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x67) < 0) /* PER */
3394 if (STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x75) < 0)
3397 /* Reset the Total packet counter */
3398 if (STV090x_WRITE_DEMOD(state
, FBERCPT4
, 0x00) < 0)
3400 /* Reset the packet Error counter2 */
3401 if (STV090x_WRITE_DEMOD(state
, ERRCTRL2
, 0xc1) < 0)
3404 signal_state
= STV090x_NODATA
;
3405 no_signal
= stv090x_chk_signal(state
);
3408 return signal_state
;
3411 stv090x_i2c_gate_ctrl(state
, 0);
3413 dprintk(FE_ERROR
, 1, "I/O error");
3417 static enum dvbfe_search
stv090x_search(struct dvb_frontend
*fe
, struct dvb_frontend_parameters
*p
)
3419 struct stv090x_state
*state
= fe
->demodulator_priv
;
3420 struct dtv_frontend_properties
*props
= &fe
->dtv_property_cache
;
3422 if (p
->frequency
== 0)
3423 return DVBFE_ALGO_SEARCH_INVALID
;
3425 state
->delsys
= props
->delivery_system
;
3426 state
->frequency
= p
->frequency
;
3427 state
->srate
= p
->u
.qpsk
.symbol_rate
;
3428 state
->search_mode
= STV090x_SEARCH_AUTO
;
3429 state
->algo
= STV090x_COLD_SEARCH
;
3430 state
->fec
= STV090x_PRERR
;
3431 if (state
->srate
> 10000000) {
3432 dprintk(FE_DEBUG
, 1, "Search range: 10 MHz");
3433 state
->search_range
= 10000000;
3435 dprintk(FE_DEBUG
, 1, "Search range: 5 MHz");
3436 state
->search_range
= 5000000;
3439 if (stv090x_algo(state
) == STV090x_RANGEOK
) {
3440 dprintk(FE_DEBUG
, 1, "Search success!");
3441 return DVBFE_ALGO_SEARCH_SUCCESS
;
3443 dprintk(FE_DEBUG
, 1, "Search failed!");
3444 return DVBFE_ALGO_SEARCH_FAILED
;
3447 return DVBFE_ALGO_SEARCH_ERROR
;
3450 static int stv090x_read_status(struct dvb_frontend
*fe
, enum fe_status
*status
)
3452 struct stv090x_state
*state
= fe
->demodulator_priv
;
3456 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
3457 search_state
= STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
);
3459 switch (search_state
) {
3460 case 0: /* searching */
3461 case 1: /* first PLH detected */
3463 dprintk(FE_DEBUG
, 1, "Status: Unlocked (Searching ..)");
3467 case 2: /* DVB-S2 mode */
3468 dprintk(FE_DEBUG
, 1, "Delivery system: DVB-S2");
3469 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3470 if (STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
)) {
3471 reg
= STV090x_READ_DEMOD(state
, PDELSTATUS1
);
3472 if (STV090x_GETFIELD_Px(reg
, PKTDELIN_LOCK_FIELD
)) {
3473 reg
= STV090x_READ_DEMOD(state
, TSSTATUS
);
3474 if (STV090x_GETFIELD_Px(reg
, TSFIFO_LINEOK_FIELD
)) {
3475 *status
= FE_HAS_SIGNAL
|
3485 case 3: /* DVB-S1/legacy mode */
3486 dprintk(FE_DEBUG
, 1, "Delivery system: DVB-S");
3487 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3488 if (STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
)) {
3489 reg
= STV090x_READ_DEMOD(state
, VSTATUSVIT
);
3490 if (STV090x_GETFIELD_Px(reg
, LOCKEDVIT_FIELD
)) {
3491 reg
= STV090x_READ_DEMOD(state
, TSSTATUS
);
3492 if (STV090x_GETFIELD_Px(reg
, TSFIFO_LINEOK_FIELD
)) {
3493 *status
= FE_HAS_SIGNAL
|
3507 static int stv090x_read_per(struct dvb_frontend
*fe
, u32
*per
)
3509 struct stv090x_state
*state
= fe
->demodulator_priv
;
3511 s32 count_4
, count_3
, count_2
, count_1
, count_0
, count
;
3513 enum fe_status status
;
3515 stv090x_read_status(fe
, &status
);
3516 if (!(status
& FE_HAS_LOCK
)) {
3517 *per
= 1 << 23; /* Max PER */
3520 reg
= STV090x_READ_DEMOD(state
, ERRCNT22
);
3521 h
= STV090x_GETFIELD_Px(reg
, ERR_CNT2_FIELD
);
3523 reg
= STV090x_READ_DEMOD(state
, ERRCNT21
);
3524 m
= STV090x_GETFIELD_Px(reg
, ERR_CNT21_FIELD
);
3526 reg
= STV090x_READ_DEMOD(state
, ERRCNT20
);
3527 l
= STV090x_GETFIELD_Px(reg
, ERR_CNT20_FIELD
);
3529 *per
= ((h
<< 16) | (m
<< 8) | l
);
3531 count_4
= STV090x_READ_DEMOD(state
, FBERCPT4
);
3532 count_3
= STV090x_READ_DEMOD(state
, FBERCPT3
);
3533 count_2
= STV090x_READ_DEMOD(state
, FBERCPT2
);
3534 count_1
= STV090x_READ_DEMOD(state
, FBERCPT1
);
3535 count_0
= STV090x_READ_DEMOD(state
, FBERCPT0
);
3537 if ((!count_4
) && (!count_3
)) {
3538 count
= (count_2
& 0xff) << 16;
3539 count
|= (count_1
& 0xff) << 8;
3540 count
|= count_0
& 0xff;
3547 if (STV090x_WRITE_DEMOD(state
, FBERCPT4
, 0) < 0)
3549 if (STV090x_WRITE_DEMOD(state
, ERRCTRL2
, 0xc1) < 0)
3554 dprintk(FE_ERROR
, 1, "I/O error");
3558 static int stv090x_table_lookup(const struct stv090x_tab
*tab
, int max
, int val
)
3563 if ((val
>= tab
[min
].read
&& val
< tab
[max
].read
) ||
3564 (val
>= tab
[max
].read
&& val
< tab
[min
].read
)) {
3565 while ((max
- min
) > 1) {
3566 med
= (max
+ min
) / 2;
3567 if ((val
>= tab
[min
].read
&& val
< tab
[med
].read
) ||
3568 (val
>= tab
[med
].read
&& val
< tab
[min
].read
))
3573 res
= ((val
- tab
[min
].read
) *
3574 (tab
[max
].real
- tab
[min
].real
) /
3575 (tab
[max
].read
- tab
[min
].read
)) +
3578 if (tab
[min
].read
< tab
[max
].read
) {
3579 if (val
< tab
[min
].read
)
3580 res
= tab
[min
].real
;
3581 else if (val
>= tab
[max
].read
)
3582 res
= tab
[max
].real
;
3584 if (val
>= tab
[min
].read
)
3585 res
= tab
[min
].real
;
3586 else if (val
< tab
[max
].read
)
3587 res
= tab
[max
].real
;
3594 static int stv090x_read_signal_strength(struct dvb_frontend
*fe
, u16
*strength
)
3596 struct stv090x_state
*state
= fe
->demodulator_priv
;
3598 s32 agc_0
, agc_1
, agc
;
3601 reg
= STV090x_READ_DEMOD(state
, AGCIQIN1
);
3602 agc_1
= STV090x_GETFIELD_Px(reg
, AGCIQ_VALUE_FIELD
);
3603 reg
= STV090x_READ_DEMOD(state
, AGCIQIN0
);
3604 agc_0
= STV090x_GETFIELD_Px(reg
, AGCIQ_VALUE_FIELD
);
3605 agc
= MAKEWORD16(agc_1
, agc_0
);
3607 str
= stv090x_table_lookup(stv090x_rf_tab
,
3608 ARRAY_SIZE(stv090x_rf_tab
) - 1, agc
);
3609 if (agc
> stv090x_rf_tab
[0].read
)
3611 else if (agc
< stv090x_rf_tab
[ARRAY_SIZE(stv090x_rf_tab
) - 1].read
)
3613 *strength
= (str
+ 100) * 0xFFFF / 100;
3618 static int stv090x_read_cnr(struct dvb_frontend
*fe
, u16
*cnr
)
3620 struct stv090x_state
*state
= fe
->demodulator_priv
;
3621 u32 reg_0
, reg_1
, reg
, i
;
3622 s32 val_0
, val_1
, val
= 0;
3627 switch (state
->delsys
) {
3629 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3630 lock_f
= STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
);
3633 for (i
= 0; i
< 16; i
++) {
3634 reg_1
= STV090x_READ_DEMOD(state
, NNOSPLHT1
);
3635 val_1
= STV090x_GETFIELD_Px(reg_1
, NOSPLHT_NORMED_FIELD
);
3636 reg_0
= STV090x_READ_DEMOD(state
, NNOSPLHT0
);
3637 val_0
= STV090x_GETFIELD_Px(reg_0
, NOSPLHT_NORMED_FIELD
);
3638 val
+= MAKEWORD16(val_1
, val_0
);
3642 last
= ARRAY_SIZE(stv090x_s2cn_tab
) - 1;
3643 div
= stv090x_s2cn_tab
[0].read
-
3644 stv090x_s2cn_tab
[last
].read
;
3645 *cnr
= 0xFFFF - ((val
* 0xFFFF) / div
);
3651 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3652 lock_f
= STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
);
3655 for (i
= 0; i
< 16; i
++) {
3656 reg_1
= STV090x_READ_DEMOD(state
, NOSDATAT1
);
3657 val_1
= STV090x_GETFIELD_Px(reg_1
, NOSDATAT_UNNORMED_FIELD
);
3658 reg_0
= STV090x_READ_DEMOD(state
, NOSDATAT0
);
3659 val_0
= STV090x_GETFIELD_Px(reg_0
, NOSDATAT_UNNORMED_FIELD
);
3660 val
+= MAKEWORD16(val_1
, val_0
);
3664 last
= ARRAY_SIZE(stv090x_s1cn_tab
) - 1;
3665 div
= stv090x_s1cn_tab
[0].read
-
3666 stv090x_s1cn_tab
[last
].read
;
3667 *cnr
= 0xFFFF - ((val
* 0xFFFF) / div
);
3677 static int stv090x_set_tone(struct dvb_frontend
*fe
, fe_sec_tone_mode_t tone
)
3679 struct stv090x_state
*state
= fe
->demodulator_priv
;
3682 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3685 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
, 0);
3686 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3687 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3689 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 0);
3690 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3695 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
, 0);
3696 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3697 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3706 dprintk(FE_ERROR
, 1, "I/O error");
3711 static enum dvbfe_algo
stv090x_frontend_algo(struct dvb_frontend
*fe
)
3713 return DVBFE_ALGO_CUSTOM
;
3716 static int stv090x_send_diseqc_msg(struct dvb_frontend
*fe
, struct dvb_diseqc_master_cmd
*cmd
)
3718 struct stv090x_state
*state
= fe
->demodulator_priv
;
3719 u32 reg
, idle
= 0, fifo_full
= 1;
3722 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3724 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
,
3725 (state
->config
->diseqc_envelope_mode
) ? 4 : 2);
3726 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3727 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3729 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 0);
3730 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3733 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 1);
3734 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3737 for (i
= 0; i
< cmd
->msg_len
; i
++) {
3740 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3741 fifo_full
= STV090x_GETFIELD_Px(reg
, FIFO_FULL_FIELD
);
3744 if (STV090x_WRITE_DEMOD(state
, DISTXDATA
, cmd
->msg
[i
]) < 0)
3747 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3748 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 0);
3749 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3754 while ((!idle
) && (i
< 10)) {
3755 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3756 idle
= STV090x_GETFIELD_Px(reg
, TX_IDLE_FIELD
);
3763 dprintk(FE_ERROR
, 1, "I/O error");
3767 static int stv090x_send_diseqc_burst(struct dvb_frontend
*fe
, fe_sec_mini_cmd_t burst
)
3769 struct stv090x_state
*state
= fe
->demodulator_priv
;
3770 u32 reg
, idle
= 0, fifo_full
= 1;
3774 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3776 if (burst
== SEC_MINI_A
) {
3777 mode
= (state
->config
->diseqc_envelope_mode
) ? 5 : 3;
3780 mode
= (state
->config
->diseqc_envelope_mode
) ? 4 : 2;
3784 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
, mode
);
3785 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3786 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3788 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 0);
3789 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3792 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 1);
3793 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3797 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3798 fifo_full
= STV090x_GETFIELD_Px(reg
, FIFO_FULL_FIELD
);
3801 if (STV090x_WRITE_DEMOD(state
, DISTXDATA
, value
) < 0)
3804 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3805 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 0);
3806 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3811 while ((!idle
) && (i
< 10)) {
3812 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3813 idle
= STV090x_GETFIELD_Px(reg
, TX_IDLE_FIELD
);
3820 dprintk(FE_ERROR
, 1, "I/O error");
3824 static int stv090x_recv_slave_reply(struct dvb_frontend
*fe
, struct dvb_diseqc_slave_reply
*reply
)
3826 struct stv090x_state
*state
= fe
->demodulator_priv
;
3827 u32 reg
= 0, i
= 0, rx_end
= 0;
3829 while ((rx_end
!= 1) && (i
< 10)) {
3832 reg
= STV090x_READ_DEMOD(state
, DISRX_ST0
);
3833 rx_end
= STV090x_GETFIELD_Px(reg
, RX_END_FIELD
);
3837 reply
->msg_len
= STV090x_GETFIELD_Px(reg
, FIFO_BYTENBR_FIELD
);
3838 for (i
= 0; i
< reply
->msg_len
; i
++)
3839 reply
->msg
[i
] = STV090x_READ_DEMOD(state
, DISRXDATA
);
3845 static int stv090x_sleep(struct dvb_frontend
*fe
)
3847 struct stv090x_state
*state
= fe
->demodulator_priv
;
3850 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3853 if (state
->config
->tuner_sleep
) {
3854 if (state
->config
->tuner_sleep(fe
) < 0)
3858 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3861 dprintk(FE_DEBUG
, 1, "Set %s to sleep",
3862 state
->device
== STV0900
? "STV0900" : "STV0903");
3864 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
3865 STV090x_SETFIELD(reg
, STANDBY_FIELD
, 0x01);
3866 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
, reg
) < 0)
3869 reg
= stv090x_read_reg(state
, STV090x_TSTTNR1
);
3870 STV090x_SETFIELD(reg
, ADC1_PON_FIELD
, 0);
3871 if (stv090x_write_reg(state
, STV090x_TSTTNR1
, reg
) < 0)
3877 stv090x_i2c_gate_ctrl(state
, 0);
3879 dprintk(FE_ERROR
, 1, "I/O error");
3883 static int stv090x_wakeup(struct dvb_frontend
*fe
)
3885 struct stv090x_state
*state
= fe
->demodulator_priv
;
3888 dprintk(FE_DEBUG
, 1, "Wake %s from standby",
3889 state
->device
== STV0900
? "STV0900" : "STV0903");
3891 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
3892 STV090x_SETFIELD(reg
, STANDBY_FIELD
, 0x00);
3893 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
, reg
) < 0)
3896 reg
= stv090x_read_reg(state
, STV090x_TSTTNR1
);
3897 STV090x_SETFIELD(reg
, ADC1_PON_FIELD
, 1);
3898 if (stv090x_write_reg(state
, STV090x_TSTTNR1
, reg
) < 0)
3903 dprintk(FE_ERROR
, 1, "I/O error");
3907 static void stv090x_release(struct dvb_frontend
*fe
)
3909 struct stv090x_state
*state
= fe
->demodulator_priv
;
3911 state
->internal
->num_used
--;
3912 if (state
->internal
->num_used
<= 0) {
3914 dprintk(FE_ERROR
, 1, "Actually removing");
3916 remove_dev(state
->internal
);
3917 kfree(state
->internal
);
3923 static int stv090x_ldpc_mode(struct stv090x_state
*state
, enum stv090x_mode ldpc_mode
)
3927 reg
= stv090x_read_reg(state
, STV090x_GENCFG
);
3929 switch (ldpc_mode
) {
3932 if ((state
->demod_mode
!= STV090x_DUAL
) || (STV090x_GETFIELD(reg
, DDEMOD_FIELD
) != 1)) {
3933 /* set LDPC to dual mode */
3934 if (stv090x_write_reg(state
, STV090x_GENCFG
, 0x1d) < 0)
3937 state
->demod_mode
= STV090x_DUAL
;
3939 reg
= stv090x_read_reg(state
, STV090x_TSTRES0
);
3940 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x1);
3941 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
3943 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x0);
3944 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
3947 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
3949 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xff) < 0)
3951 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0xff) < 0)
3953 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0xff) < 0)
3955 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0xff) < 0)
3957 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0xff) < 0)
3959 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0xff) < 0)
3962 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0xcc) < 0)
3964 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0xcc) < 0)
3966 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0xcc) < 0)
3968 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0xcc) < 0)
3970 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0xcc) < 0)
3972 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0xcc) < 0)
3974 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0xcc) < 0)
3977 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0xff) < 0)
3979 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0xcf) < 0)
3984 case STV090x_SINGLE
:
3985 if (stv090x_stop_modcod(state
) < 0)
3987 if (stv090x_activate_modcod_single(state
) < 0)
3990 if (state
->demod
== STV090x_DEMODULATOR_1
) {
3991 if (stv090x_write_reg(state
, STV090x_GENCFG
, 0x06) < 0) /* path 2 */
3994 if (stv090x_write_reg(state
, STV090x_GENCFG
, 0x04) < 0) /* path 1 */
3998 reg
= stv090x_read_reg(state
, STV090x_TSTRES0
);
3999 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x1);
4000 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
4002 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x0);
4003 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
4006 reg
= STV090x_READ_DEMOD(state
, PDELCTRL1
);
4007 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0x01);
4008 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
4010 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0x00);
4011 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
4018 dprintk(FE_ERROR
, 1, "I/O error");
4022 /* return (Hz), clk in Hz*/
4023 static u32
stv090x_get_mclk(struct stv090x_state
*state
)
4025 const struct stv090x_config
*config
= state
->config
;
4029 div
= stv090x_read_reg(state
, STV090x_NCOARSE
);
4030 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
4031 ratio
= STV090x_GETFIELD(reg
, SELX1RATIO_FIELD
) ? 4 : 6;
4033 return (div
+ 1) * config
->xtal
/ ratio
; /* kHz */
4036 static int stv090x_set_mclk(struct stv090x_state
*state
, u32 mclk
, u32 clk
)
4038 const struct stv090x_config
*config
= state
->config
;
4039 u32 reg
, div
, clk_sel
;
4041 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
4042 clk_sel
= ((STV090x_GETFIELD(reg
, SELX1RATIO_FIELD
) == 1) ? 4 : 6);
4044 div
= ((clk_sel
* mclk
) / config
->xtal
) - 1;
4046 reg
= stv090x_read_reg(state
, STV090x_NCOARSE
);
4047 STV090x_SETFIELD(reg
, M_DIV_FIELD
, div
);
4048 if (stv090x_write_reg(state
, STV090x_NCOARSE
, reg
) < 0)
4051 state
->internal
->mclk
= stv090x_get_mclk(state
);
4053 /*Set the DiseqC frequency to 22KHz */
4054 div
= state
->internal
->mclk
/ 704000;
4055 if (STV090x_WRITE_DEMOD(state
, F22TX
, div
) < 0)
4057 if (STV090x_WRITE_DEMOD(state
, F22RX
, div
) < 0)
4062 dprintk(FE_ERROR
, 1, "I/O error");
4066 static int stv090x_set_tspath(struct stv090x_state
*state
)
4070 if (state
->internal
->dev_ver
>= 0x20) {
4071 switch (state
->config
->ts1_mode
) {
4072 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4073 case STV090x_TSMODE_DVBCI
:
4074 switch (state
->config
->ts2_mode
) {
4075 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4076 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4078 stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x00);
4081 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4082 case STV090x_TSMODE_DVBCI
:
4083 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x06) < 0) /* Mux'd stream mode */
4085 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGM
);
4086 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4087 if (stv090x_write_reg(state
, STV090x_P1_TSCFGM
, reg
) < 0)
4089 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGM
);
4090 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4091 if (stv090x_write_reg(state
, STV090x_P2_TSCFGM
, reg
) < 0)
4093 if (stv090x_write_reg(state
, STV090x_P1_TSSPEED
, 0x14) < 0)
4095 if (stv090x_write_reg(state
, STV090x_P2_TSSPEED
, 0x28) < 0)
4101 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4102 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4104 switch (state
->config
->ts2_mode
) {
4105 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4106 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4108 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x0c) < 0)
4112 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4113 case STV090x_TSMODE_DVBCI
:
4114 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x0a) < 0)
4121 switch (state
->config
->ts1_mode
) {
4122 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4123 case STV090x_TSMODE_DVBCI
:
4124 switch (state
->config
->ts2_mode
) {
4125 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4126 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4128 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x10);
4131 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4132 case STV090x_TSMODE_DVBCI
:
4133 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x16);
4134 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGM
);
4135 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4136 if (stv090x_write_reg(state
, STV090x_P1_TSCFGM
, reg
) < 0)
4138 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGM
);
4139 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 0);
4140 if (stv090x_write_reg(state
, STV090x_P1_TSCFGM
, reg
) < 0)
4142 if (stv090x_write_reg(state
, STV090x_P1_TSSPEED
, 0x14) < 0)
4144 if (stv090x_write_reg(state
, STV090x_P2_TSSPEED
, 0x28) < 0)
4150 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4151 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4153 switch (state
->config
->ts2_mode
) {
4154 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4155 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4157 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x14);
4160 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4161 case STV090x_TSMODE_DVBCI
:
4162 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x12);
4169 switch (state
->config
->ts1_mode
) {
4170 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4171 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4172 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4173 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4174 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4178 case STV090x_TSMODE_DVBCI
:
4179 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4180 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4181 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4182 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4186 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4187 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4188 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4189 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4190 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4194 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4195 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4196 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4197 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4198 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4206 switch (state
->config
->ts2_mode
) {
4207 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4208 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4209 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4210 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4211 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4215 case STV090x_TSMODE_DVBCI
:
4216 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4217 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4218 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4219 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4223 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4224 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4225 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4226 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4227 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4231 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4232 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4233 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4234 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4235 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4243 if (state
->config
->ts1_clk
> 0) {
4246 switch (state
->config
->ts1_mode
) {
4247 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4248 case STV090x_TSMODE_DVBCI
:
4250 speed
= state
->internal
->mclk
/
4251 (state
->config
->ts1_clk
/ 4);
4257 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4258 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4259 speed
= state
->internal
->mclk
/
4260 (state
->config
->ts1_clk
/ 32);
4267 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGM
);
4268 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4269 if (stv090x_write_reg(state
, STV090x_P1_TSCFGM
, reg
) < 0)
4271 if (stv090x_write_reg(state
, STV090x_P1_TSSPEED
, speed
) < 0)
4275 if (state
->config
->ts2_clk
> 0) {
4278 switch (state
->config
->ts2_mode
) {
4279 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4280 case STV090x_TSMODE_DVBCI
:
4282 speed
= state
->internal
->mclk
/
4283 (state
->config
->ts2_clk
/ 4);
4289 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4290 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4291 speed
= state
->internal
->mclk
/
4292 (state
->config
->ts2_clk
/ 32);
4299 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGM
);
4300 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4301 if (stv090x_write_reg(state
, STV090x_P2_TSCFGM
, reg
) < 0)
4303 if (stv090x_write_reg(state
, STV090x_P2_TSSPEED
, speed
) < 0)
4307 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4308 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x01);
4309 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4311 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x00);
4312 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4315 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4316 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x01);
4317 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4319 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x00);
4320 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4325 dprintk(FE_ERROR
, 1, "I/O error");
4329 static int stv090x_init(struct dvb_frontend
*fe
)
4331 struct stv090x_state
*state
= fe
->demodulator_priv
;
4332 const struct stv090x_config
*config
= state
->config
;
4335 if (state
->internal
->mclk
== 0) {
4336 /* call tuner init to configure the tuner's clock output
4337 divider directly before setting up the master clock of
4339 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
4342 if (config
->tuner_init
) {
4343 if (config
->tuner_init(fe
) < 0)
4347 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
4350 stv090x_set_mclk(state
, 135000000, config
->xtal
); /* 135 Mhz */
4352 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
,
4353 0x20 | config
->clk_mode
) < 0)
4355 stv090x_get_mclk(state
);
4358 if (stv090x_wakeup(fe
) < 0) {
4359 dprintk(FE_ERROR
, 1, "Error waking device");
4363 if (stv090x_ldpc_mode(state
, state
->demod_mode
) < 0)
4366 reg
= STV090x_READ_DEMOD(state
, TNRCFG2
);
4367 STV090x_SETFIELD_Px(reg
, TUN_IQSWAP_FIELD
, state
->inversion
);
4368 if (STV090x_WRITE_DEMOD(state
, TNRCFG2
, reg
) < 0)
4370 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
4371 STV090x_SETFIELD_Px(reg
, ROLLOFF_CONTROL_FIELD
, state
->rolloff
);
4372 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
4375 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
4378 if (config
->tuner_set_mode
) {
4379 if (config
->tuner_set_mode(fe
, TUNER_WAKE
) < 0)
4383 if (config
->tuner_init
) {
4384 if (config
->tuner_init(fe
) < 0)
4388 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
4391 if (stv090x_set_tspath(state
) < 0)
4397 stv090x_i2c_gate_ctrl(state
, 0);
4399 dprintk(FE_ERROR
, 1, "I/O error");
4403 static int stv090x_setup(struct dvb_frontend
*fe
)
4405 struct stv090x_state
*state
= fe
->demodulator_priv
;
4406 const struct stv090x_config
*config
= state
->config
;
4407 const struct stv090x_reg
*stv090x_initval
= NULL
;
4408 const struct stv090x_reg
*stv090x_cut20_val
= NULL
;
4409 unsigned long t1_size
= 0, t2_size
= 0;
4414 if (state
->device
== STV0900
) {
4415 dprintk(FE_DEBUG
, 1, "Initializing STV0900");
4416 stv090x_initval
= stv0900_initval
;
4417 t1_size
= ARRAY_SIZE(stv0900_initval
);
4418 stv090x_cut20_val
= stv0900_cut20_val
;
4419 t2_size
= ARRAY_SIZE(stv0900_cut20_val
);
4420 } else if (state
->device
== STV0903
) {
4421 dprintk(FE_DEBUG
, 1, "Initializing STV0903");
4422 stv090x_initval
= stv0903_initval
;
4423 t1_size
= ARRAY_SIZE(stv0903_initval
);
4424 stv090x_cut20_val
= stv0903_cut20_val
;
4425 t2_size
= ARRAY_SIZE(stv0903_cut20_val
);
4431 if (stv090x_write_reg(state
, STV090x_P1_DMDISTATE
, 0x5c) < 0)
4433 if (stv090x_write_reg(state
, STV090x_P2_DMDISTATE
, 0x5c) < 0)
4438 /* Set No Tuner Mode */
4439 if (stv090x_write_reg(state
, STV090x_P1_TNRCFG
, 0x6c) < 0)
4441 if (stv090x_write_reg(state
, STV090x_P2_TNRCFG
, 0x6c) < 0)
4444 /* I2C repeater OFF */
4445 STV090x_SETFIELD_Px(reg
, ENARPT_LEVEL_FIELD
, config
->repeater_level
);
4446 if (stv090x_write_reg(state
, STV090x_P1_I2CRPT
, reg
) < 0)
4448 if (stv090x_write_reg(state
, STV090x_P2_I2CRPT
, reg
) < 0)
4451 if (stv090x_write_reg(state
, STV090x_NCOARSE
, 0x13) < 0) /* set PLL divider */
4454 if (stv090x_write_reg(state
, STV090x_I2CCFG
, 0x08) < 0) /* 1/41 oversampling */
4456 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
, 0x20 | config
->clk_mode
) < 0) /* enable PLL */
4461 dprintk(FE_DEBUG
, 1, "Setting up initial values");
4462 for (i
= 0; i
< t1_size
; i
++) {
4463 if (stv090x_write_reg(state
, stv090x_initval
[i
].addr
, stv090x_initval
[i
].data
) < 0)
4467 state
->internal
->dev_ver
= stv090x_read_reg(state
, STV090x_MID
);
4468 if (state
->internal
->dev_ver
>= 0x20) {
4469 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x0c) < 0)
4472 /* write cut20_val*/
4473 dprintk(FE_DEBUG
, 1, "Setting up Cut 2.0 initial values");
4474 for (i
= 0; i
< t2_size
; i
++) {
4475 if (stv090x_write_reg(state
, stv090x_cut20_val
[i
].addr
, stv090x_cut20_val
[i
].data
) < 0)
4479 } else if (state
->internal
->dev_ver
< 0x20) {
4480 dprintk(FE_ERROR
, 1, "ERROR: Unsupported Cut: 0x%02x!",
4481 state
->internal
->dev_ver
);
4484 } else if (state
->internal
->dev_ver
> 0x30) {
4485 /* we shouldn't bail out from here */
4486 dprintk(FE_ERROR
, 1, "INFO: Cut: 0x%02x probably incomplete support!",
4487 state
->internal
->dev_ver
);
4491 reg
= stv090x_read_reg(state
, STV090x_TSTTNR1
);
4492 STV090x_SETFIELD(reg
, ADC1_INMODE_FIELD
,
4493 (config
->adc1_range
== STV090x_ADC_1Vpp
) ? 0 : 1);
4494 if (stv090x_write_reg(state
, STV090x_TSTTNR1
, reg
) < 0)
4498 reg
= stv090x_read_reg(state
, STV090x_TSTTNR3
);
4499 STV090x_SETFIELD(reg
, ADC2_INMODE_FIELD
,
4500 (config
->adc2_range
== STV090x_ADC_1Vpp
) ? 0 : 1);
4501 if (stv090x_write_reg(state
, STV090x_TSTTNR3
, reg
) < 0)
4504 if (stv090x_write_reg(state
, STV090x_TSTRES0
, 0x80) < 0)
4506 if (stv090x_write_reg(state
, STV090x_TSTRES0
, 0x00) < 0)
4509 /* workaround for stuck DiSEqC output */
4510 if (config
->diseqc_envelope_mode
)
4511 stv090x_send_diseqc_burst(fe
, SEC_MINI_A
);
4515 dprintk(FE_ERROR
, 1, "I/O error");
4519 static struct dvb_frontend_ops stv090x_ops
= {
4522 .name
= "STV090x Multistandard",
4524 .frequency_min
= 950000,
4525 .frequency_max
= 2150000,
4526 .frequency_stepsize
= 0,
4527 .frequency_tolerance
= 0,
4528 .symbol_rate_min
= 1000000,
4529 .symbol_rate_max
= 45000000,
4530 .caps
= FE_CAN_INVERSION_AUTO
|
4533 FE_CAN_2G_MODULATION
4536 .release
= stv090x_release
,
4537 .init
= stv090x_init
,
4539 .sleep
= stv090x_sleep
,
4540 .get_frontend_algo
= stv090x_frontend_algo
,
4542 .diseqc_send_master_cmd
= stv090x_send_diseqc_msg
,
4543 .diseqc_send_burst
= stv090x_send_diseqc_burst
,
4544 .diseqc_recv_slave_reply
= stv090x_recv_slave_reply
,
4545 .set_tone
= stv090x_set_tone
,
4547 .search
= stv090x_search
,
4548 .read_status
= stv090x_read_status
,
4549 .read_ber
= stv090x_read_per
,
4550 .read_signal_strength
= stv090x_read_signal_strength
,
4551 .read_snr
= stv090x_read_cnr
4555 struct dvb_frontend
*stv090x_attach(const struct stv090x_config
*config
,
4556 struct i2c_adapter
*i2c
,
4557 enum stv090x_demodulator demod
)
4559 struct stv090x_state
*state
= NULL
;
4560 struct stv090x_dev
*temp_int
;
4562 state
= kzalloc(sizeof (struct stv090x_state
), GFP_KERNEL
);
4566 state
->verbose
= &verbose
;
4567 state
->config
= config
;
4569 state
->frontend
.ops
= stv090x_ops
;
4570 state
->frontend
.demodulator_priv
= state
;
4571 state
->demod
= demod
;
4572 state
->demod_mode
= config
->demod_mode
; /* Single or Dual mode */
4573 state
->device
= config
->device
;
4574 state
->rolloff
= STV090x_RO_35
; /* default */
4576 temp_int
= find_dev(state
->i2c
,
4577 state
->config
->address
);
4579 if ((temp_int
!= NULL
) && (state
->demod_mode
== STV090x_DUAL
)) {
4580 state
->internal
= temp_int
->internal
;
4581 state
->internal
->num_used
++;
4582 dprintk(FE_INFO
, 1, "Found Internal Structure!");
4583 dprintk(FE_ERROR
, 1, "Attaching %s demodulator(%d) Cut=0x%02x",
4584 state
->device
== STV0900
? "STV0900" : "STV0903",
4586 state
->internal
->dev_ver
);
4587 return &state
->frontend
;
4589 state
->internal
= kmalloc(sizeof(struct stv090x_internal
),
4591 temp_int
= append_internal(state
->internal
);
4592 state
->internal
->num_used
= 1;
4593 state
->internal
->mclk
= 0;
4594 state
->internal
->dev_ver
= 0;
4595 state
->internal
->i2c_adap
= state
->i2c
;
4596 state
->internal
->i2c_addr
= state
->config
->address
;
4597 dprintk(FE_INFO
, 1, "Create New Internal Structure!");
4600 mutex_init(&state
->internal
->demod_lock
);
4601 mutex_init(&state
->internal
->tuner_lock
);
4603 if (stv090x_sleep(&state
->frontend
) < 0) {
4604 dprintk(FE_ERROR
, 1, "Error putting device to sleep");
4608 if (stv090x_setup(&state
->frontend
) < 0) {
4609 dprintk(FE_ERROR
, 1, "Error setting up device");
4612 if (stv090x_wakeup(&state
->frontend
) < 0) {
4613 dprintk(FE_ERROR
, 1, "Error waking device");
4617 dprintk(FE_ERROR
, 1, "Attaching %s demodulator(%d) Cut=0x%02x",
4618 state
->device
== STV0900
? "STV0900" : "STV0903",
4620 state
->internal
->dev_ver
);
4622 return &state
->frontend
;
4628 EXPORT_SYMBOL(stv090x_attach
);
4629 MODULE_PARM_DESC(verbose
, "Set Verbosity level");
4630 MODULE_AUTHOR("Manu Abraham");
4631 MODULE_DESCRIPTION("STV090x Multi-Std Broadcast frontend");
4632 MODULE_LICENSE("GPL");