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 if (state
->config
->tuner_i2c_lock
)
772 state
->config
->tuner_i2c_lock(&state
->frontend
, 1);
774 mutex_lock(&state
->internal
->tuner_lock
);
777 reg
= STV090x_READ_DEMOD(state
, I2CRPT
);
779 dprintk(FE_DEBUG
, 1, "Enable Gate");
780 STV090x_SETFIELD_Px(reg
, I2CT_ON_FIELD
, 1);
781 if (STV090x_WRITE_DEMOD(state
, I2CRPT
, reg
) < 0)
785 dprintk(FE_DEBUG
, 1, "Disable Gate");
786 STV090x_SETFIELD_Px(reg
, I2CT_ON_FIELD
, 0);
787 if ((STV090x_WRITE_DEMOD(state
, I2CRPT
, reg
)) < 0)
792 if (state
->config
->tuner_i2c_lock
)
793 state
->config
->tuner_i2c_lock(&state
->frontend
, 0);
795 mutex_unlock(&state
->internal
->tuner_lock
);
800 dprintk(FE_ERROR
, 1, "I/O error");
801 if (state
->config
->tuner_i2c_lock
)
802 state
->config
->tuner_i2c_lock(&state
->frontend
, 0);
804 mutex_unlock(&state
->internal
->tuner_lock
);
808 static void stv090x_get_lock_tmg(struct stv090x_state
*state
)
810 switch (state
->algo
) {
811 case STV090x_BLIND_SEARCH
:
812 dprintk(FE_DEBUG
, 1, "Blind Search");
813 if (state
->srate
<= 1500000) { /*10Msps< SR <=15Msps*/
814 state
->DemodTimeout
= 1500;
815 state
->FecTimeout
= 400;
816 } else if (state
->srate
<= 5000000) { /*10Msps< SR <=15Msps*/
817 state
->DemodTimeout
= 1000;
818 state
->FecTimeout
= 300;
819 } else { /*SR >20Msps*/
820 state
->DemodTimeout
= 700;
821 state
->FecTimeout
= 100;
825 case STV090x_COLD_SEARCH
:
826 case STV090x_WARM_SEARCH
:
828 dprintk(FE_DEBUG
, 1, "Normal Search");
829 if (state
->srate
<= 1000000) { /*SR <=1Msps*/
830 state
->DemodTimeout
= 4500;
831 state
->FecTimeout
= 1700;
832 } else if (state
->srate
<= 2000000) { /*1Msps < SR <= 2Msps */
833 state
->DemodTimeout
= 2500;
834 state
->FecTimeout
= 1100;
835 } else if (state
->srate
<= 5000000) { /*2Msps < SR <= 5Msps */
836 state
->DemodTimeout
= 1000;
837 state
->FecTimeout
= 550;
838 } else if (state
->srate
<= 10000000) { /*5Msps < SR <= 10Msps */
839 state
->DemodTimeout
= 700;
840 state
->FecTimeout
= 250;
841 } else if (state
->srate
<= 20000000) { /*10Msps < SR <= 20Msps */
842 state
->DemodTimeout
= 400;
843 state
->FecTimeout
= 130;
844 } else { /*SR >20Msps*/
845 state
->DemodTimeout
= 300;
846 state
->FecTimeout
= 100;
851 if (state
->algo
== STV090x_WARM_SEARCH
)
852 state
->DemodTimeout
/= 2;
855 static int stv090x_set_srate(struct stv090x_state
*state
, u32 srate
)
859 if (srate
> 60000000) {
860 sym
= (srate
<< 4); /* SR * 2^16 / master_clk */
861 sym
/= (state
->internal
->mclk
>> 12);
862 } else if (srate
> 6000000) {
864 sym
/= (state
->internal
->mclk
>> 10);
867 sym
/= (state
->internal
->mclk
>> 7);
870 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, (sym
>> 8) & 0x7f) < 0) /* MSB */
872 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, (sym
& 0xff)) < 0) /* LSB */
877 dprintk(FE_ERROR
, 1, "I/O error");
881 static int stv090x_set_max_srate(struct stv090x_state
*state
, u32 clk
, u32 srate
)
885 srate
= 105 * (srate
/ 100);
886 if (srate
> 60000000) {
887 sym
= (srate
<< 4); /* SR * 2^16 / master_clk */
888 sym
/= (state
->internal
->mclk
>> 12);
889 } else if (srate
> 6000000) {
891 sym
/= (state
->internal
->mclk
>> 10);
894 sym
/= (state
->internal
->mclk
>> 7);
898 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, (sym
>> 8) & 0x7f) < 0) /* MSB */
900 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, sym
& 0xff) < 0) /* LSB */
903 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x7f) < 0) /* MSB */
905 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, 0xff) < 0) /* LSB */
911 dprintk(FE_ERROR
, 1, "I/O error");
915 static int stv090x_set_min_srate(struct stv090x_state
*state
, u32 clk
, u32 srate
)
919 srate
= 95 * (srate
/ 100);
920 if (srate
> 60000000) {
921 sym
= (srate
<< 4); /* SR * 2^16 / master_clk */
922 sym
/= (state
->internal
->mclk
>> 12);
923 } else if (srate
> 6000000) {
925 sym
/= (state
->internal
->mclk
>> 10);
928 sym
/= (state
->internal
->mclk
>> 7);
931 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, ((sym
>> 8) & 0x7f)) < 0) /* MSB */
933 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, (sym
& 0xff)) < 0) /* LSB */
937 dprintk(FE_ERROR
, 1, "I/O error");
941 static u32
stv090x_car_width(u32 srate
, enum stv090x_rolloff rolloff
)
958 return srate
+ (srate
* ro
) / 100;
961 static int stv090x_set_vit_thacq(struct stv090x_state
*state
)
963 if (STV090x_WRITE_DEMOD(state
, VTH12
, 0x96) < 0)
965 if (STV090x_WRITE_DEMOD(state
, VTH23
, 0x64) < 0)
967 if (STV090x_WRITE_DEMOD(state
, VTH34
, 0x36) < 0)
969 if (STV090x_WRITE_DEMOD(state
, VTH56
, 0x23) < 0)
971 if (STV090x_WRITE_DEMOD(state
, VTH67
, 0x1e) < 0)
973 if (STV090x_WRITE_DEMOD(state
, VTH78
, 0x19) < 0)
977 dprintk(FE_ERROR
, 1, "I/O error");
981 static int stv090x_set_vit_thtracq(struct stv090x_state
*state
)
983 if (STV090x_WRITE_DEMOD(state
, VTH12
, 0xd0) < 0)
985 if (STV090x_WRITE_DEMOD(state
, VTH23
, 0x7d) < 0)
987 if (STV090x_WRITE_DEMOD(state
, VTH34
, 0x53) < 0)
989 if (STV090x_WRITE_DEMOD(state
, VTH56
, 0x2f) < 0)
991 if (STV090x_WRITE_DEMOD(state
, VTH67
, 0x24) < 0)
993 if (STV090x_WRITE_DEMOD(state
, VTH78
, 0x1f) < 0)
997 dprintk(FE_ERROR
, 1, "I/O error");
1001 static int stv090x_set_viterbi(struct stv090x_state
*state
)
1003 switch (state
->search_mode
) {
1004 case STV090x_SEARCH_AUTO
:
1005 if (STV090x_WRITE_DEMOD(state
, FECM
, 0x10) < 0) /* DVB-S and DVB-S2 */
1007 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x3f) < 0) /* all puncture rate */
1010 case STV090x_SEARCH_DVBS1
:
1011 if (STV090x_WRITE_DEMOD(state
, FECM
, 0x00) < 0) /* disable DSS */
1013 switch (state
->fec
) {
1015 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x01) < 0)
1020 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x02) < 0)
1025 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x04) < 0)
1030 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x08) < 0)
1035 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x20) < 0)
1040 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x2f) < 0) /* all */
1045 case STV090x_SEARCH_DSS
:
1046 if (STV090x_WRITE_DEMOD(state
, FECM
, 0x80) < 0)
1048 switch (state
->fec
) {
1050 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x01) < 0)
1055 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x02) < 0)
1060 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x10) < 0)
1065 if (STV090x_WRITE_DEMOD(state
, PRVIT
, 0x13) < 0) /* 1/2, 2/3, 6/7 */
1075 dprintk(FE_ERROR
, 1, "I/O error");
1079 static int stv090x_stop_modcod(struct stv090x_state
*state
)
1081 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
1083 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xff) < 0)
1085 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0xff) < 0)
1087 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0xff) < 0)
1089 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0xff) < 0)
1091 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0xff) < 0)
1093 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0xff) < 0)
1095 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0xff) < 0)
1097 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0xff) < 0)
1099 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0xff) < 0)
1101 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0xff) < 0)
1103 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0xff) < 0)
1105 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0xff) < 0)
1107 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0xff) < 0)
1109 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0xff) < 0)
1111 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0xff) < 0)
1115 dprintk(FE_ERROR
, 1, "I/O error");
1119 static int stv090x_activate_modcod(struct stv090x_state
*state
)
1121 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
1123 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xfc) < 0)
1125 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0xcc) < 0)
1127 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0xcc) < 0)
1129 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0xcc) < 0)
1131 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0xcc) < 0)
1133 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0xcc) < 0)
1135 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0xcc) < 0)
1137 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0xcc) < 0)
1139 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0xcc) < 0)
1141 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0xcc) < 0)
1143 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0xcc) < 0)
1145 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0xcc) < 0)
1147 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0xcc) < 0)
1149 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0xcc) < 0)
1151 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0xcf) < 0)
1156 dprintk(FE_ERROR
, 1, "I/O error");
1160 static int stv090x_activate_modcod_single(struct stv090x_state
*state
)
1163 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
1165 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xf0) < 0)
1167 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0x00) < 0)
1169 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0x00) < 0)
1171 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0x00) < 0)
1173 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0x00) < 0)
1175 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0x00) < 0)
1177 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0x00) < 0)
1179 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0x00) < 0)
1181 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0x00) < 0)
1183 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0x00) < 0)
1185 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0x00) < 0)
1187 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0x00) < 0)
1189 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0x00) < 0)
1191 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0x00) < 0)
1193 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0x0f) < 0)
1199 dprintk(FE_ERROR
, 1, "I/O error");
1203 static int stv090x_vitclk_ctl(struct stv090x_state
*state
, int enable
)
1207 switch (state
->demod
) {
1208 case STV090x_DEMODULATOR_0
:
1209 mutex_lock(&state
->internal
->demod_lock
);
1210 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
1211 STV090x_SETFIELD(reg
, STOP_CLKVIT1_FIELD
, enable
);
1212 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
1214 mutex_unlock(&state
->internal
->demod_lock
);
1217 case STV090x_DEMODULATOR_1
:
1218 mutex_lock(&state
->internal
->demod_lock
);
1219 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
1220 STV090x_SETFIELD(reg
, STOP_CLKVIT2_FIELD
, enable
);
1221 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
1223 mutex_unlock(&state
->internal
->demod_lock
);
1227 dprintk(FE_ERROR
, 1, "Wrong demodulator!");
1232 mutex_unlock(&state
->internal
->demod_lock
);
1233 dprintk(FE_ERROR
, 1, "I/O error");
1237 static int stv090x_dvbs_track_crl(struct stv090x_state
*state
)
1239 if (state
->internal
->dev_ver
>= 0x30) {
1240 /* Set ACLC BCLC optimised value vs SR */
1241 if (state
->srate
>= 15000000) {
1242 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x2b) < 0)
1244 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x1a) < 0)
1246 } else if ((state
->srate
>= 7000000) && (15000000 > state
->srate
)) {
1247 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x0c) < 0)
1249 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x1b) < 0)
1251 } else if (state
->srate
< 7000000) {
1252 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x2c) < 0)
1254 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x1c) < 0)
1260 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x1a) < 0)
1262 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x09) < 0)
1267 dprintk(FE_ERROR
, 1, "I/O error");
1271 static int stv090x_delivery_search(struct stv090x_state
*state
)
1275 switch (state
->search_mode
) {
1276 case STV090x_SEARCH_DVBS1
:
1277 case STV090x_SEARCH_DSS
:
1278 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1279 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
1280 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
1281 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1284 /* Activate Viterbi decoder in legacy search,
1285 * do not use FRESVIT1, might impact VITERBI2
1287 if (stv090x_vitclk_ctl(state
, 0) < 0)
1290 if (stv090x_dvbs_track_crl(state
) < 0)
1293 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x22) < 0) /* disable DVB-S2 */
1296 if (stv090x_set_vit_thacq(state
) < 0)
1298 if (stv090x_set_viterbi(state
) < 0)
1302 case STV090x_SEARCH_DVBS2
:
1303 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1304 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 0);
1305 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
1306 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1308 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
1309 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
1310 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1313 if (stv090x_vitclk_ctl(state
, 1) < 0)
1316 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0x1a) < 0) /* stop DVB-S CR loop */
1318 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0x09) < 0)
1321 if (state
->internal
->dev_ver
<= 0x20) {
1322 /* enable S2 carrier loop */
1323 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x26) < 0)
1326 /* > Cut 3: Stop carrier 3 */
1327 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x66) < 0)
1331 if (state
->demod_mode
!= STV090x_SINGLE
) {
1332 /* Cut 2: enable link during search */
1333 if (stv090x_activate_modcod(state
) < 0)
1336 /* Single demodulator
1337 * Authorize SHORT and LONG frames,
1338 * QPSK, 8PSK, 16APSK and 32APSK
1340 if (stv090x_activate_modcod_single(state
) < 0)
1344 if (stv090x_set_vit_thtracq(state
) < 0)
1348 case STV090x_SEARCH_AUTO
:
1350 /* enable DVB-S2 and DVB-S2 in Auto MODE */
1351 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1352 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 0);
1353 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
1354 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1356 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
1357 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
1358 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1361 if (stv090x_vitclk_ctl(state
, 0) < 0)
1364 if (stv090x_dvbs_track_crl(state
) < 0)
1367 if (state
->internal
->dev_ver
<= 0x20) {
1368 /* enable S2 carrier loop */
1369 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x26) < 0)
1372 /* > Cut 3: Stop carrier 3 */
1373 if (STV090x_WRITE_DEMOD(state
, CAR2CFG
, 0x66) < 0)
1377 if (state
->demod_mode
!= STV090x_SINGLE
) {
1378 /* Cut 2: enable link during search */
1379 if (stv090x_activate_modcod(state
) < 0)
1382 /* Single demodulator
1383 * Authorize SHORT and LONG frames,
1384 * QPSK, 8PSK, 16APSK and 32APSK
1386 if (stv090x_activate_modcod_single(state
) < 0)
1390 if (stv090x_set_vit_thacq(state
) < 0)
1393 if (stv090x_set_viterbi(state
) < 0)
1399 dprintk(FE_ERROR
, 1, "I/O error");
1403 static int stv090x_start_search(struct stv090x_state
*state
)
1408 /* Reset demodulator */
1409 reg
= STV090x_READ_DEMOD(state
, DMDISTATE
);
1410 STV090x_SETFIELD_Px(reg
, I2C_DEMOD_MODE_FIELD
, 0x1f);
1411 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, reg
) < 0)
1414 if (state
->internal
->dev_ver
<= 0x20) {
1415 if (state
->srate
<= 5000000) {
1416 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0x44) < 0)
1418 if (STV090x_WRITE_DEMOD(state
, CFRUP1
, 0x0f) < 0)
1420 if (STV090x_WRITE_DEMOD(state
, CFRUP0
, 0xff) < 0)
1422 if (STV090x_WRITE_DEMOD(state
, CFRLOW1
, 0xf0) < 0)
1424 if (STV090x_WRITE_DEMOD(state
, CFRLOW0
, 0x00) < 0)
1427 /*enlarge the timing bandwith for Low SR*/
1428 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x68) < 0)
1431 /* If the symbol rate is >5 Msps
1432 Set The carrier search up and low to auto mode */
1433 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0xc4) < 0)
1435 /*reduce the timing bandwith for high SR*/
1436 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x44) < 0)
1441 if (state
->srate
<= 5000000) {
1442 /* enlarge the timing bandwith for Low SR */
1443 STV090x_WRITE_DEMOD(state
, RTCS2
, 0x68);
1445 /* reduce timing bandwith for high SR */
1446 STV090x_WRITE_DEMOD(state
, RTCS2
, 0x44);
1449 /* Set CFR min and max to manual mode */
1450 STV090x_WRITE_DEMOD(state
, CARCFG
, 0x46);
1452 if (state
->algo
== STV090x_WARM_SEARCH
) {
1457 freq_abs
= 1000 << 16;
1458 freq_abs
/= (state
->internal
->mclk
/ 1000);
1459 freq
= (s16
) freq_abs
;
1462 * CFR min =- (SearchRange / 2 + 600KHz)
1463 * CFR max = +(SearchRange / 2 + 600KHz)
1464 * (600KHz for the tuner step size)
1466 freq_abs
= (state
->search_range
/ 2000) + 600;
1467 freq_abs
= freq_abs
<< 16;
1468 freq_abs
/= (state
->internal
->mclk
/ 1000);
1469 freq
= (s16
) freq_abs
;
1472 if (STV090x_WRITE_DEMOD(state
, CFRUP1
, MSB(freq
)) < 0)
1474 if (STV090x_WRITE_DEMOD(state
, CFRUP0
, LSB(freq
)) < 0)
1479 if (STV090x_WRITE_DEMOD(state
, CFRLOW1
, MSB(freq
)) < 0)
1481 if (STV090x_WRITE_DEMOD(state
, CFRLOW0
, LSB(freq
)) < 0)
1486 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0) < 0)
1488 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0) < 0)
1491 if (state
->internal
->dev_ver
>= 0x20) {
1492 if (STV090x_WRITE_DEMOD(state
, EQUALCFG
, 0x41) < 0)
1494 if (STV090x_WRITE_DEMOD(state
, FFECFG
, 0x41) < 0)
1497 if ((state
->search_mode
== STV090x_SEARCH_DVBS1
) ||
1498 (state
->search_mode
== STV090x_SEARCH_DSS
) ||
1499 (state
->search_mode
== STV090x_SEARCH_AUTO
)) {
1501 if (STV090x_WRITE_DEMOD(state
, VITSCALE
, 0x82) < 0)
1503 if (STV090x_WRITE_DEMOD(state
, VAVSRVIT
, 0x00) < 0)
1508 if (STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x00) < 0)
1510 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0xe0) < 0)
1512 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0xc0) < 0)
1515 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1516 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 0);
1517 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0);
1518 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1520 reg
= STV090x_READ_DEMOD(state
, DMDCFG2
);
1521 STV090x_SETFIELD_Px(reg
, S1S2_SEQUENTIAL_FIELD
, 0x0);
1522 if (STV090x_WRITE_DEMOD(state
, DMDCFG2
, reg
) < 0)
1525 if (STV090x_WRITE_DEMOD(state
, RTC
, 0x88) < 0)
1528 if (state
->internal
->dev_ver
>= 0x20) {
1529 /*Frequency offset detector setting*/
1530 if (state
->srate
< 2000000) {
1531 if (state
->internal
->dev_ver
<= 0x20) {
1533 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x39) < 0)
1537 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x89) < 0)
1540 if (STV090x_WRITE_DEMOD(state
, CARHDR
, 0x40) < 0)
1542 } else if (state
->srate
< 10000000) {
1543 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x4c) < 0)
1545 if (STV090x_WRITE_DEMOD(state
, CARHDR
, 0x20) < 0)
1548 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x4b) < 0)
1550 if (STV090x_WRITE_DEMOD(state
, CARHDR
, 0x20) < 0)
1554 if (state
->srate
< 10000000) {
1555 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0xef) < 0)
1558 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0xed) < 0)
1563 switch (state
->algo
) {
1564 case STV090x_WARM_SEARCH
:
1565 /* The symbol rate and the exact
1566 * carrier Frequency are known
1568 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
1570 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0)
1574 case STV090x_COLD_SEARCH
:
1575 /* The symbol rate is known */
1576 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
1578 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0)
1587 dprintk(FE_ERROR
, 1, "I/O error");
1591 static int stv090x_get_agc2_min_level(struct stv090x_state
*state
)
1593 u32 agc2_min
= 0xffff, agc2
= 0, freq_init
, freq_step
, reg
;
1594 s32 i
, j
, steps
, dir
;
1596 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
1598 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1599 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 0);
1600 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0);
1601 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1604 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x83) < 0) /* SR = 65 Msps Max */
1606 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, 0xc0) < 0)
1608 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, 0x82) < 0) /* SR= 400 ksps Min */
1610 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, 0xa0) < 0)
1612 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x00) < 0) /* stop acq @ coarse carrier state */
1614 if (stv090x_set_srate(state
, 1000000) < 0)
1617 steps
= state
->search_range
/ 1000000;
1622 freq_step
= (1000000 * 256) / (state
->internal
->mclk
/ 256);
1625 for (i
= 0; i
< steps
; i
++) {
1627 freq_init
= freq_init
+ (freq_step
* i
);
1629 freq_init
= freq_init
- (freq_step
* i
);
1633 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x5c) < 0) /* Demod RESET */
1635 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, (freq_init
>> 8) & 0xff) < 0)
1637 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, freq_init
& 0xff) < 0)
1639 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x58) < 0) /* Demod RESET */
1644 for (j
= 0; j
< 10; j
++) {
1645 agc2
+= (STV090x_READ_DEMOD(state
, AGC2I1
) << 8) |
1646 STV090x_READ_DEMOD(state
, AGC2I0
);
1649 if (agc2
< agc2_min
)
1655 dprintk(FE_ERROR
, 1, "I/O error");
1659 static u32
stv090x_get_srate(struct stv090x_state
*state
, u32 clk
)
1662 s32 srate
, int_1
, int_2
, tmp_1
, tmp_2
;
1664 r3
= STV090x_READ_DEMOD(state
, SFR3
);
1665 r2
= STV090x_READ_DEMOD(state
, SFR2
);
1666 r1
= STV090x_READ_DEMOD(state
, SFR1
);
1667 r0
= STV090x_READ_DEMOD(state
, SFR0
);
1669 srate
= ((r3
<< 24) | (r2
<< 16) | (r1
<< 8) | r0
);
1672 int_2
= srate
>> 16;
1674 tmp_1
= clk
% 0x10000;
1675 tmp_2
= srate
% 0x10000;
1677 srate
= (int_1
* int_2
) +
1678 ((int_1
* tmp_2
) >> 16) +
1679 ((int_2
* tmp_1
) >> 16);
1684 static u32
stv090x_srate_srch_coarse(struct stv090x_state
*state
)
1686 struct dvb_frontend
*fe
= &state
->frontend
;
1688 int tmg_lock
= 0, i
;
1689 s32 tmg_cpt
= 0, dir
= 1, steps
, cur_step
= 0, freq
;
1690 u32 srate_coarse
= 0, agc2
= 0, car_step
= 1200, reg
;
1693 if (state
->internal
->dev_ver
>= 0x30)
1698 reg
= STV090x_READ_DEMOD(state
, DMDISTATE
);
1699 STV090x_SETFIELD_Px(reg
, I2C_DEMOD_MODE_FIELD
, 0x1f); /* Demod RESET */
1700 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, reg
) < 0)
1702 if (STV090x_WRITE_DEMOD(state
, TMGCFG
, 0x12) < 0)
1704 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc0) < 0)
1706 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0xf0) < 0)
1708 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0xe0) < 0)
1710 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1711 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 1);
1712 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0);
1713 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1716 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x83) < 0)
1718 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, 0xc0) < 0)
1720 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, 0x82) < 0)
1722 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, 0xa0) < 0)
1724 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x00) < 0)
1726 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x50) < 0)
1729 if (state
->internal
->dev_ver
>= 0x30) {
1730 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x99) < 0)
1732 if (STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x98) < 0)
1735 } else if (state
->internal
->dev_ver
>= 0x20) {
1736 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x6a) < 0)
1738 if (STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x95) < 0)
1742 if (state
->srate
<= 2000000)
1744 else if (state
->srate
<= 5000000)
1746 else if (state
->srate
<= 12000000)
1751 steps
= -1 + ((state
->search_range
/ 1000) / car_step
);
1753 steps
= (2 * steps
) + 1;
1756 else if (steps
> 10) {
1758 car_step
= (state
->search_range
/ 1000) / 10;
1762 freq
= state
->frequency
;
1764 while ((!tmg_lock
) && (cur_step
< steps
)) {
1765 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x5f) < 0) /* Demod RESET */
1767 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0x00) < 0)
1769 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0x00) < 0)
1771 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, 0x00) < 0)
1773 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, 0x00) < 0)
1775 /* trigger acquisition */
1776 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x40) < 0)
1779 for (i
= 0; i
< 10; i
++) {
1780 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
1781 if (STV090x_GETFIELD_Px(reg
, TMGLOCK_QUALITY_FIELD
) >= 2)
1783 agc2
+= (STV090x_READ_DEMOD(state
, AGC2I1
) << 8) |
1784 STV090x_READ_DEMOD(state
, AGC2I0
);
1787 srate_coarse
= stv090x_get_srate(state
, state
->internal
->mclk
);
1790 if ((tmg_cpt
>= 5) && (agc2
< agc2th
) &&
1791 (srate_coarse
< 50000000) && (srate_coarse
> 850000))
1793 else if (cur_step
< steps
) {
1795 freq
+= cur_step
* car_step
;
1797 freq
-= cur_step
* car_step
;
1800 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
1803 if (state
->config
->tuner_set_frequency
) {
1804 if (state
->config
->tuner_set_frequency(fe
, freq
) < 0)
1808 if (state
->config
->tuner_set_bandwidth
) {
1809 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
1813 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
1818 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
1821 if (state
->config
->tuner_get_status
) {
1822 if (state
->config
->tuner_get_status(fe
, ®
) < 0)
1827 dprintk(FE_DEBUG
, 1, "Tuner phase locked");
1829 dprintk(FE_DEBUG
, 1, "Tuner unlocked");
1831 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
1839 srate_coarse
= stv090x_get_srate(state
, state
->internal
->mclk
);
1841 return srate_coarse
;
1844 stv090x_i2c_gate_ctrl(state
, 0);
1846 dprintk(FE_ERROR
, 1, "I/O error");
1850 static u32
stv090x_srate_srch_fine(struct stv090x_state
*state
)
1852 u32 srate_coarse
, freq_coarse
, sym
, reg
;
1854 srate_coarse
= stv090x_get_srate(state
, state
->internal
->mclk
);
1855 freq_coarse
= STV090x_READ_DEMOD(state
, CFR2
) << 8;
1856 freq_coarse
|= STV090x_READ_DEMOD(state
, CFR1
);
1857 sym
= 13 * (srate_coarse
/ 10); /* SFRUP = SFR + 30% */
1859 if (sym
< state
->srate
)
1862 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0) /* Demod RESET */
1864 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc1) < 0)
1866 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0x20) < 0)
1868 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0x00) < 0)
1870 if (STV090x_WRITE_DEMOD(state
, TMGCFG
, 0xd2) < 0)
1872 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
1873 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0x00);
1874 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
1877 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
1880 if (state
->internal
->dev_ver
>= 0x30) {
1881 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x79) < 0)
1883 } else if (state
->internal
->dev_ver
>= 0x20) {
1884 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x49) < 0)
1888 if (srate_coarse
> 3000000) {
1889 sym
= 13 * (srate_coarse
/ 10); /* SFRUP = SFR + 30% */
1890 sym
= (sym
/ 1000) * 65536;
1891 sym
/= (state
->internal
->mclk
/ 1000);
1892 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, (sym
>> 8) & 0x7f) < 0)
1894 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, sym
& 0xff) < 0)
1896 sym
= 10 * (srate_coarse
/ 13); /* SFRLOW = SFR - 30% */
1897 sym
= (sym
/ 1000) * 65536;
1898 sym
/= (state
->internal
->mclk
/ 1000);
1899 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, (sym
>> 8) & 0x7f) < 0)
1901 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, sym
& 0xff) < 0)
1903 sym
= (srate_coarse
/ 1000) * 65536;
1904 sym
/= (state
->internal
->mclk
/ 1000);
1905 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, (sym
>> 8) & 0xff) < 0)
1907 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, sym
& 0xff) < 0)
1910 sym
= 13 * (srate_coarse
/ 10); /* SFRUP = SFR + 30% */
1911 sym
= (sym
/ 100) * 65536;
1912 sym
/= (state
->internal
->mclk
/ 100);
1913 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, (sym
>> 8) & 0x7f) < 0)
1915 if (STV090x_WRITE_DEMOD(state
, SFRUP0
, sym
& 0xff) < 0)
1917 sym
= 10 * (srate_coarse
/ 14); /* SFRLOW = SFR - 30% */
1918 sym
= (sym
/ 100) * 65536;
1919 sym
/= (state
->internal
->mclk
/ 100);
1920 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, (sym
>> 8) & 0x7f) < 0)
1922 if (STV090x_WRITE_DEMOD(state
, SFRLOW0
, sym
& 0xff) < 0)
1924 sym
= (srate_coarse
/ 100) * 65536;
1925 sym
/= (state
->internal
->mclk
/ 100);
1926 if (STV090x_WRITE_DEMOD(state
, SFRINIT1
, (sym
>> 8) & 0xff) < 0)
1928 if (STV090x_WRITE_DEMOD(state
, SFRINIT0
, sym
& 0xff) < 0)
1931 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x20) < 0)
1933 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, (freq_coarse
>> 8) & 0xff) < 0)
1935 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, freq_coarse
& 0xff) < 0)
1937 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0) /* trigger acquisition */
1941 return srate_coarse
;
1944 dprintk(FE_ERROR
, 1, "I/O error");
1948 static int stv090x_get_dmdlock(struct stv090x_state
*state
, s32 timeout
)
1950 s32 timer
= 0, lock
= 0;
1954 while ((timer
< timeout
) && (!lock
)) {
1955 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
1956 stat
= STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
);
1959 case 0: /* searching */
1960 case 1: /* first PLH detected */
1962 dprintk(FE_DEBUG
, 1, "Demodulator searching ..");
1965 case 2: /* DVB-S2 mode */
1966 case 3: /* DVB-S1/legacy mode */
1967 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
1968 lock
= STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
);
1975 dprintk(FE_DEBUG
, 1, "Demodulator acquired LOCK");
1982 static int stv090x_blind_search(struct stv090x_state
*state
)
1984 u32 agc2
, reg
, srate_coarse
;
1985 s32 cpt_fail
, agc2_ovflw
, i
;
1986 u8 k_ref
, k_max
, k_min
;
1987 int coarse_fail
= 0;
1993 agc2
= stv090x_get_agc2_min_level(state
);
1995 if (agc2
> STV090x_SEARCH_AGC2_TH(state
->internal
->dev_ver
)) {
1999 if (state
->internal
->dev_ver
<= 0x20) {
2000 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0xc4) < 0)
2004 if (STV090x_WRITE_DEMOD(state
, CARCFG
, 0x06) < 0)
2008 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x44) < 0)
2011 if (state
->internal
->dev_ver
>= 0x20) {
2012 if (STV090x_WRITE_DEMOD(state
, EQUALCFG
, 0x41) < 0)
2014 if (STV090x_WRITE_DEMOD(state
, FFECFG
, 0x41) < 0)
2016 if (STV090x_WRITE_DEMOD(state
, VITSCALE
, 0x82) < 0)
2018 if (STV090x_WRITE_DEMOD(state
, VAVSRVIT
, 0x00) < 0) /* set viterbi hysteresis */
2024 if (STV090x_WRITE_DEMOD(state
, KREFTMG
, k_ref
) < 0)
2026 if (stv090x_srate_srch_coarse(state
) != 0) {
2027 srate_coarse
= stv090x_srate_srch_fine(state
);
2028 if (srate_coarse
!= 0) {
2029 stv090x_get_lock_tmg(state
);
2030 lock
= stv090x_get_dmdlock(state
,
2031 state
->DemodTimeout
);
2038 for (i
= 0; i
< 10; i
++) {
2039 agc2
+= (STV090x_READ_DEMOD(state
, AGC2I1
) << 8) |
2040 STV090x_READ_DEMOD(state
, AGC2I0
);
2043 reg
= STV090x_READ_DEMOD(state
, DSTATUS2
);
2044 if ((STV090x_GETFIELD_Px(reg
, CFR_OVERFLOW_FIELD
) == 0x01) &&
2045 (STV090x_GETFIELD_Px(reg
, DEMOD_DELOCK_FIELD
) == 0x01))
2049 if ((cpt_fail
> 7) || (agc2_ovflw
> 7))
2055 } while ((k_ref
>= k_min
) && (!lock
) && (!coarse_fail
));
2061 dprintk(FE_ERROR
, 1, "I/O error");
2065 static int stv090x_chk_tmg(struct stv090x_state
*state
)
2069 u8 freq
, tmg_thh
, tmg_thl
;
2072 freq
= STV090x_READ_DEMOD(state
, CARFREQ
);
2073 tmg_thh
= STV090x_READ_DEMOD(state
, TMGTHRISE
);
2074 tmg_thl
= STV090x_READ_DEMOD(state
, TMGTHFALL
);
2075 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, 0x20) < 0)
2077 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, 0x00) < 0)
2080 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2081 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0x00); /* stop carrier offset search */
2082 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2084 if (STV090x_WRITE_DEMOD(state
, RTC
, 0x80) < 0)
2087 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x40) < 0)
2089 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x00) < 0)
2092 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0x00) < 0) /* set car ofset to 0 */
2094 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0x00) < 0)
2096 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x65) < 0)
2099 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0) /* trigger acquisition */
2103 for (i
= 0; i
< 10; i
++) {
2104 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
2105 if (STV090x_GETFIELD_Px(reg
, TMGLOCK_QUALITY_FIELD
) >= 2)
2112 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
2114 if (STV090x_WRITE_DEMOD(state
, RTC
, 0x88) < 0) /* DVB-S1 timing */
2116 if (STV090x_WRITE_DEMOD(state
, RTCS2
, 0x68) < 0) /* DVB-S2 timing */
2119 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, freq
) < 0)
2121 if (STV090x_WRITE_DEMOD(state
, TMGTHRISE
, tmg_thh
) < 0)
2123 if (STV090x_WRITE_DEMOD(state
, TMGTHFALL
, tmg_thl
) < 0)
2129 dprintk(FE_ERROR
, 1, "I/O error");
2133 static int stv090x_get_coldlock(struct stv090x_state
*state
, s32 timeout_dmd
)
2135 struct dvb_frontend
*fe
= &state
->frontend
;
2138 s32 car_step
, steps
, cur_step
, dir
, freq
, timeout_lock
;
2141 if (state
->srate
>= 10000000)
2142 timeout_lock
= timeout_dmd
/ 3;
2144 timeout_lock
= timeout_dmd
/ 2;
2146 lock
= stv090x_get_dmdlock(state
, timeout_lock
); /* cold start wait */
2148 if (state
->srate
>= 10000000) {
2149 if (stv090x_chk_tmg(state
)) {
2150 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
2152 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0)
2154 lock
= stv090x_get_dmdlock(state
, timeout_dmd
);
2159 if (state
->srate
<= 4000000)
2161 else if (state
->srate
<= 7000000)
2163 else if (state
->srate
<= 10000000)
2168 steps
= (state
->search_range
/ 1000) / car_step
;
2170 steps
= 2 * (steps
+ 1);
2173 else if (steps
> 12)
2180 freq
= state
->frequency
;
2181 state
->tuner_bw
= stv090x_car_width(state
->srate
, state
->rolloff
) + state
->srate
;
2182 while ((cur_step
<= steps
) && (!lock
)) {
2184 freq
+= cur_step
* car_step
;
2186 freq
-= cur_step
* car_step
;
2189 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2192 if (state
->config
->tuner_set_frequency
) {
2193 if (state
->config
->tuner_set_frequency(fe
, freq
) < 0)
2197 if (state
->config
->tuner_set_bandwidth
) {
2198 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
2202 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2207 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2210 if (state
->config
->tuner_get_status
) {
2211 if (state
->config
->tuner_get_status(fe
, ®
) < 0)
2216 dprintk(FE_DEBUG
, 1, "Tuner phase locked");
2218 dprintk(FE_DEBUG
, 1, "Tuner unlocked");
2220 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2223 STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1c);
2224 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, 0x00) < 0)
2226 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, 0x00) < 0)
2228 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
2230 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x15) < 0)
2232 lock
= stv090x_get_dmdlock(state
, (timeout_dmd
/ 3));
2244 stv090x_i2c_gate_ctrl(state
, 0);
2246 dprintk(FE_ERROR
, 1, "I/O error");
2250 static int stv090x_get_loop_params(struct stv090x_state
*state
, s32
*freq_inc
, s32
*timeout_sw
, s32
*steps
)
2252 s32 timeout
, inc
, steps_max
, srate
, car_max
;
2254 srate
= state
->srate
;
2255 car_max
= state
->search_range
/ 1000;
2256 car_max
+= car_max
/ 10;
2257 car_max
= 65536 * (car_max
/ 2);
2258 car_max
/= (state
->internal
->mclk
/ 1000);
2260 if (car_max
> 0x4000)
2261 car_max
= 0x4000 ; /* maxcarrier should be<= +-1/4 Mclk */
2264 inc
/= state
->internal
->mclk
/ 1000;
2269 switch (state
->search_mode
) {
2270 case STV090x_SEARCH_DVBS1
:
2271 case STV090x_SEARCH_DSS
:
2272 inc
*= 3; /* freq step = 3% of srate */
2276 case STV090x_SEARCH_DVBS2
:
2281 case STV090x_SEARCH_AUTO
:
2288 if ((inc
> car_max
) || (inc
< 0))
2289 inc
= car_max
/ 2; /* increment <= 1/8 Mclk */
2291 timeout
*= 27500; /* 27.5 Msps reference */
2293 timeout
/= (srate
/ 1000);
2295 if ((timeout
> 100) || (timeout
< 0))
2298 steps_max
= (car_max
/ inc
) + 1; /* min steps = 3 */
2299 if ((steps_max
> 100) || (steps_max
< 0)) {
2300 steps_max
= 100; /* max steps <= 100 */
2301 inc
= car_max
/ steps_max
;
2304 *timeout_sw
= timeout
;
2310 static int stv090x_chk_signal(struct stv090x_state
*state
)
2312 s32 offst_car
, agc2
, car_max
;
2315 offst_car
= STV090x_READ_DEMOD(state
, CFR2
) << 8;
2316 offst_car
|= STV090x_READ_DEMOD(state
, CFR1
);
2317 offst_car
= comp2(offst_car
, 16);
2319 agc2
= STV090x_READ_DEMOD(state
, AGC2I1
) << 8;
2320 agc2
|= STV090x_READ_DEMOD(state
, AGC2I0
);
2321 car_max
= state
->search_range
/ 1000;
2323 car_max
+= (car_max
/ 10); /* 10% margin */
2324 car_max
= (65536 * car_max
/ 2);
2325 car_max
/= state
->internal
->mclk
/ 1000;
2327 if (car_max
> 0x4000)
2330 if ((agc2
> 0x2000) || (offst_car
> 2 * car_max
) || (offst_car
< -2 * car_max
)) {
2332 dprintk(FE_DEBUG
, 1, "No Signal");
2335 dprintk(FE_DEBUG
, 1, "Found Signal");
2341 static int stv090x_search_car_loop(struct stv090x_state
*state
, s32 inc
, s32 timeout
, int zigzag
, s32 steps_max
)
2343 int no_signal
, lock
= 0;
2344 s32 cpt_step
= 0, offst_freq
, car_max
;
2347 car_max
= state
->search_range
/ 1000;
2348 car_max
+= (car_max
/ 10);
2349 car_max
= (65536 * car_max
/ 2);
2350 car_max
/= (state
->internal
->mclk
/ 1000);
2351 if (car_max
> 0x4000)
2357 offst_freq
= -car_max
+ inc
;
2360 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1c) < 0)
2362 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, ((offst_freq
/ 256) & 0xff)) < 0)
2364 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, offst_freq
& 0xff) < 0)
2366 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0)
2369 reg
= STV090x_READ_DEMOD(state
, PDELCTRL1
);
2370 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0x1); /* stop DVB-S2 packet delin */
2371 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
2375 if (offst_freq
>= 0)
2376 offst_freq
= -offst_freq
- 2 * inc
;
2378 offst_freq
= -offst_freq
;
2380 offst_freq
+= 2 * inc
;
2385 lock
= stv090x_get_dmdlock(state
, timeout
);
2386 no_signal
= stv090x_chk_signal(state
);
2390 ((offst_freq
- inc
) < car_max
) &&
2391 ((offst_freq
+ inc
) > -car_max
) &&
2392 (cpt_step
< steps_max
));
2394 reg
= STV090x_READ_DEMOD(state
, PDELCTRL1
);
2395 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0);
2396 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
2401 dprintk(FE_ERROR
, 1, "I/O error");
2405 static int stv090x_sw_algo(struct stv090x_state
*state
)
2407 int no_signal
, zigzag
, lock
= 0;
2410 s32 dvbs2_fly_wheel
;
2411 s32 inc
, timeout_step
, trials
, steps_max
;
2414 stv090x_get_loop_params(state
, &inc
, &timeout_step
, &steps_max
);
2416 switch (state
->search_mode
) {
2417 case STV090x_SEARCH_DVBS1
:
2418 case STV090x_SEARCH_DSS
:
2419 /* accelerate the frequency detector */
2420 if (state
->internal
->dev_ver
>= 0x20) {
2421 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x3B) < 0)
2425 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0x49) < 0)
2430 case STV090x_SEARCH_DVBS2
:
2431 if (state
->internal
->dev_ver
>= 0x20) {
2432 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x79) < 0)
2436 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0x89) < 0)
2441 case STV090x_SEARCH_AUTO
:
2443 /* accelerate the frequency detector */
2444 if (state
->internal
->dev_ver
>= 0x20) {
2445 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x3b) < 0)
2447 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x79) < 0)
2451 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0xc9) < 0)
2459 lock
= stv090x_search_car_loop(state
, inc
, timeout_step
, zigzag
, steps_max
);
2460 no_signal
= stv090x_chk_signal(state
);
2463 /*run the SW search 2 times maximum*/
2464 if (lock
|| no_signal
|| (trials
== 2)) {
2465 /*Check if the demod is not losing lock in DVBS2*/
2466 if (state
->internal
->dev_ver
>= 0x20) {
2467 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x49) < 0)
2469 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x9e) < 0)
2473 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
2474 if ((lock
) && (STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
) == STV090x_DVBS2
)) {
2475 /*Check if the demod is not losing lock in DVBS2*/
2476 msleep(timeout_step
);
2477 reg
= STV090x_READ_DEMOD(state
, DMDFLYW
);
2478 dvbs2_fly_wheel
= STV090x_GETFIELD_Px(reg
, FLYWHEEL_CPT_FIELD
);
2479 if (dvbs2_fly_wheel
< 0xd) { /*if correct frames is decrementing */
2480 msleep(timeout_step
);
2481 reg
= STV090x_READ_DEMOD(state
, DMDFLYW
);
2482 dvbs2_fly_wheel
= STV090x_GETFIELD_Px(reg
, FLYWHEEL_CPT_FIELD
);
2484 if (dvbs2_fly_wheel
< 0xd) {
2485 /*FALSE lock, The demod is loosing lock */
2488 if (state
->internal
->dev_ver
>= 0x20) {
2489 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x79) < 0)
2493 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, 0x89) < 0)
2499 } while ((!lock
) && (trials
< 2) && (!no_signal
));
2503 dprintk(FE_ERROR
, 1, "I/O error");
2507 static enum stv090x_delsys
stv090x_get_std(struct stv090x_state
*state
)
2510 enum stv090x_delsys delsys
;
2512 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
2513 if (STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
) == 2)
2514 delsys
= STV090x_DVBS2
;
2515 else if (STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
) == 3) {
2516 reg
= STV090x_READ_DEMOD(state
, FECM
);
2517 if (STV090x_GETFIELD_Px(reg
, DSS_DVB_FIELD
) == 1)
2518 delsys
= STV090x_DSS
;
2520 delsys
= STV090x_DVBS1
;
2522 delsys
= STV090x_ERROR
;
2529 static s32
stv090x_get_car_freq(struct stv090x_state
*state
, u32 mclk
)
2531 s32 derot
, int_1
, int_2
, tmp_1
, tmp_2
;
2533 derot
= STV090x_READ_DEMOD(state
, CFR2
) << 16;
2534 derot
|= STV090x_READ_DEMOD(state
, CFR1
) << 8;
2535 derot
|= STV090x_READ_DEMOD(state
, CFR0
);
2537 derot
= comp2(derot
, 24);
2539 int_2
= derot
>> 12;
2541 /* carrier_frequency = MasterClock * Reg / 2^24 */
2542 tmp_1
= mclk
% 0x1000;
2543 tmp_2
= derot
% 0x1000;
2545 derot
= (int_1
* int_2
) +
2546 ((int_1
* tmp_2
) >> 12) +
2547 ((int_2
* tmp_1
) >> 12);
2552 static int stv090x_get_viterbi(struct stv090x_state
*state
)
2556 reg
= STV090x_READ_DEMOD(state
, VITCURPUN
);
2557 rate
= STV090x_GETFIELD_Px(reg
, VIT_CURPUN_FIELD
);
2561 state
->fec
= STV090x_PR12
;
2565 state
->fec
= STV090x_PR23
;
2569 state
->fec
= STV090x_PR34
;
2573 state
->fec
= STV090x_PR56
;
2577 state
->fec
= STV090x_PR67
;
2581 state
->fec
= STV090x_PR78
;
2585 state
->fec
= STV090x_PRERR
;
2592 static enum stv090x_signal_state
stv090x_get_sig_params(struct stv090x_state
*state
)
2594 struct dvb_frontend
*fe
= &state
->frontend
;
2598 s32 i
= 0, offst_freq
;
2602 if (state
->algo
== STV090x_BLIND_SEARCH
) {
2603 tmg
= STV090x_READ_DEMOD(state
, TMGREG2
);
2604 STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x5c);
2605 while ((i
<= 50) && (tmg
!= 0) && (tmg
!= 0xff)) {
2606 tmg
= STV090x_READ_DEMOD(state
, TMGREG2
);
2611 state
->delsys
= stv090x_get_std(state
);
2613 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2616 if (state
->config
->tuner_get_frequency
) {
2617 if (state
->config
->tuner_get_frequency(fe
, &state
->frequency
) < 0)
2621 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2624 offst_freq
= stv090x_get_car_freq(state
, state
->internal
->mclk
) / 1000;
2625 state
->frequency
+= offst_freq
;
2627 if (stv090x_get_viterbi(state
) < 0)
2630 reg
= STV090x_READ_DEMOD(state
, DMDMODCOD
);
2631 state
->modcod
= STV090x_GETFIELD_Px(reg
, DEMOD_MODCOD_FIELD
);
2632 state
->pilots
= STV090x_GETFIELD_Px(reg
, DEMOD_TYPE_FIELD
) & 0x01;
2633 state
->frame_len
= STV090x_GETFIELD_Px(reg
, DEMOD_TYPE_FIELD
) >> 1;
2634 reg
= STV090x_READ_DEMOD(state
, TMGOBS
);
2635 state
->rolloff
= STV090x_GETFIELD_Px(reg
, ROLLOFF_STATUS_FIELD
);
2636 reg
= STV090x_READ_DEMOD(state
, FECM
);
2637 state
->inversion
= STV090x_GETFIELD_Px(reg
, IQINV_FIELD
);
2639 if ((state
->algo
== STV090x_BLIND_SEARCH
) || (state
->srate
< 10000000)) {
2641 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
2644 if (state
->config
->tuner_get_frequency
) {
2645 if (state
->config
->tuner_get_frequency(fe
, &state
->frequency
) < 0)
2649 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
2652 if (abs(offst_freq
) <= ((state
->search_range
/ 2000) + 500))
2653 return STV090x_RANGEOK
;
2654 else if (abs(offst_freq
) <= (stv090x_car_width(state
->srate
, state
->rolloff
) / 2000))
2655 return STV090x_RANGEOK
;
2657 return STV090x_OUTOFRANGE
; /* Out of Range */
2659 if (abs(offst_freq
) <= ((state
->search_range
/ 2000) + 500))
2660 return STV090x_RANGEOK
;
2662 return STV090x_OUTOFRANGE
;
2665 return STV090x_OUTOFRANGE
;
2668 stv090x_i2c_gate_ctrl(state
, 0);
2670 dprintk(FE_ERROR
, 1, "I/O error");
2674 static u32
stv090x_get_tmgoffst(struct stv090x_state
*state
, u32 srate
)
2678 offst_tmg
= STV090x_READ_DEMOD(state
, TMGREG2
) << 16;
2679 offst_tmg
|= STV090x_READ_DEMOD(state
, TMGREG1
) << 8;
2680 offst_tmg
|= STV090x_READ_DEMOD(state
, TMGREG0
);
2682 offst_tmg
= comp2(offst_tmg
, 24); /* 2's complement */
2686 offst_tmg
= ((s32
) srate
* 10) / ((s32
) 0x1000000 / offst_tmg
);
2692 static u8
stv090x_optimize_carloop(struct stv090x_state
*state
, enum stv090x_modcod modcod
, s32 pilots
)
2696 struct stv090x_long_frame_crloop
*car_loop
, *car_loop_qpsk_low
, *car_loop_apsk_low
;
2698 if (state
->internal
->dev_ver
== 0x20) {
2699 car_loop
= stv090x_s2_crl_cut20
;
2700 car_loop_qpsk_low
= stv090x_s2_lowqpsk_crl_cut20
;
2701 car_loop_apsk_low
= stv090x_s2_apsk_crl_cut20
;
2704 car_loop
= stv090x_s2_crl_cut30
;
2705 car_loop_qpsk_low
= stv090x_s2_lowqpsk_crl_cut30
;
2706 car_loop_apsk_low
= stv090x_s2_apsk_crl_cut30
;
2709 if (modcod
< STV090x_QPSK_12
) {
2711 while ((i
< 3) && (modcod
!= car_loop_qpsk_low
[i
].modcod
))
2719 while ((i
< 14) && (modcod
!= car_loop
[i
].modcod
))
2724 while ((i
< 11) && (modcod
!= car_loop_apsk_low
[i
].modcod
))
2732 if (modcod
<= STV090x_QPSK_25
) {
2734 if (state
->srate
<= 3000000)
2735 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_2
;
2736 else if (state
->srate
<= 7000000)
2737 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_5
;
2738 else if (state
->srate
<= 15000000)
2739 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_10
;
2740 else if (state
->srate
<= 25000000)
2741 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_20
;
2743 aclc
= car_loop_qpsk_low
[i
].crl_pilots_on_30
;
2745 if (state
->srate
<= 3000000)
2746 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_2
;
2747 else if (state
->srate
<= 7000000)
2748 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_5
;
2749 else if (state
->srate
<= 15000000)
2750 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_10
;
2751 else if (state
->srate
<= 25000000)
2752 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_20
;
2754 aclc
= car_loop_qpsk_low
[i
].crl_pilots_off_30
;
2757 } else if (modcod
<= STV090x_8PSK_910
) {
2759 if (state
->srate
<= 3000000)
2760 aclc
= car_loop
[i
].crl_pilots_on_2
;
2761 else if (state
->srate
<= 7000000)
2762 aclc
= car_loop
[i
].crl_pilots_on_5
;
2763 else if (state
->srate
<= 15000000)
2764 aclc
= car_loop
[i
].crl_pilots_on_10
;
2765 else if (state
->srate
<= 25000000)
2766 aclc
= car_loop
[i
].crl_pilots_on_20
;
2768 aclc
= car_loop
[i
].crl_pilots_on_30
;
2770 if (state
->srate
<= 3000000)
2771 aclc
= car_loop
[i
].crl_pilots_off_2
;
2772 else if (state
->srate
<= 7000000)
2773 aclc
= car_loop
[i
].crl_pilots_off_5
;
2774 else if (state
->srate
<= 15000000)
2775 aclc
= car_loop
[i
].crl_pilots_off_10
;
2776 else if (state
->srate
<= 25000000)
2777 aclc
= car_loop
[i
].crl_pilots_off_20
;
2779 aclc
= car_loop
[i
].crl_pilots_off_30
;
2781 } else { /* 16APSK and 32APSK */
2782 if (state
->srate
<= 3000000)
2783 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_2
;
2784 else if (state
->srate
<= 7000000)
2785 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_5
;
2786 else if (state
->srate
<= 15000000)
2787 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_10
;
2788 else if (state
->srate
<= 25000000)
2789 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_20
;
2791 aclc
= car_loop_apsk_low
[i
].crl_pilots_on_30
;
2797 static u8
stv090x_optimize_carloop_short(struct stv090x_state
*state
)
2799 struct stv090x_short_frame_crloop
*short_crl
= NULL
;
2803 switch (state
->modulation
) {
2811 case STV090x_16APSK
:
2814 case STV090x_32APSK
:
2819 if (state
->internal
->dev_ver
>= 0x30) {
2820 /* Cut 3.0 and up */
2821 short_crl
= stv090x_s2_short_crl_cut30
;
2823 /* Cut 2.0 and up: we don't support cuts older than 2.0 */
2824 short_crl
= stv090x_s2_short_crl_cut20
;
2827 if (state
->srate
<= 3000000)
2828 aclc
= short_crl
[index
].crl_2
;
2829 else if (state
->srate
<= 7000000)
2830 aclc
= short_crl
[index
].crl_5
;
2831 else if (state
->srate
<= 15000000)
2832 aclc
= short_crl
[index
].crl_10
;
2833 else if (state
->srate
<= 25000000)
2834 aclc
= short_crl
[index
].crl_20
;
2836 aclc
= short_crl
[index
].crl_30
;
2841 static int stv090x_optimize_track(struct stv090x_state
*state
)
2843 struct dvb_frontend
*fe
= &state
->frontend
;
2845 enum stv090x_rolloff rolloff
;
2846 enum stv090x_modcod modcod
;
2848 s32 srate
, pilots
, aclc
, f_1
, f_0
, i
= 0, blind_tune
= 0;
2851 srate
= stv090x_get_srate(state
, state
->internal
->mclk
);
2852 srate
+= stv090x_get_tmgoffst(state
, srate
);
2854 switch (state
->delsys
) {
2857 if (state
->search_mode
== STV090x_SEARCH_AUTO
) {
2858 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2859 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
2860 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 0);
2861 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2864 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
2865 STV090x_SETFIELD_Px(reg
, ROLLOFF_CONTROL_FIELD
, state
->rolloff
);
2866 STV090x_SETFIELD_Px(reg
, MANUAL_SXROLLOFF_FIELD
, 0x01);
2867 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
2870 if (state
->internal
->dev_ver
>= 0x30) {
2871 if (stv090x_get_viterbi(state
) < 0)
2874 if (state
->fec
== STV090x_PR12
) {
2875 if (STV090x_WRITE_DEMOD(state
, GAUSSR0
, 0x98) < 0)
2877 if (STV090x_WRITE_DEMOD(state
, CCIR0
, 0x18) < 0)
2880 if (STV090x_WRITE_DEMOD(state
, GAUSSR0
, 0x18) < 0)
2882 if (STV090x_WRITE_DEMOD(state
, CCIR0
, 0x18) < 0)
2887 if (STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x75) < 0)
2892 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2893 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 0);
2894 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
2895 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2897 if (state
->internal
->dev_ver
>= 0x30) {
2898 if (STV090x_WRITE_DEMOD(state
, ACLC
, 0) < 0)
2900 if (STV090x_WRITE_DEMOD(state
, BCLC
, 0) < 0)
2903 if (state
->frame_len
== STV090x_LONG_FRAME
) {
2904 reg
= STV090x_READ_DEMOD(state
, DMDMODCOD
);
2905 modcod
= STV090x_GETFIELD_Px(reg
, DEMOD_MODCOD_FIELD
);
2906 pilots
= STV090x_GETFIELD_Px(reg
, DEMOD_TYPE_FIELD
) & 0x01;
2907 aclc
= stv090x_optimize_carloop(state
, modcod
, pilots
);
2908 if (modcod
<= STV090x_QPSK_910
) {
2909 STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, aclc
);
2910 } else if (modcod
<= STV090x_8PSK_910
) {
2911 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2913 if (STV090x_WRITE_DEMOD(state
, ACLC2S28
, aclc
) < 0)
2916 if ((state
->demod_mode
== STV090x_SINGLE
) && (modcod
> STV090x_8PSK_910
)) {
2917 if (modcod
<= STV090x_16APSK_910
) {
2918 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2920 if (STV090x_WRITE_DEMOD(state
, ACLC2S216A
, aclc
) < 0)
2923 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2925 if (STV090x_WRITE_DEMOD(state
, ACLC2S232A
, aclc
) < 0)
2930 /*Carrier loop setting for short frame*/
2931 aclc
= stv090x_optimize_carloop_short(state
);
2932 if (state
->modulation
== STV090x_QPSK
) {
2933 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, aclc
) < 0)
2935 } else if (state
->modulation
== STV090x_8PSK
) {
2936 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2938 if (STV090x_WRITE_DEMOD(state
, ACLC2S28
, aclc
) < 0)
2940 } else if (state
->modulation
== STV090x_16APSK
) {
2941 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2943 if (STV090x_WRITE_DEMOD(state
, ACLC2S216A
, aclc
) < 0)
2945 } else if (state
->modulation
== STV090x_32APSK
) {
2946 if (STV090x_WRITE_DEMOD(state
, ACLC2S2Q
, 0x2a) < 0)
2948 if (STV090x_WRITE_DEMOD(state
, ACLC2S232A
, aclc
) < 0)
2953 STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x67); /* PER */
2958 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2959 STV090x_SETFIELD_Px(reg
, DVBS1_ENABLE_FIELD
, 1);
2960 STV090x_SETFIELD_Px(reg
, DVBS2_ENABLE_FIELD
, 1);
2961 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2966 f_1
= STV090x_READ_DEMOD(state
, CFR2
);
2967 f_0
= STV090x_READ_DEMOD(state
, CFR1
);
2968 reg
= STV090x_READ_DEMOD(state
, TMGOBS
);
2969 rolloff
= STV090x_GETFIELD_Px(reg
, ROLLOFF_STATUS_FIELD
);
2971 if (state
->algo
== STV090x_BLIND_SEARCH
) {
2972 STV090x_WRITE_DEMOD(state
, SFRSTEP
, 0x00);
2973 reg
= STV090x_READ_DEMOD(state
, DMDCFGMD
);
2974 STV090x_SETFIELD_Px(reg
, SCAN_ENABLE_FIELD
, 0x00);
2975 STV090x_SETFIELD_Px(reg
, CFR_AUTOSCAN_FIELD
, 0x00);
2976 if (STV090x_WRITE_DEMOD(state
, DMDCFGMD
, reg
) < 0)
2978 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc1) < 0)
2981 if (stv090x_set_srate(state
, srate
) < 0)
2985 if (stv090x_dvbs_track_crl(state
) < 0)
2989 if (state
->internal
->dev_ver
>= 0x20) {
2990 if ((state
->search_mode
== STV090x_SEARCH_DVBS1
) ||
2991 (state
->search_mode
== STV090x_SEARCH_DSS
) ||
2992 (state
->search_mode
== STV090x_SEARCH_AUTO
)) {
2994 if (STV090x_WRITE_DEMOD(state
, VAVSRVIT
, 0x0a) < 0)
2996 if (STV090x_WRITE_DEMOD(state
, VITSCALE
, 0x00) < 0)
3001 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
3004 /* AUTO tracking MODE */
3005 if (STV090x_WRITE_DEMOD(state
, SFRUP1
, 0x80) < 0)
3007 /* AUTO tracking MODE */
3008 if (STV090x_WRITE_DEMOD(state
, SFRLOW1
, 0x80) < 0)
3011 if ((state
->internal
->dev_ver
>= 0x20) || (blind_tune
== 1) ||
3012 (state
->srate
< 10000000)) {
3013 /* update initial carrier freq with the found freq offset */
3014 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, f_1
) < 0)
3016 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, f_0
) < 0)
3018 state
->tuner_bw
= stv090x_car_width(srate
, state
->rolloff
) + 10000000;
3020 if ((state
->internal
->dev_ver
>= 0x20) || (blind_tune
== 1)) {
3022 if (state
->algo
!= STV090x_WARM_SEARCH
) {
3024 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3027 if (state
->config
->tuner_set_bandwidth
) {
3028 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
3032 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3037 if ((state
->algo
== STV090x_BLIND_SEARCH
) || (state
->srate
< 10000000))
3038 msleep(50); /* blind search: wait 50ms for SR stabilization */
3042 stv090x_get_lock_tmg(state
);
3044 if (!(stv090x_get_dmdlock(state
, (state
->DemodTimeout
/ 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)
3056 while ((!(stv090x_get_dmdlock(state
, (state
->DemodTimeout
/ 2)))) && (i
<= 2)) {
3058 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x1f) < 0)
3060 if (STV090x_WRITE_DEMOD(state
, CFRINIT1
, f_1
) < 0)
3062 if (STV090x_WRITE_DEMOD(state
, CFRINIT0
, f_0
) < 0)
3064 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x18) < 0)
3072 if (state
->internal
->dev_ver
>= 0x20) {
3073 if (STV090x_WRITE_DEMOD(state
, CARFREQ
, 0x49) < 0)
3077 if ((state
->delsys
== STV090x_DVBS1
) || (state
->delsys
== STV090x_DSS
))
3078 stv090x_set_vit_thtracq(state
);
3083 stv090x_i2c_gate_ctrl(state
, 0);
3085 dprintk(FE_ERROR
, 1, "I/O error");
3089 static int stv090x_get_feclock(struct stv090x_state
*state
, s32 timeout
)
3091 s32 timer
= 0, lock
= 0, stat
;
3094 while ((timer
< timeout
) && (!lock
)) {
3095 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
3096 stat
= STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
);
3099 case 0: /* searching */
3100 case 1: /* first PLH detected */
3105 case 2: /* DVB-S2 mode */
3106 reg
= STV090x_READ_DEMOD(state
, PDELSTATUS1
);
3107 lock
= STV090x_GETFIELD_Px(reg
, PKTDELIN_LOCK_FIELD
);
3110 case 3: /* DVB-S1/legacy mode */
3111 reg
= STV090x_READ_DEMOD(state
, VSTATUSVIT
);
3112 lock
= STV090x_GETFIELD_Px(reg
, LOCKEDVIT_FIELD
);
3123 static int stv090x_get_lock(struct stv090x_state
*state
, s32 timeout_dmd
, s32 timeout_fec
)
3129 lock
= stv090x_get_dmdlock(state
, timeout_dmd
);
3131 lock
= stv090x_get_feclock(state
, timeout_fec
);
3136 while ((timer
< timeout_fec
) && (!lock
)) {
3137 reg
= STV090x_READ_DEMOD(state
, TSSTATUS
);
3138 lock
= STV090x_GETFIELD_Px(reg
, TSFIFO_LINEOK_FIELD
);
3147 static int stv090x_set_s2rolloff(struct stv090x_state
*state
)
3151 if (state
->internal
->dev_ver
<= 0x20) {
3152 /* rolloff to auto mode if DVBS2 */
3153 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
3154 STV090x_SETFIELD_Px(reg
, MANUAL_SXROLLOFF_FIELD
, 0x00);
3155 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
3158 /* DVB-S2 rolloff to auto mode if DVBS2 */
3159 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
3160 STV090x_SETFIELD_Px(reg
, MANUAL_S2ROLLOFF_FIELD
, 0x00);
3161 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
3166 dprintk(FE_ERROR
, 1, "I/O error");
3171 static enum stv090x_signal_state
stv090x_algo(struct stv090x_state
*state
)
3173 struct dvb_frontend
*fe
= &state
->frontend
;
3174 enum stv090x_signal_state signal_state
= STV090x_NOCARRIER
;
3176 s32 agc1_power
, power_iq
= 0, i
;
3177 int lock
= 0, low_sr
= 0, no_signal
= 0;
3179 reg
= STV090x_READ_DEMOD(state
, TSCFGH
);
3180 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 1); /* Stop path 1 stream merger */
3181 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3184 if (STV090x_WRITE_DEMOD(state
, DMDISTATE
, 0x5c) < 0) /* Demod stop */
3187 if (state
->internal
->dev_ver
>= 0x20) {
3188 if (state
->srate
> 5000000) {
3189 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x9e) < 0)
3192 if (STV090x_WRITE_DEMOD(state
, CORRELABS
, 0x82) < 0)
3197 stv090x_get_lock_tmg(state
);
3199 if (state
->algo
== STV090x_BLIND_SEARCH
) {
3200 state
->tuner_bw
= 2 * 36000000; /* wide bw for unknown srate */
3201 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc0) < 0) /* wider srate scan */
3203 if (STV090x_WRITE_DEMOD(state
, CORRELMANT
, 0x70) < 0)
3205 if (stv090x_set_srate(state
, 1000000) < 0) /* inital srate = 1Msps */
3209 if (STV090x_WRITE_DEMOD(state
, DMDTOM
, 0x20) < 0)
3211 if (STV090x_WRITE_DEMOD(state
, TMGCFG
, 0xd2) < 0)
3214 if (state
->srate
< 2000000) {
3216 if (STV090x_WRITE_DEMOD(state
, CORRELMANT
, 0x63) < 0)
3220 if (STV090x_WRITE_DEMOD(state
, CORRELMANT
, 0x70) < 0)
3224 if (STV090x_WRITE_DEMOD(state
, AGC2REF
, 0x38) < 0)
3227 if (state
->internal
->dev_ver
>= 0x20) {
3228 if (STV090x_WRITE_DEMOD(state
, KREFTMG
, 0x5a) < 0)
3230 if (state
->algo
== STV090x_COLD_SEARCH
)
3231 state
->tuner_bw
= (15 * (stv090x_car_width(state
->srate
, state
->rolloff
) + 10000000)) / 10;
3232 else if (state
->algo
== STV090x_WARM_SEARCH
)
3233 state
->tuner_bw
= stv090x_car_width(state
->srate
, state
->rolloff
) + 10000000;
3236 /* if cold start or warm (Symbolrate is known)
3237 * use a Narrow symbol rate scan range
3239 if (STV090x_WRITE_DEMOD(state
, TMGCFG2
, 0xc1) < 0) /* narrow srate scan */
3242 if (stv090x_set_srate(state
, state
->srate
) < 0)
3245 if (stv090x_set_max_srate(state
, state
->internal
->mclk
,
3248 if (stv090x_set_min_srate(state
, state
->internal
->mclk
,
3252 if (state
->srate
>= 10000000)
3259 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3262 if (state
->config
->tuner_set_bbgain
) {
3263 reg
= state
->config
->tuner_bbgain
;
3265 reg
= 10; /* default: 10dB */
3266 if (state
->config
->tuner_set_bbgain(fe
, reg
) < 0)
3270 if (state
->config
->tuner_set_frequency
) {
3271 if (state
->config
->tuner_set_frequency(fe
, state
->frequency
) < 0)
3275 if (state
->config
->tuner_set_bandwidth
) {
3276 if (state
->config
->tuner_set_bandwidth(fe
, state
->tuner_bw
) < 0)
3280 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3285 if (state
->config
->tuner_get_status
) {
3286 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3288 if (state
->config
->tuner_get_status(fe
, ®
) < 0)
3290 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3294 dprintk(FE_DEBUG
, 1, "Tuner phase locked");
3296 dprintk(FE_DEBUG
, 1, "Tuner unlocked");
3297 return STV090x_NOCARRIER
;
3302 agc1_power
= MAKEWORD16(STV090x_READ_DEMOD(state
, AGCIQIN1
),
3303 STV090x_READ_DEMOD(state
, AGCIQIN0
));
3305 if (agc1_power
== 0) {
3306 /* If AGC1 integrator value is 0
3307 * then read POWERI, POWERQ
3309 for (i
= 0; i
< 5; i
++) {
3310 power_iq
+= (STV090x_READ_DEMOD(state
, POWERI
) +
3311 STV090x_READ_DEMOD(state
, POWERQ
)) >> 1;
3316 if ((agc1_power
== 0) && (power_iq
< STV090x_IQPOWER_THRESHOLD
)) {
3317 dprintk(FE_ERROR
, 1, "No Signal: POWER_IQ=0x%02x", power_iq
);
3319 signal_state
= STV090x_NOAGC1
;
3321 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
3322 STV090x_SETFIELD_Px(reg
, SPECINV_CONTROL_FIELD
, state
->inversion
);
3324 if (state
->internal
->dev_ver
<= 0x20) {
3325 /* rolloff to auto mode if DVBS2 */
3326 STV090x_SETFIELD_Px(reg
, MANUAL_SXROLLOFF_FIELD
, 1);
3328 /* DVB-S2 rolloff to auto mode if DVBS2 */
3329 STV090x_SETFIELD_Px(reg
, MANUAL_S2ROLLOFF_FIELD
, 1);
3331 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
3334 if (stv090x_delivery_search(state
) < 0)
3337 if (state
->algo
!= STV090x_BLIND_SEARCH
) {
3338 if (stv090x_start_search(state
) < 0)
3343 if (signal_state
== STV090x_NOAGC1
)
3344 return signal_state
;
3346 if (state
->algo
== STV090x_BLIND_SEARCH
)
3347 lock
= stv090x_blind_search(state
);
3349 else if (state
->algo
== STV090x_COLD_SEARCH
)
3350 lock
= stv090x_get_coldlock(state
, state
->DemodTimeout
);
3352 else if (state
->algo
== STV090x_WARM_SEARCH
)
3353 lock
= stv090x_get_dmdlock(state
, state
->DemodTimeout
);
3355 if ((!lock
) && (state
->algo
== STV090x_COLD_SEARCH
)) {
3357 if (stv090x_chk_tmg(state
))
3358 lock
= stv090x_sw_algo(state
);
3363 signal_state
= stv090x_get_sig_params(state
);
3365 if ((lock
) && (signal_state
== STV090x_RANGEOK
)) { /* signal within Range */
3366 stv090x_optimize_track(state
);
3368 if (state
->internal
->dev_ver
>= 0x20) {
3369 /* >= Cut 2.0 :release TS reset after
3370 * demod lock and optimized Tracking
3372 reg
= STV090x_READ_DEMOD(state
, TSCFGH
);
3373 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0); /* release merger reset */
3374 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3379 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 1); /* merger reset */
3380 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3383 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0); /* release merger reset */
3384 if (STV090x_WRITE_DEMOD(state
, TSCFGH
, reg
) < 0)
3388 lock
= stv090x_get_lock(state
, state
->FecTimeout
,
3391 if (state
->delsys
== STV090x_DVBS2
) {
3392 stv090x_set_s2rolloff(state
);
3394 reg
= STV090x_READ_DEMOD(state
, PDELCTRL2
);
3395 STV090x_SETFIELD_Px(reg
, RESET_UPKO_COUNT
, 1);
3396 if (STV090x_WRITE_DEMOD(state
, PDELCTRL2
, reg
) < 0)
3398 /* Reset DVBS2 packet delinator error counter */
3399 reg
= STV090x_READ_DEMOD(state
, PDELCTRL2
);
3400 STV090x_SETFIELD_Px(reg
, RESET_UPKO_COUNT
, 0);
3401 if (STV090x_WRITE_DEMOD(state
, PDELCTRL2
, reg
) < 0)
3404 if (STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x67) < 0) /* PER */
3407 if (STV090x_WRITE_DEMOD(state
, ERRCTRL1
, 0x75) < 0)
3410 /* Reset the Total packet counter */
3411 if (STV090x_WRITE_DEMOD(state
, FBERCPT4
, 0x00) < 0)
3413 /* Reset the packet Error counter2 */
3414 if (STV090x_WRITE_DEMOD(state
, ERRCTRL2
, 0xc1) < 0)
3417 signal_state
= STV090x_NODATA
;
3418 no_signal
= stv090x_chk_signal(state
);
3421 return signal_state
;
3424 stv090x_i2c_gate_ctrl(state
, 0);
3426 dprintk(FE_ERROR
, 1, "I/O error");
3430 static enum dvbfe_search
stv090x_search(struct dvb_frontend
*fe
, struct dvb_frontend_parameters
*p
)
3432 struct stv090x_state
*state
= fe
->demodulator_priv
;
3433 struct dtv_frontend_properties
*props
= &fe
->dtv_property_cache
;
3435 if (p
->frequency
== 0)
3436 return DVBFE_ALGO_SEARCH_INVALID
;
3438 state
->delsys
= props
->delivery_system
;
3439 state
->frequency
= p
->frequency
;
3440 state
->srate
= p
->u
.qpsk
.symbol_rate
;
3441 state
->search_mode
= STV090x_SEARCH_AUTO
;
3442 state
->algo
= STV090x_COLD_SEARCH
;
3443 state
->fec
= STV090x_PRERR
;
3444 if (state
->srate
> 10000000) {
3445 dprintk(FE_DEBUG
, 1, "Search range: 10 MHz");
3446 state
->search_range
= 10000000;
3448 dprintk(FE_DEBUG
, 1, "Search range: 5 MHz");
3449 state
->search_range
= 5000000;
3452 if (stv090x_algo(state
) == STV090x_RANGEOK
) {
3453 dprintk(FE_DEBUG
, 1, "Search success!");
3454 return DVBFE_ALGO_SEARCH_SUCCESS
;
3456 dprintk(FE_DEBUG
, 1, "Search failed!");
3457 return DVBFE_ALGO_SEARCH_FAILED
;
3460 return DVBFE_ALGO_SEARCH_ERROR
;
3463 static int stv090x_read_status(struct dvb_frontend
*fe
, enum fe_status
*status
)
3465 struct stv090x_state
*state
= fe
->demodulator_priv
;
3469 reg
= STV090x_READ_DEMOD(state
, DMDSTATE
);
3470 search_state
= STV090x_GETFIELD_Px(reg
, HEADER_MODE_FIELD
);
3472 switch (search_state
) {
3473 case 0: /* searching */
3474 case 1: /* first PLH detected */
3476 dprintk(FE_DEBUG
, 1, "Status: Unlocked (Searching ..)");
3480 case 2: /* DVB-S2 mode */
3481 dprintk(FE_DEBUG
, 1, "Delivery system: DVB-S2");
3482 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3483 if (STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
)) {
3484 reg
= STV090x_READ_DEMOD(state
, PDELSTATUS1
);
3485 if (STV090x_GETFIELD_Px(reg
, PKTDELIN_LOCK_FIELD
)) {
3486 reg
= STV090x_READ_DEMOD(state
, TSSTATUS
);
3487 if (STV090x_GETFIELD_Px(reg
, TSFIFO_LINEOK_FIELD
)) {
3488 *status
= FE_HAS_SIGNAL
|
3498 case 3: /* DVB-S1/legacy mode */
3499 dprintk(FE_DEBUG
, 1, "Delivery system: DVB-S");
3500 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3501 if (STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
)) {
3502 reg
= STV090x_READ_DEMOD(state
, VSTATUSVIT
);
3503 if (STV090x_GETFIELD_Px(reg
, LOCKEDVIT_FIELD
)) {
3504 reg
= STV090x_READ_DEMOD(state
, TSSTATUS
);
3505 if (STV090x_GETFIELD_Px(reg
, TSFIFO_LINEOK_FIELD
)) {
3506 *status
= FE_HAS_SIGNAL
|
3520 static int stv090x_read_per(struct dvb_frontend
*fe
, u32
*per
)
3522 struct stv090x_state
*state
= fe
->demodulator_priv
;
3524 s32 count_4
, count_3
, count_2
, count_1
, count_0
, count
;
3526 enum fe_status status
;
3528 stv090x_read_status(fe
, &status
);
3529 if (!(status
& FE_HAS_LOCK
)) {
3530 *per
= 1 << 23; /* Max PER */
3533 reg
= STV090x_READ_DEMOD(state
, ERRCNT22
);
3534 h
= STV090x_GETFIELD_Px(reg
, ERR_CNT2_FIELD
);
3536 reg
= STV090x_READ_DEMOD(state
, ERRCNT21
);
3537 m
= STV090x_GETFIELD_Px(reg
, ERR_CNT21_FIELD
);
3539 reg
= STV090x_READ_DEMOD(state
, ERRCNT20
);
3540 l
= STV090x_GETFIELD_Px(reg
, ERR_CNT20_FIELD
);
3542 *per
= ((h
<< 16) | (m
<< 8) | l
);
3544 count_4
= STV090x_READ_DEMOD(state
, FBERCPT4
);
3545 count_3
= STV090x_READ_DEMOD(state
, FBERCPT3
);
3546 count_2
= STV090x_READ_DEMOD(state
, FBERCPT2
);
3547 count_1
= STV090x_READ_DEMOD(state
, FBERCPT1
);
3548 count_0
= STV090x_READ_DEMOD(state
, FBERCPT0
);
3550 if ((!count_4
) && (!count_3
)) {
3551 count
= (count_2
& 0xff) << 16;
3552 count
|= (count_1
& 0xff) << 8;
3553 count
|= count_0
& 0xff;
3560 if (STV090x_WRITE_DEMOD(state
, FBERCPT4
, 0) < 0)
3562 if (STV090x_WRITE_DEMOD(state
, ERRCTRL2
, 0xc1) < 0)
3567 dprintk(FE_ERROR
, 1, "I/O error");
3571 static int stv090x_table_lookup(const struct stv090x_tab
*tab
, int max
, int val
)
3576 if ((val
>= tab
[min
].read
&& val
< tab
[max
].read
) ||
3577 (val
>= tab
[max
].read
&& val
< tab
[min
].read
)) {
3578 while ((max
- min
) > 1) {
3579 med
= (max
+ min
) / 2;
3580 if ((val
>= tab
[min
].read
&& val
< tab
[med
].read
) ||
3581 (val
>= tab
[med
].read
&& val
< tab
[min
].read
))
3586 res
= ((val
- tab
[min
].read
) *
3587 (tab
[max
].real
- tab
[min
].real
) /
3588 (tab
[max
].read
- tab
[min
].read
)) +
3591 if (tab
[min
].read
< tab
[max
].read
) {
3592 if (val
< tab
[min
].read
)
3593 res
= tab
[min
].real
;
3594 else if (val
>= tab
[max
].read
)
3595 res
= tab
[max
].real
;
3597 if (val
>= tab
[min
].read
)
3598 res
= tab
[min
].real
;
3599 else if (val
< tab
[max
].read
)
3600 res
= tab
[max
].real
;
3607 static int stv090x_read_signal_strength(struct dvb_frontend
*fe
, u16
*strength
)
3609 struct stv090x_state
*state
= fe
->demodulator_priv
;
3611 s32 agc_0
, agc_1
, agc
;
3614 reg
= STV090x_READ_DEMOD(state
, AGCIQIN1
);
3615 agc_1
= STV090x_GETFIELD_Px(reg
, AGCIQ_VALUE_FIELD
);
3616 reg
= STV090x_READ_DEMOD(state
, AGCIQIN0
);
3617 agc_0
= STV090x_GETFIELD_Px(reg
, AGCIQ_VALUE_FIELD
);
3618 agc
= MAKEWORD16(agc_1
, agc_0
);
3620 str
= stv090x_table_lookup(stv090x_rf_tab
,
3621 ARRAY_SIZE(stv090x_rf_tab
) - 1, agc
);
3622 if (agc
> stv090x_rf_tab
[0].read
)
3624 else if (agc
< stv090x_rf_tab
[ARRAY_SIZE(stv090x_rf_tab
) - 1].read
)
3626 *strength
= (str
+ 100) * 0xFFFF / 100;
3631 static int stv090x_read_cnr(struct dvb_frontend
*fe
, u16
*cnr
)
3633 struct stv090x_state
*state
= fe
->demodulator_priv
;
3634 u32 reg_0
, reg_1
, reg
, i
;
3635 s32 val_0
, val_1
, val
= 0;
3640 switch (state
->delsys
) {
3642 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3643 lock_f
= STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
);
3646 for (i
= 0; i
< 16; i
++) {
3647 reg_1
= STV090x_READ_DEMOD(state
, NNOSPLHT1
);
3648 val_1
= STV090x_GETFIELD_Px(reg_1
, NOSPLHT_NORMED_FIELD
);
3649 reg_0
= STV090x_READ_DEMOD(state
, NNOSPLHT0
);
3650 val_0
= STV090x_GETFIELD_Px(reg_0
, NOSPLHT_NORMED_FIELD
);
3651 val
+= MAKEWORD16(val_1
, val_0
);
3655 last
= ARRAY_SIZE(stv090x_s2cn_tab
) - 1;
3656 div
= stv090x_s2cn_tab
[0].read
-
3657 stv090x_s2cn_tab
[last
].read
;
3658 *cnr
= 0xFFFF - ((val
* 0xFFFF) / div
);
3664 reg
= STV090x_READ_DEMOD(state
, DSTATUS
);
3665 lock_f
= STV090x_GETFIELD_Px(reg
, LOCK_DEFINITIF_FIELD
);
3668 for (i
= 0; i
< 16; i
++) {
3669 reg_1
= STV090x_READ_DEMOD(state
, NOSDATAT1
);
3670 val_1
= STV090x_GETFIELD_Px(reg_1
, NOSDATAT_UNNORMED_FIELD
);
3671 reg_0
= STV090x_READ_DEMOD(state
, NOSDATAT0
);
3672 val_0
= STV090x_GETFIELD_Px(reg_0
, NOSDATAT_UNNORMED_FIELD
);
3673 val
+= MAKEWORD16(val_1
, val_0
);
3677 last
= ARRAY_SIZE(stv090x_s1cn_tab
) - 1;
3678 div
= stv090x_s1cn_tab
[0].read
-
3679 stv090x_s1cn_tab
[last
].read
;
3680 *cnr
= 0xFFFF - ((val
* 0xFFFF) / div
);
3690 static int stv090x_set_tone(struct dvb_frontend
*fe
, fe_sec_tone_mode_t tone
)
3692 struct stv090x_state
*state
= fe
->demodulator_priv
;
3695 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3698 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
, 0);
3699 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3700 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3702 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 0);
3703 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3708 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
, 0);
3709 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3710 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3719 dprintk(FE_ERROR
, 1, "I/O error");
3724 static enum dvbfe_algo
stv090x_frontend_algo(struct dvb_frontend
*fe
)
3726 return DVBFE_ALGO_CUSTOM
;
3729 static int stv090x_send_diseqc_msg(struct dvb_frontend
*fe
, struct dvb_diseqc_master_cmd
*cmd
)
3731 struct stv090x_state
*state
= fe
->demodulator_priv
;
3732 u32 reg
, idle
= 0, fifo_full
= 1;
3735 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3737 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
,
3738 (state
->config
->diseqc_envelope_mode
) ? 4 : 2);
3739 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3740 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3742 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 0);
3743 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3746 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 1);
3747 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3750 for (i
= 0; i
< cmd
->msg_len
; i
++) {
3753 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3754 fifo_full
= STV090x_GETFIELD_Px(reg
, FIFO_FULL_FIELD
);
3757 if (STV090x_WRITE_DEMOD(state
, DISTXDATA
, cmd
->msg
[i
]) < 0)
3760 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3761 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 0);
3762 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3767 while ((!idle
) && (i
< 10)) {
3768 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3769 idle
= STV090x_GETFIELD_Px(reg
, TX_IDLE_FIELD
);
3776 dprintk(FE_ERROR
, 1, "I/O error");
3780 static int stv090x_send_diseqc_burst(struct dvb_frontend
*fe
, fe_sec_mini_cmd_t burst
)
3782 struct stv090x_state
*state
= fe
->demodulator_priv
;
3783 u32 reg
, idle
= 0, fifo_full
= 1;
3787 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3789 if (burst
== SEC_MINI_A
) {
3790 mode
= (state
->config
->diseqc_envelope_mode
) ? 5 : 3;
3793 mode
= (state
->config
->diseqc_envelope_mode
) ? 4 : 2;
3797 STV090x_SETFIELD_Px(reg
, DISTX_MODE_FIELD
, mode
);
3798 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 1);
3799 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3801 STV090x_SETFIELD_Px(reg
, DISEQC_RESET_FIELD
, 0);
3802 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3805 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 1);
3806 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3810 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3811 fifo_full
= STV090x_GETFIELD_Px(reg
, FIFO_FULL_FIELD
);
3814 if (STV090x_WRITE_DEMOD(state
, DISTXDATA
, value
) < 0)
3817 reg
= STV090x_READ_DEMOD(state
, DISTXCTL
);
3818 STV090x_SETFIELD_Px(reg
, DIS_PRECHARGE_FIELD
, 0);
3819 if (STV090x_WRITE_DEMOD(state
, DISTXCTL
, reg
) < 0)
3824 while ((!idle
) && (i
< 10)) {
3825 reg
= STV090x_READ_DEMOD(state
, DISTXSTATUS
);
3826 idle
= STV090x_GETFIELD_Px(reg
, TX_IDLE_FIELD
);
3833 dprintk(FE_ERROR
, 1, "I/O error");
3837 static int stv090x_recv_slave_reply(struct dvb_frontend
*fe
, struct dvb_diseqc_slave_reply
*reply
)
3839 struct stv090x_state
*state
= fe
->demodulator_priv
;
3840 u32 reg
= 0, i
= 0, rx_end
= 0;
3842 while ((rx_end
!= 1) && (i
< 10)) {
3845 reg
= STV090x_READ_DEMOD(state
, DISRX_ST0
);
3846 rx_end
= STV090x_GETFIELD_Px(reg
, RX_END_FIELD
);
3850 reply
->msg_len
= STV090x_GETFIELD_Px(reg
, FIFO_BYTENBR_FIELD
);
3851 for (i
= 0; i
< reply
->msg_len
; i
++)
3852 reply
->msg
[i
] = STV090x_READ_DEMOD(state
, DISRXDATA
);
3858 static int stv090x_sleep(struct dvb_frontend
*fe
)
3860 struct stv090x_state
*state
= fe
->demodulator_priv
;
3862 u8 full_standby
= 0;
3864 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
3867 if (state
->config
->tuner_sleep
) {
3868 if (state
->config
->tuner_sleep(fe
) < 0)
3872 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
3875 dprintk(FE_DEBUG
, 1, "Set %s(%d) to sleep",
3876 state
->device
== STV0900
? "STV0900" : "STV0903",
3879 mutex_lock(&state
->internal
->demod_lock
);
3881 switch (state
->demod
) {
3882 case STV090x_DEMODULATOR_0
:
3883 /* power off ADC 1 */
3884 reg
= stv090x_read_reg(state
, STV090x_TSTTNR1
);
3885 STV090x_SETFIELD(reg
, ADC1_PON_FIELD
, 0);
3886 if (stv090x_write_reg(state
, STV090x_TSTTNR1
, reg
) < 0)
3888 /* power off DiSEqC 1 */
3889 reg
= stv090x_read_reg(state
, STV090x_TSTTNR2
);
3890 STV090x_SETFIELD(reg
, DISEQC1_PON_FIELD
, 0);
3891 if (stv090x_write_reg(state
, STV090x_TSTTNR2
, reg
) < 0)
3894 /* check whether path 2 is already sleeping, that is when
3896 reg
= stv090x_read_reg(state
, STV090x_TSTTNR3
);
3897 if (STV090x_GETFIELD(reg
, ADC2_PON_FIELD
) == 0)
3901 reg
= stv090x_read_reg(state
, STV090x_STOPCLK1
);
3902 /* packet delineator 1 clock */
3903 STV090x_SETFIELD(reg
, STOP_CLKPKDT1_FIELD
, 1);
3905 STV090x_SETFIELD(reg
, STOP_CLKADCI1_FIELD
, 1);
3906 /* FEC clock is shared between the two paths, only stop it
3907 when full standby is possible */
3909 STV090x_SETFIELD(reg
, STOP_CLKFEC_FIELD
, 1);
3910 if (stv090x_write_reg(state
, STV090x_STOPCLK1
, reg
) < 0)
3912 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
3913 /* sampling 1 clock */
3914 STV090x_SETFIELD(reg
, STOP_CLKSAMP1_FIELD
, 1);
3915 /* viterbi 1 clock */
3916 STV090x_SETFIELD(reg
, STOP_CLKVIT1_FIELD
, 1);
3917 /* TS clock is shared between the two paths, only stop it
3918 when full standby is possible */
3920 STV090x_SETFIELD(reg
, STOP_CLKTS_FIELD
, 1);
3921 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
3925 case STV090x_DEMODULATOR_1
:
3926 /* power off ADC 2 */
3927 reg
= stv090x_read_reg(state
, STV090x_TSTTNR3
);
3928 STV090x_SETFIELD(reg
, ADC2_PON_FIELD
, 0);
3929 if (stv090x_write_reg(state
, STV090x_TSTTNR3
, reg
) < 0)
3931 /* power off DiSEqC 2 */
3932 reg
= stv090x_read_reg(state
, STV090x_TSTTNR4
);
3933 STV090x_SETFIELD(reg
, DISEQC2_PON_FIELD
, 0);
3934 if (stv090x_write_reg(state
, STV090x_TSTTNR4
, reg
) < 0)
3937 /* check whether path 1 is already sleeping, that is when
3939 reg
= stv090x_read_reg(state
, STV090x_TSTTNR1
);
3940 if (STV090x_GETFIELD(reg
, ADC1_PON_FIELD
) == 0)
3944 reg
= stv090x_read_reg(state
, STV090x_STOPCLK1
);
3945 /* packet delineator 2 clock */
3946 STV090x_SETFIELD(reg
, STOP_CLKPKDT2_FIELD
, 1);
3948 STV090x_SETFIELD(reg
, STOP_CLKADCI2_FIELD
, 1);
3949 /* FEC clock is shared between the two paths, only stop it
3950 when full standby is possible */
3952 STV090x_SETFIELD(reg
, STOP_CLKFEC_FIELD
, 1);
3953 if (stv090x_write_reg(state
, STV090x_STOPCLK1
, reg
) < 0)
3955 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
3956 /* sampling 2 clock */
3957 STV090x_SETFIELD(reg
, STOP_CLKSAMP2_FIELD
, 1);
3958 /* viterbi 2 clock */
3959 STV090x_SETFIELD(reg
, STOP_CLKVIT2_FIELD
, 1);
3960 /* TS clock is shared between the two paths, only stop it
3961 when full standby is possible */
3963 STV090x_SETFIELD(reg
, STOP_CLKTS_FIELD
, 1);
3964 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
3969 dprintk(FE_ERROR
, 1, "Wrong demodulator!");
3974 /* general power off */
3975 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
3976 STV090x_SETFIELD(reg
, STANDBY_FIELD
, 0x01);
3977 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
, reg
) < 0)
3981 mutex_unlock(&state
->internal
->demod_lock
);
3985 stv090x_i2c_gate_ctrl(state
, 0);
3987 mutex_unlock(&state
->internal
->demod_lock
);
3988 dprintk(FE_ERROR
, 1, "I/O error");
3992 static int stv090x_wakeup(struct dvb_frontend
*fe
)
3994 struct stv090x_state
*state
= fe
->demodulator_priv
;
3997 dprintk(FE_DEBUG
, 1, "Wake %s(%d) from standby",
3998 state
->device
== STV0900
? "STV0900" : "STV0903",
4001 mutex_lock(&state
->internal
->demod_lock
);
4003 /* general power on */
4004 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
4005 STV090x_SETFIELD(reg
, STANDBY_FIELD
, 0x00);
4006 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
, reg
) < 0)
4009 switch (state
->demod
) {
4010 case STV090x_DEMODULATOR_0
:
4011 /* power on ADC 1 */
4012 reg
= stv090x_read_reg(state
, STV090x_TSTTNR1
);
4013 STV090x_SETFIELD(reg
, ADC1_PON_FIELD
, 1);
4014 if (stv090x_write_reg(state
, STV090x_TSTTNR1
, reg
) < 0)
4016 /* power on DiSEqC 1 */
4017 reg
= stv090x_read_reg(state
, STV090x_TSTTNR2
);
4018 STV090x_SETFIELD(reg
, DISEQC1_PON_FIELD
, 1);
4019 if (stv090x_write_reg(state
, STV090x_TSTTNR2
, reg
) < 0)
4022 /* activate clocks */
4023 reg
= stv090x_read_reg(state
, STV090x_STOPCLK1
);
4024 /* packet delineator 1 clock */
4025 STV090x_SETFIELD(reg
, STOP_CLKPKDT1_FIELD
, 0);
4027 STV090x_SETFIELD(reg
, STOP_CLKADCI1_FIELD
, 0);
4029 STV090x_SETFIELD(reg
, STOP_CLKFEC_FIELD
, 0);
4030 if (stv090x_write_reg(state
, STV090x_STOPCLK1
, reg
) < 0)
4032 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
4033 /* sampling 1 clock */
4034 STV090x_SETFIELD(reg
, STOP_CLKSAMP1_FIELD
, 0);
4035 /* viterbi 1 clock */
4036 STV090x_SETFIELD(reg
, STOP_CLKVIT1_FIELD
, 0);
4038 STV090x_SETFIELD(reg
, STOP_CLKTS_FIELD
, 0);
4039 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
4043 case STV090x_DEMODULATOR_1
:
4044 /* power on ADC 2 */
4045 reg
= stv090x_read_reg(state
, STV090x_TSTTNR3
);
4046 STV090x_SETFIELD(reg
, ADC2_PON_FIELD
, 1);
4047 if (stv090x_write_reg(state
, STV090x_TSTTNR3
, reg
) < 0)
4049 /* power on DiSEqC 2 */
4050 reg
= stv090x_read_reg(state
, STV090x_TSTTNR4
);
4051 STV090x_SETFIELD(reg
, DISEQC2_PON_FIELD
, 1);
4052 if (stv090x_write_reg(state
, STV090x_TSTTNR4
, reg
) < 0)
4055 /* activate clocks */
4056 reg
= stv090x_read_reg(state
, STV090x_STOPCLK1
);
4057 /* packet delineator 2 clock */
4058 STV090x_SETFIELD(reg
, STOP_CLKPKDT2_FIELD
, 0);
4060 STV090x_SETFIELD(reg
, STOP_CLKADCI2_FIELD
, 0);
4062 STV090x_SETFIELD(reg
, STOP_CLKFEC_FIELD
, 0);
4063 if (stv090x_write_reg(state
, STV090x_STOPCLK1
, reg
) < 0)
4065 reg
= stv090x_read_reg(state
, STV090x_STOPCLK2
);
4066 /* sampling 2 clock */
4067 STV090x_SETFIELD(reg
, STOP_CLKSAMP2_FIELD
, 0);
4068 /* viterbi 2 clock */
4069 STV090x_SETFIELD(reg
, STOP_CLKVIT2_FIELD
, 0);
4071 STV090x_SETFIELD(reg
, STOP_CLKTS_FIELD
, 0);
4072 if (stv090x_write_reg(state
, STV090x_STOPCLK2
, reg
) < 0)
4077 dprintk(FE_ERROR
, 1, "Wrong demodulator!");
4081 mutex_unlock(&state
->internal
->demod_lock
);
4084 mutex_unlock(&state
->internal
->demod_lock
);
4085 dprintk(FE_ERROR
, 1, "I/O error");
4089 static void stv090x_release(struct dvb_frontend
*fe
)
4091 struct stv090x_state
*state
= fe
->demodulator_priv
;
4093 state
->internal
->num_used
--;
4094 if (state
->internal
->num_used
<= 0) {
4096 dprintk(FE_ERROR
, 1, "Actually removing");
4098 remove_dev(state
->internal
);
4099 kfree(state
->internal
);
4105 static int stv090x_ldpc_mode(struct stv090x_state
*state
, enum stv090x_mode ldpc_mode
)
4109 reg
= stv090x_read_reg(state
, STV090x_GENCFG
);
4111 switch (ldpc_mode
) {
4114 if ((state
->demod_mode
!= STV090x_DUAL
) || (STV090x_GETFIELD(reg
, DDEMOD_FIELD
) != 1)) {
4115 /* set LDPC to dual mode */
4116 if (stv090x_write_reg(state
, STV090x_GENCFG
, 0x1d) < 0)
4119 state
->demod_mode
= STV090x_DUAL
;
4121 reg
= stv090x_read_reg(state
, STV090x_TSTRES0
);
4122 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x1);
4123 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
4125 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x0);
4126 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
4129 if (STV090x_WRITE_DEMOD(state
, MODCODLST0
, 0xff) < 0)
4131 if (STV090x_WRITE_DEMOD(state
, MODCODLST1
, 0xff) < 0)
4133 if (STV090x_WRITE_DEMOD(state
, MODCODLST2
, 0xff) < 0)
4135 if (STV090x_WRITE_DEMOD(state
, MODCODLST3
, 0xff) < 0)
4137 if (STV090x_WRITE_DEMOD(state
, MODCODLST4
, 0xff) < 0)
4139 if (STV090x_WRITE_DEMOD(state
, MODCODLST5
, 0xff) < 0)
4141 if (STV090x_WRITE_DEMOD(state
, MODCODLST6
, 0xff) < 0)
4144 if (STV090x_WRITE_DEMOD(state
, MODCODLST7
, 0xcc) < 0)
4146 if (STV090x_WRITE_DEMOD(state
, MODCODLST8
, 0xcc) < 0)
4148 if (STV090x_WRITE_DEMOD(state
, MODCODLST9
, 0xcc) < 0)
4150 if (STV090x_WRITE_DEMOD(state
, MODCODLSTA
, 0xcc) < 0)
4152 if (STV090x_WRITE_DEMOD(state
, MODCODLSTB
, 0xcc) < 0)
4154 if (STV090x_WRITE_DEMOD(state
, MODCODLSTC
, 0xcc) < 0)
4156 if (STV090x_WRITE_DEMOD(state
, MODCODLSTD
, 0xcc) < 0)
4159 if (STV090x_WRITE_DEMOD(state
, MODCODLSTE
, 0xff) < 0)
4161 if (STV090x_WRITE_DEMOD(state
, MODCODLSTF
, 0xcf) < 0)
4166 case STV090x_SINGLE
:
4167 if (stv090x_stop_modcod(state
) < 0)
4169 if (stv090x_activate_modcod_single(state
) < 0)
4172 if (state
->demod
== STV090x_DEMODULATOR_1
) {
4173 if (stv090x_write_reg(state
, STV090x_GENCFG
, 0x06) < 0) /* path 2 */
4176 if (stv090x_write_reg(state
, STV090x_GENCFG
, 0x04) < 0) /* path 1 */
4180 reg
= stv090x_read_reg(state
, STV090x_TSTRES0
);
4181 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x1);
4182 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
4184 STV090x_SETFIELD(reg
, FRESFEC_FIELD
, 0x0);
4185 if (stv090x_write_reg(state
, STV090x_TSTRES0
, reg
) < 0)
4188 reg
= STV090x_READ_DEMOD(state
, PDELCTRL1
);
4189 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0x01);
4190 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
4192 STV090x_SETFIELD_Px(reg
, ALGOSWRST_FIELD
, 0x00);
4193 if (STV090x_WRITE_DEMOD(state
, PDELCTRL1
, reg
) < 0)
4200 dprintk(FE_ERROR
, 1, "I/O error");
4204 /* return (Hz), clk in Hz*/
4205 static u32
stv090x_get_mclk(struct stv090x_state
*state
)
4207 const struct stv090x_config
*config
= state
->config
;
4211 div
= stv090x_read_reg(state
, STV090x_NCOARSE
);
4212 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
4213 ratio
= STV090x_GETFIELD(reg
, SELX1RATIO_FIELD
) ? 4 : 6;
4215 return (div
+ 1) * config
->xtal
/ ratio
; /* kHz */
4218 static int stv090x_set_mclk(struct stv090x_state
*state
, u32 mclk
, u32 clk
)
4220 const struct stv090x_config
*config
= state
->config
;
4221 u32 reg
, div
, clk_sel
;
4223 reg
= stv090x_read_reg(state
, STV090x_SYNTCTRL
);
4224 clk_sel
= ((STV090x_GETFIELD(reg
, SELX1RATIO_FIELD
) == 1) ? 4 : 6);
4226 div
= ((clk_sel
* mclk
) / config
->xtal
) - 1;
4228 reg
= stv090x_read_reg(state
, STV090x_NCOARSE
);
4229 STV090x_SETFIELD(reg
, M_DIV_FIELD
, div
);
4230 if (stv090x_write_reg(state
, STV090x_NCOARSE
, reg
) < 0)
4233 state
->internal
->mclk
= stv090x_get_mclk(state
);
4235 /*Set the DiseqC frequency to 22KHz */
4236 div
= state
->internal
->mclk
/ 704000;
4237 if (STV090x_WRITE_DEMOD(state
, F22TX
, div
) < 0)
4239 if (STV090x_WRITE_DEMOD(state
, F22RX
, div
) < 0)
4244 dprintk(FE_ERROR
, 1, "I/O error");
4248 static int stv090x_set_tspath(struct stv090x_state
*state
)
4252 if (state
->internal
->dev_ver
>= 0x20) {
4253 switch (state
->config
->ts1_mode
) {
4254 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4255 case STV090x_TSMODE_DVBCI
:
4256 switch (state
->config
->ts2_mode
) {
4257 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4258 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4260 stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x00);
4263 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4264 case STV090x_TSMODE_DVBCI
:
4265 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x06) < 0) /* Mux'd stream mode */
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 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGM
);
4272 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4273 if (stv090x_write_reg(state
, STV090x_P2_TSCFGM
, reg
) < 0)
4275 if (stv090x_write_reg(state
, STV090x_P1_TSSPEED
, 0x14) < 0)
4277 if (stv090x_write_reg(state
, STV090x_P2_TSSPEED
, 0x28) < 0)
4283 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4284 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4286 switch (state
->config
->ts2_mode
) {
4287 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4288 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4290 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x0c) < 0)
4294 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4295 case STV090x_TSMODE_DVBCI
:
4296 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x0a) < 0)
4303 switch (state
->config
->ts1_mode
) {
4304 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4305 case STV090x_TSMODE_DVBCI
:
4306 switch (state
->config
->ts2_mode
) {
4307 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4308 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4310 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x10);
4313 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4314 case STV090x_TSMODE_DVBCI
:
4315 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x16);
4316 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGM
);
4317 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4318 if (stv090x_write_reg(state
, STV090x_P1_TSCFGM
, reg
) < 0)
4320 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGM
);
4321 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 0);
4322 if (stv090x_write_reg(state
, STV090x_P1_TSCFGM
, reg
) < 0)
4324 if (stv090x_write_reg(state
, STV090x_P1_TSSPEED
, 0x14) < 0)
4326 if (stv090x_write_reg(state
, STV090x_P2_TSSPEED
, 0x28) < 0)
4332 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4333 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4335 switch (state
->config
->ts2_mode
) {
4336 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4337 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4339 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x14);
4342 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4343 case STV090x_TSMODE_DVBCI
:
4344 stv090x_write_reg(state
, STV090x_TSGENERAL1X
, 0x12);
4351 switch (state
->config
->ts1_mode
) {
4352 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4353 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4354 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts1_tei
);
4355 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4356 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4357 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4361 case STV090x_TSMODE_DVBCI
:
4362 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4363 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts1_tei
);
4364 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4365 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4366 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4370 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4371 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4372 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts1_tei
);
4373 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4374 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4375 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4379 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4380 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4381 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts1_tei
);
4382 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4383 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4384 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4392 switch (state
->config
->ts2_mode
) {
4393 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4394 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4395 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts2_tei
);
4396 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4397 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4398 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4402 case STV090x_TSMODE_DVBCI
:
4403 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4404 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts2_tei
);
4405 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x00);
4406 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4407 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4411 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4412 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4413 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts2_tei
);
4414 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4415 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x00);
4416 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4420 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4421 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4422 STV090x_SETFIELD_Px(reg
, TSFIFO_TEIUPDATE_FIELD
, state
->config
->ts2_tei
);
4423 STV090x_SETFIELD_Px(reg
, TSFIFO_SERIAL_FIELD
, 0x01);
4424 STV090x_SETFIELD_Px(reg
, TSFIFO_DVBCI_FIELD
, 0x01);
4425 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4433 if (state
->config
->ts1_clk
> 0) {
4436 switch (state
->config
->ts1_mode
) {
4437 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4438 case STV090x_TSMODE_DVBCI
:
4440 speed
= state
->internal
->mclk
/
4441 (state
->config
->ts1_clk
/ 4);
4447 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4448 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4449 speed
= state
->internal
->mclk
/
4450 (state
->config
->ts1_clk
/ 32);
4457 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGM
);
4458 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4459 if (stv090x_write_reg(state
, STV090x_P1_TSCFGM
, reg
) < 0)
4461 if (stv090x_write_reg(state
, STV090x_P1_TSSPEED
, speed
) < 0)
4465 if (state
->config
->ts2_clk
> 0) {
4468 switch (state
->config
->ts2_mode
) {
4469 case STV090x_TSMODE_PARALLEL_PUNCTURED
:
4470 case STV090x_TSMODE_DVBCI
:
4472 speed
= state
->internal
->mclk
/
4473 (state
->config
->ts2_clk
/ 4);
4479 case STV090x_TSMODE_SERIAL_PUNCTURED
:
4480 case STV090x_TSMODE_SERIAL_CONTINUOUS
:
4481 speed
= state
->internal
->mclk
/
4482 (state
->config
->ts2_clk
/ 32);
4489 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGM
);
4490 STV090x_SETFIELD_Px(reg
, TSFIFO_MANSPEED_FIELD
, 3);
4491 if (stv090x_write_reg(state
, STV090x_P2_TSCFGM
, reg
) < 0)
4493 if (stv090x_write_reg(state
, STV090x_P2_TSSPEED
, speed
) < 0)
4497 reg
= stv090x_read_reg(state
, STV090x_P2_TSCFGH
);
4498 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x01);
4499 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4501 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x00);
4502 if (stv090x_write_reg(state
, STV090x_P2_TSCFGH
, reg
) < 0)
4505 reg
= stv090x_read_reg(state
, STV090x_P1_TSCFGH
);
4506 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x01);
4507 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4509 STV090x_SETFIELD_Px(reg
, RST_HWARE_FIELD
, 0x00);
4510 if (stv090x_write_reg(state
, STV090x_P1_TSCFGH
, reg
) < 0)
4515 dprintk(FE_ERROR
, 1, "I/O error");
4519 static int stv090x_init(struct dvb_frontend
*fe
)
4521 struct stv090x_state
*state
= fe
->demodulator_priv
;
4522 const struct stv090x_config
*config
= state
->config
;
4525 if (state
->internal
->mclk
== 0) {
4526 /* call tuner init to configure the tuner's clock output
4527 divider directly before setting up the master clock of
4529 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
4532 if (config
->tuner_init
) {
4533 if (config
->tuner_init(fe
) < 0)
4537 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
4540 stv090x_set_mclk(state
, 135000000, config
->xtal
); /* 135 Mhz */
4542 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
,
4543 0x20 | config
->clk_mode
) < 0)
4545 stv090x_get_mclk(state
);
4548 if (stv090x_wakeup(fe
) < 0) {
4549 dprintk(FE_ERROR
, 1, "Error waking device");
4553 if (stv090x_ldpc_mode(state
, state
->demod_mode
) < 0)
4556 reg
= STV090x_READ_DEMOD(state
, TNRCFG2
);
4557 STV090x_SETFIELD_Px(reg
, TUN_IQSWAP_FIELD
, state
->inversion
);
4558 if (STV090x_WRITE_DEMOD(state
, TNRCFG2
, reg
) < 0)
4560 reg
= STV090x_READ_DEMOD(state
, DEMOD
);
4561 STV090x_SETFIELD_Px(reg
, ROLLOFF_CONTROL_FIELD
, state
->rolloff
);
4562 if (STV090x_WRITE_DEMOD(state
, DEMOD
, reg
) < 0)
4565 if (stv090x_i2c_gate_ctrl(state
, 1) < 0)
4568 if (config
->tuner_set_mode
) {
4569 if (config
->tuner_set_mode(fe
, TUNER_WAKE
) < 0)
4573 if (config
->tuner_init
) {
4574 if (config
->tuner_init(fe
) < 0)
4578 if (stv090x_i2c_gate_ctrl(state
, 0) < 0)
4581 if (stv090x_set_tspath(state
) < 0)
4587 stv090x_i2c_gate_ctrl(state
, 0);
4589 dprintk(FE_ERROR
, 1, "I/O error");
4593 static int stv090x_setup(struct dvb_frontend
*fe
)
4595 struct stv090x_state
*state
= fe
->demodulator_priv
;
4596 const struct stv090x_config
*config
= state
->config
;
4597 const struct stv090x_reg
*stv090x_initval
= NULL
;
4598 const struct stv090x_reg
*stv090x_cut20_val
= NULL
;
4599 unsigned long t1_size
= 0, t2_size
= 0;
4604 if (state
->device
== STV0900
) {
4605 dprintk(FE_DEBUG
, 1, "Initializing STV0900");
4606 stv090x_initval
= stv0900_initval
;
4607 t1_size
= ARRAY_SIZE(stv0900_initval
);
4608 stv090x_cut20_val
= stv0900_cut20_val
;
4609 t2_size
= ARRAY_SIZE(stv0900_cut20_val
);
4610 } else if (state
->device
== STV0903
) {
4611 dprintk(FE_DEBUG
, 1, "Initializing STV0903");
4612 stv090x_initval
= stv0903_initval
;
4613 t1_size
= ARRAY_SIZE(stv0903_initval
);
4614 stv090x_cut20_val
= stv0903_cut20_val
;
4615 t2_size
= ARRAY_SIZE(stv0903_cut20_val
);
4621 if (stv090x_write_reg(state
, STV090x_P1_DMDISTATE
, 0x5c) < 0)
4623 if (stv090x_write_reg(state
, STV090x_P2_DMDISTATE
, 0x5c) < 0)
4628 /* Set No Tuner Mode */
4629 if (stv090x_write_reg(state
, STV090x_P1_TNRCFG
, 0x6c) < 0)
4631 if (stv090x_write_reg(state
, STV090x_P2_TNRCFG
, 0x6c) < 0)
4634 /* I2C repeater OFF */
4635 STV090x_SETFIELD_Px(reg
, ENARPT_LEVEL_FIELD
, config
->repeater_level
);
4636 if (stv090x_write_reg(state
, STV090x_P1_I2CRPT
, reg
) < 0)
4638 if (stv090x_write_reg(state
, STV090x_P2_I2CRPT
, reg
) < 0)
4641 if (stv090x_write_reg(state
, STV090x_NCOARSE
, 0x13) < 0) /* set PLL divider */
4644 if (stv090x_write_reg(state
, STV090x_I2CCFG
, 0x08) < 0) /* 1/41 oversampling */
4646 if (stv090x_write_reg(state
, STV090x_SYNTCTRL
, 0x20 | config
->clk_mode
) < 0) /* enable PLL */
4651 dprintk(FE_DEBUG
, 1, "Setting up initial values");
4652 for (i
= 0; i
< t1_size
; i
++) {
4653 if (stv090x_write_reg(state
, stv090x_initval
[i
].addr
, stv090x_initval
[i
].data
) < 0)
4657 state
->internal
->dev_ver
= stv090x_read_reg(state
, STV090x_MID
);
4658 if (state
->internal
->dev_ver
>= 0x20) {
4659 if (stv090x_write_reg(state
, STV090x_TSGENERAL
, 0x0c) < 0)
4662 /* write cut20_val*/
4663 dprintk(FE_DEBUG
, 1, "Setting up Cut 2.0 initial values");
4664 for (i
= 0; i
< t2_size
; i
++) {
4665 if (stv090x_write_reg(state
, stv090x_cut20_val
[i
].addr
, stv090x_cut20_val
[i
].data
) < 0)
4669 } else if (state
->internal
->dev_ver
< 0x20) {
4670 dprintk(FE_ERROR
, 1, "ERROR: Unsupported Cut: 0x%02x!",
4671 state
->internal
->dev_ver
);
4674 } else if (state
->internal
->dev_ver
> 0x30) {
4675 /* we shouldn't bail out from here */
4676 dprintk(FE_ERROR
, 1, "INFO: Cut: 0x%02x probably incomplete support!",
4677 state
->internal
->dev_ver
);
4681 reg
= stv090x_read_reg(state
, STV090x_TSTTNR1
);
4682 STV090x_SETFIELD(reg
, ADC1_INMODE_FIELD
,
4683 (config
->adc1_range
== STV090x_ADC_1Vpp
) ? 0 : 1);
4684 if (stv090x_write_reg(state
, STV090x_TSTTNR1
, reg
) < 0)
4688 reg
= stv090x_read_reg(state
, STV090x_TSTTNR3
);
4689 STV090x_SETFIELD(reg
, ADC2_INMODE_FIELD
,
4690 (config
->adc2_range
== STV090x_ADC_1Vpp
) ? 0 : 1);
4691 if (stv090x_write_reg(state
, STV090x_TSTTNR3
, reg
) < 0)
4694 if (stv090x_write_reg(state
, STV090x_TSTRES0
, 0x80) < 0)
4696 if (stv090x_write_reg(state
, STV090x_TSTRES0
, 0x00) < 0)
4701 dprintk(FE_ERROR
, 1, "I/O error");
4705 int stv090x_set_gpio(struct dvb_frontend
*fe
, u8 gpio
, u8 dir
, u8 value
,
4708 struct stv090x_state
*state
= fe
->demodulator_priv
;
4711 STV090x_SETFIELD(reg
, GPIOx_OPD_FIELD
, dir
);
4712 STV090x_SETFIELD(reg
, GPIOx_CONFIG_FIELD
, value
);
4713 STV090x_SETFIELD(reg
, GPIOx_XOR_FIELD
, xor_value
);
4715 return stv090x_write_reg(state
, STV090x_GPIOxCFG(gpio
), reg
);
4717 EXPORT_SYMBOL(stv090x_set_gpio
);
4719 static struct dvb_frontend_ops stv090x_ops
= {
4722 .name
= "STV090x Multistandard",
4724 .frequency_min
= 950000,
4725 .frequency_max
= 2150000,
4726 .frequency_stepsize
= 0,
4727 .frequency_tolerance
= 0,
4728 .symbol_rate_min
= 1000000,
4729 .symbol_rate_max
= 45000000,
4730 .caps
= FE_CAN_INVERSION_AUTO
|
4733 FE_CAN_2G_MODULATION
4736 .release
= stv090x_release
,
4737 .init
= stv090x_init
,
4739 .sleep
= stv090x_sleep
,
4740 .get_frontend_algo
= stv090x_frontend_algo
,
4742 .diseqc_send_master_cmd
= stv090x_send_diseqc_msg
,
4743 .diseqc_send_burst
= stv090x_send_diseqc_burst
,
4744 .diseqc_recv_slave_reply
= stv090x_recv_slave_reply
,
4745 .set_tone
= stv090x_set_tone
,
4747 .search
= stv090x_search
,
4748 .read_status
= stv090x_read_status
,
4749 .read_ber
= stv090x_read_per
,
4750 .read_signal_strength
= stv090x_read_signal_strength
,
4751 .read_snr
= stv090x_read_cnr
4755 struct dvb_frontend
*stv090x_attach(const struct stv090x_config
*config
,
4756 struct i2c_adapter
*i2c
,
4757 enum stv090x_demodulator demod
)
4759 struct stv090x_state
*state
= NULL
;
4760 struct stv090x_dev
*temp_int
;
4762 state
= kzalloc(sizeof (struct stv090x_state
), GFP_KERNEL
);
4766 state
->verbose
= &verbose
;
4767 state
->config
= config
;
4769 state
->frontend
.ops
= stv090x_ops
;
4770 state
->frontend
.demodulator_priv
= state
;
4771 state
->demod
= demod
;
4772 state
->demod_mode
= config
->demod_mode
; /* Single or Dual mode */
4773 state
->device
= config
->device
;
4774 state
->rolloff
= STV090x_RO_35
; /* default */
4776 temp_int
= find_dev(state
->i2c
,
4777 state
->config
->address
);
4779 if ((temp_int
!= NULL
) && (state
->demod_mode
== STV090x_DUAL
)) {
4780 state
->internal
= temp_int
->internal
;
4781 state
->internal
->num_used
++;
4782 dprintk(FE_INFO
, 1, "Found Internal Structure!");
4784 state
->internal
= kmalloc(sizeof(struct stv090x_internal
),
4786 if (!state
->internal
)
4788 temp_int
= append_internal(state
->internal
);
4790 kfree(state
->internal
);
4793 state
->internal
->num_used
= 1;
4794 state
->internal
->mclk
= 0;
4795 state
->internal
->dev_ver
= 0;
4796 state
->internal
->i2c_adap
= state
->i2c
;
4797 state
->internal
->i2c_addr
= state
->config
->address
;
4798 dprintk(FE_INFO
, 1, "Create New Internal Structure!");
4800 mutex_init(&state
->internal
->demod_lock
);
4801 mutex_init(&state
->internal
->tuner_lock
);
4803 if (stv090x_setup(&state
->frontend
) < 0) {
4804 dprintk(FE_ERROR
, 1, "Error setting up device");
4809 /* workaround for stuck DiSEqC output */
4810 if (config
->diseqc_envelope_mode
)
4811 stv090x_send_diseqc_burst(&state
->frontend
, SEC_MINI_A
);
4813 dprintk(FE_ERROR
, 1, "Attaching %s demodulator(%d) Cut=0x%02x",
4814 state
->device
== STV0900
? "STV0900" : "STV0903",
4816 state
->internal
->dev_ver
);
4818 return &state
->frontend
;
4821 remove_dev(state
->internal
);
4822 kfree(state
->internal
);
4827 EXPORT_SYMBOL(stv090x_attach
);
4828 MODULE_PARM_DESC(verbose
, "Set Verbosity level");
4829 MODULE_AUTHOR("Manu Abraham");
4830 MODULE_DESCRIPTION("STV090x Multi-Std Broadcast frontend");
4831 MODULE_LICENSE("GPL");