blob: 3e0acd7cc822170d299689b0250f625ed80929ff [file] [log] [blame]
Manu Abrahame415c682009-04-06 15:45:20 -03001/*
2 STV0900/0903 Multistandard Broadcast Frontend driver
3 Copyright (C) Manu Abraham <abraham.manu@gmail.com>
4
5 Copyright (C) ST Microelectronics
6
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.
11
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.
16
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.
20*/
21
22#include <linux/init.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/string.h>
26#include <linux/mutex.h>
27
28#include <linux/dvb/frontend.h>
29#include "dvb_frontend.h"
30
31#include "stv6110x.h" /* for demodulator internal modes */
32
33#include "stv090x_reg.h"
34#include "stv090x.h"
35#include "stv090x_priv.h"
36
37static unsigned int verbose;
38module_param(verbose, int, 0644);
39
40struct mutex demod_lock;
41
42/* DVBS1 and DSS C/N Lookup table */
43static const struct stv090x_tab stv090x_s1cn_tab[] = {
44 { 0, 8917 }, /* 0.0dB */
45 { 5, 8801 }, /* 0.5dB */
46 { 10, 8667 }, /* 1.0dB */
47 { 15, 8522 }, /* 1.5dB */
48 { 20, 8355 }, /* 2.0dB */
49 { 25, 8175 }, /* 2.5dB */
50 { 30, 7979 }, /* 3.0dB */
51 { 35, 7763 }, /* 3.5dB */
52 { 40, 7530 }, /* 4.0dB */
53 { 45, 7282 }, /* 4.5dB */
54 { 50, 7026 }, /* 5.0dB */
55 { 55, 6781 }, /* 5.5dB */
56 { 60, 6514 }, /* 6.0dB */
57 { 65, 6241 }, /* 6.5dB */
58 { 70, 5965 }, /* 7.0dB */
59 { 75, 5690 }, /* 7.5dB */
60 { 80, 5424 }, /* 8.0dB */
61 { 85, 5161 }, /* 8.5dB */
62 { 90, 4902 }, /* 9.0dB */
63 { 95, 4654 }, /* 9.5dB */
64 { 100, 4417 }, /* 10.0dB */
65 { 105, 4186 }, /* 10.5dB */
66 { 110, 3968 }, /* 11.0dB */
67 { 115, 3757 }, /* 11.5dB */
68 { 120, 3558 }, /* 12.0dB */
69 { 125, 3366 }, /* 12.5dB */
70 { 130, 3185 }, /* 13.0dB */
71 { 135, 3012 }, /* 13.5dB */
72 { 140, 2850 }, /* 14.0dB */
73 { 145, 2698 }, /* 14.5dB */
74 { 150, 2550 }, /* 15.0dB */
75 { 160, 2283 }, /* 16.0dB */
76 { 170, 2042 }, /* 17.0dB */
77 { 180, 1827 }, /* 18.0dB */
78 { 190, 1636 }, /* 19.0dB */
79 { 200, 1466 }, /* 20.0dB */
80 { 210, 1315 }, /* 21.0dB */
81 { 220, 1181 }, /* 22.0dB */
82 { 230, 1064 }, /* 23.0dB */
83 { 240, 960 }, /* 24.0dB */
84 { 250, 869 }, /* 25.0dB */
85 { 260, 792 }, /* 26.0dB */
86 { 270, 724 }, /* 27.0dB */
87 { 280, 665 }, /* 28.0dB */
88 { 290, 616 }, /* 29.0dB */
89 { 300, 573 }, /* 30.0dB */
90 { 310, 537 }, /* 31.0dB */
91 { 320, 507 }, /* 32.0dB */
92 { 330, 483 }, /* 33.0dB */
93 { 400, 398 }, /* 40.0dB */
94 { 450, 381 }, /* 45.0dB */
95 { 500, 377 } /* 50.0dB */
96};
97
98/* DVBS2 C/N Lookup table */
99static const struct stv090x_tab stv090x_s2cn_tab[] = {
100 { -30, 13348 }, /* -3.0dB */
101 { -20, 12640 }, /* -2d.0B */
102 { -10, 11883 }, /* -1.0dB */
103 { 0, 11101 }, /* -0.0dB */
104 { 5, 10718 }, /* 0.5dB */
105 { 10, 10339 }, /* 1.0dB */
106 { 15, 9947 }, /* 1.5dB */
107 { 20, 9552 }, /* 2.0dB */
108 { 25, 9183 }, /* 2.5dB */
109 { 30, 8799 }, /* 3.0dB */
110 { 35, 8422 }, /* 3.5dB */
111 { 40, 8062 }, /* 4.0dB */
112 { 45, 7707 }, /* 4.5dB */
113 { 50, 7353 }, /* 5.0dB */
114 { 55, 7025 }, /* 5.5dB */
115 { 60, 6684 }, /* 6.0dB */
116 { 65, 6331 }, /* 6.5dB */
117 { 70, 6036 }, /* 7.0dB */
118 { 75, 5727 }, /* 7.5dB */
119 { 80, 5437 }, /* 8.0dB */
120 { 85, 5164 }, /* 8.5dB */
121 { 90, 4902 }, /* 9.0dB */
122 { 95, 4653 }, /* 9.5dB */
123 { 100, 4408 }, /* 10.0dB */
124 { 105, 4187 }, /* 10.5dB */
125 { 110, 3961 }, /* 11.0dB */
126 { 115, 3751 }, /* 11.5dB */
127 { 120, 3558 }, /* 12.0dB */
128 { 125, 3368 }, /* 12.5dB */
129 { 130, 3191 }, /* 13.0dB */
130 { 135, 3017 }, /* 13.5dB */
131 { 140, 2862 }, /* 14.0dB */
132 { 145, 2710 }, /* 14.5dB */
133 { 150, 2565 }, /* 15.0dB */
134 { 160, 2300 }, /* 16.0dB */
135 { 170, 2058 }, /* 17.0dB */
136 { 180, 1849 }, /* 18.0dB */
137 { 190, 1663 }, /* 19.0dB */
138 { 200, 1495 }, /* 20.0dB */
139 { 210, 1349 }, /* 21.0dB */
140 { 220, 1222 }, /* 22.0dB */
141 { 230, 1110 }, /* 23.0dB */
142 { 240, 1011 }, /* 24.0dB */
143 { 250, 925 }, /* 25.0dB */
144 { 260, 853 }, /* 26.0dB */
145 { 270, 789 }, /* 27.0dB */
146 { 280, 734 }, /* 28.0dB */
147 { 290, 690 }, /* 29.0dB */
148 { 300, 650 }, /* 30.0dB */
149 { 310, 619 }, /* 31.0dB */
150 { 320, 593 }, /* 32.0dB */
151 { 330, 571 }, /* 33.0dB */
152 { 400, 498 }, /* 40.0dB */
153 { 450, 484 }, /* 45.0dB */
154 { 500, 481 } /* 50.0dB */
155};
156
157/* RF level C/N lookup table */
158static const struct stv090x_tab stv090x_rf_tab[] = {
159 { -5, 0xcaa1 }, /* -5dBm */
160 { -10, 0xc229 }, /* -10dBm */
161 { -15, 0xbb08 }, /* -15dBm */
162 { -20, 0xb4bc }, /* -20dBm */
163 { -25, 0xad5a }, /* -25dBm */
164 { -30, 0xa298 }, /* -30dBm */
165 { -35, 0x98a8 }, /* -35dBm */
166 { -40, 0x8389 }, /* -40dBm */
167 { -45, 0x59be }, /* -45dBm */
168 { -50, 0x3a14 }, /* -50dBm */
169 { -55, 0x2d11 }, /* -55dBm */
170 { -60, 0x210d }, /* -60dBm */
171 { -65, 0xa14f }, /* -65dBm */
172 { -70, 0x07aa } /* -70dBm */
173};
174
175
176static struct stv090x_reg stv0900_initval[] = {
177
178 { STV090x_OUTCFG, 0x00 },
Manu Abraham56571502009-04-07 16:08:26 -0300179 { STV090x_MODECFG, 0xff },
Manu Abrahame415c682009-04-06 15:45:20 -0300180 { STV090x_AGCRF1CFG, 0x11 },
181 { STV090x_AGCRF2CFG, 0x13 },
Manu Abraham56571502009-04-07 16:08:26 -0300182 { STV090x_TSGENERAL1X, 0x14 },
Manu Abrahame415c682009-04-06 15:45:20 -0300183 { STV090x_TSTTNR2, 0x21 },
184 { STV090x_TSTTNR4, 0x21 },
185 { STV090x_P2_DISTXCTL, 0x22 },
186 { STV090x_P2_F22TX, 0xc0 },
187 { STV090x_P2_F22RX, 0xc0 },
188 { STV090x_P2_DISRXCTL, 0x00 },
189 { STV090x_P2_DMDCFGMD, 0xF9 },
190 { STV090x_P2_DEMOD, 0x08 },
191 { STV090x_P2_DMDCFG3, 0xc4 },
192 { STV090x_P2_CARFREQ, 0xed },
193 { STV090x_P2_LDT, 0xd0 },
194 { STV090x_P2_LDT2, 0xb8 },
195 { STV090x_P2_TMGCFG, 0xd2 },
196 { STV090x_P2_TMGTHRISE, 0x20 },
197 { STV090x_P1_TMGCFG, 0xd2 },
198
199 { STV090x_P2_TMGTHFALL, 0x00 },
200 { STV090x_P2_FECSPY, 0x88 },
201 { STV090x_P2_FSPYDATA, 0x3a },
202 { STV090x_P2_FBERCPT4, 0x00 },
203 { STV090x_P2_FSPYBER, 0x10 },
204 { STV090x_P2_ERRCTRL1, 0x35 },
205 { STV090x_P2_ERRCTRL2, 0xc1 },
206 { STV090x_P2_CFRICFG, 0xf8 },
207 { STV090x_P2_NOSCFG, 0x1c },
Manu Abraham56571502009-04-07 16:08:26 -0300208 { STV090x_P2_DMDTOM, 0x20 },
Manu Abrahame415c682009-04-06 15:45:20 -0300209 { STV090x_P2_CORRELMANT, 0x70 },
210 { STV090x_P2_CORRELABS, 0x88 },
Manu Abraham56571502009-04-07 16:08:26 -0300211 { STV090x_P2_AGC2O, 0x5b },
Manu Abrahame415c682009-04-06 15:45:20 -0300212 { STV090x_P2_AGC2REF, 0x38 },
213 { STV090x_P2_CARCFG, 0xe4 },
214 { STV090x_P2_ACLC, 0x1A },
215 { STV090x_P2_BCLC, 0x09 },
216 { STV090x_P2_CARHDR, 0x08 },
217 { STV090x_P2_KREFTMG, 0xc1 },
218 { STV090x_P2_SFRUPRATIO, 0xf0 },
219 { STV090x_P2_SFRLOWRATIO, 0x70 },
220 { STV090x_P2_SFRSTEP, 0x58 },
221 { STV090x_P2_TMGCFG2, 0x01 },
222 { STV090x_P2_CAR2CFG, 0x26 },
223 { STV090x_P2_BCLC2S2Q, 0x86 },
224 { STV090x_P2_BCLC2S28, 0x86 },
225 { STV090x_P2_SMAPCOEF7, 0x77 },
226 { STV090x_P2_SMAPCOEF6, 0x85 },
227 { STV090x_P2_SMAPCOEF5, 0x77 },
228 { STV090x_P2_TSCFGL, 0x20 },
229 { STV090x_P2_DMDCFG2, 0x3b },
230 { STV090x_P2_MODCODLST0, 0xff },
231 { STV090x_P2_MODCODLST1, 0xff },
232 { STV090x_P2_MODCODLST2, 0xff },
233 { STV090x_P2_MODCODLST3, 0xff },
234 { STV090x_P2_MODCODLST4, 0xff },
235 { STV090x_P2_MODCODLST5, 0xff },
236 { STV090x_P2_MODCODLST6, 0xff },
237 { STV090x_P2_MODCODLST7, 0xcc },
238 { STV090x_P2_MODCODLST8, 0xcc },
239 { STV090x_P2_MODCODLST9, 0xcc },
240 { STV090x_P2_MODCODLSTA, 0xcc },
241 { STV090x_P2_MODCODLSTB, 0xcc },
242 { STV090x_P2_MODCODLSTC, 0xcc },
243 { STV090x_P2_MODCODLSTD, 0xcc },
244 { STV090x_P2_MODCODLSTE, 0xcc },
245 { STV090x_P2_MODCODLSTF, 0xcf },
246 { STV090x_P1_DISTXCTL, 0x22 },
247 { STV090x_P1_F22TX, 0xc0 },
248 { STV090x_P1_F22RX, 0xc0 },
249 { STV090x_P1_DISRXCTL, 0x00 },
250 { STV090x_P1_DMDCFGMD, 0xf9 },
251 { STV090x_P1_DEMOD, 0x08 },
252 { STV090x_P1_DMDCFG3, 0xc4 },
Manu Abraham56571502009-04-07 16:08:26 -0300253 { STV090x_P1_DMDTOM, 0x20 },
Manu Abrahame415c682009-04-06 15:45:20 -0300254 { STV090x_P1_CARFREQ, 0xed },
255 { STV090x_P1_LDT, 0xd0 },
256 { STV090x_P1_LDT2, 0xb8 },
257 { STV090x_P1_TMGCFG, 0xd2 },
258 { STV090x_P1_TMGTHRISE, 0x20 },
259 { STV090x_P1_TMGTHFALL, 0x00 },
260 { STV090x_P1_SFRUPRATIO, 0xf0 },
261 { STV090x_P1_SFRLOWRATIO, 0x70 },
262 { STV090x_P1_TSCFGL, 0x20 },
263 { STV090x_P1_FECSPY, 0x88 },
264 { STV090x_P1_FSPYDATA, 0x3a },
265 { STV090x_P1_FBERCPT4, 0x00 },
266 { STV090x_P1_FSPYBER, 0x10 },
267 { STV090x_P1_ERRCTRL1, 0x35 },
268 { STV090x_P1_ERRCTRL2, 0xc1 },
269 { STV090x_P1_CFRICFG, 0xf8 },
270 { STV090x_P1_NOSCFG, 0x1c },
271 { STV090x_P1_CORRELMANT, 0x70 },
272 { STV090x_P1_CORRELABS, 0x88 },
Manu Abraham56571502009-04-07 16:08:26 -0300273 { STV090x_P1_AGC2O, 0x5b },
Manu Abrahame415c682009-04-06 15:45:20 -0300274 { STV090x_P1_AGC2REF, 0x38 },
275 { STV090x_P1_CARCFG, 0xe4 },
276 { STV090x_P1_ACLC, 0x1A },
277 { STV090x_P1_BCLC, 0x09 },
278 { STV090x_P1_CARHDR, 0x08 },
279 { STV090x_P1_KREFTMG, 0xc1 },
280 { STV090x_P1_SFRSTEP, 0x58 },
281 { STV090x_P1_TMGCFG2, 0x01 },
282 { STV090x_P1_CAR2CFG, 0x26 },
283 { STV090x_P1_BCLC2S2Q, 0x86 },
284 { STV090x_P1_BCLC2S28, 0x86 },
285 { STV090x_P1_SMAPCOEF7, 0x77 },
286 { STV090x_P1_SMAPCOEF6, 0x85 },
287 { STV090x_P1_SMAPCOEF5, 0x77 },
288 { STV090x_P1_DMDCFG2, 0x3b },
289 { STV090x_P1_MODCODLST0, 0xff },
290 { STV090x_P1_MODCODLST1, 0xff },
291 { STV090x_P1_MODCODLST2, 0xff },
292 { STV090x_P1_MODCODLST3, 0xff },
293 { STV090x_P1_MODCODLST4, 0xff },
294 { STV090x_P1_MODCODLST5, 0xff },
295 { STV090x_P1_MODCODLST6, 0xff },
296 { STV090x_P1_MODCODLST7, 0xcc },
297 { STV090x_P1_MODCODLST8, 0xcc },
298 { STV090x_P1_MODCODLST9, 0xcc },
299 { STV090x_P1_MODCODLSTA, 0xcc },
300 { STV090x_P1_MODCODLSTB, 0xcc },
301 { STV090x_P1_MODCODLSTC, 0xcc },
302 { STV090x_P1_MODCODLSTD, 0xcc },
303 { STV090x_P1_MODCODLSTE, 0xcc },
304 { STV090x_P1_MODCODLSTF, 0xcf },
305 { STV090x_GENCFG, 0x1d },
306 { STV090x_NBITER_NF4, 0x37 },
307 { STV090x_NBITER_NF5, 0x29 },
308 { STV090x_NBITER_NF6, 0x37 },
309 { STV090x_NBITER_NF7, 0x33 },
310 { STV090x_NBITER_NF8, 0x31 },
311 { STV090x_NBITER_NF9, 0x2f },
312 { STV090x_NBITER_NF10, 0x39 },
313 { STV090x_NBITER_NF11, 0x3a },
314 { STV090x_NBITER_NF12, 0x29 },
315 { STV090x_NBITER_NF13, 0x37 },
316 { STV090x_NBITER_NF14, 0x33 },
317 { STV090x_NBITER_NF15, 0x2f },
318 { STV090x_NBITER_NF16, 0x39 },
319 { STV090x_NBITER_NF17, 0x3a },
320 { STV090x_NBITERNOERR, 0x04 },
321 { STV090x_GAINLLR_NF4, 0x0C },
322 { STV090x_GAINLLR_NF5, 0x0F },
323 { STV090x_GAINLLR_NF6, 0x11 },
324 { STV090x_GAINLLR_NF7, 0x14 },
325 { STV090x_GAINLLR_NF8, 0x17 },
326 { STV090x_GAINLLR_NF9, 0x19 },
327 { STV090x_GAINLLR_NF10, 0x20 },
328 { STV090x_GAINLLR_NF11, 0x21 },
329 { STV090x_GAINLLR_NF12, 0x0D },
330 { STV090x_GAINLLR_NF13, 0x0F },
331 { STV090x_GAINLLR_NF14, 0x13 },
332 { STV090x_GAINLLR_NF15, 0x1A },
333 { STV090x_GAINLLR_NF16, 0x1F },
334 { STV090x_GAINLLR_NF17, 0x21 },
Manu Abraham56571502009-04-07 16:08:26 -0300335 { STV090x_RCCFGH, 0x20 },
Manu Abrahame415c682009-04-06 15:45:20 -0300336 { STV090x_P1_FECM, 0x01 }, /* disable DSS modes */
337 { STV090x_P2_FECM, 0x01 }, /* disable DSS modes */
338 { STV090x_P1_PRVIT, 0x2F }, /* disable PR 6/7 */
339 { STV090x_P2_PRVIT, 0x2F }, /* disable PR 6/7 */
340};
341
342static struct stv090x_reg stv0903_initval[] = {
343 { STV090x_OUTCFG, 0x00 },
344 { STV090x_AGCRF1CFG, 0x11 },
345 { STV090x_STOPCLK1, 0x48 },
346 { STV090x_STOPCLK2, 0x14 },
347 { STV090x_TSTTNR1, 0x27 },
348 { STV090x_TSTTNR2, 0x21 },
349 { STV090x_P1_DISTXCTL, 0x22 },
350 { STV090x_P1_F22TX, 0xc0 },
351 { STV090x_P1_F22RX, 0xc0 },
352 { STV090x_P1_DISRXCTL, 0x00 },
353 { STV090x_P1_DMDCFGMD, 0xF9 },
354 { STV090x_P1_DEMOD, 0x08 },
355 { STV090x_P1_DMDCFG3, 0xc4 },
356 { STV090x_P1_CARFREQ, 0xed },
357 { STV090x_P1_TNRCFG2, 0x82 },
358 { STV090x_P1_LDT, 0xd0 },
359 { STV090x_P1_LDT2, 0xb8 },
360 { STV090x_P1_TMGCFG, 0xd2 },
361 { STV090x_P1_TMGTHRISE, 0x20 },
362 { STV090x_P1_TMGTHFALL, 0x00 },
363 { STV090x_P1_SFRUPRATIO, 0xf0 },
364 { STV090x_P1_SFRLOWRATIO, 0x70 },
365 { STV090x_P1_TSCFGL, 0x20 },
366 { STV090x_P1_FECSPY, 0x88 },
367 { STV090x_P1_FSPYDATA, 0x3a },
368 { STV090x_P1_FBERCPT4, 0x00 },
369 { STV090x_P1_FSPYBER, 0x10 },
370 { STV090x_P1_ERRCTRL1, 0x35 },
371 { STV090x_P1_ERRCTRL2, 0xc1 },
372 { STV090x_P1_CFRICFG, 0xf8 },
373 { STV090x_P1_NOSCFG, 0x1c },
Manu Abraham56571502009-04-07 16:08:26 -0300374 { STV090x_P1_DMDTOM, 0x20 },
Manu Abrahame415c682009-04-06 15:45:20 -0300375 { STV090x_P1_CORRELMANT, 0x70 },
376 { STV090x_P1_CORRELABS, 0x88 },
Manu Abraham56571502009-04-07 16:08:26 -0300377 { STV090x_P1_AGC2O, 0x5b },
378 { STV090x_P1_AGC2REF, 0x38 },
Manu Abrahame415c682009-04-06 15:45:20 -0300379 { STV090x_P1_CARCFG, 0xe4 },
380 { STV090x_P1_ACLC, 0x1A },
Manu Abraham56571502009-04-07 16:08:26 -0300381 { STV090x_P1_BCLC, 0x09 },
Manu Abrahame415c682009-04-06 15:45:20 -0300382 { STV090x_P1_CARHDR, 0x08 },
383 { STV090x_P1_KREFTMG, 0xc1 },
384 { STV090x_P1_SFRSTEP, 0x58 },
385 { STV090x_P1_TMGCFG2, 0x01 },
386 { STV090x_P1_CAR2CFG, 0x26 },
387 { STV090x_P1_BCLC2S2Q, 0x86 },
388 { STV090x_P1_BCLC2S28, 0x86 },
389 { STV090x_P1_SMAPCOEF7, 0x77 },
390 { STV090x_P1_SMAPCOEF6, 0x85 },
391 { STV090x_P1_SMAPCOEF5, 0x77 },
392 { STV090x_P1_DMDCFG2, 0x3b },
393 { STV090x_P1_MODCODLST0, 0xff },
394 { STV090x_P1_MODCODLST1, 0xff },
395 { STV090x_P1_MODCODLST2, 0xff },
396 { STV090x_P1_MODCODLST3, 0xff },
397 { STV090x_P1_MODCODLST4, 0xff },
398 { STV090x_P1_MODCODLST5, 0xff },
399 { STV090x_P1_MODCODLST6, 0xff },
400 { STV090x_P1_MODCODLST7, 0xcc },
401 { STV090x_P1_MODCODLST8, 0xcc },
402 { STV090x_P1_MODCODLST9, 0xcc },
403 { STV090x_P1_MODCODLSTA, 0xcc },
404 { STV090x_P1_MODCODLSTB, 0xcc },
405 { STV090x_P1_MODCODLSTC, 0xcc },
406 { STV090x_P1_MODCODLSTD, 0xcc },
407 { STV090x_P1_MODCODLSTE, 0xcc },
408 { STV090x_P1_MODCODLSTF, 0xcf },
409 { STV090x_GENCFG, 0x1c },
410 { STV090x_NBITER_NF4, 0x37 },
411 { STV090x_NBITER_NF5, 0x29 },
412 { STV090x_NBITER_NF6, 0x37 },
413 { STV090x_NBITER_NF7, 0x33 },
414 { STV090x_NBITER_NF8, 0x31 },
415 { STV090x_NBITER_NF9, 0x2f },
416 { STV090x_NBITER_NF10, 0x39 },
417 { STV090x_NBITER_NF11, 0x3a },
418 { STV090x_NBITER_NF12, 0x29 },
419 { STV090x_NBITER_NF13, 0x37 },
420 { STV090x_NBITER_NF14, 0x33 },
421 { STV090x_NBITER_NF15, 0x2f },
422 { STV090x_NBITER_NF16, 0x39 },
423 { STV090x_NBITER_NF17, 0x3a },
424 { STV090x_NBITERNOERR, 0x04 },
425 { STV090x_GAINLLR_NF4, 0x0C },
426 { STV090x_GAINLLR_NF5, 0x0F },
427 { STV090x_GAINLLR_NF6, 0x11 },
428 { STV090x_GAINLLR_NF7, 0x14 },
429 { STV090x_GAINLLR_NF8, 0x17 },
430 { STV090x_GAINLLR_NF9, 0x19 },
431 { STV090x_GAINLLR_NF10, 0x20 },
432 { STV090x_GAINLLR_NF11, 0x21 },
433 { STV090x_GAINLLR_NF12, 0x0D },
434 { STV090x_GAINLLR_NF13, 0x0F },
435 { STV090x_GAINLLR_NF14, 0x13 },
436 { STV090x_GAINLLR_NF15, 0x1A },
437 { STV090x_GAINLLR_NF16, 0x1F },
438 { STV090x_GAINLLR_NF17, 0x21 },
Manu Abraham56571502009-04-07 16:08:26 -0300439 { STV090x_RCCFGH, 0x20 },
Manu Abrahame415c682009-04-06 15:45:20 -0300440 { STV090x_P1_FECM, 0x01 }, /*disable the DSS mode */
441 { STV090x_P1_PRVIT, 0x2f } /*disable puncture rate 6/7*/
442};
443
444static struct stv090x_reg stv0900_cut20_val[] = {
445
446 { STV090x_P2_DMDCFG3, 0xe8 },
Manu Abraham56571502009-04-07 16:08:26 -0300447 { STV090x_P2_DMDCFG4, 0x10 },
Manu Abrahame415c682009-04-06 15:45:20 -0300448 { STV090x_P2_CARFREQ, 0x38 },
449 { STV090x_P2_CARHDR, 0x20 },
450 { STV090x_P2_KREFTMG, 0x5a },
451 { STV090x_P2_SMAPCOEF7, 0x06 },
452 { STV090x_P2_SMAPCOEF6, 0x00 },
453 { STV090x_P2_SMAPCOEF5, 0x04 },
454 { STV090x_P2_NOSCFG, 0x0c },
455 { STV090x_P1_DMDCFG3, 0xe8 },
Manu Abraham56571502009-04-07 16:08:26 -0300456 { STV090x_P1_DMDCFG4, 0x10 },
Manu Abrahame415c682009-04-06 15:45:20 -0300457 { STV090x_P1_CARFREQ, 0x38 },
458 { STV090x_P1_CARHDR, 0x20 },
459 { STV090x_P1_KREFTMG, 0x5a },
460 { STV090x_P1_SMAPCOEF7, 0x06 },
461 { STV090x_P1_SMAPCOEF6, 0x00 },
462 { STV090x_P1_SMAPCOEF5, 0x04 },
463 { STV090x_P1_NOSCFG, 0x0c },
464 { STV090x_GAINLLR_NF4, 0x21 },
465 { STV090x_GAINLLR_NF5, 0x21 },
466 { STV090x_GAINLLR_NF6, 0x20 },
467 { STV090x_GAINLLR_NF7, 0x1F },
468 { STV090x_GAINLLR_NF8, 0x1E },
469 { STV090x_GAINLLR_NF9, 0x1E },
470 { STV090x_GAINLLR_NF10, 0x1D },
471 { STV090x_GAINLLR_NF11, 0x1B },
472 { STV090x_GAINLLR_NF12, 0x20 },
473 { STV090x_GAINLLR_NF13, 0x20 },
474 { STV090x_GAINLLR_NF14, 0x20 },
475 { STV090x_GAINLLR_NF15, 0x20 },
476 { STV090x_GAINLLR_NF16, 0x20 },
477 { STV090x_GAINLLR_NF17, 0x21 },
478};
479
480static struct stv090x_reg stv0903_cut20_val[] = {
481 { STV090x_P1_DMDCFG3, 0xe8 },
Manu Abraham56571502009-04-07 16:08:26 -0300482 { STV090x_P1_DMDCFG4, 0x10 },
Manu Abrahame415c682009-04-06 15:45:20 -0300483 { STV090x_P1_CARFREQ, 0x38 },
484 { STV090x_P1_CARHDR, 0x20 },
485 { STV090x_P1_KREFTMG, 0x5a },
486 { STV090x_P1_SMAPCOEF7, 0x06 },
487 { STV090x_P1_SMAPCOEF6, 0x00 },
488 { STV090x_P1_SMAPCOEF5, 0x04 },
489 { STV090x_P1_NOSCFG, 0x0c },
490 { STV090x_GAINLLR_NF4, 0x21 },
491 { STV090x_GAINLLR_NF5, 0x21 },
492 { STV090x_GAINLLR_NF6, 0x20 },
493 { STV090x_GAINLLR_NF7, 0x1F },
494 { STV090x_GAINLLR_NF8, 0x1E },
495 { STV090x_GAINLLR_NF9, 0x1E },
496 { STV090x_GAINLLR_NF10, 0x1D },
497 { STV090x_GAINLLR_NF11, 0x1B },
498 { STV090x_GAINLLR_NF12, 0x20 },
499 { STV090x_GAINLLR_NF13, 0x20 },
500 { STV090x_GAINLLR_NF14, 0x20 },
501 { STV090x_GAINLLR_NF15, 0x20 },
502 { STV090x_GAINLLR_NF16, 0x20 },
503 { STV090x_GAINLLR_NF17, 0x21 }
504};
505
506/* Cut 1.x Long Frame Tracking CR loop */
507static struct stv090x_long_frame_crloop stv090x_s2_crl[] = {
508 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
509 { STV090x_QPSK_12, 0x1c, 0x0d, 0x1b, 0x2c, 0x3a, 0x1c, 0x2a, 0x3b, 0x2a, 0x1b },
510 { STV090x_QPSK_35, 0x2c, 0x0d, 0x2b, 0x2c, 0x3a, 0x0c, 0x3a, 0x2b, 0x2a, 0x0b },
511 { STV090x_QPSK_23, 0x2c, 0x0d, 0x2b, 0x2c, 0x0b, 0x0c, 0x3a, 0x1b, 0x2a, 0x3a },
512 { STV090x_QPSK_34, 0x3c, 0x0d, 0x3b, 0x1c, 0x0b, 0x3b, 0x3a, 0x0b, 0x2a, 0x3a },
513 { STV090x_QPSK_45, 0x3c, 0x0d, 0x3b, 0x1c, 0x0b, 0x3b, 0x3a, 0x0b, 0x2a, 0x3a },
514 { STV090x_QPSK_56, 0x0d, 0x0d, 0x3b, 0x1c, 0x0b, 0x3b, 0x3a, 0x0b, 0x2a, 0x3a },
515 { STV090x_QPSK_89, 0x0d, 0x0d, 0x3b, 0x1c, 0x1b, 0x3b, 0x3a, 0x0b, 0x2a, 0x3a },
516 { STV090x_QPSK_910, 0x1d, 0x0d, 0x3b, 0x1c, 0x1b, 0x3b, 0x3a, 0x0b, 0x2a, 0x3a },
517 { STV090x_8PSK_35, 0x29, 0x3b, 0x09, 0x2b, 0x38, 0x0b, 0x18, 0x1a, 0x08, 0x0a },
518 { STV090x_8PSK_23, 0x0a, 0x3b, 0x29, 0x2b, 0x19, 0x0b, 0x38, 0x1a, 0x18, 0x0a },
519 { STV090x_8PSK_34, 0x3a, 0x3b, 0x2a, 0x2b, 0x39, 0x0b, 0x19, 0x1a, 0x38, 0x0a },
520 { STV090x_8PSK_56, 0x1b, 0x3b, 0x0b, 0x2b, 0x1a, 0x0b, 0x39, 0x1a, 0x19, 0x0a },
521 { STV090x_8PSK_89, 0x3b, 0x3b, 0x0b, 0x2b, 0x2a, 0x0b, 0x39, 0x1a, 0x29, 0x39 },
522 { STV090x_8PSK_910, 0x3b, 0x3b, 0x0b, 0x2b, 0x2a, 0x0b, 0x39, 0x1a, 0x29, 0x39 }
523};
524
525/* Cut 2.0 Long Frame Tracking CR loop */
526static struct stv090x_long_frame_crloop stv090x_s2_crl_cut20[] = {
527 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
528 { STV090x_QPSK_12, 0x1f, 0x3f, 0x1e, 0x3f, 0x3d, 0x1f, 0x3d, 0x3e, 0x3d, 0x1e },
529 { STV090x_QPSK_35, 0x2f, 0x3f, 0x2e, 0x2f, 0x3d, 0x0f, 0x0e, 0x2e, 0x3d, 0x0e },
530 { STV090x_QPSK_23, 0x2f, 0x3f, 0x2e, 0x2f, 0x0e, 0x0f, 0x0e, 0x1e, 0x3d, 0x3d },
531 { STV090x_QPSK_34, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
532 { STV090x_QPSK_45, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
533 { STV090x_QPSK_56, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
534 { STV090x_QPSK_89, 0x3f, 0x3f, 0x3e, 0x1f, 0x1e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
535 { STV090x_QPSK_910, 0x3f, 0x3f, 0x3e, 0x1f, 0x1e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d },
536 { STV090x_8PSK_35, 0x3c, 0x3e, 0x1c, 0x2e, 0x0c, 0x1e, 0x2b, 0x2d, 0x1b, 0x1d },
537 { STV090x_8PSK_23, 0x1d, 0x3e, 0x3c, 0x2e, 0x2c, 0x1e, 0x0c, 0x2d, 0x2b, 0x1d },
538 { STV090x_8PSK_34, 0x0e, 0x3e, 0x3d, 0x2e, 0x0d, 0x1e, 0x2c, 0x2d, 0x0c, 0x1d },
539 { STV090x_8PSK_56, 0x2e, 0x3e, 0x1e, 0x2e, 0x2d, 0x1e, 0x3c, 0x2d, 0x2c, 0x1d },
540 { STV090x_8PSK_89, 0x3e, 0x3e, 0x1e, 0x2e, 0x3d, 0x1e, 0x0d, 0x2d, 0x3c, 0x1d },
541 { STV090x_8PSK_910, 0x3e, 0x3e, 0x1e, 0x2e, 0x3d, 0x1e, 0x1d, 0x2d, 0x0d, 0x1d }
542};
543
544
545/* Cut 2.0 Long Frame Tracking CR Loop */
546static struct stv090x_long_frame_crloop stv090x_s2_apsk_crl_cut20[] = {
547 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
548 { STV090x_16APSK_23, 0x0c, 0x0c, 0x0c, 0x0c, 0x1d, 0x0c, 0x3c, 0x0c, 0x2c, 0x0c },
549 { STV090x_16APSK_34, 0x0c, 0x0c, 0x0c, 0x0c, 0x0e, 0x0c, 0x2d, 0x0c, 0x1d, 0x0c },
550 { STV090x_16APSK_45, 0x0c, 0x0c, 0x0c, 0x0c, 0x1e, 0x0c, 0x3d, 0x0c, 0x2d, 0x0c },
551 { STV090x_16APSK_56, 0x0c, 0x0c, 0x0c, 0x0c, 0x1e, 0x0c, 0x3d, 0x0c, 0x2d, 0x0c },
552 { STV090x_16APSK_89, 0x0c, 0x0c, 0x0c, 0x0c, 0x2e, 0x0c, 0x0e, 0x0c, 0x3d, 0x0c },
553 { STV090x_16APSK_910, 0x0c, 0x0c, 0x0c, 0x0c, 0x2e, 0x0c, 0x0e, 0x0c, 0x3d, 0x0c },
554 { STV090x_32APSK_34, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
555 { STV090x_32APSK_45, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
556 { STV090x_32APSK_56, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
557 { STV090x_32APSK_89, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c },
558 { STV090x_32APSK_910, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c }
559};
560
561
562static struct stv090x_long_frame_crloop stv090x_s2_lowqpsk_crl_cut20[] = {
563 /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */
564 { STV090x_QPSK_14, 0x0f, 0x3f, 0x0e, 0x3f, 0x2d, 0x2f, 0x2d, 0x1f, 0x3d, 0x3e },
565 { STV090x_QPSK_13, 0x0f, 0x3f, 0x0e, 0x3f, 0x2d, 0x2f, 0x3d, 0x0f, 0x3d, 0x2e },
566 { STV090x_QPSK_25, 0x1f, 0x3f, 0x1e, 0x3f, 0x3d, 0x1f, 0x3d, 0x3e, 0x3d, 0x2e }
567};
568
569
570/* Cut 1.2 & 2.0 Short Frame Tracking CR Loop */
571static struct stv090x_short_frame_crloop stv090x_s2_short_crl[] = {
572 /* MODCOD 2M_cut1.2 2M_cut2.0 5M_cut1.2 5M_cut2.0 10M_cut1.2 10M_cut2.0 20M_cut1.2 20M_cut2.0 30M_cut1.2 30M_cut2.0 */
573 { STV090x_QPSK, 0x3c, 0x2f, 0x2b, 0x2e, 0x0b, 0x0e, 0x3a, 0x0e, 0x2a, 0x3d },
574 { STV090x_8PSK, 0x0b, 0x3e, 0x2a, 0x0e, 0x0a, 0x2d, 0x19, 0x0d, 0x09, 0x3c },
575 { STV090x_16APSK, 0x1b, 0x1e, 0x1b, 0x1e, 0x1b, 0x1e, 0x3a, 0x3d, 0x2a, 0x2d },
576 { STV090x_32APSK, 0x1b, 0x1e, 0x1b, 0x1e, 0x1b, 0x1e, 0x3a, 0x3d, 0x2a, 0x2d }
577};
578
579
580static inline s32 comp2(s32 __x, s32 __width)
581{
582 if (__width == 32)
583 return __x;
584 else
585 return (__x >= (1 << (__width - 1))) ? (__x - (1 << __width)) : __x;
586}
587
588static int stv090x_read_reg(struct stv090x_state *state, unsigned int reg)
589{
590 const struct stv090x_config *config = state->config;
591 int ret;
592
593 u8 b0[] = { reg >> 8, reg & 0xff };
594 u8 buf;
595
596 struct i2c_msg msg[] = {
597 { .addr = config->address, .flags = 0, .buf = b0, .len = 2 },
598 { .addr = config->address, .flags = I2C_M_RD, .buf = &buf, .len = 1 }
599 };
600
601 ret = i2c_transfer(state->i2c, msg, 2);
602 if (ret != 2) {
603 if (ret != -ERESTARTSYS)
604 dprintk(FE_ERROR, 1,
605 "Read error, Reg=[0x%02x], Status=%d",
606 reg, ret);
607
608 return ret < 0 ? ret : -EREMOTEIO;
609 }
610 if (unlikely(*state->verbose >= FE_DEBUGREG))
611 dprintk(FE_ERROR, 1, "Reg=[0x%02x], data=%02x",
612 reg, buf);
613
614 return (unsigned int) buf;
615}
616
617static int stv090x_write_regs(struct stv090x_state *state, unsigned int reg, u8 *data, u32 count)
618{
619 const struct stv090x_config *config = state->config;
620 int ret;
621 u8 buf[2 + count];
622 struct i2c_msg i2c_msg = { .addr = config->address, .flags = 0, .buf = buf, .len = 2 + count };
623
624 buf[0] = reg >> 8;
625 buf[1] = reg & 0xff;
626 memcpy(&buf[2], data, count);
627
628 if (unlikely(*state->verbose >= FE_DEBUGREG)) {
629 int i;
630
631 printk(KERN_DEBUG "%s [0x%04x]:", __func__, reg);
632 for (i = 0; i < count; i++)
633 printk(" %02x", data[i]);
634 printk("\n");
635 }
636
637 ret = i2c_transfer(state->i2c, &i2c_msg, 1);
638 if (ret != 1) {
639 if (ret != -ERESTARTSYS)
640 dprintk(FE_ERROR, 1, "Reg=[0x%04x], Data=[0x%02x ...], Count=%u, Status=%d",
641 reg, data[0], count, ret);
642 return ret < 0 ? ret : -EREMOTEIO;
643 }
644
645 return 0;
646}
647
648static int stv090x_write_reg(struct stv090x_state *state, unsigned int reg, u8 data)
649{
650 return stv090x_write_regs(state, reg, &data, 1);
651}
652
653static int stv090x_i2c_gate_ctrl(struct dvb_frontend *fe, int enable)
654{
655 struct stv090x_state *state = fe->demodulator_priv;
656 u32 reg;
657
658 reg = STV090x_READ_DEMOD(state, I2CRPT);
Manu Abrahame415c682009-04-06 15:45:20 -0300659 if (enable) {
Manu Abraham017eb032009-04-07 05:19:54 -0300660 dprintk(FE_DEBUG, 1, "Enable Gate");
Manu Abrahame415c682009-04-06 15:45:20 -0300661 STV090x_SETFIELD_Px(reg, I2CT_ON_FIELD, 1);
662 if (STV090x_WRITE_DEMOD(state, I2CRPT, reg) < 0)
663 goto err;
664
665 } else {
Manu Abraham017eb032009-04-07 05:19:54 -0300666 dprintk(FE_DEBUG, 1, "Disable Gate");
Manu Abrahame415c682009-04-06 15:45:20 -0300667 STV090x_SETFIELD_Px(reg, I2CT_ON_FIELD, 0);
668 if ((STV090x_WRITE_DEMOD(state, I2CRPT, reg)) < 0)
669 goto err;
670 }
671 return 0;
672err:
673 dprintk(FE_ERROR, 1, "I/O error");
674 return -1;
675}
676
677static void stv090x_get_lock_tmg(struct stv090x_state *state)
678{
679 switch (state->algo) {
680 case STV090x_BLIND_SEARCH:
681 dprintk(FE_DEBUG, 1, "Blind Search");
682 if (state->srate <= 1500000) { /*10Msps< SR <=15Msps*/
683 state->DemodTimeout = 1500;
684 state->FecTimeout = 400;
685 } else if (state->srate <= 5000000) { /*10Msps< SR <=15Msps*/
686 state->DemodTimeout = 1000;
687 state->FecTimeout = 300;
688 } else { /*SR >20Msps*/
689 state->DemodTimeout = 700;
690 state->FecTimeout = 100;
691 }
692 break;
693
694 case STV090x_COLD_SEARCH:
695 case STV090x_WARM_SEARCH:
696 default:
697 dprintk(FE_DEBUG, 1, "Normal Search");
698 if (state->srate <= 1000000) { /*SR <=1Msps*/
699 state->DemodTimeout = 4500;
700 state->FecTimeout = 1700;
701 } else if (state->srate <= 2000000) { /*1Msps < SR <= 2Msps */
702 state->DemodTimeout = 2500;
703 state->FecTimeout = 1100;
704 } else if (state->srate <= 5000000) { /*2Msps < SR <= 5Msps */
705 state->DemodTimeout = 1000;
706 state->FecTimeout = 550;
707 } else if (state->srate <= 10000000) { /*5Msps < SR <= 10Msps */
708 state->DemodTimeout = 700;
709 state->FecTimeout = 250;
710 } else if (state->srate <= 20000000) { /*10Msps < SR <= 20Msps */
711 state->DemodTimeout = 400;
712 state->FecTimeout = 130;
713 } else { /*SR >20Msps*/
714 state->DemodTimeout = 300;
715 state->FecTimeout = 100;
716 }
717 break;
718 }
719
720 if (state->algo == STV090x_WARM_SEARCH)
721 state->DemodTimeout /= 2;
722}
723
724static int stv090x_set_srate(struct stv090x_state *state, u32 srate)
725{
726 u32 sym;
727
Manu Abraham15bb3662009-04-08 20:14:00 -0300728 if (srate > 60000000) {
729 sym = (srate << 4); /* SR * 2^16 / master_clk */
730 sym /= (state->mclk >> 12);
731 } else if (srate > 6000000) {
732 sym = (srate << 6);
733 sym /= (state->mclk >> 10);
Manu Abrahame415c682009-04-06 15:45:20 -0300734 } else {
Manu Abraham15bb3662009-04-08 20:14:00 -0300735 sym = (srate << 9);
736 sym /= (state->mclk >> 7);
Manu Abrahame415c682009-04-06 15:45:20 -0300737 }
738
Manu Abraham15bb3662009-04-08 20:14:00 -0300739 if (STV090x_WRITE_DEMOD(state, SFRINIT1, (sym >> 8) & 0x7f) < 0) /* MSB */
Manu Abrahame415c682009-04-06 15:45:20 -0300740 goto err;
741 if (STV090x_WRITE_DEMOD(state, SFRINIT0, (sym & 0xff)) < 0) /* LSB */
742 goto err;
Manu Abraham15bb3662009-04-08 20:14:00 -0300743
Manu Abrahame415c682009-04-06 15:45:20 -0300744 return 0;
745err:
746 dprintk(FE_ERROR, 1, "I/O error");
747 return -1;
748}
749
750static int stv090x_set_max_srate(struct stv090x_state *state, u32 clk, u32 srate)
751{
752 u32 sym;
753
754 srate = 105 * (srate / 100);
Manu Abraham15bb3662009-04-08 20:14:00 -0300755 if (srate > 60000000) {
756 sym = (srate << 4); /* SR * 2^16 / master_clk */
757 sym /= (state->mclk >> 12);
758 } else if (srate > 6000000) {
759 sym = (srate << 6);
760 sym /= (state->mclk >> 10);
Manu Abrahame415c682009-04-06 15:45:20 -0300761 } else {
Manu Abraham15bb3662009-04-08 20:14:00 -0300762 sym = (srate << 9);
763 sym /= (state->mclk >> 7);
Manu Abrahame415c682009-04-06 15:45:20 -0300764 }
Manu Abraham15bb3662009-04-08 20:14:00 -0300765
766 if (sym < 0x7fff) {
767 if (STV090x_WRITE_DEMOD(state, SFRUP1, (sym >> 8) & 0x7f) < 0) /* MSB */
768 goto err;
769 if (STV090x_WRITE_DEMOD(state, SFRUP0, sym & 0xff) < 0) /* LSB */
770 goto err;
771 } else {
772 if (STV090x_WRITE_DEMOD(state, SFRUP1, 0x7f) < 0) /* MSB */
773 goto err;
774 if (STV090x_WRITE_DEMOD(state, SFRUP0, 0xff) < 0) /* LSB */
775 goto err;
776 }
777
Manu Abrahame415c682009-04-06 15:45:20 -0300778 return 0;
779err:
780 dprintk(FE_ERROR, 1, "I/O error");
781 return -1;
782}
783
784static int stv090x_set_min_srate(struct stv090x_state *state, u32 clk, u32 srate)
785{
786 u32 sym;
787
788 srate = 95 * (srate / 100);
Manu Abraham15bb3662009-04-08 20:14:00 -0300789 if (srate > 60000000) {
790 sym = (srate << 4); /* SR * 2^16 / master_clk */
791 sym /= (state->mclk >> 12);
792 } else if (srate > 6000000) {
793 sym = (srate << 6);
794 sym /= (state->mclk >> 10);
Manu Abrahame415c682009-04-06 15:45:20 -0300795 } else {
Manu Abraham15bb3662009-04-08 20:14:00 -0300796 sym = (srate << 9);
797 sym /= (state->mclk >> 7);
Manu Abrahame415c682009-04-06 15:45:20 -0300798 }
Manu Abraham15bb3662009-04-08 20:14:00 -0300799
Manu Abrahame415c682009-04-06 15:45:20 -0300800 if (STV090x_WRITE_DEMOD(state, SFRLOW1, ((sym >> 8) & 0xff)) < 0) /* MSB */
801 goto err;
802 if (STV090x_WRITE_DEMOD(state, SFRLOW0, (sym & 0xff)) < 0) /* LSB */
803 goto err;
804 return 0;
805err:
806 dprintk(FE_ERROR, 1, "I/O error");
807 return -1;
808}
809
810static u32 stv090x_car_width(u32 srate, u32 rolloff)
811{
812 return srate + (srate * rolloff) / 100;
813}
814
815static int stv090x_set_vit_thacq(struct stv090x_state *state)
816{
817 if (STV090x_WRITE_DEMOD(state, VTH12, 0x96) < 0)
818 goto err;
819 if (STV090x_WRITE_DEMOD(state, VTH23, 0x64) < 0)
820 goto err;
821 if (STV090x_WRITE_DEMOD(state, VTH34, 0x36) < 0)
822 goto err;
823 if (STV090x_WRITE_DEMOD(state, VTH56, 0x23) < 0)
824 goto err;
825 if (STV090x_WRITE_DEMOD(state, VTH67, 0x1e) < 0)
826 goto err;
827 if (STV090x_WRITE_DEMOD(state, VTH78, 0x19) < 0)
828 goto err;
829 return 0;
830err:
831 dprintk(FE_ERROR, 1, "I/O error");
832 return -1;
833}
834
835static int stv090x_set_vit_thtracq(struct stv090x_state *state)
836{
837 if (STV090x_WRITE_DEMOD(state, VTH12, 0xd0) < 0)
838 goto err;
839 if (STV090x_WRITE_DEMOD(state, VTH23, 0x7d) < 0)
840 goto err;
841 if (STV090x_WRITE_DEMOD(state, VTH34, 0x53) < 0)
842 goto err;
843 if (STV090x_WRITE_DEMOD(state, VTH56, 0x2f) < 0)
844 goto err;
845 if (STV090x_WRITE_DEMOD(state, VTH67, 0x24) < 0)
846 goto err;
847 if (STV090x_WRITE_DEMOD(state, VTH78, 0x1f) < 0)
848 goto err;
849 return 0;
850err:
851 dprintk(FE_ERROR, 1, "I/O error");
852 return -1;
853}
854
855static int stv090x_set_viterbi(struct stv090x_state *state)
856{
857 switch (state->search_mode) {
858 case STV090x_SEARCH_AUTO:
859 if (STV090x_WRITE_DEMOD(state, FECM, 0x10) < 0) /* DVB-S and DVB-S2 */
860 goto err;
861 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x3f) < 0) /* all puncture rate */
862 goto err;
863 break;
864 case STV090x_SEARCH_DVBS1:
865 if (STV090x_WRITE_DEMOD(state, FECM, 0x00) < 0) /* disable DSS */
866 goto err;
867 switch (state->fec) {
868 case STV090x_PR12:
869 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x01) < 0)
870 goto err;
871 break;
872
873 case STV090x_PR23:
874 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x02) < 0)
875 goto err;
876 break;
877
878 case STV090x_PR34:
879 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x04) < 0)
880 goto err;
881 break;
882
883 case STV090x_PR56:
884 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x08) < 0)
885 goto err;
886 break;
887
888 case STV090x_PR78:
889 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x20) < 0)
890 goto err;
891 break;
892
893 default:
894 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x2f) < 0) /* all */
895 goto err;
896 break;
897 }
898 break;
899 case STV090x_SEARCH_DSS:
900 if (STV090x_WRITE_DEMOD(state, FECM, 0x80) < 0)
901 goto err;
902 switch (state->fec) {
903 case STV090x_PR12:
904 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x01) < 0)
905 goto err;
906 break;
907
908 case STV090x_PR23:
909 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x02) < 0)
910 goto err;
911 break;
912
913 case STV090x_PR67:
914 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x10) < 0)
915 goto err;
916 break;
917
918 default:
919 if (STV090x_WRITE_DEMOD(state, PRVIT, 0x13) < 0) /* 1/2, 2/3, 6/7 */
920 goto err;
921 break;
922 }
923 break;
924 default:
925 break;
926 }
927 return 0;
928err:
929 dprintk(FE_ERROR, 1, "I/O error");
930 return -1;
931}
932
933static int stv090x_stop_modcod(struct stv090x_state *state)
934{
935 if (STV090x_WRITE_DEMOD(state, MODCODLST0, 0xff) < 0)
936 goto err;
937 if (STV090x_WRITE_DEMOD(state, MODCODLST1, 0xff) < 0)
938 goto err;
939 if (STV090x_WRITE_DEMOD(state, MODCODLST2, 0xff) < 0)
940 goto err;
941 if (STV090x_WRITE_DEMOD(state, MODCODLST3, 0xff) < 0)
942 goto err;
943 if (STV090x_WRITE_DEMOD(state, MODCODLST4, 0xff) < 0)
944 goto err;
945 if (STV090x_WRITE_DEMOD(state, MODCODLST5, 0xff) < 0)
946 goto err;
947 if (STV090x_WRITE_DEMOD(state, MODCODLST6, 0xff) < 0)
948 goto err;
949 if (STV090x_WRITE_DEMOD(state, MODCODLST7, 0xff) < 0)
950 goto err;
951 if (STV090x_WRITE_DEMOD(state, MODCODLST8, 0xff) < 0)
952 goto err;
953 if (STV090x_WRITE_DEMOD(state, MODCODLST9, 0xff) < 0)
954 goto err;
955 if (STV090x_WRITE_DEMOD(state, MODCODLSTA, 0xff) < 0)
956 goto err;
957 if (STV090x_WRITE_DEMOD(state, MODCODLSTB, 0xff) < 0)
958 goto err;
959 if (STV090x_WRITE_DEMOD(state, MODCODLSTC, 0xff) < 0)
960 goto err;
961 if (STV090x_WRITE_DEMOD(state, MODCODLSTD, 0xff) < 0)
962 goto err;
963 if (STV090x_WRITE_DEMOD(state, MODCODLSTE, 0xff) < 0)
964 goto err;
965 if (STV090x_WRITE_DEMOD(state, MODCODLSTF, 0xff) < 0)
966 goto err;
967 return 0;
968err:
969 dprintk(FE_ERROR, 1, "I/O error");
970 return -1;
971}
972
973static int stv090x_activate_modcod(struct stv090x_state *state)
974{
975 u32 matype, modcod, f_mod, index;
976
977 if (state->dev_ver <= 0x11) {
978 msleep(5);
979 modcod = STV090x_READ_DEMOD(state, PLHMODCOD);
980 matype = modcod & 0x03;
981 modcod = (modcod & 0x7f) >> 2;
982 index = STV090x_ADDR_OFFST(state, MODCODLSTF) - (modcod / 2);
983
984 switch (matype) {
985 default:
986 case 0:
987 f_mod = 14;
988 break;
989 case 1:
990 f_mod = 13;
991 break;
992 case 2:
993 f_mod = 11;
994 break;
995 case 3:
996 f_mod = 7;
997 break;
998 }
999 if (matype <= 1) {
1000 if (modcod % 2) {
1001 if (stv090x_write_reg(state, index, 0xf0 | f_mod) < 0)
1002 goto err;
1003 } else {
1004 if (stv090x_write_reg(state, index, (f_mod << 4) | 0x0f) < 0)
1005 goto err;
1006 }
1007 }
1008 } else if (state->dev_ver >= 0x12) {
1009 if (STV090x_WRITE_DEMOD(state, MODCODLST0, 0xff) < 0)
1010 goto err;
1011 if (STV090x_WRITE_DEMOD(state, MODCODLST1, 0xfc) < 0)
1012 goto err;
1013 if (STV090x_WRITE_DEMOD(state, MODCODLST2, 0xcc) < 0)
1014 goto err;
1015 if (STV090x_WRITE_DEMOD(state, MODCODLST3, 0xcc) < 0)
1016 goto err;
1017 if (STV090x_WRITE_DEMOD(state, MODCODLST4, 0xcc) < 0)
1018 goto err;
1019 if (STV090x_WRITE_DEMOD(state, MODCODLST5, 0xcc) < 0)
1020 goto err;
1021 if (STV090x_WRITE_DEMOD(state, MODCODLST6, 0xcc) < 0)
1022 goto err;
1023 if (STV090x_WRITE_DEMOD(state, MODCODLST7, 0xcc) < 0)
1024 goto err;
1025 if (STV090x_WRITE_DEMOD(state, MODCODLST8, 0xcc) < 0)
1026 goto err;
1027 if (STV090x_WRITE_DEMOD(state, MODCODLST9, 0xcc) < 0)
1028 goto err;
1029 if (STV090x_WRITE_DEMOD(state, MODCODLSTA, 0xcc) < 0)
1030 goto err;
1031 if (STV090x_WRITE_DEMOD(state, MODCODLSTB, 0xcc) < 0)
1032 goto err;
1033 if (STV090x_WRITE_DEMOD(state, MODCODLSTC, 0xcc) < 0)
1034 goto err;
1035 if (STV090x_WRITE_DEMOD(state, MODCODLSTD, 0xcc) < 0)
1036 goto err;
1037 if (STV090x_WRITE_DEMOD(state, MODCODLSTE, 0xcc) < 0)
1038 goto err;
1039 if (STV090x_WRITE_DEMOD(state, MODCODLSTF, 0xcf) < 0)
1040 goto err;
1041 }
1042 return 0;
1043err:
1044 dprintk(FE_ERROR, 1, "I/O error");
1045 return -1;
1046}
1047
1048static int stv090x_vitclk_ctl(struct stv090x_state *state, int enable)
1049{
1050 u32 reg;
1051
1052 switch (state->demod) {
1053 case STV090x_DEMODULATOR_0:
1054 mutex_lock(&demod_lock);
1055 reg = stv090x_read_reg(state, STV090x_STOPCLK2);
1056 STV090x_SETFIELD(reg, STOP_CLKVIT1_FIELD, enable);
1057 if (stv090x_write_reg(state, STV090x_STOPCLK2, reg) < 0)
1058 goto err;
1059 mutex_unlock(&demod_lock);
1060 break;
1061
1062 case STV090x_DEMODULATOR_1:
1063 mutex_lock(&demod_lock);
1064 reg = stv090x_read_reg(state, STV090x_STOPCLK2);
1065 STV090x_SETFIELD(reg, STOP_CLKVIT2_FIELD, enable);
1066 if (stv090x_write_reg(state, STV090x_STOPCLK2, reg) < 0)
1067 goto err;
1068 mutex_unlock(&demod_lock);
1069 break;
1070
1071 default:
1072 dprintk(FE_ERROR, 1, "Wrong demodulator!");
1073 break;
1074 }
1075 return 0;
1076err:
1077 mutex_unlock(&demod_lock);
1078 dprintk(FE_ERROR, 1, "I/O error");
1079 return -1;
1080}
1081
1082static int stv090x_delivery_search(struct stv090x_state *state)
1083{
1084 u32 reg;
1085
1086 switch (state->search_mode) {
1087 case STV090x_SEARCH_DVBS1:
1088 case STV090x_SEARCH_DSS:
1089 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1090 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1);
1091 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0);
1092 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1093 goto err;
1094
1095 /* Activate Viterbi decoder in legacy search, do not use FRESVIT1, might impact VITERBI2 */
1096 if (stv090x_vitclk_ctl(state, 0) < 0)
1097 goto err;
1098
1099 if (STV090x_WRITE_DEMOD(state, ACLC, 0x1a) < 0)
1100 goto err;
1101 if (STV090x_WRITE_DEMOD(state, BCLC, 0x09) < 0)
1102 goto err;
1103 if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x22) < 0) /* disable DVB-S2 */
1104 goto err;
1105
1106 stv090x_set_vit_thacq(state);
1107 stv090x_set_viterbi(state);
1108 break;
1109
1110 case STV090x_SEARCH_DVBS2:
1111 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1112 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 0);
1113 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0);
1114 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1115 goto err;
1116 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1);
1117 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1);
1118 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1119 goto err;
1120
1121 if (stv090x_vitclk_ctl(state, 1) < 0)
1122 goto err;
1123
1124 if (STV090x_WRITE_DEMOD(state, ACLC, 0x1a) < 0) /* stop DVB-S CR loop */
1125 goto err;
1126 if (STV090x_WRITE_DEMOD(state, BCLC, 0x09) < 0)
1127 goto err;
1128 if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x26) < 0)
1129 goto err;
1130
1131 if (state->demod_mode != STV090x_SINGLE) {
1132 if (state->dev_ver <= 0x11) /* 900 in dual TS mode */
1133 stv090x_stop_modcod(state);
1134 else
1135 stv090x_activate_modcod(state);
1136 }
1137 break;
1138
1139 case STV090x_SEARCH_AUTO:
1140 default:
1141 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1142 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 0);
1143 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0);
1144 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1145 goto err;
1146 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1);
1147 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1);
1148 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1149 goto err;
1150
1151 if (stv090x_vitclk_ctl(state, 1) < 0)
1152 goto err;
1153
1154 if (STV090x_WRITE_DEMOD(state, ACLC, 0x1a) < 0)
1155 goto err;
1156 if (STV090x_WRITE_DEMOD(state, ACLC, 0x09) < 0)
1157 goto err;
1158 if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x26) < 0)
1159 goto err;
1160
1161 if (state->demod_mode != STV090x_SINGLE) {
1162 if (state->dev_ver <= 0x11) /* 900 in dual TS mode */
1163 stv090x_stop_modcod(state);
1164 else
1165 stv090x_activate_modcod(state);
1166 }
1167 stv090x_set_vit_thacq(state);
1168 stv090x_set_viterbi(state);
1169 break;
1170 }
1171 return 0;
1172err:
1173 dprintk(FE_ERROR, 1, "I/O error");
1174 return -1;
1175}
1176
1177static int stv090x_start_search(struct stv090x_state *state)
1178{
1179 u32 reg;
1180
1181 reg = STV090x_READ_DEMOD(state, DMDISTATE);
1182 STV090x_SETFIELD_Px(reg, I2C_DEMOD_MODE_FIELD, 0x1f);
1183 if (STV090x_WRITE_DEMOD(state, DMDISTATE, reg) < 0)
1184 goto err;
1185
1186 if (state->dev_ver == 0x10) {
1187 if (STV090x_WRITE_DEMOD(state, CORRELEXP, 0xaa) < 0)
1188 goto err;
1189 }
1190 if (state->dev_ver < 0x20) {
1191 if (STV090x_WRITE_DEMOD(state, CARHDR, 0x55) < 0)
1192 goto err;
1193 }
1194 if (state->srate <= 5000000) {
1195 if (STV090x_WRITE_DEMOD(state, CARCFG, 0x44) < 0)
1196 goto err;
1197 if (STV090x_WRITE_DEMOD(state, CFRUP1, 0x0f) < 0)
1198 goto err;
1199 if (STV090x_WRITE_DEMOD(state, CFRUP1, 0xff) < 0)
1200 goto err;
1201 if (STV090x_WRITE_DEMOD(state, CFRLOW1, 0xf0) < 0)
1202 goto err;
1203 if (STV090x_WRITE_DEMOD(state, CFRLOW0, 0x00) < 0)
1204 goto err;
1205
1206 /*enlarge the timing bandwith for Low SR*/
1207 if (STV090x_WRITE_DEMOD(state, RTCS2, 0x68) < 0)
1208 goto err;
1209 } else {
1210 /* If the symbol rate is >5 Msps
1211 Set The carrier search up and low to auto mode */
1212 if (STV090x_WRITE_DEMOD(state, CARCFG, 0xc4) < 0)
1213 goto err;
1214 /*reduce the timing bandwith for high SR*/
1215 if (STV090x_WRITE_DEMOD(state, RTCS2, 0x44) < 0)
1216 goto err;
1217 }
1218 if (STV090x_WRITE_DEMOD(state, CFRINIT1, 0) < 0)
1219 goto err;
1220 if (STV090x_WRITE_DEMOD(state, CFRINIT0, 0) < 0)
1221 goto err;
1222
1223 if (state->dev_ver >= 0x20) {
1224 if (STV090x_WRITE_DEMOD(state, EQUALCFG, 0x41) < 0)
1225 goto err;
1226 if (STV090x_WRITE_DEMOD(state, FFECFG, 0x41) < 0)
1227 goto err;
1228
1229 if ((state->search_mode == STV090x_DVBS1) ||
1230 (state->search_mode == STV090x_DSS) ||
1231 (state->search_mode == STV090x_SEARCH_AUTO)) {
1232
1233 if (STV090x_WRITE_DEMOD(state, VITSCALE, 0x82) < 0)
1234 goto err;
1235 if (STV090x_WRITE_DEMOD(state, VAVSRVIT, 0x00) < 0)
1236 goto err;
1237 }
1238 }
1239
1240 if (STV090x_WRITE_DEMOD(state, SFRSTEP, 0x00) < 0)
1241 goto err;
1242 if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0xe0) < 0)
1243 goto err;
1244 if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0xc0) < 0)
1245 goto err;
1246
1247 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1248 STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 0);
1249 STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0);
1250 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1251 goto err;
1252 reg = STV090x_READ_DEMOD(state, DMDCFG2);
1253 STV090x_SETFIELD_Px(reg, S1S2_SEQUENTIAL_FIELD, 0x0);
1254 if (STV090x_WRITE_DEMOD(state, DMDCFG2, reg) < 0)
1255 goto err;
1256
1257 if (state->dev_ver >= 0x20) { /*Frequency offset detector setting*/
1258 if (state->srate < 10000000) {
1259 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x4c) < 0)
1260 goto err;
1261 } else {
1262 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x4b) < 0)
1263 goto err;
1264 }
1265 } else {
1266 if (state->srate < 10000000) {
1267 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xef) < 0)
1268 goto err;
1269 } else {
1270 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xed) < 0)
1271 goto err;
1272 }
1273 }
1274
1275 switch (state->algo) {
1276 case STV090x_WARM_SEARCH:/*The symbol rate and the exact carrier Frequency are known */
1277 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0)
1278 goto err;
1279 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0)
1280 goto err;
1281 break;
1282
1283 case STV090x_COLD_SEARCH:/*The symbol rate is known*/
1284 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0)
1285 goto err;
1286 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0)
1287 goto err;
1288 break;
1289
1290 default:
1291 break;
1292 }
1293 return 0;
1294err:
1295 dprintk(FE_ERROR, 1, "I/O error");
1296 return -1;
1297}
1298
1299static int stv090x_get_agc2_min_level(struct stv090x_state *state)
1300{
1301 u32 agc2_min = 0, agc2 = 0, freq_init, freq_step, reg;
1302 s32 i, j, steps, dir;
1303
1304 if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0)
1305 goto err;
1306 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1307 STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 1);
1308 STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 1);
1309 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1310 goto err;
1311
1312 if (STV090x_WRITE_DEMOD(state, SFRUP1, 0x83) < 0) /* SR = 65 Msps Max */
1313 goto err;
1314 if (STV090x_WRITE_DEMOD(state, SFRUP0, 0xc0) < 0)
1315 goto err;
1316 if (STV090x_WRITE_DEMOD(state, SFRLOW1, 0x82) < 0) /* SR= 400 ksps Min */
1317 goto err;
1318 if (STV090x_WRITE_DEMOD(state, SFRLOW0, 0xa0) < 0)
1319 goto err;
1320 if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x00) < 0) /* stop acq @ coarse carrier state */
1321 goto err;
1322 stv090x_set_srate(state, 1000000);
1323
1324 steps = -1 + state->search_range / 1000000;
1325 steps /= 2;
1326 steps = (2 * steps) + 1;
1327 if (steps < 0)
1328 steps = 1;
1329
1330 dir = 1;
1331 freq_step = (1000000 * 256) / (state->mclk / 256);
1332 freq_init = 0;
1333
1334 for (i = 0; i < steps; i++) {
1335 if (dir > 0)
1336 freq_init = freq_init + (freq_step * i);
1337 else
1338 freq_init = freq_init - (freq_step * i);
1339
1340 dir = -1;
1341
1342 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5c) < 0) /* Demod RESET */
1343 goto err;
1344 if (STV090x_WRITE_DEMOD(state, CFRINIT1, (freq_init >> 8) & 0xff) < 0)
1345 goto err;
1346 if (STV090x_WRITE_DEMOD(state, CFRINIT0, freq_init & 0xff) < 0)
1347 goto err;
1348 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x58) < 0) /* Demod RESET */
1349 goto err;
1350 msleep(10);
1351 for (j = 0; j < 10; j++) {
1352 agc2 += STV090x_READ_DEMOD(state, AGC2I1) << 8;
1353 agc2 |= STV090x_READ_DEMOD(state, AGC2I0);
1354 }
1355 agc2 /= 10;
1356 agc2_min = 0xffff;
1357 if (agc2 < 0xffff)
1358 agc2_min = agc2;
1359 }
1360
1361 return agc2_min;
1362err:
1363 dprintk(FE_ERROR, 1, "I/O error");
1364 return -1;
1365}
1366
1367static u32 stv090x_get_srate(struct stv090x_state *state, u32 clk)
1368{
1369 u8 r3, r2, r1, r0;
1370 s32 srate, int_1, int_2, tmp_1, tmp_2;
Manu Abrahame415c682009-04-06 15:45:20 -03001371
1372 r3 = STV090x_READ_DEMOD(state, SFR3);
1373 r2 = STV090x_READ_DEMOD(state, SFR2);
1374 r1 = STV090x_READ_DEMOD(state, SFR1);
1375 r0 = STV090x_READ_DEMOD(state, SFR0);
1376
1377 srate = ((r3 << 24) | (r2 << 16) | (r1 << 8) | r0);
1378
Manu Abrahamf430fff2009-04-08 20:18:50 -03001379 int_1 = clk >> 16;
1380 int_2 = srate >> 16;
Manu Abrahame415c682009-04-06 15:45:20 -03001381
Manu Abrahamf430fff2009-04-08 20:18:50 -03001382 tmp_1 = clk % 0x10000;
1383 tmp_2 = srate % 0x10000;
Manu Abrahame415c682009-04-06 15:45:20 -03001384
1385 srate = (int_1 * int_2) +
Manu Abrahamf430fff2009-04-08 20:18:50 -03001386 ((int_1 * tmp_2) >> 16) +
1387 ((int_2 * tmp_1) >> 16);
Manu Abrahame415c682009-04-06 15:45:20 -03001388
1389 return srate;
1390}
1391
1392static u32 stv090x_srate_srch_coarse(struct stv090x_state *state)
1393{
1394 struct dvb_frontend *fe = &state->frontend;
1395
1396 int tmg_lock = 0, i;
1397 s32 tmg_cpt = 0, dir = 1, steps, cur_step = 0, freq;
1398 u32 srate_coarse = 0, agc2 = 0, car_step = 1200, reg;
1399
1400 reg = STV090x_READ_DEMOD(state, DMDISTATE);
1401 STV090x_SETFIELD_Px(reg, I2C_DEMOD_MODE_FIELD, 0x1f); /* Demod RESET */
1402 if (STV090x_WRITE_DEMOD(state, DMDISTATE, reg) < 0)
1403 goto err;
1404 if (STV090x_WRITE_DEMOD(state, TMGCFG, 0x12) < 0)
1405 goto err;
1406 if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0xf0) < 0)
1407 goto err;
1408 if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0xe0) < 0)
1409 goto err;
1410 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1411 STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 1);
1412 STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 1);
1413 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1414 goto err;
1415
1416 if (STV090x_WRITE_DEMOD(state, SFRUP1, 0x83) < 0)
1417 goto err;
1418 if (STV090x_WRITE_DEMOD(state, SFRUP0, 0xc0) < 0)
1419 goto err;
1420 if (STV090x_WRITE_DEMOD(state, SFRLOW1, 0x82) < 0)
1421 goto err;
1422 if (STV090x_WRITE_DEMOD(state, SFRLOW0, 0xa0) < 0)
1423 goto err;
1424 if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x00) < 0)
1425 goto err;
1426 if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x60) < 0)
1427 goto err;
1428
1429 if (state->dev_ver >= 0x20) {
1430 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x6a) < 0)
1431 goto err;
1432 if (STV090x_WRITE_DEMOD(state, SFRSTEP, 0x95) < 0)
1433 goto err;
1434 } else {
1435 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xed) < 0)
1436 goto err;
1437 if (STV090x_WRITE_DEMOD(state, SFRSTEP, 0x73) < 0)
1438 goto err;
1439 }
1440
1441 if (state->srate <= 2000000)
1442 car_step = 1000;
1443 else if (state->srate <= 5000000)
1444 car_step = 2000;
1445 else if (state->srate <= 12000000)
1446 car_step = 3000;
1447 else
1448 car_step = 5000;
1449
1450 steps = -1 + ((state->search_range / 1000) / car_step);
1451 steps /= 2;
1452 steps = (2 * steps) + 1;
1453 if (steps < 0)
1454 steps = 1;
1455 else if (steps > 10) {
1456 steps = 11;
1457 car_step = (state->search_range / 1000) / 10;
1458 }
1459 cur_step = 0;
1460 dir = 1;
1461 freq = state->frequency;
1462
1463 while ((!tmg_lock) && (cur_step < steps)) {
1464 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5f) < 0) /* Demod RESET */
1465 goto err;
1466 reg = STV090x_READ_DEMOD(state, DMDISTATE);
1467 STV090x_SETFIELD_Px(reg, I2C_DEMOD_MODE_FIELD, 0x00); /* trigger acquisition */
1468 if (STV090x_WRITE_DEMOD(state, DMDISTATE, reg) < 0)
1469 goto err;
1470 msleep(50);
1471 for (i = 0; i < 10; i++) {
1472 reg = STV090x_READ_DEMOD(state, DSTATUS);
1473 if (STV090x_GETFIELD_Px(reg, TMGLOCK_QUALITY_FIELD) >= 2)
1474 tmg_cpt++;
1475 agc2 += STV090x_READ_DEMOD(state, AGC2I1) << 8;
1476 agc2 |= STV090x_READ_DEMOD(state, AGC2I0);
1477 }
1478 agc2 /= 10;
1479 srate_coarse = stv090x_get_srate(state, state->mclk);
1480 cur_step++;
1481 dir *= -1;
1482 if ((tmg_cpt >= 5) && (agc2 < 0x1f00) && (srate_coarse < 55000000) && (srate_coarse > 850000))
1483 tmg_lock = 1;
1484 else if (cur_step < steps) {
1485 if (dir > 0)
1486 freq += cur_step * car_step;
1487 else
1488 freq -= cur_step * car_step;
1489
1490 /* Setup tuner */
1491 stv090x_i2c_gate_ctrl(fe, 1);
1492
1493 if (state->config->tuner_set_frequency)
1494 state->config->tuner_set_frequency(fe, state->frequency);
1495
1496 if (state->config->tuner_set_bandwidth)
1497 state->config->tuner_set_bandwidth(fe, state->tuner_bw);
1498
1499 stv090x_i2c_gate_ctrl(fe, 0);
1500 msleep(50);
1501 stv090x_i2c_gate_ctrl(fe, 1);
1502
1503 if (state->config->tuner_get_status)
1504 state->config->tuner_get_status(fe, &reg);
1505
1506 if (reg)
1507 dprintk(FE_DEBUG, 1, "Tuner phase locked");
1508 else
1509 dprintk(FE_DEBUG, 1, "Tuner unlocked");
1510
1511 stv090x_i2c_gate_ctrl(fe, 0);
1512
1513 }
1514 }
1515 if (!tmg_lock)
1516 srate_coarse = 0;
1517 else
1518 srate_coarse = stv090x_get_srate(state, state->mclk);
1519
1520 return srate_coarse;
1521err:
1522 dprintk(FE_ERROR, 1, "I/O error");
1523 return -1;
1524}
1525
1526static u32 stv090x_srate_srch_fine(struct stv090x_state *state)
1527{
1528 u32 srate_coarse, freq_coarse, sym, reg;
1529
1530 srate_coarse = stv090x_get_srate(state, state->mclk);
1531 freq_coarse = STV090x_READ_DEMOD(state, CFR2) << 8;
1532 freq_coarse |= STV090x_READ_DEMOD(state, CFR1);
1533 sym = 13 * (srate_coarse / 10); /* SFRUP = SFR + 30% */
1534
1535 if (sym < state->srate)
1536 srate_coarse = 0;
1537 else {
1538 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) /* Demod RESET */
1539 goto err;
1540 if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0x01) < 0)
1541 goto err;
1542 if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0x20) < 0)
1543 goto err;
1544 if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0x00) < 0)
1545 goto err;
1546 if (STV090x_WRITE_DEMOD(state, TMGCFG, 0xd2) < 0)
1547 goto err;
1548 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1549 STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0x00);
1550 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1551 goto err;
1552
1553 if (state->dev_ver >= 0x20) {
1554 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x49) < 0)
1555 goto err;
1556 } else {
1557 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xed) < 0)
1558 goto err;
1559 }
1560
1561 if (srate_coarse > 3000000) {
1562 sym = 13 * (srate_coarse / 10); /* SFRUP = SFR + 30% */
1563 sym = (sym / 1000) * 65536;
1564 sym /= (state->mclk / 1000);
1565 if (STV090x_WRITE_DEMOD(state, SFRUP1, (sym >> 8) & 0x7f) < 0)
1566 goto err;
1567 if (STV090x_WRITE_DEMOD(state, SFRUP0, sym & 0xff) < 0)
1568 goto err;
1569 sym = 10 * (srate_coarse / 13); /* SFRLOW = SFR - 30% */
1570 sym = (sym / 1000) * 65536;
1571 sym /= (state->mclk / 1000);
1572 if (STV090x_WRITE_DEMOD(state, SFRLOW1, (sym >> 8) & 0x7f) < 0)
1573 goto err;
1574 if (STV090x_WRITE_DEMOD(state, SFRLOW0, sym & 0xff) < 0)
1575 goto err;
1576 sym = (srate_coarse / 1000) * 65536;
1577 sym /= (state->mclk / 1000);
1578 if (STV090x_WRITE_DEMOD(state, SFRINIT1, (sym >> 8) & 0xff) < 0)
1579 goto err;
1580 if (STV090x_WRITE_DEMOD(state, SFRINIT0, sym & 0xff) < 0)
1581 goto err;
1582 } else {
1583 sym = 13 * (srate_coarse / 10); /* SFRUP = SFR + 30% */
1584 sym = (sym / 100) * 65536;
1585 sym /= (state->mclk / 100);
1586 if (STV090x_WRITE_DEMOD(state, SFRUP1, (sym >> 8) & 0x7f) < 0)
1587 goto err;
1588 if (STV090x_WRITE_DEMOD(state, SFRUP0, sym & 0xff) < 0)
1589 goto err;
1590 sym = 10 * (srate_coarse / 14); /* SFRLOW = SFR - 30% */
1591 sym = (sym / 100) * 65536;
1592 sym /= (state->mclk / 100);
1593 if (STV090x_WRITE_DEMOD(state, SFRLOW1, (sym >> 8) & 0x7f) < 0)
1594 goto err;
1595 if (STV090x_WRITE_DEMOD(state, SFRLOW0, sym & 0xff) < 0)
1596 goto err;
1597 sym = (srate_coarse / 100) * 65536;
1598 sym /= (state->mclk / 100);
1599 if (STV090x_WRITE_DEMOD(state, SFRINIT1, (sym >> 8) & 0xff) < 0)
1600 goto err;
1601 if (STV090x_WRITE_DEMOD(state, SFRINIT0, sym & 0xff) < 0)
1602 goto err;
1603 }
1604 if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x20) < 0)
1605 goto err;
1606 if (STV090x_WRITE_DEMOD(state, CFRINIT1, (freq_coarse >> 8) & 0xff) < 0)
1607 goto err;
1608 if (STV090x_WRITE_DEMOD(state, CFRINIT0, freq_coarse & 0xff) < 0)
1609 goto err;
1610 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0) /* trigger acquisition */
1611 goto err;
1612 }
1613
1614 return srate_coarse;
1615
1616err:
1617 dprintk(FE_ERROR, 1, "I/O error");
1618 return -1;
1619}
1620
1621static int stv090x_get_dmdlock(struct stv090x_state *state, s32 timeout)
1622{
1623 s32 timer = 0, lock = 0;
1624 u32 reg;
1625 u8 stat;
1626
1627 while ((timer < timeout) && (!lock)) {
1628 reg = STV090x_READ_DEMOD(state, DMDSTATE);
1629 stat = STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD);
1630
1631 switch (stat) {
1632 case 0: /* searching */
1633 case 1: /* first PLH detected */
1634 default:
1635 dprintk(FE_DEBUG, 1, "Demodulator searching ..");
1636 lock = 0;
1637 break;
1638 case 2: /* DVB-S2 mode */
1639 case 3: /* DVB-S1/legacy mode */
1640 reg = STV090x_READ_DEMOD(state, DSTATUS);
1641 lock = STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD);
1642 break;
1643 }
1644
1645 if (!lock)
1646 msleep(10);
1647 else
1648 dprintk(FE_DEBUG, 1, "Demodulator acquired LOCK");
1649
1650 timer += 10;
1651 }
1652 return lock;
1653}
1654
1655static int stv090x_blind_search(struct stv090x_state *state)
1656{
1657 u32 agc2, reg, srate_coarse;
1658 s32 timeout_dmd = 500, cpt_fail, agc2_ovflw, i;
1659 u8 k_ref, k_max, k_min;
1660 int coarse_fail, lock;
1661
1662 if (state->dev_ver < 0x20) {
1663 k_max = 233;
1664 k_min = 143;
1665 } else {
1666 k_max = 120;
1667 k_min = 30;
1668 }
1669
1670 agc2 = stv090x_get_agc2_min_level(state);
1671
1672 if (agc2 > STV090x_SEARCH_AGC2_TH) {
1673 lock = 0;
1674 } else {
1675 if (state->dev_ver == 0x10) {
1676 if (STV090x_WRITE_DEMOD(state, CORRELEXP, 0xaa) < 0)
1677 goto err;
1678 }
1679 if (state->dev_ver < 0x20) {
1680 if (STV090x_WRITE_DEMOD(state, CARHDR, 0x55) < 0)
1681 goto err;
1682 }
1683
1684 if (STV090x_WRITE_DEMOD(state, CARCFG, 0xc4) < 0)
1685 goto err;
1686 if (STV090x_WRITE_DEMOD(state, RTCS2, 0x44) < 0)
1687 goto err;
1688 if (state->dev_ver >= 0x20) {
1689 if (STV090x_WRITE_DEMOD(state, EQUALCFG, 0x41) < 0)
1690 goto err;
1691 if (STV090x_WRITE_DEMOD(state, FFECFG, 0x41) < 0)
1692 goto err;
1693 if (STV090x_WRITE_DEMOD(state, VITSCALE, 0x82) < 0)
1694 goto err;
1695 if (STV090x_WRITE_DEMOD(state, VAVSRVIT, 0x00) < 0) /* set viterbi hysteresis */
1696 goto err;
1697 }
1698
1699 k_ref = k_max;
1700 do {
1701 if (STV090x_WRITE_DEMOD(state, KREFTMG, k_ref) < 0)
1702 goto err;
1703 if (stv090x_srate_srch_coarse(state) != 0) {
1704 srate_coarse = stv090x_srate_srch_fine(state);
1705 if (srate_coarse != 0) {
1706 stv090x_get_lock_tmg(state);
1707 lock = stv090x_get_dmdlock(state, timeout_dmd);
1708 } else {
1709 lock = 0;
1710 }
1711 } else {
1712 cpt_fail = 0;
1713 agc2_ovflw = 0;
1714 for (i = 0; i < 10; i++) {
1715 agc2 = STV090x_READ_DEMOD(state, AGC2I1) << 8;
1716 agc2 |= STV090x_READ_DEMOD(state, AGC2I0);
1717 if (agc2 >= 0xff00)
1718 agc2_ovflw++;
1719 reg = STV090x_READ_DEMOD(state, DSTATUS2);
1720 if ((STV090x_GETFIELD_Px(reg, CFR_OVERFLOW_FIELD) == 0x01) &&
1721 (STV090x_GETFIELD_Px(reg, DEMOD_DELOCK_FIELD) == 0x01))
1722
1723 cpt_fail++;
1724 }
1725 if ((cpt_fail > 7) || (agc2_ovflw > 7))
1726 coarse_fail = 1;
1727
1728 lock = 0;
1729 }
1730 k_ref -= 30;
1731 } while ((k_ref >= k_min) && (!lock) && (!coarse_fail));
1732 }
1733
1734 return lock;
1735
1736err:
1737 dprintk(FE_ERROR, 1, "I/O error");
1738 return -1;
1739}
1740
1741static int stv090x_chk_tmg(struct stv090x_state *state)
1742{
1743 u32 reg;
1744 s32 tmg_cpt, i;
1745 u8 freq, tmg_thh, tmg_thl;
1746 int tmg_lock;
1747
1748 freq = STV090x_READ_DEMOD(state, CARFREQ);
1749 tmg_thh = STV090x_READ_DEMOD(state, TMGTHRISE);
1750 tmg_thl = STV090x_READ_DEMOD(state, TMGTHFALL);
1751 if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0x20) < 0)
1752 goto err;
1753 if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0x00) < 0)
1754 goto err;
1755
1756 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1757 STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0x00); /* stop carrier offset search */
1758 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1759 goto err;
1760 if (STV090x_WRITE_DEMOD(state, RTC, 0x80) < 0)
1761 goto err;
1762
1763 if (STV090x_WRITE_DEMOD(state, RTCS2, 0x40) < 0)
1764 goto err;
1765 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x00) < 0)
1766 goto err;
1767
1768 if (STV090x_WRITE_DEMOD(state, CFRINIT1, 0x00) < 0) /* set car ofset to 0 */
1769 goto err;
1770 if (STV090x_WRITE_DEMOD(state, CFRINIT0, 0x00) < 0)
1771 goto err;
1772 if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x65) < 0)
1773 goto err;
1774
1775 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) /* trigger acquisition */
1776 goto err;
1777 msleep(10);
1778
1779 for (i = 0; i < 10; i++) {
1780 reg = STV090x_READ_DEMOD(state, DSTATUS);
1781 if (STV090x_GETFIELD_Px(reg, TMGLOCK_QUALITY_FIELD) >= 2)
1782 tmg_cpt++;
1783 msleep(1);
1784 }
1785 if (tmg_cpt >= 3)
1786 tmg_lock = 1;
1787
1788 if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0)
1789 goto err;
1790 if (STV090x_WRITE_DEMOD(state, RTC, 0x88) < 0) /* DVB-S1 timing */
1791 goto err;
1792 if (STV090x_WRITE_DEMOD(state, RTCS2, 0x68) < 0) /* DVB-S2 timing */
1793 goto err;
1794
1795 if (STV090x_WRITE_DEMOD(state, CARFREQ, freq) < 0)
1796 goto err;
1797 if (STV090x_WRITE_DEMOD(state, TMGTHRISE, tmg_thh) < 0)
1798 goto err;
1799 if (STV090x_WRITE_DEMOD(state, TMGTHFALL, tmg_thl) < 0)
1800 goto err;
1801
1802 return tmg_lock;
1803
1804err:
1805 dprintk(FE_ERROR, 1, "I/O error");
1806 return -1;
1807}
1808
1809static int stv090x_get_coldlock(struct stv090x_state *state, s32 timeout_dmd)
1810{
1811 struct dvb_frontend *fe = &state->frontend;
1812
1813 u32 reg;
1814 s32 car_step, steps, cur_step, dir, freq, timeout_lock;
1815 int lock = 0;
1816
1817 if (state->srate >= 10000000)
1818 timeout_lock = timeout_dmd / 3;
1819 else
1820 timeout_lock = timeout_dmd / 2;
1821
1822 lock = stv090x_get_dmdlock(state, timeout_lock); /* cold start wait */
1823 if (!lock) {
1824 if (state->srate >= 10000000) {
1825 if (stv090x_chk_tmg(state)) {
1826 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0)
1827 goto err;
1828 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0)
1829 goto err;
1830 lock = stv090x_get_dmdlock(state, timeout_dmd);
1831 } else {
1832 lock = 0;
1833 }
1834 } else {
1835 if (state->srate <= 4000000)
1836 car_step = 1000;
1837 else if (state->srate <= 7000000)
1838 car_step = 2000;
1839 else if (state->srate <= 10000000)
1840 car_step = 3000;
1841 else
1842 car_step = 5000;
1843
1844 steps = (state->search_range / 1000) / car_step;
1845 steps /= 2;
1846 steps = 2 * (steps + 1);
1847 if (steps < 0)
1848 steps = 2;
1849 else if (steps > 12)
1850 steps = 12;
1851
1852 cur_step = 1;
1853 dir = 1;
1854
1855 if (!lock) {
1856 freq = state->frequency;
1857 state->tuner_bw = stv090x_car_width(state->srate, state->rolloff) + state->srate;
1858 while ((cur_step <= steps) && (!lock)) {
1859 if (dir > 0)
1860 freq += cur_step * car_step;
1861 else
1862 freq -= cur_step * car_step;
1863
1864 /* Setup tuner */
1865 stv090x_i2c_gate_ctrl(fe, 1);
1866
1867 if (state->config->tuner_set_frequency)
1868 state->config->tuner_set_frequency(fe, state->frequency);
1869
1870 if (state->config->tuner_set_bandwidth)
1871 state->config->tuner_set_bandwidth(fe, state->tuner_bw);
1872
1873 stv090x_i2c_gate_ctrl(fe, 0);
1874
1875 msleep(50);
1876
1877 stv090x_i2c_gate_ctrl(fe, 1);
1878
1879 if (state->config->tuner_get_status)
1880 state->config->tuner_get_status(fe, &reg);
1881
1882 if (reg)
1883 dprintk(FE_DEBUG, 1, "Tuner phase locked");
1884 else
1885 dprintk(FE_DEBUG, 1, "Tuner unlocked");
1886
1887 stv090x_i2c_gate_ctrl(fe, 0);
1888
1889 STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1c);
1890 if (state->delsys == STV090x_DVBS2) {
1891 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
1892 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 0);
1893 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0);
1894 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1895 goto err;
1896 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1);
1897 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1);
1898 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
1899 goto err;
1900 }
1901 if (STV090x_WRITE_DEMOD(state, CFRINIT1, 0x00) < 0)
1902 goto err;
1903 if (STV090x_WRITE_DEMOD(state, CFRINIT0, 0x00) < 0)
1904 goto err;
1905 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0)
1906 goto err;
1907 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0)
1908 goto err;
1909 lock = stv090x_get_dmdlock(state, (timeout_dmd / 3));
1910
1911 dir *= -1;
1912 cur_step++;
1913 }
1914 }
1915 }
1916 }
1917
1918 return lock;
1919
1920err:
1921 dprintk(FE_ERROR, 1, "I/O error");
1922 return -1;
1923}
1924
1925static int stv090x_get_loop_params(struct stv090x_state *state, s32 *freq_inc, s32 *timeout_sw, s32 *steps)
1926{
1927 s32 timeout, inc, steps_max, srate, car_max;
1928
1929 srate = state->srate;
1930 car_max = state->search_range / 1000;
1931 car_max = 65536 * (car_max / 2);
1932 car_max /= (state->mclk / 1000);
1933
1934 if (car_max > 0x4000)
1935 car_max = 0x4000 ; /* maxcarrier should be<= +-1/4 Mclk */
1936
1937 inc = srate;
1938 inc /= state->mclk / 1000;
1939 inc *= 256;
1940 inc *= 256;
1941 inc /= 1000;
1942
Andreas Regel72982f72009-04-08 17:28:41 -03001943 switch (state->search_mode) {
Manu Abrahame415c682009-04-06 15:45:20 -03001944 case STV090x_SEARCH_DVBS1:
1945 case STV090x_SEARCH_DSS:
1946 inc *= 3; /* freq step = 3% of srate */
1947 timeout = 20;
1948 break;
1949
1950 case STV090x_SEARCH_DVBS2:
1951 inc *= 4;
1952 timeout = 25;
1953 break;
1954
1955 case STV090x_SEARCH_AUTO:
1956 default:
1957 inc *= 3;
1958 timeout = 25;
1959 break;
1960 }
1961 inc /= 100;
1962 if ((inc > car_max) || (inc < 0))
1963 inc = car_max / 2; /* increment <= 1/8 Mclk */
1964
1965 timeout *= 27500; /* 27.5 Msps reference */
1966 if (srate > 0)
1967 timeout /= (srate / 1000);
1968
1969 if ((timeout > 100) || (timeout < 0))
1970 timeout = 100;
1971
1972 steps_max = (car_max / inc) + 1; /* min steps = 3 */
1973 if ((steps_max > 100) || (steps_max < 0)) {
1974 steps_max = 100; /* max steps <= 100 */
1975 inc = car_max / steps_max;
1976 }
1977 *freq_inc = inc;
1978 *timeout_sw = timeout;
1979 *steps = steps_max;
1980
1981 return 0;
1982}
1983
1984static int stv090x_chk_signal(struct stv090x_state *state)
1985{
1986 s32 offst_car, agc2, car_max;
1987 int no_signal;
1988
1989 offst_car = STV090x_READ_DEMOD(state, CFR2) << 8;
1990 offst_car |= STV090x_READ_DEMOD(state, CFR1);
1991
1992 agc2 = STV090x_READ_DEMOD(state, AGC2I1) << 8;
1993 agc2 |= STV090x_READ_DEMOD(state, AGC2I0);
1994 car_max = state->search_range / 1000;
1995
1996 car_max += (car_max / 10); /* 10% margin */
1997 car_max = (65536 * car_max / 2);
1998 car_max /= state->mclk / 1000;
1999
2000 if (car_max > 0x4000)
2001 car_max = 0x4000;
2002
2003 if ((agc2 > 0x2000) || (offst_car > 2 * car_max) || (offst_car < -2 * car_max)) {
2004 no_signal = 1;
2005 dprintk(FE_DEBUG, 1, "No Signal");
2006 } else {
2007 no_signal = 0;
2008 dprintk(FE_DEBUG, 1, "Found Signal");
2009 }
2010
2011 return no_signal;
2012}
2013
2014static int stv090x_search_car_loop(struct stv090x_state *state, s32 inc, s32 timeout, int zigzag, s32 steps_max)
2015{
2016 int no_signal, lock = 0;
2017 s32 cpt_step, offst_freq, car_max;
2018 u32 reg;
2019
2020 car_max = state->search_range / 1000;
2021 car_max += (car_max / 10);
2022 car_max = (65536 * car_max / 2);
2023 car_max /= (state->mclk / 1000);
2024 if (car_max > 0x4000)
2025 car_max = 0x4000;
2026
2027 if (zigzag)
2028 offst_freq = 0;
2029 else
2030 offst_freq = -car_max + inc;
2031
2032 cpt_step = 0;
2033 do {
2034 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1c) < 0)
2035 goto err;
2036 if (STV090x_WRITE_DEMOD(state, CFRINIT1, ((offst_freq / 256) & 0xff)) < 0)
2037 goto err;
2038 if (STV090x_WRITE_DEMOD(state, CFRINIT0, offst_freq & 0xff) < 0)
2039 goto err;
2040 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0)
2041 goto err;
2042
2043 reg = STV090x_READ_DEMOD(state, PDELCTRL1);
2044 STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0x1); /* stop DVB-S2 packet delin */
2045 if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0)
2046 goto err;
2047
2048 if (state->dev_ver == 0x12) {
2049 reg = STV090x_READ_DEMOD(state, TSCFGH);
2050 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x1);
2051 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
2052 goto err;
2053 }
2054
2055 if (zigzag) {
2056 if (offst_freq >= 0)
2057 offst_freq = -offst_freq - 2 * inc;
2058 else
2059 offst_freq = -offst_freq;
2060 } else {
2061 offst_freq += 2 * inc;
2062 }
2063
2064 lock = stv090x_get_dmdlock(state, timeout);
2065 no_signal = stv090x_chk_signal(state);
2066
2067 } while ((!lock) &&
2068 (!no_signal) &&
2069 ((offst_freq - inc) < car_max) &&
2070 ((offst_freq + inc) > -car_max) &&
2071 (cpt_step < steps_max));
2072
2073 reg = STV090x_READ_DEMOD(state, PDELCTRL1);
2074 STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0);
2075 if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0)
2076 goto err;
2077
2078 return lock;
2079err:
2080 dprintk(FE_ERROR, 1, "I/O error");
2081 return -1;
2082}
2083
2084static int stv090x_sw_algo(struct stv090x_state *state)
2085{
2086 int no_signal, zigzag, lock = 0;
2087 u32 reg;
2088
2089 s32 dvbs2_fly_wheel;
2090 s32 inc, timeout_step, trials, steps_max;
2091
2092 stv090x_get_loop_params(state, &inc, &timeout_step, &steps_max); /* get params */
2093
Andreas Regel72982f72009-04-08 17:28:41 -03002094 switch (state->search_mode) {
Manu Abrahame415c682009-04-06 15:45:20 -03002095 case STV090x_SEARCH_DVBS1:
2096 case STV090x_SEARCH_DSS:
2097 /* accelerate the frequency detector */
2098 if (state->dev_ver >= 0x20) {
2099 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x3B) < 0)
2100 goto err;
2101 } else {
2102 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xef) < 0)
2103 goto err;
2104 }
2105 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0x49) < 0)
2106 goto err;
2107 zigzag = 0;
2108 break;
2109
2110 case STV090x_SEARCH_DVBS2:
2111 if (state->dev_ver >= 0x20) {
2112 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x79) < 0)
2113 goto err;
2114 } else {
2115 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x68) < 0)
2116 goto err;
2117 }
2118 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0x89) < 0)
2119 goto err;
2120 zigzag = 1;
2121 break;
2122
2123 case STV090x_SEARCH_AUTO:
2124 default:
2125 /* accelerate the frequency detector */
2126 if (state->dev_ver >= 0x20) {
2127 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x3b) < 0)
2128 goto err;
2129 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x79) < 0)
2130 goto err;
2131 } else {
2132 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xef) < 0)
2133 goto err;
2134 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x68) < 0)
2135 goto err;
2136 }
2137 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0x69) < 0)
2138 goto err;
2139 zigzag = 0;
2140 break;
2141 }
2142
2143 trials = 0;
2144 do {
2145 lock = stv090x_search_car_loop(state, inc, timeout_step, zigzag, steps_max);
2146 no_signal = stv090x_chk_signal(state);
2147 trials++;
2148
2149 /*run the SW search 2 times maximum*/
2150 if (lock || no_signal || (trials == 2)) {
2151 /*Check if the demod is not losing lock in DVBS2*/
2152 if (state->dev_ver >= 0x20) {
2153 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x49) < 0)
2154 goto err;
2155 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x9e) < 0)
2156 goto err;
2157 } else {
2158 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xed) < 0)
2159 goto err;
2160 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x88) < 0)
2161 goto err;
2162 }
2163
2164 reg = STV090x_READ_DEMOD(state, DMDSTATE);
2165 if ((lock) && (STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD) == STV090x_DVBS2)) {
2166 /*Check if the demod is not losing lock in DVBS2*/
2167 msleep(timeout_step);
2168 reg = STV090x_READ_DEMOD(state, DMDFLYW);
2169 dvbs2_fly_wheel = STV090x_GETFIELD_Px(reg, FLYWHEEL_CPT_FIELD);
2170 if (dvbs2_fly_wheel < 0xd) { /*if correct frames is decrementing */
2171 msleep(timeout_step);
2172 reg = STV090x_READ_DEMOD(state, DMDFLYW);
2173 dvbs2_fly_wheel = STV090x_GETFIELD_Px(reg, FLYWHEEL_CPT_FIELD);
2174 }
2175 if (dvbs2_fly_wheel < 0xd) {
2176 /*FALSE lock, The demod is loosing lock */
2177 lock = 0;
2178 if (trials < 2) {
2179 if (state->dev_ver >= 0x20) {
2180 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x79) < 0)
2181 goto err;
2182 } else {
2183 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x68) < 0)
2184 goto err;
2185 }
2186 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0x89) < 0)
2187 goto err;
2188 }
2189 }
2190 }
2191 }
2192 } while ((!lock) && (trials < 2) && (!no_signal));
2193
2194 return lock;
2195err:
2196 dprintk(FE_ERROR, 1, "I/O error");
2197 return -1;
2198}
2199
2200static enum stv090x_delsys stv090x_get_std(struct stv090x_state *state)
2201{
2202 u32 reg;
2203 enum stv090x_delsys delsys;
2204
2205 reg = STV090x_READ_DEMOD(state, DMDSTATE);
2206 if (STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD) == 2)
2207 delsys = STV090x_DVBS2;
2208 else if (STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD) == 3) {
2209 reg = STV090x_READ_DEMOD(state, FECM);
2210 if (STV090x_GETFIELD_Px(reg, DSS_DVB_FIELD) == 1)
2211 delsys = STV090x_DSS;
2212 else
2213 delsys = STV090x_DVBS1;
2214 } else {
2215 delsys = STV090x_ERROR;
2216 }
2217
2218 return delsys;
2219}
2220
2221/* in Hz */
2222static s32 stv090x_get_car_freq(struct stv090x_state *state, u32 mclk)
2223{
2224 s32 derot, int_1, int_2, tmp_1, tmp_2;
Manu Abrahame415c682009-04-06 15:45:20 -03002225
2226 derot = STV090x_READ_DEMOD(state, CFR2) << 16;
2227 derot |= STV090x_READ_DEMOD(state, CFR1) << 8;
2228 derot |= STV090x_READ_DEMOD(state, CFR0);
2229
2230 derot = comp2(derot, 24);
Manu Abrahamda4b9052009-04-08 20:30:29 -03002231 int_1 = state->mclk >> 12;
2232 int_2 = derot >> 12;
Manu Abrahame415c682009-04-06 15:45:20 -03002233
Manu Abrahamda4b9052009-04-08 20:30:29 -03002234 /* carrier_frequency = MasterClock * Reg / 2^24 */
2235 tmp_1 = state->mclk % 0x1000;
2236 tmp_2 = derot % 0x1000;
Manu Abrahame415c682009-04-06 15:45:20 -03002237
2238 derot = (int_1 * int_2) +
Manu Abrahamda4b9052009-04-08 20:30:29 -03002239 ((int_1 * tmp_2) >> 12) +
2240 ((int_1 * tmp_1) >> 12);
Manu Abrahame415c682009-04-06 15:45:20 -03002241
2242 return derot;
2243}
2244
2245static int stv090x_get_viterbi(struct stv090x_state *state)
2246{
2247 u32 reg, rate;
2248
2249 reg = STV090x_READ_DEMOD(state, VITCURPUN);
2250 rate = STV090x_GETFIELD_Px(reg, VIT_CURPUN_FIELD);
2251
2252 switch (rate) {
2253 case 13:
2254 state->fec = STV090x_PR12;
2255 break;
2256
2257 case 18:
2258 state->fec = STV090x_PR23;
2259 break;
2260
2261 case 21:
2262 state->fec = STV090x_PR34;
2263 break;
2264
2265 case 24:
2266 state->fec = STV090x_PR56;
2267 break;
2268
2269 case 25:
2270 state->fec = STV090x_PR67;
2271 break;
2272
2273 case 26:
2274 state->fec = STV090x_PR78;
2275 break;
2276
2277 default:
2278 state->fec = STV090x_PRERR;
2279 break;
2280 }
2281
2282 return 0;
2283}
2284
2285static enum stv090x_signal_state stv090x_get_sig_params(struct stv090x_state *state)
2286{
2287 struct dvb_frontend *fe = &state->frontend;
2288
2289 u8 tmg;
2290 u32 reg;
2291 s32 i = 0, offst_freq;
2292
2293 msleep(5);
2294
2295 if (state->algo == STV090x_BLIND_SEARCH) {
2296 tmg = STV090x_READ_DEMOD(state, TMGREG2);
2297 STV090x_WRITE_DEMOD(state, SFRSTEP, 0x5c);
2298 while ((i <= 50) && (!tmg) && (tmg != 0xff)) {
2299 tmg = STV090x_READ_DEMOD(state, TMGREG2);
2300 msleep(5);
2301 i += 5;
2302 }
2303 }
2304 state->delsys = stv090x_get_std(state);
2305
2306 stv090x_i2c_gate_ctrl(fe, 1);
2307
2308 if (state->config->tuner_get_frequency)
2309 state->config->tuner_get_frequency(fe, &state->frequency);
2310
2311 stv090x_i2c_gate_ctrl(fe, 0);
2312
2313 offst_freq = stv090x_get_car_freq(state, state->mclk) / 1000;
2314 state->frequency += offst_freq;
2315 stv090x_get_viterbi(state);
2316 reg = STV090x_READ_DEMOD(state, DMDMODCOD);
2317 state->modcod = STV090x_GETFIELD_Px(reg, DEMOD_MODCOD_FIELD);
2318 state->pilots = STV090x_GETFIELD_Px(reg, DEMOD_TYPE_FIELD) & 0x01;
2319 state->frame_len = STV090x_GETFIELD_Px(reg, DEMOD_TYPE_FIELD) >> 1;
2320 reg = STV090x_READ_DEMOD(state, TMGOBS);
2321 state->rolloff = STV090x_GETFIELD_Px(reg, ROLLOFF_STATUS_FIELD);
2322 reg = STV090x_READ_DEMOD(state, FECM);
2323 state->inversion = STV090x_GETFIELD_Px(reg, IQINV_FIELD);
2324
2325 if ((state->algo == STV090x_BLIND_SEARCH) || (state->srate < 10000000)) {
2326
2327 stv090x_i2c_gate_ctrl(fe, 1);
2328
2329 if (state->config->tuner_get_frequency)
2330 state->config->tuner_get_frequency(fe, &state->frequency);
2331
2332 stv090x_i2c_gate_ctrl(fe, 0);
2333
2334 if (abs(offst_freq) <= ((state->search_range / 2000) + 500))
2335 return STV090x_RANGEOK;
2336 else if (abs(offst_freq) <= (stv090x_car_width(state->srate, state->rolloff) / 2000))
2337 return STV090x_RANGEOK;
2338 else
2339 return STV090x_OUTOFRANGE; /* Out of Range */
2340 } else {
2341 if (abs(offst_freq) <= ((state->search_range / 2000) + 500))
2342 return STV090x_RANGEOK;
2343 else
2344 return STV090x_OUTOFRANGE;
2345 }
2346
2347 return STV090x_OUTOFRANGE;
2348}
2349
2350static u32 stv090x_get_tmgoffst(struct stv090x_state *state, u32 srate)
2351{
2352 s32 offst_tmg;
Manu Abrahame415c682009-04-06 15:45:20 -03002353
2354 offst_tmg = STV090x_READ_DEMOD(state, TMGREG2) << 16;
2355 offst_tmg |= STV090x_READ_DEMOD(state, TMGREG1) << 8;
2356 offst_tmg |= STV090x_READ_DEMOD(state, TMGREG0);
2357
Manu Abrahame415c682009-04-06 15:45:20 -03002358 offst_tmg = comp2(offst_tmg, 24); /* 2's complement */
2359 if (!offst_tmg)
2360 offst_tmg = 1;
2361
Manu Abraham5f99fef2009-04-08 20:24:53 -03002362 offst_tmg = ((s32) srate * 10) / ((s32) 0x1000000 / offst_tmg);
Manu Abrahame415c682009-04-06 15:45:20 -03002363 offst_tmg /= 320;
2364
2365 return offst_tmg;
2366}
2367
2368static u8 stv090x_optimize_carloop(struct stv090x_state *state, enum stv090x_modcod modcod, s32 pilots)
2369{
2370 u8 aclc = 0x29;
2371 s32 i;
2372 struct stv090x_long_frame_crloop *car_loop;
2373
2374 if (state->dev_ver <= 0x12)
2375 car_loop = stv090x_s2_crl;
2376 else if (state->dev_ver == 0x20)
2377 car_loop = stv090x_s2_crl_cut20;
2378 else
2379 car_loop = stv090x_s2_crl;
2380
2381
2382 if (modcod < STV090x_QPSK_12) {
2383 i = 0;
2384 while ((i < 3) && (modcod != stv090x_s2_lowqpsk_crl_cut20[i].modcod))
2385 i++;
2386
2387 if (i >= 3)
2388 i = 2;
2389
2390 } else {
2391 i = 0;
2392 while ((i < 14) && (modcod != car_loop[i].modcod))
2393 i++;
2394
2395 if (i >= 14) {
2396 i = 0;
2397 while ((i < 11) && (modcod != stv090x_s2_lowqpsk_crl_cut20[i].modcod))
2398 i++;
2399
2400 if (i >= 11)
2401 i = 10;
2402 }
2403 }
2404
2405 if (modcod <= STV090x_QPSK_25) {
2406 if (pilots) {
2407 if (state->srate <= 3000000)
2408 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_on_2;
2409 else if (state->srate <= 7000000)
2410 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_on_5;
2411 else if (state->srate <= 15000000)
2412 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_on_10;
2413 else if (state->srate <= 25000000)
2414 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_on_20;
2415 else
2416 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_on_30;
2417 } else {
2418 if (state->srate <= 3000000)
2419 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_off_2;
2420 else if (state->srate <= 7000000)
2421 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_off_5;
2422 else if (state->srate <= 15000000)
2423 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_off_10;
2424 else if (state->srate <= 25000000)
2425 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_off_20;
2426 else
2427 aclc = stv090x_s2_lowqpsk_crl_cut20[i].crl_pilots_off_30;
2428 }
2429
2430 } else if (modcod <= STV090x_8PSK_910) {
2431 if (pilots) {
2432 if (state->srate <= 3000000)
2433 aclc = car_loop[i].crl_pilots_on_2;
2434 else if (state->srate <= 7000000)
2435 aclc = car_loop[i].crl_pilots_on_5;
2436 else if (state->srate <= 15000000)
2437 aclc = car_loop[i].crl_pilots_on_10;
2438 else if (state->srate <= 25000000)
2439 aclc = car_loop[i].crl_pilots_on_20;
2440 else
2441 aclc = car_loop[i].crl_pilots_on_30;
2442 } else {
2443 if (state->srate <= 3000000)
2444 aclc = car_loop[i].crl_pilots_off_2;
2445 else if (state->srate <= 7000000)
2446 aclc = car_loop[i].crl_pilots_off_5;
2447 else if (state->srate <= 15000000)
2448 aclc = car_loop[i].crl_pilots_off_10;
2449 else if (state->srate <= 25000000)
2450 aclc = car_loop[i].crl_pilots_off_20;
2451 else
2452 aclc = car_loop[i].crl_pilots_off_30;
2453 }
2454 } else { /* 16APSK and 32APSK */
2455 if (state->srate <= 3000000)
2456 aclc = stv090x_s2_apsk_crl_cut20[i].crl_pilots_on_2;
2457 else if (state->srate <= 7000000)
2458 aclc = stv090x_s2_apsk_crl_cut20[i].crl_pilots_on_5;
2459 else if (state->srate <= 15000000)
2460 aclc = stv090x_s2_apsk_crl_cut20[i].crl_pilots_on_10;
2461 else if (state->srate <= 25000000)
2462 aclc = stv090x_s2_apsk_crl_cut20[i].crl_pilots_on_20;
2463 else
2464 aclc = stv090x_s2_apsk_crl_cut20[i].crl_pilots_on_30;
2465 }
2466
2467 return aclc;
2468}
2469
2470static u8 stv090x_optimize_carloop_short(struct stv090x_state *state)
2471{
2472 s32 index = 0;
2473 u8 aclc = 0x0b;
2474
2475 switch (state->modulation) {
2476 case STV090x_QPSK:
2477 default:
2478 index = 0;
2479 break;
2480 case STV090x_8PSK:
2481 index = 1;
2482 break;
2483 case STV090x_16APSK:
2484 index = 2;
2485 break;
2486 case STV090x_32APSK:
2487 index = 3;
2488 break;
2489 }
2490
2491 switch (state->dev_ver) {
2492 case 0x20:
2493 if (state->srate <= 3000000)
2494 aclc = stv090x_s2_short_crl[index].crl_cut20_2;
2495 else if (state->srate <= 7000000)
2496 aclc = stv090x_s2_short_crl[index].crl_cut20_5;
2497 else if (state->srate <= 15000000)
2498 aclc = stv090x_s2_short_crl[index].crl_cut20_10;
2499 else if (state->srate <= 25000000)
2500 aclc = stv090x_s2_short_crl[index].crl_cut20_20;
2501 else
2502 aclc = stv090x_s2_short_crl[index].crl_cut20_30;
2503 break;
2504
2505 case 0x12:
2506 default:
2507 if (state->srate <= 3000000)
2508 aclc = stv090x_s2_short_crl[index].crl_cut12_2;
2509 else if (state->srate <= 7000000)
2510 aclc = stv090x_s2_short_crl[index].crl_cut12_5;
2511 else if (state->srate <= 15000000)
2512 aclc = stv090x_s2_short_crl[index].crl_cut12_10;
2513 else if (state->srate <= 25000000)
2514 aclc = stv090x_s2_short_crl[index].crl_cut12_20;
2515 else
2516 aclc = stv090x_s2_short_crl[index].crl_cut12_30;
2517 break;
2518 }
2519
2520 return aclc;
2521}
2522
2523static int stv090x_optimize_track(struct stv090x_state *state)
2524{
2525 struct dvb_frontend *fe = &state->frontend;
2526
2527 enum stv090x_rolloff rolloff;
2528 enum stv090x_modcod modcod;
2529
2530 s32 srate, pilots, aclc, f_1, f_0, i = 0, blind_tune = 0;
2531 u32 reg;
2532
2533 srate = stv090x_get_srate(state, state->mclk);
2534 srate += stv090x_get_tmgoffst(state, srate);
2535
2536 switch (state->delsys) {
2537 case STV090x_DVBS1:
2538 case STV090x_DSS:
2539 if (state->algo == STV090x_SEARCH_AUTO) {
2540 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
2541 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1);
2542 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0);
2543 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
2544 goto err;
2545 }
2546 reg = STV090x_READ_DEMOD(state, DEMOD);
2547 STV090x_SETFIELD_Px(reg, ROLLOFF_CONTROL_FIELD, state->rolloff);
2548 STV090x_SETFIELD_Px(reg, MANUAL_ROLLOFF_FIELD, 0x01);
2549 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
2550 goto err;
2551 if (STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x75) < 0)
2552 goto err;
2553 break;
2554
2555 case STV090x_DVBS2:
2556 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
2557 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1);
2558 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0);
2559 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
2560 goto err;
2561 if (STV090x_WRITE_DEMOD(state, ACLC, 0) < 0)
2562 goto err;
2563 if (STV090x_WRITE_DEMOD(state, BCLC, 0) < 0)
2564 goto err;
2565 if (state->frame_len == STV090x_LONG_FRAME) {
2566 reg = STV090x_READ_DEMOD(state, DMDMODCOD);
2567 modcod = STV090x_GETFIELD_Px(reg, DEMOD_MODCOD_FIELD);
2568 pilots = STV090x_GETFIELD_Px(reg, DEMOD_TYPE_FIELD) & 0x01;
2569 aclc = stv090x_optimize_carloop(state, modcod, pilots);
2570 if (modcod <= STV090x_QPSK_910) {
2571 STV090x_WRITE_DEMOD(state, ACLC2S2Q, aclc);
2572 } else if (modcod <= STV090x_8PSK_910) {
2573 if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0)
2574 goto err;
2575 if (STV090x_WRITE_DEMOD(state, ACLC2S28, aclc) < 0)
2576 goto err;
2577 }
2578 if ((state->demod_mode == STV090x_SINGLE) && (modcod > STV090x_8PSK_910)) {
2579 if (modcod <= STV090x_16APSK_910) {
2580 if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0)
2581 goto err;
2582 if (STV090x_WRITE_DEMOD(state, ACLC2S216A, aclc) < 0)
2583 goto err;
2584 } else {
2585 if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0)
2586 goto err;
2587 if (STV090x_WRITE_DEMOD(state, ACLC2S232A, aclc) < 0)
2588 goto err;
2589 }
2590 }
2591 } else {
2592 /*Carrier loop setting for short frame*/
2593 aclc = stv090x_optimize_carloop_short(state);
2594 if (state->modulation == STV090x_QPSK) {
2595 if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, aclc) < 0)
2596 goto err;
2597 } else if (state->modulation == STV090x_8PSK) {
2598 if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0)
2599 goto err;
2600 if (STV090x_WRITE_DEMOD(state, ACLC2S28, aclc) < 0)
2601 goto err;
2602 } else if (state->modulation == STV090x_16APSK) {
2603 if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0)
2604 goto err;
2605 if (STV090x_WRITE_DEMOD(state, ACLC2S216A, aclc) < 0)
2606 goto err;
2607 } else if (state->modulation == STV090x_32APSK) {
2608 if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0)
2609 goto err;
2610 if (STV090x_WRITE_DEMOD(state, ACLC2S232A, aclc) < 0)
2611 goto err;
2612 }
2613 }
2614 if (state->dev_ver <= 0x11) {
2615 if (state->demod_mode != STV090x_SINGLE)
2616 stv090x_activate_modcod(state); /* link to LDPC after demod LOCK */
2617 }
2618 STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x67); /* PER */
2619 break;
2620
2621 case STV090x_UNKNOWN:
2622 default:
2623 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
2624 STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1);
2625 STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1);
2626 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
2627 goto err;
2628 break;
2629 }
2630
2631 f_1 = STV090x_READ_DEMOD(state, CFR2);
2632 f_0 = STV090x_READ_DEMOD(state, CFR1);
2633 reg = STV090x_READ_DEMOD(state, TMGOBS);
2634 rolloff = STV090x_GETFIELD_Px(reg, ROLLOFF_STATUS_FIELD);
2635
2636 if (state->algo == STV090x_BLIND_SEARCH) {
2637 STV090x_WRITE_DEMOD(state, SFRSTEP, 0x00);
2638 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
2639 STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 0x00);
2640 STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0x00);
2641 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
2642 goto err;
2643 if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0x01) < 0)
2644 goto err;
2645 stv090x_set_srate(state, srate);
2646 stv090x_set_max_srate(state, state->mclk, srate);
2647 stv090x_set_min_srate(state, state->mclk, srate);
2648 blind_tune = 1;
2649 }
2650
2651 if (state->dev_ver >= 0x20) {
2652 if ((state->search_mode == STV090x_SEARCH_DVBS1) ||
2653 (state->search_mode == STV090x_SEARCH_DSS) ||
2654 (state->search_mode == STV090x_SEARCH_AUTO)) {
2655
2656 if (STV090x_WRITE_DEMOD(state, VAVSRVIT, 0x0a) < 0)
2657 goto err;
2658 if (STV090x_WRITE_DEMOD(state, VITSCALE, 0x00) < 0)
2659 goto err;
2660 }
2661 }
2662
2663 if (state->dev_ver < 0x20) {
2664 if (STV090x_WRITE_DEMOD(state, CARHDR, 0x08) < 0)
2665 goto err;
2666 }
2667 if (state->dev_ver == 0x10) {
2668 if (STV090x_WRITE_DEMOD(state, CORRELEXP, 0x0a) < 0)
2669 goto err;
2670 }
2671
2672 if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0)
2673 goto err;
2674
2675 if ((state->dev_ver >= 0x20) || (blind_tune == 1) || (state->srate < 10000000)) {
2676
2677 if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0)
2678 goto err;
2679 if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_0) < 0)
2680 goto err;
2681 state->tuner_bw = stv090x_car_width(srate, state->rolloff) + 10000000;
2682
2683 if ((state->dev_ver >= 0x20) || (blind_tune == 1)) {
2684
2685 if (state->algo != STV090x_WARM_SEARCH) {
2686
2687 stv090x_i2c_gate_ctrl(fe, 1);
2688
2689 if (state->config->tuner_set_bandwidth)
2690 state->config->tuner_set_bandwidth(fe, state->tuner_bw);
2691
2692 stv090x_i2c_gate_ctrl(fe, 0);
2693
2694 }
2695 }
2696 if ((state->algo == STV090x_BLIND_SEARCH) || (state->srate < 10000000))
2697 msleep(50); /* blind search: wait 50ms for SR stabilization */
2698 else
2699 msleep(5);
2700
2701 stv090x_get_lock_tmg(state);
2702
2703 if (!(stv090x_get_dmdlock(state, (state->DemodTimeout / 2)))) {
2704 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0)
2705 goto err;
2706 if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0)
2707 goto err;
2708 if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_0) < 0)
2709 goto err;
2710 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0)
2711 goto err;
2712
2713 i = 0;
2714
2715 while ((!(stv090x_get_dmdlock(state, (state->DemodTimeout / 2)))) && (i <= 2)) {
2716
2717 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0)
2718 goto err;
2719 if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0)
2720 goto err;
2721 if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_0) < 0)
2722 goto err;
2723 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0)
2724 goto err;
2725 i++;
2726 }
2727 }
2728
2729 }
2730
2731 if (state->dev_ver >= 0x20) {
2732 if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x49) < 0)
2733 goto err;
2734 }
2735 if ((state->delsys == STV090x_DVBS1) || (state->delsys == STV090x_DSS))
2736 stv090x_set_vit_thtracq(state);
2737
2738 return 0;
2739err:
2740 dprintk(FE_ERROR, 1, "I/O error");
2741 return -1;
2742}
2743
2744static int stv090x_get_feclock(struct stv090x_state *state, s32 timeout)
2745{
2746 s32 timer = 0, lock = 0, stat;
2747 u32 reg;
2748
2749 while ((timer < timeout) && (!lock)) {
2750 reg = STV090x_READ_DEMOD(state, DMDSTATE);
2751 stat = STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD);
2752
2753 switch (stat) {
2754 case 0: /* searching */
2755 case 1: /* first PLH detected */
2756 default:
2757 lock = 0;
2758 break;
2759
2760 case 2: /* DVB-S2 mode */
2761 reg = STV090x_READ_DEMOD(state, PDELSTATUS1);
2762 lock = STV090x_GETFIELD_Px(reg, PKTDELIN_LOCK_FIELD);
2763 break;
2764
2765 case 3: /* DVB-S1/legacy mode */
2766 reg = STV090x_READ_DEMOD(state, VSTATUSVIT);
2767 lock = STV090x_GETFIELD_Px(reg, LOCKEDVIT_FIELD);
2768 break;
2769 }
2770 if (!lock) {
2771 msleep(10);
2772 timer += 10;
2773 }
2774 }
2775 return lock;
2776}
2777
2778static int stv090x_get_lock(struct stv090x_state *state, s32 timeout_dmd, s32 timeout_fec)
2779{
2780 u32 reg;
2781 s32 timer = 0;
2782 int lock;
2783
2784 lock = stv090x_get_dmdlock(state, timeout_dmd);
2785 if (lock)
2786 lock = stv090x_get_feclock(state, timeout_fec);
2787
2788 if (lock) {
2789 lock = 0;
2790
2791 while ((timer < timeout_fec) && (!lock)) {
2792 reg = STV090x_READ_DEMOD(state, TSSTATUS);
2793 lock = STV090x_GETFIELD_Px(reg, TSFIFO_LINEOK_FIELD);
2794 msleep(1);
2795 timer++;
2796 }
2797 }
2798
2799 return lock;
2800}
2801
2802static int stv090x_set_s2rolloff(struct stv090x_state *state)
2803{
2804 s32 rolloff;
2805 u32 reg;
2806
2807 if (state->dev_ver == 0x10) {
2808 reg = STV090x_READ_DEMOD(state, DEMOD);
2809 STV090x_SETFIELD_Px(reg, MANUAL_ROLLOFF_FIELD, 0x01);
2810 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
2811 goto err;
2812 rolloff = STV090x_READ_DEMOD(state, MATSTR1) & 0x03;
2813 reg = STV090x_READ_DEMOD(state, DEMOD);
2814 STV090x_SETFIELD_Px(reg, ROLLOFF_CONTROL_FIELD, reg);
2815 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
2816 goto err;
2817 } else {
2818 reg = STV090x_READ_DEMOD(state, DEMOD);
2819 STV090x_SETFIELD_Px(reg, MANUAL_ROLLOFF_FIELD, 0x00);
2820 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
2821 goto err;
2822 }
2823 return 0;
2824err:
2825 dprintk(FE_ERROR, 1, "I/O error");
2826 return -1;
2827}
2828
2829static enum stv090x_signal_state stv090x_acq_fixs1(struct stv090x_state *state)
2830{
2831 s32 srate, f_1, f_2;
2832 enum stv090x_signal_state signal_state = STV090x_NODATA;
2833 u32 reg;
2834 int lock;
2835
2836 reg = STV090x_READ_DEMOD(state, DMDSTATE);
2837 if (STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD) == 3) { /* DVB-S mode */
2838 srate = stv090x_get_srate(state, state->mclk);
2839 srate += stv090x_get_tmgoffst(state, state->srate);
2840
2841 if (state->algo == STV090x_BLIND_SEARCH)
2842 stv090x_set_srate(state, state->srate);
2843
2844 stv090x_get_lock_tmg(state);
2845
2846 f_1 = STV090x_READ_DEMOD(state, CFR2);
2847 f_2 = STV090x_READ_DEMOD(state, CFR1);
2848
2849 reg = STV090x_READ_DEMOD(state, DMDCFGMD);
2850 STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0);
2851 if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0)
2852 goto err;
2853
2854 reg = STV090x_READ_DEMOD(state, DEMOD);
2855 STV090x_SETFIELD_Px(reg, SPECINV_CONTROL_FIELD, STV090x_IQ_SWAP);
2856 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
2857 goto err;
2858 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1c) < 0) /* stop demod */
2859 goto err;
2860 if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0)
2861 goto err;
2862 if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_2) < 0)
2863 goto err;
2864 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) /* warm start trigger */
2865 goto err;
2866
2867 if (stv090x_get_lock(state, state->DemodTimeout, state->FecTimeout)) {
2868 lock = 1;
2869 stv090x_get_sig_params(state);
2870 stv090x_optimize_track(state);
2871 } else {
2872 reg = STV090x_READ_DEMOD(state, DEMOD);
2873 STV090x_SETFIELD_Px(reg, SPECINV_CONTROL_FIELD, STV090x_IQ_NORMAL);
2874 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
2875 goto err;
2876 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1c) < 0)
2877 goto err;
2878 if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0)
2879 goto err;
2880 if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_2) < 0)
2881 goto err;
2882 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) /* warm start trigger */
2883 goto err;
2884 if (stv090x_get_lock(state, state->DemodTimeout, state->FecTimeout)) {
2885 lock = 1;
2886 signal_state = stv090x_get_sig_params(state);
2887 stv090x_optimize_track(state);
2888 }
2889 }
2890 } else {
2891 lock = 0;
2892 }
2893
2894 return signal_state;
2895
2896err:
2897 dprintk(FE_ERROR, 1, "I/O error");
2898 return -1;
2899}
2900
2901static enum stv090x_signal_state stv090x_algo(struct stv090x_state *state)
2902{
2903 struct dvb_frontend *fe = &state->frontend;
2904 enum stv090x_signal_state signal_state = STV090x_NOCARRIER;
2905 u32 reg;
2906 s32 timeout_dmd = 500, timeout_fec = 50;
2907 int lock = 0, low_sr, no_signal = 0;
2908
2909 reg = STV090x_READ_DEMOD(state, TSCFGH);
2910 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 1); /* Stop path 1 stream merger */
2911 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
2912 goto err;
2913
2914 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5c) < 0) /* Demod stop */
2915 goto err;
2916
2917 if (state->dev_ver >= 0x20) {
2918 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x9e) < 0) /* cut 2.0 */
2919 goto err;
2920 } else {
2921 if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x88) < 0) /* cut 1.x */
2922 goto err;
2923 }
2924
2925 stv090x_get_lock_tmg(state);
2926
2927 if (state->algo == STV090x_BLIND_SEARCH) {
2928 state->tuner_bw = 2 * 36000000; /* wide bw for unknown srate */
2929 if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0x00) < 0) /* wider srate scan */
2930 goto err;
2931 stv090x_set_srate(state, 1000000); /* inital srate = 1Msps */
2932 } else {
2933 /* known srate */
2934 if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x20) < 0)
2935 goto err;
2936 if (STV090x_WRITE_DEMOD(state, TMGCFG, 0xd2) < 0)
2937 goto err;
2938
2939 if (state->srate >= 10000000) {
2940 if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0) /* High SR */
2941 goto err;
2942 } else {
2943 if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x60) < 0) /* Low SR */
2944 goto err;
2945 }
2946
2947 if (state->dev_ver >= 0x20) {
2948 if (STV090x_WRITE_DEMOD(state, KREFTMG, 0x5a) < 0)
2949 goto err;
2950 if (state->algo == STV090x_COLD_SEARCH)
2951 state->tuner_bw = (15 * (stv090x_car_width(state->srate, state->rolloff) + 1000000)) / 10;
2952 else if (state->algo == STV090x_WARM_SEARCH)
2953 state->tuner_bw = stv090x_car_width(state->srate, state->rolloff) + 10000000;
2954 } else {
2955 if (STV090x_WRITE_DEMOD(state, KREFTMG, 0xc1) < 0)
2956 goto err;
2957 state->tuner_bw = (15 * (stv090x_car_width(state->srate, state->rolloff) + 10000000)) / 10;
2958 }
2959 if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0x01) < 0) /* narrow srate scan */
2960 goto err;
2961 stv090x_set_srate(state, state->srate);
2962 stv090x_set_max_srate(state, state->mclk, state->srate);
2963 stv090x_set_min_srate(state, state->mclk, state->srate);
2964
2965 if (state->srate >= 10000000)
2966 low_sr = 1;
2967 }
2968
2969 /* Setup tuner */
2970 stv090x_i2c_gate_ctrl(fe, 1);
2971
2972 if (state->config->tuner_set_bbgain)
2973 state->config->tuner_set_bbgain(fe, 10); /* 10dB */
2974
2975 if (state->config->tuner_set_frequency)
2976 state->config->tuner_set_frequency(fe, state->frequency);
2977
2978 if (state->config->tuner_set_bandwidth)
2979 state->config->tuner_set_bandwidth(fe, state->tuner_bw);
2980
2981 stv090x_i2c_gate_ctrl(fe, 0);
2982
2983 msleep(50);
2984
2985 stv090x_i2c_gate_ctrl(fe, 1);
2986
2987 if (state->config->tuner_get_status)
2988 state->config->tuner_get_status(fe, &reg);
2989
2990 if (reg)
2991 dprintk(FE_DEBUG, 1, "Tuner phase locked");
2992 else
2993 dprintk(FE_DEBUG, 1, "Tuner unlocked");
2994
2995 stv090x_i2c_gate_ctrl(fe, 0);
2996
2997 reg = STV090x_READ_DEMOD(state, DEMOD);
2998 STV090x_SETFIELD_Px(reg, SPECINV_CONTROL_FIELD, state->inversion);
2999 STV090x_SETFIELD_Px(reg, MANUAL_ROLLOFF_FIELD, 1);
3000 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
3001 goto err;
3002 stv090x_delivery_search(state);
3003 if (state->algo == STV090x_BLIND_SEARCH)
3004 stv090x_start_search(state);
3005
3006 if (state->dev_ver == 0x12) {
3007 reg = STV090x_READ_DEMOD(state, TSCFGH);
3008 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */
3009 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3010 goto err;
3011 msleep(3);
3012 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 1); /* merger reset */
3013 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3014 goto err;
3015 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */
3016 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3017 goto err;
3018 }
3019
3020 if (state->algo == STV090x_BLIND_SEARCH)
3021 lock = stv090x_blind_search(state);
3022 else if (state->algo == STV090x_COLD_SEARCH)
3023 lock = stv090x_get_coldlock(state, timeout_dmd);
3024 else if (state->algo == STV090x_WARM_SEARCH)
3025 lock = stv090x_get_dmdlock(state, timeout_dmd);
3026
3027 if ((!lock) && (state->algo == STV090x_COLD_SEARCH)) {
3028 if (!low_sr) {
3029 if (stv090x_chk_tmg(state))
3030 lock = stv090x_sw_algo(state);
3031 }
3032 }
3033
3034 if (lock)
3035 signal_state = stv090x_get_sig_params(state);
3036
3037 if ((lock) && (signal_state == STV090x_RANGEOK)) { /* signal within Range */
3038 stv090x_optimize_track(state);
3039 if (state->dev_ver <= 0x11) { /*workaround for dual DVBS1 cut 1.1 and 1.0 only*/
3040 if (stv090x_get_std(state) == STV090x_DVBS1) {
3041 msleep(20);
3042 reg = STV090x_READ_DEMOD(state, TSCFGH);
3043 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */
3044 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3045 goto err;
3046 } else {
3047 reg = STV090x_READ_DEMOD(state, TSCFGH);
3048 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */
3049 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3050 goto err;
3051 msleep(3);
3052 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 1); /* merger reset */
3053 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3054 goto err;
3055 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */
3056 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3057 goto err;
3058 }
3059 } else if (state->dev_ver == 0x20) { /*cut 2.0 :release TS reset after demod lock and TrackingOptimization*/
3060 reg = STV090x_READ_DEMOD(state, TSCFGH);
3061 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */
3062 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3063 goto err;
3064 msleep(3);
3065 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 1); /* merger reset */
3066 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3067 goto err;
3068
3069 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */
3070 if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0)
3071 goto err;
3072 }
3073
3074 if (stv090x_get_lock(state, timeout_fec, timeout_fec)) {
3075 lock = 1;
3076 if (state->delsys == STV090x_DVBS2) {
3077 stv090x_set_s2rolloff(state);
3078 if (STV090x_WRITE_DEMOD(state, PDELCTRL2, 0x40) < 0)
3079 goto err;
3080 if (STV090x_WRITE_DEMOD(state, PDELCTRL2, 0x00) < 0) /* RESET counter */
3081 goto err;
3082 if (STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x67) < 0) /* PER */
3083 goto err;
3084 } else {
3085 if (STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x75) < 0)
3086 goto err;
3087 }
3088 if (STV090x_WRITE_DEMOD(state, FBERCPT4, 0x00) < 0)
3089 goto err;
3090 if (STV090x_WRITE_DEMOD(state, ERRCTRL2, 0xc1) < 0)
3091 goto err;
3092 } else {
3093 lock = 0;
3094 signal_state = STV090x_NODATA;
3095 no_signal = stv090x_chk_signal(state);
3096 }
3097 }
3098 if ((signal_state == STV090x_NODATA) && (!no_signal)) {
3099 if (state->dev_ver <= 0x11) {
3100 reg = STV090x_READ_DEMOD(state, DMDSTATE);
3101 if (((STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD)) == STV090x_DVBS2) && (state->inversion == INVERSION_AUTO))
3102 signal_state = stv090x_acq_fixs1(state);
3103 }
3104 }
3105 return signal_state;
3106
3107err:
3108 dprintk(FE_ERROR, 1, "I/O error");
3109 return -1;
3110}
3111
3112static enum dvbfe_search stv090x_search(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
3113{
3114 struct stv090x_state *state = fe->demodulator_priv;
3115 struct dtv_frontend_properties *props = &fe->dtv_property_cache;
3116
3117 state->delsys = props->delivery_system;
3118 state->frequency = p->frequency;
3119 state->srate = p->u.qpsk.symbol_rate;
3120
3121 if (!stv090x_algo(state)) {
3122 dprintk(FE_DEBUG, 1, "Search success!");
3123 return DVBFE_ALGO_SEARCH_SUCCESS;
3124 } else {
3125 dprintk(FE_DEBUG, 1, "Search failed!");
3126 return DVBFE_ALGO_SEARCH_FAILED;
3127 }
3128
3129 return DVBFE_ALGO_SEARCH_ERROR;
3130}
3131
3132/* FIXME! */
3133static int stv090x_read_status(struct dvb_frontend *fe, enum fe_status *status)
3134{
3135 struct stv090x_state *state = fe->demodulator_priv;
3136 u32 reg;
3137 u8 search_state;
3138 int locked = 0;
3139
3140 reg = STV090x_READ_DEMOD(state, DMDSTATE);
3141 search_state = STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD);
3142
3143 switch (search_state) {
3144 case 0: /* searching */
3145 case 1: /* first PLH detected */
3146 default:
3147 dprintk(FE_DEBUG, 1, "Status: Unlocked (Searching ..)");
3148 locked = 0;
3149 break;
3150
3151 case 2: /* DVB-S2 mode */
3152 dprintk(FE_DEBUG, 1, "Delivery system: DVB-S2");
3153 reg = STV090x_READ_DEMOD(state, DSTATUS);
3154 if (STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD)) {
3155 reg = STV090x_READ_DEMOD(state, TSSTATUS);
3156 if (STV090x_GETFIELD_Px(reg, TSFIFO_LINEOK_FIELD)) {
3157 locked = 1;
3158 *status = FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK;
3159 }
3160 }
3161 break;
3162
3163 case 3: /* DVB-S1/legacy mode */
3164 dprintk(FE_DEBUG, 1, "Delivery system: DVB-S");
3165 reg = STV090x_READ_DEMOD(state, DSTATUS);
3166 if (STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD)) {
3167 reg = STV090x_READ_DEMOD(state, VSTATUSVIT);
3168 if (STV090x_GETFIELD_Px(reg, LOCKEDVIT_FIELD)) {
3169 reg = STV090x_READ_DEMOD(state, TSSTATUS);
3170 if (STV090x_GETFIELD_Px(reg, TSFIFO_LINEOK_FIELD)) {
3171 locked = 1;
3172 *status = FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK;
3173 }
3174 }
3175 }
3176 break;
3177 }
3178
3179 return locked;
3180}
3181
3182static int stv090x_read_per(struct dvb_frontend *fe, u32 *per)
3183{
3184 struct stv090x_state *state = fe->demodulator_priv;
3185
3186 s32 count_4, count_3, count_2, count_1, count_0, count;
3187 u32 reg, h, m, l;
3188 enum fe_status status;
3189
3190 if (!stv090x_read_status(fe, &status)) {
3191 *per = 1 << 23; /* Max PER */
3192 } else {
3193 /* Counter 2 */
3194 reg = STV090x_READ_DEMOD(state, ERRCNT22);
3195 h = STV090x_GETFIELD_Px(reg, ERR_CNT2_FIELD);
3196
3197 reg = STV090x_READ_DEMOD(state, ERRCNT21);
3198 m = STV090x_GETFIELD_Px(reg, ERR_CNT21_FIELD);
3199
3200 reg = STV090x_READ_DEMOD(state, ERRCNT20);
3201 l = STV090x_GETFIELD_Px(reg, ERR_CNT20_FIELD);
3202
3203 *per = ((h << 16) | (m << 8) | l);
3204
3205 count_4 = STV090x_READ_DEMOD(state, FBERCPT4);
3206 count_3 = STV090x_READ_DEMOD(state, FBERCPT3);
3207 count_2 = STV090x_READ_DEMOD(state, FBERCPT2);
3208 count_1 = STV090x_READ_DEMOD(state, FBERCPT1);
3209 count_0 = STV090x_READ_DEMOD(state, FBERCPT0);
3210
3211 if ((!count_4) && (!count_3)) {
3212 count = (count_2 & 0xff) << 16;
3213 count |= (count_1 & 0xff) << 8;
3214 count |= count_0 & 0xff;
3215 } else {
3216 count = 1 << 24;
3217 }
3218 if (count == 0)
3219 *per = 1;
3220 }
3221 if (STV090x_WRITE_DEMOD(state, FBERCPT4, 0) < 0)
3222 goto err;
3223 if (STV090x_WRITE_DEMOD(state, ERRCTRL2, 0xc1) < 0)
3224 goto err;
3225
3226 return 0;
3227err:
3228 dprintk(FE_ERROR, 1, "I/O error");
3229 return -1;
3230}
3231
3232static int stv090x_table_lookup(const struct stv090x_tab *tab, int max, int val)
3233{
3234 int res = 0;
3235 int min = 0, med;
3236
3237 if (val < tab[min].read)
3238 res = tab[min].real;
3239 else if (val >= tab[max].read)
3240 res = tab[max].real;
3241 else {
3242 while ((max - min) > 1) {
3243 med = (max + min) / 2;
3244 if (val >= tab[min].read && val < tab[med].read)
3245 max = med;
3246 else
3247 min = med;
3248 }
3249 res = ((val - tab[min].read) *
3250 (tab[max].real - tab[min].real) /
3251 (tab[max].read - tab[min].read)) +
3252 tab[min].real;
3253 }
3254
3255 return res;
3256}
3257
3258static int stv090x_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
3259{
3260 struct stv090x_state *state = fe->demodulator_priv;
3261 u32 reg;
3262 s32 agc;
3263
3264 reg = STV090x_READ_DEMOD(state, AGCIQIN1);
3265 agc = STV090x_GETFIELD_Px(reg, AGCIQ_VALUE_FIELD);
3266
3267 *strength = stv090x_table_lookup(stv090x_rf_tab, ARRAY_SIZE(stv090x_rf_tab) - 1, agc);
3268 if (agc > stv090x_rf_tab[0].read)
3269 *strength = 5;
3270 else if (agc < stv090x_rf_tab[ARRAY_SIZE(stv090x_rf_tab) - 1].read)
3271 *strength = -100;
3272
3273 return 0;
3274}
3275
3276static int stv090x_read_cnr(struct dvb_frontend *fe, u16 *cnr)
3277{
3278 struct stv090x_state *state = fe->demodulator_priv;
3279 u32 reg_0, reg_1, reg, i;
3280 s32 val_0, val_1, val = 0;
3281 u8 lock_f;
3282
3283 switch (state->delsys) {
3284 case STV090x_DVBS2:
3285 reg = STV090x_READ_DEMOD(state, DSTATUS);
3286 lock_f = STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD);
3287 if (lock_f) {
3288 msleep(5);
3289 for (i = 0; i < 16; i++) {
3290 reg_1 = STV090x_READ_DEMOD(state, NNOSPLHT1);
3291 val_1 = STV090x_GETFIELD_Px(reg_1, NOSPLHT_NORMED_FIELD);
3292 reg_0 = STV090x_READ_DEMOD(state, NNOSPLHT0);
3293 val_0 = STV090x_GETFIELD_Px(reg_1, NOSPLHT_NORMED_FIELD);
3294 val += MAKEWORD16(val_1, val_0);
3295 msleep(1);
3296 }
3297 val /= 16;
3298 *cnr = stv090x_table_lookup(stv090x_s2cn_tab, ARRAY_SIZE(stv090x_s2cn_tab) - 1, val);
3299 if (val < stv090x_s2cn_tab[ARRAY_SIZE(stv090x_s2cn_tab) - 1].read)
3300 *cnr = 1000;
3301 }
3302 break;
3303
3304 case STV090x_DVBS1:
3305 case STV090x_DSS:
3306 reg = STV090x_READ_DEMOD(state, DSTATUS);
3307 lock_f = STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD);
3308 if (lock_f) {
3309 msleep(5);
3310 for (i = 0; i < 16; i++) {
3311 reg_1 = STV090x_READ_DEMOD(state, NOSDATAT1);
3312 val_1 = STV090x_GETFIELD_Px(reg_1, NOSDATAT_UNNORMED_FIELD);
3313 reg_0 = STV090x_READ_DEMOD(state, NOSDATAT0);
3314 val_0 = STV090x_GETFIELD_Px(reg_1, NOSDATAT_UNNORMED_FIELD);
3315 val += MAKEWORD16(val_1, val_0);
3316 msleep(1);
3317 }
3318 val /= 16;
3319 *cnr = stv090x_table_lookup(stv090x_s1cn_tab, ARRAY_SIZE(stv090x_s1cn_tab) - 1, val);
3320 if (val < stv090x_s2cn_tab[ARRAY_SIZE(stv090x_s1cn_tab) - 1].read)
3321 *cnr = 1000;
3322 }
3323 break;
3324 default:
3325 break;
3326 }
3327
3328 return 0;
3329}
3330
3331static int stv090x_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
3332{
3333 struct stv090x_state *state = fe->demodulator_priv;
3334 u32 reg;
3335
3336 reg = STV090x_READ_DEMOD(state, DISTXCTL);
3337 switch (tone) {
3338 case SEC_TONE_ON:
3339 STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, 0);
3340 STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1);
3341 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3342 goto err;
3343 STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 0);
3344 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3345 goto err;
3346 break;
3347
3348 case SEC_TONE_OFF:
3349 STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, 0);
3350 STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1);
3351 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3352 goto err;
3353 break;
3354 default:
3355 return -EINVAL;
3356 }
3357
3358 return 0;
3359err:
3360 dprintk(FE_ERROR, 1, "I/O error");
3361 return -1;
3362}
3363
3364
3365static enum dvbfe_algo stv090x_frontend_algo(struct dvb_frontend *fe)
3366{
3367 return DVBFE_ALGO_CUSTOM;
3368}
3369
3370static int stv090x_send_diseqc_msg(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
3371{
3372 struct stv090x_state *state = fe->demodulator_priv;
3373 u32 reg, idle = 0, fifo_full = 1;
3374 int i;
3375
3376 reg = STV090x_READ_DEMOD(state, DISTXCTL);
Andreas Regelf9ed95d2009-04-08 17:27:51 -03003377
3378 STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, 2);
3379 STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1);
3380 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3381 goto err;
3382 STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 0);
3383 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3384 goto err;
3385
Manu Abrahame415c682009-04-06 15:45:20 -03003386 STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 1);
3387 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3388 goto err;
3389
3390 for (i = 0; i < cmd->msg_len; i++) {
3391
3392 while (fifo_full) {
3393 reg = STV090x_READ_DEMOD(state, DISTXSTATUS);
3394 fifo_full = STV090x_GETFIELD_Px(reg, FIFO_FULL_FIELD);
3395 }
3396
3397 if (STV090x_WRITE_DEMOD(state, DISTXDATA, cmd->msg[i]) < 0)
3398 goto err;
Andreas Regelf9ed95d2009-04-08 17:27:51 -03003399 }
3400 reg = STV090x_READ_DEMOD(state, DISTXCTL);
3401 STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 0);
3402 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3403 goto err;
3404
3405 i = 0;
3406
3407 while ((!idle) && (i < 10)) {
3408 reg = STV090x_READ_DEMOD(state, DISTXSTATUS);
3409 idle = STV090x_GETFIELD_Px(reg, TX_IDLE_FIELD);
3410 msleep(10);
Manu Abrahame415c682009-04-06 15:45:20 -03003411 i++;
3412 }
Andreas Regelf9ed95d2009-04-08 17:27:51 -03003413
3414 return 0;
3415err:
3416 dprintk(FE_ERROR, 1, "I/O error");
3417 return -1;
3418}
3419
3420static int stv090x_send_diseqc_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t burst)
3421{
3422 struct stv090x_state *state = fe->demodulator_priv;
3423 u32 reg, idle = 0, fifo_full = 1;
3424 u8 mode, value;
3425 int i;
3426
3427 reg = STV090x_READ_DEMOD(state, DISTXCTL);
3428
3429 if (burst == SEC_MINI_A) {
3430 mode = 3;
3431 value = 0x00;
3432 } else {
3433 mode = 2;
3434 value = 0xFF;
3435 }
3436
3437 STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, mode);
3438 STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1);
3439 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3440 goto err;
3441 STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 0);
3442 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3443 goto err;
3444
3445 STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 1);
3446 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3447 goto err;
3448
3449 while (fifo_full) {
3450 reg = STV090x_READ_DEMOD(state, DISTXSTATUS);
3451 fifo_full = STV090x_GETFIELD_Px(reg, FIFO_FULL_FIELD);
3452 }
3453
3454 if (STV090x_WRITE_DEMOD(state, DISTXDATA, value) < 0)
3455 goto err;
3456
Manu Abrahame415c682009-04-06 15:45:20 -03003457 reg = STV090x_READ_DEMOD(state, DISTXCTL);
3458 STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 0);
3459 if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0)
3460 goto err;
3461
3462 i = 0;
3463
3464 while ((!idle) && (i < 10)) {
3465 reg = STV090x_READ_DEMOD(state, DISTXSTATUS);
3466 idle = STV090x_GETFIELD_Px(reg, TX_IDLE_FIELD);
3467 msleep(10);
3468 i++;
3469 }
3470
3471 return 0;
3472err:
3473 dprintk(FE_ERROR, 1, "I/O error");
3474 return -1;
3475}
3476
3477static int stv090x_recv_slave_reply(struct dvb_frontend *fe, struct dvb_diseqc_slave_reply *reply)
3478{
3479 struct stv090x_state *state = fe->demodulator_priv;
3480 u32 reg = 0, i = 0, rx_end = 0;
3481
3482 while ((rx_end != 1) && (i < 10)) {
3483 msleep(10);
3484 i++;
3485 reg = STV090x_READ_DEMOD(state, DISRX_ST0);
3486 rx_end = STV090x_GETFIELD_Px(reg, RX_END_FIELD);
3487 }
3488
3489 if (rx_end) {
3490 reply->msg_len = STV090x_GETFIELD_Px(reg, FIFO_BYTENBR_FIELD);
3491 for (i = 0; i < reply->msg_len; i++)
3492 reply->msg[i] = STV090x_READ_DEMOD(state, DISRXDATA);
3493 }
3494
3495 return 0;
3496}
3497
3498static int stv090x_sleep(struct dvb_frontend *fe)
3499{
3500 struct stv090x_state *state = fe->demodulator_priv;
3501 u32 reg;
3502
3503 dprintk(FE_DEBUG, 1, "Set %s to sleep",
3504 state->device == STV0900 ? "STV0900" : "STV0903");
3505
3506 reg = stv090x_read_reg(state, STV090x_SYNTCTRL);
3507 STV090x_SETFIELD(reg, STANDBY_FIELD, 0x01);
3508 if (stv090x_write_reg(state, STV090x_SYNTCTRL, reg) < 0)
3509 goto err;
3510
Manu Abraham26b03bc2009-04-08 18:27:10 -03003511 reg = stv090x_read_reg(state, STV090x_TSTTNR1);
3512 STV090x_SETFIELD(reg, ADC1_PON_FIELD, 0);
3513 if (stv090x_write_reg(state, STV090x_TSTTNR1, reg) < 0)
3514 goto err;
3515
Manu Abrahame415c682009-04-06 15:45:20 -03003516 return 0;
3517err:
3518 dprintk(FE_ERROR, 1, "I/O error");
3519 return -1;
3520}
3521
3522static int stv090x_wakeup(struct dvb_frontend *fe)
3523{
3524 struct stv090x_state *state = fe->demodulator_priv;
3525 u32 reg;
3526
3527 dprintk(FE_DEBUG, 1, "Wake %s from standby",
3528 state->device == STV0900 ? "STV0900" : "STV0903");
3529
3530 reg = stv090x_read_reg(state, STV090x_SYNTCTRL);
3531 STV090x_SETFIELD(reg, STANDBY_FIELD, 0x00);
3532 if (stv090x_write_reg(state, STV090x_SYNTCTRL, reg) < 0)
3533 goto err;
3534
Manu Abraham26b03bc2009-04-08 18:27:10 -03003535 reg = stv090x_read_reg(state, STV090x_TSTTNR1);
3536 STV090x_SETFIELD(reg, ADC1_PON_FIELD, 1);
3537 if (stv090x_write_reg(state, STV090x_TSTTNR1, reg) < 0)
3538 goto err;
3539
Manu Abrahame415c682009-04-06 15:45:20 -03003540 return 0;
3541err:
3542 dprintk(FE_ERROR, 1, "I/O error");
3543 return -1;
3544}
3545
3546static void stv090x_release(struct dvb_frontend *fe)
3547{
3548 struct stv090x_state *state = fe->demodulator_priv;
3549
3550 kfree(state);
3551}
3552
3553static int stv090x_ldpc_mode(struct stv090x_state *state, enum stv090x_mode ldpc_mode)
3554{
3555 u32 reg;
3556
3557 switch (ldpc_mode) {
3558 case STV090x_DUAL:
3559 default:
3560 reg = stv090x_read_reg(state, STV090x_GENCFG);
3561 if ((state->demod_mode != STV090x_DUAL) || (STV090x_GETFIELD(reg, DDEMOD_FIELD) != 1)) {
3562 /* follow LDPC default state */
3563 if (stv090x_write_reg(state, STV090x_GENCFG, reg) < 0)
3564 goto err;
3565 state->demod_mode = STV090x_DUAL;
3566 reg = stv090x_read_reg(state, STV090x_TSTRES0);
3567 STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x1);
3568 if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0)
3569 goto err;
3570 STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x0);
3571 if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0)
3572 goto err;
3573 }
3574 break;
3575
3576 case STV090x_SINGLE:
3577 if (state->demod == STV090x_DEMODULATOR_1) {
3578 if (stv090x_write_reg(state, STV090x_GENCFG, 0x06) < 0) /* path 2 */
3579 goto err;
3580 } else {
3581 if (stv090x_write_reg(state, STV090x_GENCFG, 0x04) < 0) /* path 1 */
3582 goto err;
3583 }
3584
3585 reg = stv090x_read_reg(state, STV090x_TSTRES0);
3586 STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x1);
3587 if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0)
3588 goto err;
3589 STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x0);
3590 if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0)
3591 goto err;
3592
3593 reg = STV090x_READ_DEMOD(state, PDELCTRL1);
3594 STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0x01);
3595 if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0)
3596 goto err;
3597 STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0x00);
3598 if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0)
3599 goto err;
3600 break;
3601 }
3602
3603 return 0;
3604err:
3605 dprintk(FE_ERROR, 1, "I/O error");
3606 return -1;
3607}
3608
3609/* return (Hz), clk in Hz*/
3610static u32 stv090x_get_mclk(struct stv090x_state *state)
3611{
3612 const struct stv090x_config *config = state->config;
3613 u32 div, reg;
3614 u8 ratio;
3615
3616 div = stv090x_read_reg(state, STV090x_NCOARSE);
3617 reg = stv090x_read_reg(state, STV090x_SYNTCTRL);
3618 ratio = STV090x_GETFIELD(reg, SELX1RATIO_FIELD) ? 4 : 6;
3619
3620 return (div + 1) * config->xtal / ratio; /* kHz */
3621}
3622
3623static int stv090x_set_mclk(struct stv090x_state *state, u32 mclk, u32 clk)
3624{
3625 const struct stv090x_config *config = state->config;
3626 u32 reg, div, clk_sel;
3627
3628 reg = stv090x_read_reg(state, STV090x_SYNTCTRL);
3629 clk_sel = ((STV090x_GETFIELD(reg, SELX1RATIO_FIELD) == 1) ? 4 : 6);
3630
3631 div = ((clk_sel * mclk) / config->xtal) - 1;
3632
3633 reg = stv090x_read_reg(state, STV090x_NCOARSE);
3634 STV090x_SETFIELD(reg, M_DIV_FIELD, div);
3635 if (stv090x_write_reg(state, STV090x_NCOARSE, reg) < 0)
3636 goto err;
3637
3638 state->mclk = stv090x_get_mclk(state);
3639
Manu Abraham94a80912009-04-08 19:45:43 -03003640 /*Set the DiseqC frequency to 22KHz */
3641 div = state->mclk / 704000;
3642 if (STV090x_WRITE_DEMOD(state, F22TX, div) < 0)
3643 goto err;
3644 if (STV090x_WRITE_DEMOD(state, F22RX, div) < 0)
3645 goto err;
3646
Manu Abrahame415c682009-04-06 15:45:20 -03003647 return 0;
3648err:
3649 dprintk(FE_ERROR, 1, "I/O error");
3650 return -1;
3651}
3652
3653static int stv090x_set_tspath(struct stv090x_state *state)
3654{
3655 u32 reg;
3656
3657 if (state->dev_ver >= 0x20) {
3658 switch (state->config->ts1_mode) {
3659 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3660 case STV090x_TSMODE_DVBCI:
3661 switch (state->config->ts2_mode) {
3662 case STV090x_TSMODE_SERIAL_PUNCTURED:
3663 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3664 default:
3665 stv090x_write_reg(state, STV090x_TSGENERAL, 0x00);
3666 break;
3667
3668 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3669 case STV090x_TSMODE_DVBCI:
3670 if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x06) < 0) /* Mux'd stream mode */
3671 goto err;
3672 reg = stv090x_read_reg(state, STV090x_P1_TSCFGM);
3673 STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 3);
3674 if (stv090x_write_reg(state, STV090x_P1_TSCFGM, reg) < 0)
3675 goto err;
3676 reg = stv090x_read_reg(state, STV090x_P2_TSCFGM);
3677 STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 3);
3678 if (stv090x_write_reg(state, STV090x_P2_TSCFGM, reg) < 0)
3679 goto err;
3680 if (stv090x_write_reg(state, STV090x_P1_TSSPEED, 0x14) < 0)
3681 goto err;
3682 if (stv090x_write_reg(state, STV090x_P2_TSSPEED, 0x28) < 0)
3683 goto err;
3684 break;
3685 }
3686 break;
3687
3688 case STV090x_TSMODE_SERIAL_PUNCTURED:
3689 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3690 default:
3691 switch (state->config->ts2_mode) {
3692 case STV090x_TSMODE_SERIAL_PUNCTURED:
3693 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3694 default:
3695 if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x0c) < 0)
3696 goto err;
3697 break;
3698
3699 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3700 case STV090x_TSMODE_DVBCI:
3701 if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x0a) < 0)
3702 goto err;
3703 break;
3704 }
3705 break;
3706 }
3707 } else {
3708 switch (state->config->ts1_mode) {
3709 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3710 case STV090x_TSMODE_DVBCI:
3711 switch (state->config->ts2_mode) {
3712 case STV090x_TSMODE_SERIAL_PUNCTURED:
3713 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3714 default:
Manu Abraham56571502009-04-07 16:08:26 -03003715 stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x10);
Manu Abrahame415c682009-04-06 15:45:20 -03003716 break;
3717
3718 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3719 case STV090x_TSMODE_DVBCI:
Manu Abraham56571502009-04-07 16:08:26 -03003720 stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x16);
Manu Abrahame415c682009-04-06 15:45:20 -03003721 reg = stv090x_read_reg(state, STV090x_P1_TSCFGM);
3722 STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 3);
3723 if (stv090x_write_reg(state, STV090x_P1_TSCFGM, reg) < 0)
3724 goto err;
3725 reg = stv090x_read_reg(state, STV090x_P1_TSCFGM);
3726 STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 0);
3727 if (stv090x_write_reg(state, STV090x_P1_TSCFGM, reg) < 0)
3728 goto err;
3729 if (stv090x_write_reg(state, STV090x_P1_TSSPEED, 0x14) < 0)
3730 goto err;
3731 if (stv090x_write_reg(state, STV090x_P2_TSSPEED, 0x28) < 0)
3732 goto err;
3733 break;
3734 }
3735 break;
3736
3737 case STV090x_TSMODE_SERIAL_PUNCTURED:
3738 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3739 default:
3740 switch (state->config->ts2_mode) {
3741 case STV090x_TSMODE_SERIAL_PUNCTURED:
3742 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3743 default:
Manu Abraham56571502009-04-07 16:08:26 -03003744 stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x14);
Manu Abrahame415c682009-04-06 15:45:20 -03003745 break;
3746
3747 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3748 case STV090x_TSMODE_DVBCI:
Manu Abraham56571502009-04-07 16:08:26 -03003749 stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x12);
Manu Abrahame415c682009-04-06 15:45:20 -03003750 break;
3751 }
3752 break;
3753 }
3754 }
3755
3756 switch (state->config->ts1_mode) {
3757 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3758 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3759 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00);
3760 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00);
3761 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3762 goto err;
3763 break;
3764
3765 case STV090x_TSMODE_DVBCI:
3766 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3767 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00);
3768 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01);
3769 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3770 goto err;
3771 break;
3772
3773 case STV090x_TSMODE_SERIAL_PUNCTURED:
3774 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3775 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01);
3776 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00);
3777 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3778 goto err;
3779 break;
3780
3781 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3782 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3783 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01);
3784 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01);
3785 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3786 goto err;
3787 break;
3788
3789 default:
3790 break;
3791 }
3792
3793 switch (state->config->ts2_mode) {
3794 case STV090x_TSMODE_PARALLEL_PUNCTURED:
3795 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3796 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00);
3797 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00);
3798 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3799 goto err;
3800 break;
3801
3802 case STV090x_TSMODE_DVBCI:
3803 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3804 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00);
3805 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01);
3806 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3807 goto err;
3808 break;
3809
3810 case STV090x_TSMODE_SERIAL_PUNCTURED:
3811 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3812 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01);
3813 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00);
3814 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3815 goto err;
3816 break;
3817
3818 case STV090x_TSMODE_SERIAL_CONTINUOUS:
3819 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3820 STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01);
3821 STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01);
3822 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3823 goto err;
3824 break;
3825
3826 default:
3827 break;
3828 }
3829 reg = stv090x_read_reg(state, STV090x_P2_TSCFGH);
3830 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x01);
3831 if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0)
3832 goto err;
3833 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x00);
3834 if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0)
3835 goto err;
3836
3837 reg = stv090x_read_reg(state, STV090x_P1_TSCFGH);
3838 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x01);
3839 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3840 goto err;
3841 STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x00);
3842 if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0)
3843 goto err;
3844
3845 return 0;
3846err:
3847 dprintk(FE_ERROR, 1, "I/O error");
3848 return -1;
3849}
3850
3851static int stv090x_init(struct dvb_frontend *fe)
3852{
3853 struct stv090x_state *state = fe->demodulator_priv;
3854 const struct stv090x_config *config = state->config;
3855 u32 reg;
3856
3857 stv090x_ldpc_mode(state, state->demod_mode);
3858
3859 reg = STV090x_READ_DEMOD(state, TNRCFG2);
3860 STV090x_SETFIELD_Px(reg, TUN_IQSWAP_FIELD, state->inversion);
3861 if (STV090x_WRITE_DEMOD(state, TNRCFG2, reg) < 0)
3862 goto err;
3863 reg = STV090x_READ_DEMOD(state, DEMOD);
3864 STV090x_SETFIELD_Px(reg, ROLLOFF_CONTROL_FIELD, state->rolloff);
3865 if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0)
3866 goto err;
3867
3868 stv090x_i2c_gate_ctrl(fe, 1);
3869
3870 if (config->tuner_init)
3871 config->tuner_init(fe);
3872
3873 stv090x_i2c_gate_ctrl(fe, 0);
3874
3875 stv090x_set_tspath(state);
3876
3877 return 0;
3878err:
3879 dprintk(FE_ERROR, 1, "I/O error");
3880 return -1;
3881}
3882
3883static int stv090x_setup(struct dvb_frontend *fe)
3884{
3885 struct stv090x_state *state = fe->demodulator_priv;
3886 const struct stv090x_config *config = state->config;
3887 const struct stv090x_reg *stv090x_initval = NULL;
3888 const struct stv090x_reg *stv090x_cut20_val = NULL;
3889 unsigned long t1_size = 0, t2_size = 0;
Manu Abraham017eb032009-04-07 05:19:54 -03003890 u32 reg = 0;
Manu Abrahame415c682009-04-06 15:45:20 -03003891
3892 int i;
3893
3894 if (state->device == STV0900) {
3895 dprintk(FE_DEBUG, 1, "Initializing STV0900");
3896 stv090x_initval = stv0900_initval;
3897 t1_size = ARRAY_SIZE(stv0900_initval);
3898 stv090x_cut20_val = stv0900_cut20_val;
3899 t2_size = ARRAY_SIZE(stv0900_cut20_val);
3900 } else if (state->device == STV0903) {
3901 dprintk(FE_DEBUG, 1, "Initializing STV0903");
3902 stv090x_initval = stv0903_initval;
3903 t1_size = ARRAY_SIZE(stv0903_initval);
3904 stv090x_cut20_val = stv0903_cut20_val;
3905 t2_size = ARRAY_SIZE(stv0903_cut20_val);
3906 }
3907
3908 /* STV090x init */
3909 if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5c) < 0) /* Stop Demod */
3910 goto err;
3911
3912 msleep(5);
3913
3914 if (STV090x_WRITE_DEMOD(state, TNRCFG, 0x6c) < 0) /* check register ! (No Tuner Mode) */
3915 goto err;
3916
Manu Abraham017eb032009-04-07 05:19:54 -03003917 STV090x_SETFIELD_Px(reg, ENARPT_LEVEL_FIELD, config->repeater_level);
3918 if (STV090x_WRITE_DEMOD(state, I2CRPT, reg) < 0) /* repeater OFF */
Manu Abrahame415c682009-04-06 15:45:20 -03003919 goto err;
3920
3921 if (stv090x_write_reg(state, STV090x_NCOARSE, 0x13) < 0) /* set PLL divider */
3922 goto err;
3923 msleep(5);
3924 if (stv090x_write_reg(state, STV090x_I2CCFG, 0x08) < 0) /* 1/41 oversampling */
3925 goto err;
3926 if (stv090x_write_reg(state, STV090x_SYNTCTRL, 0x20 | config->clk_mode) < 0) /* enable PLL */
3927 goto err;
3928 msleep(5);
3929
3930 /* write initval */
3931 for (i = 0; i < t1_size; i++) {
3932 dprintk(FE_DEBUG, 1, "Setting up initial values");
3933 if (stv090x_write_reg(state, stv090x_initval[i].addr, stv090x_initval[i].data) < 0)
3934 goto err;
3935 }
3936
3937 if (state->dev_ver >= 0x20) {
3938 if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x0c) < 0)
3939 goto err;
3940
3941 /* write cut20_val*/
3942 dprintk(FE_DEBUG, 1, "Setting up Cut 2.0 initial values");
3943 for (i = 0; i < t2_size; i++) {
3944 if (stv090x_write_reg(state, stv090x_cut20_val[i].addr, stv090x_cut20_val[i].data) < 0)
3945 goto err;
3946 }
3947 }
3948
3949 if (stv090x_write_reg(state, STV090x_TSTRES0, 0x80) < 0)
3950 goto err;
3951 if (stv090x_write_reg(state, STV090x_TSTRES0, 0x00) < 0)
3952 goto err;
3953
3954 stv090x_set_mclk(state, 135000000, config->xtal); /* 135 Mhz */
3955 msleep(5);
3956 if (stv090x_write_reg(state, STV090x_SYNTCTRL, 0x20 | config->clk_mode) < 0)
3957 goto err;
3958 stv090x_get_mclk(state);
3959
3960 return 0;
3961err:
3962 dprintk(FE_ERROR, 1, "I/O error");
3963 return -1;
3964}
3965
3966static struct dvb_frontend_ops stv090x_ops = {
3967
3968 .info = {
3969 .name = "STV090x Multistandard",
3970 },
3971
3972 .release = stv090x_release,
3973 .init = stv090x_init,
3974
3975 .sleep = stv090x_sleep,
3976 .get_frontend_algo = stv090x_frontend_algo,
3977
3978 .i2c_gate_ctrl = stv090x_i2c_gate_ctrl,
3979
3980 .diseqc_send_master_cmd = stv090x_send_diseqc_msg,
Andreas Regelf9ed95d2009-04-08 17:27:51 -03003981 .diseqc_send_burst = stv090x_send_diseqc_burst,
Manu Abrahame415c682009-04-06 15:45:20 -03003982 .diseqc_recv_slave_reply = stv090x_recv_slave_reply,
3983 .set_tone = stv090x_set_tone,
3984
3985 .search = stv090x_search,
3986 .read_status = stv090x_read_status,
3987 .read_ber = stv090x_read_per,
3988 .read_signal_strength = stv090x_read_signal_strength,
3989 .read_snr = stv090x_read_cnr
3990};
3991
3992
3993struct dvb_frontend *stv090x_attach(const struct stv090x_config *config,
3994 struct i2c_adapter *i2c,
3995 enum stv090x_demodulator demod)
3996{
3997 struct stv090x_state *state = NULL;
3998
3999 state = kzalloc(sizeof (struct stv090x_state), GFP_KERNEL);
4000 if (state == NULL)
4001 goto error;
4002
4003 state->verbose = &verbose;
4004 state->config = config;
4005 state->i2c = i2c;
4006 state->frontend.ops = stv090x_ops;
4007 state->frontend.demodulator_priv = state;
Manu Abraham56571502009-04-07 16:08:26 -03004008 state->demod = demod;
Manu Abrahame415c682009-04-06 15:45:20 -03004009 state->demod_mode = config->demod_mode; /* Single or Dual mode */
4010 state->device = config->device;
4011 state->rolloff = 35; /* default */
4012
4013 if (state->demod == STV090x_DEMODULATOR_0)
4014 mutex_init(&demod_lock);
4015
4016 if (stv090x_sleep(&state->frontend) < 0) {
4017 dprintk(FE_ERROR, 1, "Error putting device to sleep");
4018 goto error;
4019 }
4020
4021 if (stv090x_setup(&state->frontend) < 0) {
4022 dprintk(FE_ERROR, 1, "Error setting up device");
4023 goto error;
4024 }
4025 if (stv090x_wakeup(&state->frontend) < 0) {
4026 dprintk(FE_ERROR, 1, "Error waking device");
4027 goto error;
4028 }
4029 state->dev_ver = stv090x_read_reg(state, STV090x_MID);
4030
4031 dprintk(FE_ERROR, 1, "Attaching %s demodulator(%d) Cut=0x%02x\n",
4032 state->device == STV0900 ? "STV0900" : "STV0903",
4033 demod,
4034 state->dev_ver);
4035
4036 return &state->frontend;
4037
4038error:
4039 kfree(state);
4040 return NULL;
4041}
4042EXPORT_SYMBOL(stv090x_attach);
4043MODULE_PARM_DESC(verbose, "Set Verbosity level");
4044MODULE_AUTHOR("Manu Abraham");
4045MODULE_DESCRIPTION("STV090x Multi-Std Broadcast frontend");
4046MODULE_LICENSE("GPL");