Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1 | /* |
| 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 | |
| 37 | static unsigned int verbose; |
| 38 | module_param(verbose, int, 0644); |
| 39 | |
| 40 | struct mutex demod_lock; |
| 41 | |
| 42 | /* DVBS1 and DSS C/N Lookup table */ |
| 43 | static 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 */ |
| 99 | static 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 */ |
| 158 | static 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 | |
| 176 | static struct stv090x_reg stv0900_initval[] = { |
| 177 | |
| 178 | { STV090x_OUTCFG, 0x00 }, |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 179 | { STV090x_MODECFG, 0xff }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 180 | { STV090x_AGCRF1CFG, 0x11 }, |
| 181 | { STV090x_AGCRF2CFG, 0x13 }, |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 182 | { STV090x_TSGENERAL1X, 0x14 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 183 | { 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 Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 208 | { STV090x_P2_DMDTOM, 0x20 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 209 | { STV090x_P2_CORRELMANT, 0x70 }, |
| 210 | { STV090x_P2_CORRELABS, 0x88 }, |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 211 | { STV090x_P2_AGC2O, 0x5b }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 212 | { 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 Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 253 | { STV090x_P1_DMDTOM, 0x20 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 254 | { 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 Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 273 | { STV090x_P1_AGC2O, 0x5b }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 274 | { 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 Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 335 | { STV090x_RCCFGH, 0x20 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 336 | { 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 | |
| 342 | static 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 Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 374 | { STV090x_P1_DMDTOM, 0x20 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 375 | { STV090x_P1_CORRELMANT, 0x70 }, |
| 376 | { STV090x_P1_CORRELABS, 0x88 }, |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 377 | { STV090x_P1_AGC2O, 0x5b }, |
| 378 | { STV090x_P1_AGC2REF, 0x38 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 379 | { STV090x_P1_CARCFG, 0xe4 }, |
| 380 | { STV090x_P1_ACLC, 0x1A }, |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 381 | { STV090x_P1_BCLC, 0x09 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 382 | { 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 Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 439 | { STV090x_RCCFGH, 0x20 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 440 | { STV090x_P1_FECM, 0x01 }, /*disable the DSS mode */ |
| 441 | { STV090x_P1_PRVIT, 0x2f } /*disable puncture rate 6/7*/ |
| 442 | }; |
| 443 | |
| 444 | static struct stv090x_reg stv0900_cut20_val[] = { |
| 445 | |
| 446 | { STV090x_P2_DMDCFG3, 0xe8 }, |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 447 | { STV090x_P2_DMDCFG4, 0x10 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 448 | { 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 Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 456 | { STV090x_P1_DMDCFG4, 0x10 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 457 | { 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 | |
| 480 | static struct stv090x_reg stv0903_cut20_val[] = { |
| 481 | { STV090x_P1_DMDCFG3, 0xe8 }, |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 482 | { STV090x_P1_DMDCFG4, 0x10 }, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 483 | { 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 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 506 | /* Cut 2.0 Long Frame Tracking CR loop */ |
| 507 | static struct stv090x_long_frame_crloop stv090x_s2_crl_cut20[] = { |
| 508 | /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */ |
| 509 | { STV090x_QPSK_12, 0x1f, 0x3f, 0x1e, 0x3f, 0x3d, 0x1f, 0x3d, 0x3e, 0x3d, 0x1e }, |
| 510 | { STV090x_QPSK_35, 0x2f, 0x3f, 0x2e, 0x2f, 0x3d, 0x0f, 0x0e, 0x2e, 0x3d, 0x0e }, |
| 511 | { STV090x_QPSK_23, 0x2f, 0x3f, 0x2e, 0x2f, 0x0e, 0x0f, 0x0e, 0x1e, 0x3d, 0x3d }, |
| 512 | { STV090x_QPSK_34, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d }, |
| 513 | { STV090x_QPSK_45, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d }, |
| 514 | { STV090x_QPSK_56, 0x3f, 0x3f, 0x3e, 0x1f, 0x0e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d }, |
| 515 | { STV090x_QPSK_89, 0x3f, 0x3f, 0x3e, 0x1f, 0x1e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d }, |
| 516 | { STV090x_QPSK_910, 0x3f, 0x3f, 0x3e, 0x1f, 0x1e, 0x3e, 0x0e, 0x1e, 0x3d, 0x3d }, |
| 517 | { STV090x_8PSK_35, 0x3c, 0x3e, 0x1c, 0x2e, 0x0c, 0x1e, 0x2b, 0x2d, 0x1b, 0x1d }, |
| 518 | { STV090x_8PSK_23, 0x1d, 0x3e, 0x3c, 0x2e, 0x2c, 0x1e, 0x0c, 0x2d, 0x2b, 0x1d }, |
| 519 | { STV090x_8PSK_34, 0x0e, 0x3e, 0x3d, 0x2e, 0x0d, 0x1e, 0x2c, 0x2d, 0x0c, 0x1d }, |
| 520 | { STV090x_8PSK_56, 0x2e, 0x3e, 0x1e, 0x2e, 0x2d, 0x1e, 0x3c, 0x2d, 0x2c, 0x1d }, |
| 521 | { STV090x_8PSK_89, 0x3e, 0x3e, 0x1e, 0x2e, 0x3d, 0x1e, 0x0d, 0x2d, 0x3c, 0x1d }, |
| 522 | { STV090x_8PSK_910, 0x3e, 0x3e, 0x1e, 0x2e, 0x3d, 0x1e, 0x1d, 0x2d, 0x0d, 0x1d } |
| 523 | }; |
| 524 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 525 | /* Cut 3.0 Long Frame Tracking CR loop */ |
| 526 | static struct stv090x_long_frame_crloop stv090x_s2_crl_cut30[] = { |
| 527 | /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */ |
| 528 | { STV090x_QPSK_12, 0x3c, 0x2c, 0x0c, 0x2c, 0x1b, 0x2c, 0x1b, 0x1c, 0x0b, 0x3b }, |
| 529 | { STV090x_QPSK_35, 0x0d, 0x0d, 0x0c, 0x0d, 0x1b, 0x3c, 0x1b, 0x1c, 0x0b, 0x3b }, |
| 530 | { STV090x_QPSK_23, 0x1d, 0x0d, 0x0c, 0x1d, 0x2b, 0x3c, 0x1b, 0x1c, 0x0b, 0x3b }, |
| 531 | { STV090x_QPSK_34, 0x1d, 0x1d, 0x0c, 0x1d, 0x2b, 0x3c, 0x1b, 0x1c, 0x0b, 0x3b }, |
| 532 | { STV090x_QPSK_45, 0x2d, 0x1d, 0x1c, 0x1d, 0x2b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b }, |
| 533 | { STV090x_QPSK_56, 0x2d, 0x1d, 0x1c, 0x1d, 0x2b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b }, |
| 534 | { STV090x_QPSK_89, 0x3d, 0x2d, 0x1c, 0x1d, 0x3b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b }, |
| 535 | { STV090x_QPSK_910, 0x3d, 0x2d, 0x1c, 0x1d, 0x3b, 0x3c, 0x2b, 0x0c, 0x1b, 0x3b }, |
| 536 | { STV090x_8PSK_35, 0x39, 0x29, 0x39, 0x19, 0x19, 0x19, 0x19, 0x19, 0x09, 0x19 }, |
| 537 | { STV090x_8PSK_23, 0x2a, 0x39, 0x1a, 0x0a, 0x39, 0x0a, 0x29, 0x39, 0x29, 0x0a }, |
| 538 | { STV090x_8PSK_34, 0x2b, 0x3a, 0x1b, 0x1b, 0x3a, 0x1b, 0x1a, 0x0b, 0x1a, 0x3a }, |
| 539 | { STV090x_8PSK_56, 0x0c, 0x1b, 0x3b, 0x3b, 0x1b, 0x3b, 0x3a, 0x3b, 0x3a, 0x1b }, |
| 540 | { STV090x_8PSK_89, 0x0d, 0x3c, 0x2c, 0x2c, 0x2b, 0x0c, 0x0b, 0x3b, 0x0b, 0x1b }, |
| 541 | { STV090x_8PSK_910, 0x0d, 0x0d, 0x2c, 0x3c, 0x3b, 0x1c, 0x0b, 0x3b, 0x0b, 0x1b } |
| 542 | }; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 543 | |
| 544 | /* Cut 2.0 Long Frame Tracking CR Loop */ |
| 545 | static struct stv090x_long_frame_crloop stv090x_s2_apsk_crl_cut20[] = { |
| 546 | /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */ |
| 547 | { STV090x_16APSK_23, 0x0c, 0x0c, 0x0c, 0x0c, 0x1d, 0x0c, 0x3c, 0x0c, 0x2c, 0x0c }, |
| 548 | { STV090x_16APSK_34, 0x0c, 0x0c, 0x0c, 0x0c, 0x0e, 0x0c, 0x2d, 0x0c, 0x1d, 0x0c }, |
| 549 | { STV090x_16APSK_45, 0x0c, 0x0c, 0x0c, 0x0c, 0x1e, 0x0c, 0x3d, 0x0c, 0x2d, 0x0c }, |
| 550 | { STV090x_16APSK_56, 0x0c, 0x0c, 0x0c, 0x0c, 0x1e, 0x0c, 0x3d, 0x0c, 0x2d, 0x0c }, |
| 551 | { STV090x_16APSK_89, 0x0c, 0x0c, 0x0c, 0x0c, 0x2e, 0x0c, 0x0e, 0x0c, 0x3d, 0x0c }, |
| 552 | { STV090x_16APSK_910, 0x0c, 0x0c, 0x0c, 0x0c, 0x2e, 0x0c, 0x0e, 0x0c, 0x3d, 0x0c }, |
| 553 | { STV090x_32APSK_34, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c }, |
| 554 | { STV090x_32APSK_45, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c }, |
| 555 | { STV090x_32APSK_56, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c }, |
| 556 | { STV090x_32APSK_89, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c }, |
| 557 | { STV090x_32APSK_910, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c } |
| 558 | }; |
| 559 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 560 | /* Cut 3.0 Long Frame Tracking CR Loop */ |
| 561 | static struct stv090x_long_frame_crloop stv090x_s2_apsk_crl_cut30[] = { |
| 562 | /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */ |
| 563 | { STV090x_16APSK_23, 0x0a, 0x0a, 0x0a, 0x0a, 0x1a, 0x0a, 0x3a, 0x0a, 0x2a, 0x0a }, |
| 564 | { STV090x_16APSK_34, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x0a, 0x3b, 0x0a, 0x1b, 0x0a }, |
| 565 | { STV090x_16APSK_45, 0x0a, 0x0a, 0x0a, 0x0a, 0x1b, 0x0a, 0x3b, 0x0a, 0x2b, 0x0a }, |
| 566 | { STV090x_16APSK_56, 0x0a, 0x0a, 0x0a, 0x0a, 0x1b, 0x0a, 0x3b, 0x0a, 0x2b, 0x0a }, |
| 567 | { STV090x_16APSK_89, 0x0a, 0x0a, 0x0a, 0x0a, 0x2b, 0x0a, 0x0c, 0x0a, 0x3b, 0x0a }, |
| 568 | { STV090x_16APSK_910, 0x0a, 0x0a, 0x0a, 0x0a, 0x2b, 0x0a, 0x0c, 0x0a, 0x3b, 0x0a }, |
| 569 | { STV090x_32APSK_34, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a }, |
| 570 | { STV090x_32APSK_45, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a }, |
| 571 | { STV090x_32APSK_56, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a }, |
| 572 | { STV090x_32APSK_89, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a }, |
| 573 | { STV090x_32APSK_910, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a } |
| 574 | }; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 575 | |
| 576 | static struct stv090x_long_frame_crloop stv090x_s2_lowqpsk_crl_cut20[] = { |
| 577 | /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */ |
| 578 | { STV090x_QPSK_14, 0x0f, 0x3f, 0x0e, 0x3f, 0x2d, 0x2f, 0x2d, 0x1f, 0x3d, 0x3e }, |
| 579 | { STV090x_QPSK_13, 0x0f, 0x3f, 0x0e, 0x3f, 0x2d, 0x2f, 0x3d, 0x0f, 0x3d, 0x2e }, |
| 580 | { STV090x_QPSK_25, 0x1f, 0x3f, 0x1e, 0x3f, 0x3d, 0x1f, 0x3d, 0x3e, 0x3d, 0x2e } |
| 581 | }; |
| 582 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 583 | static struct stv090x_long_frame_crloop stv090x_s2_lowqpsk_crl_cut30[] = { |
| 584 | /* MODCOD 2MPon 2MPoff 5MPon 5MPoff 10MPon 10MPoff 20MPon 20MPoff 30MPon 30MPoff */ |
| 585 | { STV090x_QPSK_14, 0x0c, 0x3c, 0x0b, 0x3c, 0x2a, 0x2c, 0x2a, 0x1c, 0x3a, 0x3b }, |
| 586 | { STV090x_QPSK_13, 0x0c, 0x3c, 0x0b, 0x3c, 0x2a, 0x2c, 0x3a, 0x0c, 0x3a, 0x2b }, |
| 587 | { STV090x_QPSK_25, 0x1c, 0x3c, 0x1b, 0x3c, 0x3a, 0x1c, 0x3a, 0x3b, 0x3a, 0x2b } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 588 | }; |
| 589 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 590 | /* Cut 2.0 Short Frame Tracking CR Loop */ |
| 591 | static struct stv090x_short_frame_crloop stv090x_s2_short_crl_cut20[] = { |
| 592 | /* MODCOD 2M 5M 10M 20M 30M */ |
| 593 | { STV090x_QPSK, 0x2f, 0x2e, 0x0e, 0x0e, 0x3d }, |
| 594 | { STV090x_8PSK, 0x3e, 0x0e, 0x2d, 0x0d, 0x3c }, |
| 595 | { STV090x_16APSK, 0x1e, 0x1e, 0x1e, 0x3d, 0x2d }, |
| 596 | { STV090x_32APSK, 0x1e, 0x1e, 0x1e, 0x3d, 0x2d } |
| 597 | }; |
| 598 | |
| 599 | /* Cut 3.0 Short Frame Tracking CR Loop */ |
| 600 | static struct stv090x_short_frame_crloop stv090x_s2_short_crl_cut30[] = { |
| 601 | /* MODCOD 2M 5M 10M 20M 30M */ |
| 602 | { STV090x_QPSK, 0x2C, 0x2B, 0x0B, 0x0B, 0x3A }, |
| 603 | { STV090x_8PSK, 0x3B, 0x0B, 0x2A, 0x0A, 0x39 }, |
| 604 | { STV090x_16APSK, 0x1B, 0x1B, 0x1B, 0x3A, 0x2A }, |
| 605 | { STV090x_32APSK, 0x1B, 0x1B, 0x1B, 0x3A, 0x2A } |
| 606 | }; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 607 | |
| 608 | static inline s32 comp2(s32 __x, s32 __width) |
| 609 | { |
| 610 | if (__width == 32) |
| 611 | return __x; |
| 612 | else |
| 613 | return (__x >= (1 << (__width - 1))) ? (__x - (1 << __width)) : __x; |
| 614 | } |
| 615 | |
| 616 | static int stv090x_read_reg(struct stv090x_state *state, unsigned int reg) |
| 617 | { |
| 618 | const struct stv090x_config *config = state->config; |
| 619 | int ret; |
| 620 | |
| 621 | u8 b0[] = { reg >> 8, reg & 0xff }; |
| 622 | u8 buf; |
| 623 | |
| 624 | struct i2c_msg msg[] = { |
| 625 | { .addr = config->address, .flags = 0, .buf = b0, .len = 2 }, |
| 626 | { .addr = config->address, .flags = I2C_M_RD, .buf = &buf, .len = 1 } |
| 627 | }; |
| 628 | |
| 629 | ret = i2c_transfer(state->i2c, msg, 2); |
| 630 | if (ret != 2) { |
| 631 | if (ret != -ERESTARTSYS) |
| 632 | dprintk(FE_ERROR, 1, |
| 633 | "Read error, Reg=[0x%02x], Status=%d", |
| 634 | reg, ret); |
| 635 | |
| 636 | return ret < 0 ? ret : -EREMOTEIO; |
| 637 | } |
| 638 | if (unlikely(*state->verbose >= FE_DEBUGREG)) |
| 639 | dprintk(FE_ERROR, 1, "Reg=[0x%02x], data=%02x", |
| 640 | reg, buf); |
| 641 | |
| 642 | return (unsigned int) buf; |
| 643 | } |
| 644 | |
| 645 | static int stv090x_write_regs(struct stv090x_state *state, unsigned int reg, u8 *data, u32 count) |
| 646 | { |
| 647 | const struct stv090x_config *config = state->config; |
| 648 | int ret; |
| 649 | u8 buf[2 + count]; |
| 650 | struct i2c_msg i2c_msg = { .addr = config->address, .flags = 0, .buf = buf, .len = 2 + count }; |
| 651 | |
| 652 | buf[0] = reg >> 8; |
| 653 | buf[1] = reg & 0xff; |
| 654 | memcpy(&buf[2], data, count); |
| 655 | |
| 656 | if (unlikely(*state->verbose >= FE_DEBUGREG)) { |
| 657 | int i; |
| 658 | |
| 659 | printk(KERN_DEBUG "%s [0x%04x]:", __func__, reg); |
| 660 | for (i = 0; i < count; i++) |
| 661 | printk(" %02x", data[i]); |
| 662 | printk("\n"); |
| 663 | } |
| 664 | |
| 665 | ret = i2c_transfer(state->i2c, &i2c_msg, 1); |
| 666 | if (ret != 1) { |
| 667 | if (ret != -ERESTARTSYS) |
| 668 | dprintk(FE_ERROR, 1, "Reg=[0x%04x], Data=[0x%02x ...], Count=%u, Status=%d", |
| 669 | reg, data[0], count, ret); |
| 670 | return ret < 0 ? ret : -EREMOTEIO; |
| 671 | } |
| 672 | |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | static int stv090x_write_reg(struct stv090x_state *state, unsigned int reg, u8 data) |
| 677 | { |
| 678 | return stv090x_write_regs(state, reg, &data, 1); |
| 679 | } |
| 680 | |
| 681 | static int stv090x_i2c_gate_ctrl(struct dvb_frontend *fe, int enable) |
| 682 | { |
| 683 | struct stv090x_state *state = fe->demodulator_priv; |
| 684 | u32 reg; |
| 685 | |
| 686 | reg = STV090x_READ_DEMOD(state, I2CRPT); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 687 | if (enable) { |
Manu Abraham | 017eb038 | 2009-04-07 05:19:54 -0300 | [diff] [blame] | 688 | dprintk(FE_DEBUG, 1, "Enable Gate"); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 689 | STV090x_SETFIELD_Px(reg, I2CT_ON_FIELD, 1); |
| 690 | if (STV090x_WRITE_DEMOD(state, I2CRPT, reg) < 0) |
| 691 | goto err; |
| 692 | |
| 693 | } else { |
Manu Abraham | 017eb038 | 2009-04-07 05:19:54 -0300 | [diff] [blame] | 694 | dprintk(FE_DEBUG, 1, "Disable Gate"); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 695 | STV090x_SETFIELD_Px(reg, I2CT_ON_FIELD, 0); |
| 696 | if ((STV090x_WRITE_DEMOD(state, I2CRPT, reg)) < 0) |
| 697 | goto err; |
| 698 | } |
| 699 | return 0; |
| 700 | err: |
| 701 | dprintk(FE_ERROR, 1, "I/O error"); |
| 702 | return -1; |
| 703 | } |
| 704 | |
| 705 | static void stv090x_get_lock_tmg(struct stv090x_state *state) |
| 706 | { |
| 707 | switch (state->algo) { |
| 708 | case STV090x_BLIND_SEARCH: |
| 709 | dprintk(FE_DEBUG, 1, "Blind Search"); |
| 710 | if (state->srate <= 1500000) { /*10Msps< SR <=15Msps*/ |
| 711 | state->DemodTimeout = 1500; |
| 712 | state->FecTimeout = 400; |
| 713 | } else if (state->srate <= 5000000) { /*10Msps< SR <=15Msps*/ |
| 714 | state->DemodTimeout = 1000; |
| 715 | state->FecTimeout = 300; |
| 716 | } else { /*SR >20Msps*/ |
| 717 | state->DemodTimeout = 700; |
| 718 | state->FecTimeout = 100; |
| 719 | } |
| 720 | break; |
| 721 | |
| 722 | case STV090x_COLD_SEARCH: |
| 723 | case STV090x_WARM_SEARCH: |
| 724 | default: |
| 725 | dprintk(FE_DEBUG, 1, "Normal Search"); |
| 726 | if (state->srate <= 1000000) { /*SR <=1Msps*/ |
| 727 | state->DemodTimeout = 4500; |
| 728 | state->FecTimeout = 1700; |
| 729 | } else if (state->srate <= 2000000) { /*1Msps < SR <= 2Msps */ |
| 730 | state->DemodTimeout = 2500; |
| 731 | state->FecTimeout = 1100; |
| 732 | } else if (state->srate <= 5000000) { /*2Msps < SR <= 5Msps */ |
| 733 | state->DemodTimeout = 1000; |
| 734 | state->FecTimeout = 550; |
| 735 | } else if (state->srate <= 10000000) { /*5Msps < SR <= 10Msps */ |
| 736 | state->DemodTimeout = 700; |
| 737 | state->FecTimeout = 250; |
| 738 | } else if (state->srate <= 20000000) { /*10Msps < SR <= 20Msps */ |
| 739 | state->DemodTimeout = 400; |
| 740 | state->FecTimeout = 130; |
| 741 | } else { /*SR >20Msps*/ |
| 742 | state->DemodTimeout = 300; |
| 743 | state->FecTimeout = 100; |
| 744 | } |
| 745 | break; |
| 746 | } |
| 747 | |
| 748 | if (state->algo == STV090x_WARM_SEARCH) |
| 749 | state->DemodTimeout /= 2; |
| 750 | } |
| 751 | |
| 752 | static int stv090x_set_srate(struct stv090x_state *state, u32 srate) |
| 753 | { |
| 754 | u32 sym; |
| 755 | |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 756 | if (srate > 60000000) { |
| 757 | sym = (srate << 4); /* SR * 2^16 / master_clk */ |
| 758 | sym /= (state->mclk >> 12); |
| 759 | } else if (srate > 6000000) { |
| 760 | sym = (srate << 6); |
| 761 | sym /= (state->mclk >> 10); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 762 | } else { |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 763 | sym = (srate << 9); |
| 764 | sym /= (state->mclk >> 7); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 765 | } |
| 766 | |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 767 | if (STV090x_WRITE_DEMOD(state, SFRINIT1, (sym >> 8) & 0x7f) < 0) /* MSB */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 768 | goto err; |
| 769 | if (STV090x_WRITE_DEMOD(state, SFRINIT0, (sym & 0xff)) < 0) /* LSB */ |
| 770 | goto err; |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 771 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 772 | return 0; |
| 773 | err: |
| 774 | dprintk(FE_ERROR, 1, "I/O error"); |
| 775 | return -1; |
| 776 | } |
| 777 | |
| 778 | static int stv090x_set_max_srate(struct stv090x_state *state, u32 clk, u32 srate) |
| 779 | { |
| 780 | u32 sym; |
| 781 | |
| 782 | srate = 105 * (srate / 100); |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 783 | if (srate > 60000000) { |
| 784 | sym = (srate << 4); /* SR * 2^16 / master_clk */ |
| 785 | sym /= (state->mclk >> 12); |
| 786 | } else if (srate > 6000000) { |
| 787 | sym = (srate << 6); |
| 788 | sym /= (state->mclk >> 10); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 789 | } else { |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 790 | sym = (srate << 9); |
| 791 | sym /= (state->mclk >> 7); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 792 | } |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 793 | |
| 794 | if (sym < 0x7fff) { |
| 795 | if (STV090x_WRITE_DEMOD(state, SFRUP1, (sym >> 8) & 0x7f) < 0) /* MSB */ |
| 796 | goto err; |
| 797 | if (STV090x_WRITE_DEMOD(state, SFRUP0, sym & 0xff) < 0) /* LSB */ |
| 798 | goto err; |
| 799 | } else { |
| 800 | if (STV090x_WRITE_DEMOD(state, SFRUP1, 0x7f) < 0) /* MSB */ |
| 801 | goto err; |
| 802 | if (STV090x_WRITE_DEMOD(state, SFRUP0, 0xff) < 0) /* LSB */ |
| 803 | goto err; |
| 804 | } |
| 805 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 806 | return 0; |
| 807 | err: |
| 808 | dprintk(FE_ERROR, 1, "I/O error"); |
| 809 | return -1; |
| 810 | } |
| 811 | |
| 812 | static int stv090x_set_min_srate(struct stv090x_state *state, u32 clk, u32 srate) |
| 813 | { |
| 814 | u32 sym; |
| 815 | |
| 816 | srate = 95 * (srate / 100); |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 817 | if (srate > 60000000) { |
| 818 | sym = (srate << 4); /* SR * 2^16 / master_clk */ |
| 819 | sym /= (state->mclk >> 12); |
| 820 | } else if (srate > 6000000) { |
| 821 | sym = (srate << 6); |
| 822 | sym /= (state->mclk >> 10); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 823 | } else { |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 824 | sym = (srate << 9); |
| 825 | sym /= (state->mclk >> 7); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 826 | } |
Manu Abraham | 15bb366 | 2009-04-08 20:14:00 -0300 | [diff] [blame] | 827 | |
Andreas Regel | b671a8d | 2009-11-13 18:15:27 -0300 | [diff] [blame] | 828 | if (STV090x_WRITE_DEMOD(state, SFRLOW1, ((sym >> 8) & 0x7f)) < 0) /* MSB */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 829 | goto err; |
| 830 | if (STV090x_WRITE_DEMOD(state, SFRLOW0, (sym & 0xff)) < 0) /* LSB */ |
| 831 | goto err; |
| 832 | return 0; |
| 833 | err: |
| 834 | dprintk(FE_ERROR, 1, "I/O error"); |
| 835 | return -1; |
| 836 | } |
| 837 | |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 838 | static u32 stv090x_car_width(u32 srate, enum stv090x_rolloff rolloff) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 839 | { |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 840 | u32 ro; |
| 841 | |
| 842 | switch (rolloff) { |
| 843 | case STV090x_RO_20: |
| 844 | ro = 20; |
| 845 | break; |
| 846 | case STV090x_RO_25: |
| 847 | ro = 25; |
| 848 | break; |
| 849 | case STV090x_RO_35: |
| 850 | default: |
| 851 | ro = 35; |
| 852 | break; |
| 853 | } |
| 854 | |
| 855 | return srate + (srate * ro) / 100; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 856 | } |
| 857 | |
| 858 | static int stv090x_set_vit_thacq(struct stv090x_state *state) |
| 859 | { |
| 860 | if (STV090x_WRITE_DEMOD(state, VTH12, 0x96) < 0) |
| 861 | goto err; |
| 862 | if (STV090x_WRITE_DEMOD(state, VTH23, 0x64) < 0) |
| 863 | goto err; |
| 864 | if (STV090x_WRITE_DEMOD(state, VTH34, 0x36) < 0) |
| 865 | goto err; |
| 866 | if (STV090x_WRITE_DEMOD(state, VTH56, 0x23) < 0) |
| 867 | goto err; |
| 868 | if (STV090x_WRITE_DEMOD(state, VTH67, 0x1e) < 0) |
| 869 | goto err; |
| 870 | if (STV090x_WRITE_DEMOD(state, VTH78, 0x19) < 0) |
| 871 | goto err; |
| 872 | return 0; |
| 873 | err: |
| 874 | dprintk(FE_ERROR, 1, "I/O error"); |
| 875 | return -1; |
| 876 | } |
| 877 | |
| 878 | static int stv090x_set_vit_thtracq(struct stv090x_state *state) |
| 879 | { |
| 880 | if (STV090x_WRITE_DEMOD(state, VTH12, 0xd0) < 0) |
| 881 | goto err; |
| 882 | if (STV090x_WRITE_DEMOD(state, VTH23, 0x7d) < 0) |
| 883 | goto err; |
| 884 | if (STV090x_WRITE_DEMOD(state, VTH34, 0x53) < 0) |
| 885 | goto err; |
| 886 | if (STV090x_WRITE_DEMOD(state, VTH56, 0x2f) < 0) |
| 887 | goto err; |
| 888 | if (STV090x_WRITE_DEMOD(state, VTH67, 0x24) < 0) |
| 889 | goto err; |
| 890 | if (STV090x_WRITE_DEMOD(state, VTH78, 0x1f) < 0) |
| 891 | goto err; |
| 892 | return 0; |
| 893 | err: |
| 894 | dprintk(FE_ERROR, 1, "I/O error"); |
| 895 | return -1; |
| 896 | } |
| 897 | |
| 898 | static int stv090x_set_viterbi(struct stv090x_state *state) |
| 899 | { |
| 900 | switch (state->search_mode) { |
| 901 | case STV090x_SEARCH_AUTO: |
| 902 | if (STV090x_WRITE_DEMOD(state, FECM, 0x10) < 0) /* DVB-S and DVB-S2 */ |
| 903 | goto err; |
| 904 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x3f) < 0) /* all puncture rate */ |
| 905 | goto err; |
| 906 | break; |
| 907 | case STV090x_SEARCH_DVBS1: |
| 908 | if (STV090x_WRITE_DEMOD(state, FECM, 0x00) < 0) /* disable DSS */ |
| 909 | goto err; |
| 910 | switch (state->fec) { |
| 911 | case STV090x_PR12: |
| 912 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x01) < 0) |
| 913 | goto err; |
| 914 | break; |
| 915 | |
| 916 | case STV090x_PR23: |
| 917 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x02) < 0) |
| 918 | goto err; |
| 919 | break; |
| 920 | |
| 921 | case STV090x_PR34: |
| 922 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x04) < 0) |
| 923 | goto err; |
| 924 | break; |
| 925 | |
| 926 | case STV090x_PR56: |
| 927 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x08) < 0) |
| 928 | goto err; |
| 929 | break; |
| 930 | |
| 931 | case STV090x_PR78: |
| 932 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x20) < 0) |
| 933 | goto err; |
| 934 | break; |
| 935 | |
| 936 | default: |
| 937 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x2f) < 0) /* all */ |
| 938 | goto err; |
| 939 | break; |
| 940 | } |
| 941 | break; |
| 942 | case STV090x_SEARCH_DSS: |
| 943 | if (STV090x_WRITE_DEMOD(state, FECM, 0x80) < 0) |
| 944 | goto err; |
| 945 | switch (state->fec) { |
| 946 | case STV090x_PR12: |
| 947 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x01) < 0) |
| 948 | goto err; |
| 949 | break; |
| 950 | |
| 951 | case STV090x_PR23: |
| 952 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x02) < 0) |
| 953 | goto err; |
| 954 | break; |
| 955 | |
| 956 | case STV090x_PR67: |
| 957 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x10) < 0) |
| 958 | goto err; |
| 959 | break; |
| 960 | |
| 961 | default: |
| 962 | if (STV090x_WRITE_DEMOD(state, PRVIT, 0x13) < 0) /* 1/2, 2/3, 6/7 */ |
| 963 | goto err; |
| 964 | break; |
| 965 | } |
| 966 | break; |
| 967 | default: |
| 968 | break; |
| 969 | } |
| 970 | return 0; |
| 971 | err: |
| 972 | dprintk(FE_ERROR, 1, "I/O error"); |
| 973 | return -1; |
| 974 | } |
| 975 | |
| 976 | static int stv090x_stop_modcod(struct stv090x_state *state) |
| 977 | { |
| 978 | if (STV090x_WRITE_DEMOD(state, MODCODLST0, 0xff) < 0) |
| 979 | goto err; |
| 980 | if (STV090x_WRITE_DEMOD(state, MODCODLST1, 0xff) < 0) |
| 981 | goto err; |
| 982 | if (STV090x_WRITE_DEMOD(state, MODCODLST2, 0xff) < 0) |
| 983 | goto err; |
| 984 | if (STV090x_WRITE_DEMOD(state, MODCODLST3, 0xff) < 0) |
| 985 | goto err; |
| 986 | if (STV090x_WRITE_DEMOD(state, MODCODLST4, 0xff) < 0) |
| 987 | goto err; |
| 988 | if (STV090x_WRITE_DEMOD(state, MODCODLST5, 0xff) < 0) |
| 989 | goto err; |
| 990 | if (STV090x_WRITE_DEMOD(state, MODCODLST6, 0xff) < 0) |
| 991 | goto err; |
| 992 | if (STV090x_WRITE_DEMOD(state, MODCODLST7, 0xff) < 0) |
| 993 | goto err; |
| 994 | if (STV090x_WRITE_DEMOD(state, MODCODLST8, 0xff) < 0) |
| 995 | goto err; |
| 996 | if (STV090x_WRITE_DEMOD(state, MODCODLST9, 0xff) < 0) |
| 997 | goto err; |
| 998 | if (STV090x_WRITE_DEMOD(state, MODCODLSTA, 0xff) < 0) |
| 999 | goto err; |
| 1000 | if (STV090x_WRITE_DEMOD(state, MODCODLSTB, 0xff) < 0) |
| 1001 | goto err; |
| 1002 | if (STV090x_WRITE_DEMOD(state, MODCODLSTC, 0xff) < 0) |
| 1003 | goto err; |
| 1004 | if (STV090x_WRITE_DEMOD(state, MODCODLSTD, 0xff) < 0) |
| 1005 | goto err; |
| 1006 | if (STV090x_WRITE_DEMOD(state, MODCODLSTE, 0xff) < 0) |
| 1007 | goto err; |
| 1008 | if (STV090x_WRITE_DEMOD(state, MODCODLSTF, 0xff) < 0) |
| 1009 | goto err; |
| 1010 | return 0; |
| 1011 | err: |
| 1012 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1013 | return -1; |
| 1014 | } |
| 1015 | |
| 1016 | static int stv090x_activate_modcod(struct stv090x_state *state) |
| 1017 | { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1018 | if (STV090x_WRITE_DEMOD(state, MODCODLST0, 0xff) < 0) |
| 1019 | goto err; |
| 1020 | if (STV090x_WRITE_DEMOD(state, MODCODLST1, 0xfc) < 0) |
| 1021 | goto err; |
| 1022 | if (STV090x_WRITE_DEMOD(state, MODCODLST2, 0xcc) < 0) |
| 1023 | goto err; |
| 1024 | if (STV090x_WRITE_DEMOD(state, MODCODLST3, 0xcc) < 0) |
| 1025 | goto err; |
| 1026 | if (STV090x_WRITE_DEMOD(state, MODCODLST4, 0xcc) < 0) |
| 1027 | goto err; |
| 1028 | if (STV090x_WRITE_DEMOD(state, MODCODLST5, 0xcc) < 0) |
| 1029 | goto err; |
| 1030 | if (STV090x_WRITE_DEMOD(state, MODCODLST6, 0xcc) < 0) |
| 1031 | goto err; |
| 1032 | if (STV090x_WRITE_DEMOD(state, MODCODLST7, 0xcc) < 0) |
| 1033 | goto err; |
| 1034 | if (STV090x_WRITE_DEMOD(state, MODCODLST8, 0xcc) < 0) |
| 1035 | goto err; |
| 1036 | if (STV090x_WRITE_DEMOD(state, MODCODLST9, 0xcc) < 0) |
| 1037 | goto err; |
| 1038 | if (STV090x_WRITE_DEMOD(state, MODCODLSTA, 0xcc) < 0) |
| 1039 | goto err; |
| 1040 | if (STV090x_WRITE_DEMOD(state, MODCODLSTB, 0xcc) < 0) |
| 1041 | goto err; |
| 1042 | if (STV090x_WRITE_DEMOD(state, MODCODLSTC, 0xcc) < 0) |
| 1043 | goto err; |
| 1044 | if (STV090x_WRITE_DEMOD(state, MODCODLSTD, 0xcc) < 0) |
| 1045 | goto err; |
| 1046 | if (STV090x_WRITE_DEMOD(state, MODCODLSTE, 0xcc) < 0) |
| 1047 | goto err; |
| 1048 | if (STV090x_WRITE_DEMOD(state, MODCODLSTF, 0xcf) < 0) |
| 1049 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1050 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1051 | return 0; |
| 1052 | err: |
| 1053 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1054 | return -1; |
| 1055 | } |
| 1056 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1057 | static int stv090x_activate_modcod_single(struct stv090x_state *state) |
| 1058 | { |
| 1059 | |
| 1060 | if (STV090x_WRITE_DEMOD(state, MODCODLST0, 0xff) < 0) |
| 1061 | goto err; |
| 1062 | if (STV090x_WRITE_DEMOD(state, MODCODLST1, 0xf0) < 0) |
| 1063 | goto err; |
| 1064 | if (STV090x_WRITE_DEMOD(state, MODCODLST2, 0x00) < 0) |
| 1065 | goto err; |
| 1066 | if (STV090x_WRITE_DEMOD(state, MODCODLST3, 0x00) < 0) |
| 1067 | goto err; |
| 1068 | if (STV090x_WRITE_DEMOD(state, MODCODLST4, 0x00) < 0) |
| 1069 | goto err; |
| 1070 | if (STV090x_WRITE_DEMOD(state, MODCODLST5, 0x00) < 0) |
| 1071 | goto err; |
| 1072 | if (STV090x_WRITE_DEMOD(state, MODCODLST6, 0x00) < 0) |
| 1073 | goto err; |
| 1074 | if (STV090x_WRITE_DEMOD(state, MODCODLST7, 0x00) < 0) |
| 1075 | goto err; |
| 1076 | if (STV090x_WRITE_DEMOD(state, MODCODLST8, 0x00) < 0) |
| 1077 | goto err; |
| 1078 | if (STV090x_WRITE_DEMOD(state, MODCODLST9, 0x00) < 0) |
| 1079 | goto err; |
| 1080 | if (STV090x_WRITE_DEMOD(state, MODCODLSTA, 0x00) < 0) |
| 1081 | goto err; |
| 1082 | if (STV090x_WRITE_DEMOD(state, MODCODLSTB, 0x00) < 0) |
| 1083 | goto err; |
| 1084 | if (STV090x_WRITE_DEMOD(state, MODCODLSTC, 0x00) < 0) |
| 1085 | goto err; |
| 1086 | if (STV090x_WRITE_DEMOD(state, MODCODLSTD, 0x00) < 0) |
| 1087 | goto err; |
| 1088 | if (STV090x_WRITE_DEMOD(state, MODCODLSTE, 0x00) < 0) |
| 1089 | goto err; |
| 1090 | if (STV090x_WRITE_DEMOD(state, MODCODLSTF, 0x0f) < 0) |
| 1091 | goto err; |
| 1092 | |
| 1093 | return 0; |
| 1094 | |
| 1095 | err: |
| 1096 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1097 | return -1; |
| 1098 | } |
| 1099 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1100 | static int stv090x_vitclk_ctl(struct stv090x_state *state, int enable) |
| 1101 | { |
| 1102 | u32 reg; |
| 1103 | |
| 1104 | switch (state->demod) { |
| 1105 | case STV090x_DEMODULATOR_0: |
| 1106 | mutex_lock(&demod_lock); |
| 1107 | reg = stv090x_read_reg(state, STV090x_STOPCLK2); |
| 1108 | STV090x_SETFIELD(reg, STOP_CLKVIT1_FIELD, enable); |
| 1109 | if (stv090x_write_reg(state, STV090x_STOPCLK2, reg) < 0) |
| 1110 | goto err; |
| 1111 | mutex_unlock(&demod_lock); |
| 1112 | break; |
| 1113 | |
| 1114 | case STV090x_DEMODULATOR_1: |
| 1115 | mutex_lock(&demod_lock); |
| 1116 | reg = stv090x_read_reg(state, STV090x_STOPCLK2); |
| 1117 | STV090x_SETFIELD(reg, STOP_CLKVIT2_FIELD, enable); |
| 1118 | if (stv090x_write_reg(state, STV090x_STOPCLK2, reg) < 0) |
| 1119 | goto err; |
| 1120 | mutex_unlock(&demod_lock); |
| 1121 | break; |
| 1122 | |
| 1123 | default: |
| 1124 | dprintk(FE_ERROR, 1, "Wrong demodulator!"); |
| 1125 | break; |
| 1126 | } |
| 1127 | return 0; |
| 1128 | err: |
| 1129 | mutex_unlock(&demod_lock); |
| 1130 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1131 | return -1; |
| 1132 | } |
| 1133 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1134 | static int stv090x_dvbs_track_crl(struct stv090x_state *state) |
| 1135 | { |
| 1136 | if (state->dev_ver >= 0x30) { |
| 1137 | /* Set ACLC BCLC optimised value vs SR */ |
| 1138 | if (state->srate >= 15000000) { |
| 1139 | if (STV090x_WRITE_DEMOD(state, ACLC, 0x2b) < 0) |
| 1140 | goto err; |
| 1141 | if (STV090x_WRITE_DEMOD(state, BCLC, 0x1a) < 0) |
| 1142 | goto err; |
| 1143 | } else if ((state->srate >= 7000000) && (15000000 > state->srate)) { |
| 1144 | if (STV090x_WRITE_DEMOD(state, ACLC, 0x0c) < 0) |
| 1145 | goto err; |
| 1146 | if (STV090x_WRITE_DEMOD(state, BCLC, 0x1b) < 0) |
| 1147 | goto err; |
| 1148 | } else if (state->srate < 7000000) { |
| 1149 | if (STV090x_WRITE_DEMOD(state, ACLC, 0x2c) < 0) |
| 1150 | goto err; |
| 1151 | if (STV090x_WRITE_DEMOD(state, BCLC, 0x1c) < 0) |
| 1152 | goto err; |
| 1153 | } |
| 1154 | |
| 1155 | } else { |
| 1156 | /* Cut 2.0 */ |
| 1157 | if (STV090x_WRITE_DEMOD(state, ACLC, 0x1a) < 0) |
| 1158 | goto err; |
| 1159 | if (STV090x_WRITE_DEMOD(state, BCLC, 0x09) < 0) |
| 1160 | goto err; |
| 1161 | } |
| 1162 | return 0; |
| 1163 | err: |
| 1164 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1165 | return -1; |
| 1166 | } |
| 1167 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1168 | static int stv090x_delivery_search(struct stv090x_state *state) |
| 1169 | { |
| 1170 | u32 reg; |
| 1171 | |
| 1172 | switch (state->search_mode) { |
| 1173 | case STV090x_SEARCH_DVBS1: |
| 1174 | case STV090x_SEARCH_DSS: |
| 1175 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 1176 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1); |
| 1177 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0); |
| 1178 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1179 | goto err; |
| 1180 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1181 | /* Activate Viterbi decoder in legacy search, |
| 1182 | * do not use FRESVIT1, might impact VITERBI2 |
| 1183 | */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1184 | if (stv090x_vitclk_ctl(state, 0) < 0) |
| 1185 | goto err; |
| 1186 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1187 | if (stv090x_dvbs_track_crl(state) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1188 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1189 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1190 | if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x22) < 0) /* disable DVB-S2 */ |
| 1191 | goto err; |
| 1192 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1193 | if (stv090x_set_vit_thacq(state) < 0) |
| 1194 | goto err; |
| 1195 | if (stv090x_set_viterbi(state) < 0) |
| 1196 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1197 | break; |
| 1198 | |
| 1199 | case STV090x_SEARCH_DVBS2: |
| 1200 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 1201 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 0); |
| 1202 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0); |
| 1203 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1204 | goto err; |
| 1205 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1); |
| 1206 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1); |
| 1207 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1208 | goto err; |
| 1209 | |
| 1210 | if (stv090x_vitclk_ctl(state, 1) < 0) |
| 1211 | goto err; |
| 1212 | |
| 1213 | if (STV090x_WRITE_DEMOD(state, ACLC, 0x1a) < 0) /* stop DVB-S CR loop */ |
| 1214 | goto err; |
| 1215 | if (STV090x_WRITE_DEMOD(state, BCLC, 0x09) < 0) |
| 1216 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1217 | |
| 1218 | if (state->dev_ver <= 0x20) { |
| 1219 | /* enable S2 carrier loop */ |
| 1220 | if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x26) < 0) |
| 1221 | goto err; |
| 1222 | } else { |
| 1223 | /* > Cut 3: Stop carrier 3 */ |
| 1224 | if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x66) < 0) |
| 1225 | goto err; |
| 1226 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1227 | |
| 1228 | if (state->demod_mode != STV090x_SINGLE) { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1229 | /* Cut 2: enable link during search */ |
| 1230 | if (stv090x_activate_modcod(state) < 0) |
| 1231 | goto err; |
| 1232 | } else { |
| 1233 | /* Single demodulator |
| 1234 | * Authorize SHORT and LONG frames, |
| 1235 | * QPSK, 8PSK, 16APSK and 32APSK |
| 1236 | */ |
| 1237 | if (stv090x_activate_modcod_single(state) < 0) |
| 1238 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1239 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1240 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1241 | break; |
| 1242 | |
| 1243 | case STV090x_SEARCH_AUTO: |
| 1244 | default: |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1245 | /* enable DVB-S2 and DVB-S2 in Auto MODE */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1246 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1247 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1); |
| 1248 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1); |
| 1249 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1250 | goto err; |
| 1251 | |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 1252 | if (stv090x_vitclk_ctl(state, 0) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1253 | goto err; |
| 1254 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1255 | if (stv090x_dvbs_track_crl(state) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1256 | goto err; |
| 1257 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1258 | if (state->dev_ver <= 0x20) { |
| 1259 | /* enable S2 carrier loop */ |
| 1260 | if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x26) < 0) |
| 1261 | goto err; |
| 1262 | } else { |
| 1263 | /* > Cut 3: Stop carrier 3 */ |
| 1264 | if (STV090x_WRITE_DEMOD(state, CAR2CFG, 0x66) < 0) |
| 1265 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1266 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1267 | |
| 1268 | if (state->demod_mode != STV090x_SINGLE) { |
| 1269 | /* Cut 2: enable link during search */ |
| 1270 | if (stv090x_activate_modcod(state) < 0) |
| 1271 | goto err; |
| 1272 | } else { |
| 1273 | /* Single demodulator |
| 1274 | * Authorize SHORT and LONG frames, |
| 1275 | * QPSK, 8PSK, 16APSK and 32APSK |
| 1276 | */ |
| 1277 | if (stv090x_activate_modcod_single(state) < 0) |
| 1278 | goto err; |
| 1279 | } |
| 1280 | |
| 1281 | if (state->srate >= 2000000) { |
| 1282 | /* Srate >= 2MSPS, Viterbi threshold to acquire */ |
| 1283 | if (stv090x_set_vit_thacq(state) < 0) |
| 1284 | goto err; |
| 1285 | } else { |
| 1286 | /* Srate < 2MSPS, Reset Viterbi thresholdto track |
| 1287 | * and then re-acquire |
| 1288 | */ |
| 1289 | if (stv090x_set_vit_thtracq(state) < 0) |
| 1290 | goto err; |
| 1291 | } |
| 1292 | |
| 1293 | if (stv090x_set_viterbi(state) < 0) |
| 1294 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1295 | break; |
| 1296 | } |
| 1297 | return 0; |
| 1298 | err: |
| 1299 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1300 | return -1; |
| 1301 | } |
| 1302 | |
| 1303 | static int stv090x_start_search(struct stv090x_state *state) |
| 1304 | { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1305 | u32 reg, freq_abs; |
| 1306 | s16 freq; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1307 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1308 | /* Reset demodulator */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1309 | reg = STV090x_READ_DEMOD(state, DMDISTATE); |
| 1310 | STV090x_SETFIELD_Px(reg, I2C_DEMOD_MODE_FIELD, 0x1f); |
| 1311 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, reg) < 0) |
| 1312 | goto err; |
| 1313 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1314 | if (state->dev_ver <= 0x20) { |
| 1315 | if (state->srate <= 5000000) { |
| 1316 | if (STV090x_WRITE_DEMOD(state, CARCFG, 0x44) < 0) |
| 1317 | goto err; |
| 1318 | if (STV090x_WRITE_DEMOD(state, CFRUP1, 0x0f) < 0) |
| 1319 | goto err; |
Andreas Regel | b671a8d | 2009-11-13 18:15:27 -0300 | [diff] [blame] | 1320 | if (STV090x_WRITE_DEMOD(state, CFRUP0, 0xff) < 0) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1321 | goto err; |
| 1322 | if (STV090x_WRITE_DEMOD(state, CFRLOW1, 0xf0) < 0) |
| 1323 | goto err; |
| 1324 | if (STV090x_WRITE_DEMOD(state, CFRLOW0, 0x00) < 0) |
| 1325 | goto err; |
| 1326 | |
| 1327 | /*enlarge the timing bandwith for Low SR*/ |
| 1328 | if (STV090x_WRITE_DEMOD(state, RTCS2, 0x68) < 0) |
| 1329 | goto err; |
| 1330 | } else { |
| 1331 | /* If the symbol rate is >5 Msps |
| 1332 | Set The carrier search up and low to auto mode */ |
| 1333 | if (STV090x_WRITE_DEMOD(state, CARCFG, 0xc4) < 0) |
| 1334 | goto err; |
| 1335 | /*reduce the timing bandwith for high SR*/ |
| 1336 | if (STV090x_WRITE_DEMOD(state, RTCS2, 0x44) < 0) |
| 1337 | goto err; |
| 1338 | } |
| 1339 | } else { |
| 1340 | /* >= Cut 3 */ |
| 1341 | if (state->srate <= 5000000) { |
| 1342 | /* enlarge the timing bandwith for Low SR */ |
| 1343 | STV090x_WRITE_DEMOD(state, RTCS2, 0x68); |
| 1344 | } else { |
| 1345 | /* reduce timing bandwith for high SR */ |
| 1346 | STV090x_WRITE_DEMOD(state, RTCS2, 0x44); |
| 1347 | } |
| 1348 | |
| 1349 | /* Set CFR min and max to manual mode */ |
| 1350 | STV090x_WRITE_DEMOD(state, CARCFG, 0x46); |
| 1351 | |
| 1352 | if (state->algo == STV090x_WARM_SEARCH) { |
| 1353 | /* WARM Start |
| 1354 | * CFR min = -1MHz, |
| 1355 | * CFR max = +1MHz |
| 1356 | */ |
| 1357 | freq_abs = 1000 << 16; |
| 1358 | freq_abs /= (state->mclk / 1000); |
| 1359 | freq = (s16) freq_abs; |
| 1360 | } else { |
| 1361 | /* COLD Start |
| 1362 | * CFR min =- (SearchRange / 2 + 600KHz) |
| 1363 | * CFR max = +(SearchRange / 2 + 600KHz) |
| 1364 | * (600KHz for the tuner step size) |
| 1365 | */ |
| 1366 | freq_abs = (state->search_range / 2000) + 600; |
| 1367 | freq_abs = freq_abs << 16; |
| 1368 | freq_abs /= (state->mclk / 1000); |
| 1369 | freq = (s16) freq_abs; |
| 1370 | } |
| 1371 | |
| 1372 | if (STV090x_WRITE_DEMOD(state, CFRUP1, MSB(freq)) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1373 | goto err; |
Andreas Regel | b671a8d | 2009-11-13 18:15:27 -0300 | [diff] [blame] | 1374 | if (STV090x_WRITE_DEMOD(state, CFRUP0, LSB(freq)) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1375 | goto err; |
| 1376 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1377 | freq *= -1; |
| 1378 | |
| 1379 | if (STV090x_WRITE_DEMOD(state, CFRLOW1, MSB(freq)) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1380 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1381 | if (STV090x_WRITE_DEMOD(state, CFRLOW0, LSB(freq)) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1382 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1383 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1384 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1385 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1386 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, 0) < 0) |
| 1387 | goto err; |
| 1388 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, 0) < 0) |
| 1389 | goto err; |
| 1390 | |
| 1391 | if (state->dev_ver >= 0x20) { |
| 1392 | if (STV090x_WRITE_DEMOD(state, EQUALCFG, 0x41) < 0) |
| 1393 | goto err; |
| 1394 | if (STV090x_WRITE_DEMOD(state, FFECFG, 0x41) < 0) |
| 1395 | goto err; |
| 1396 | |
| 1397 | if ((state->search_mode == STV090x_DVBS1) || |
| 1398 | (state->search_mode == STV090x_DSS) || |
| 1399 | (state->search_mode == STV090x_SEARCH_AUTO)) { |
| 1400 | |
| 1401 | if (STV090x_WRITE_DEMOD(state, VITSCALE, 0x82) < 0) |
| 1402 | goto err; |
| 1403 | if (STV090x_WRITE_DEMOD(state, VAVSRVIT, 0x00) < 0) |
| 1404 | goto err; |
| 1405 | } |
| 1406 | } |
| 1407 | |
| 1408 | if (STV090x_WRITE_DEMOD(state, SFRSTEP, 0x00) < 0) |
| 1409 | goto err; |
| 1410 | if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0xe0) < 0) |
| 1411 | goto err; |
| 1412 | if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0xc0) < 0) |
| 1413 | goto err; |
| 1414 | |
| 1415 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 1416 | STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 0); |
| 1417 | STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0); |
| 1418 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1419 | goto err; |
| 1420 | reg = STV090x_READ_DEMOD(state, DMDCFG2); |
| 1421 | STV090x_SETFIELD_Px(reg, S1S2_SEQUENTIAL_FIELD, 0x0); |
| 1422 | if (STV090x_WRITE_DEMOD(state, DMDCFG2, reg) < 0) |
| 1423 | goto err; |
| 1424 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1425 | if (state->dev_ver >= 0x20) { |
| 1426 | /*Frequency offset detector setting*/ |
| 1427 | if (state->srate < 2000000) { |
| 1428 | if (state->dev_ver <= 0x20) { |
| 1429 | /* Cut 2 */ |
| 1430 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x39) < 0) |
| 1431 | goto err; |
| 1432 | } else { |
| 1433 | /* Cut 2 */ |
| 1434 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x89) < 0) |
| 1435 | goto err; |
| 1436 | } |
| 1437 | if (STV090x_WRITE_DEMOD(state, CARHDR, 0x40) < 0) |
| 1438 | goto err; |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 1439 | } else if (state->srate < 10000000) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1440 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x4c) < 0) |
| 1441 | goto err; |
| 1442 | } else { |
| 1443 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x4b) < 0) |
| 1444 | goto err; |
| 1445 | } |
| 1446 | } else { |
| 1447 | if (state->srate < 10000000) { |
| 1448 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xef) < 0) |
| 1449 | goto err; |
| 1450 | } else { |
| 1451 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0xed) < 0) |
| 1452 | goto err; |
| 1453 | } |
| 1454 | } |
| 1455 | |
| 1456 | switch (state->algo) { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1457 | case STV090x_WARM_SEARCH: |
| 1458 | /* The symbol rate and the exact |
| 1459 | * carrier Frequency are known |
| 1460 | */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1461 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) |
| 1462 | goto err; |
| 1463 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) |
| 1464 | goto err; |
| 1465 | break; |
| 1466 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1467 | case STV090x_COLD_SEARCH: |
| 1468 | /* The symbol rate is known */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1469 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) |
| 1470 | goto err; |
| 1471 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0) |
| 1472 | goto err; |
| 1473 | break; |
| 1474 | |
| 1475 | default: |
| 1476 | break; |
| 1477 | } |
| 1478 | return 0; |
| 1479 | err: |
| 1480 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1481 | return -1; |
| 1482 | } |
| 1483 | |
| 1484 | static int stv090x_get_agc2_min_level(struct stv090x_state *state) |
| 1485 | { |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1486 | u32 agc2_min = 0xffff, agc2 = 0, freq_init, freq_step, reg; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1487 | s32 i, j, steps, dir; |
| 1488 | |
| 1489 | if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0) |
| 1490 | goto err; |
| 1491 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 1492 | STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 1); |
| 1493 | STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 1); |
| 1494 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1495 | goto err; |
| 1496 | |
| 1497 | if (STV090x_WRITE_DEMOD(state, SFRUP1, 0x83) < 0) /* SR = 65 Msps Max */ |
| 1498 | goto err; |
| 1499 | if (STV090x_WRITE_DEMOD(state, SFRUP0, 0xc0) < 0) |
| 1500 | goto err; |
| 1501 | if (STV090x_WRITE_DEMOD(state, SFRLOW1, 0x82) < 0) /* SR= 400 ksps Min */ |
| 1502 | goto err; |
| 1503 | if (STV090x_WRITE_DEMOD(state, SFRLOW0, 0xa0) < 0) |
| 1504 | goto err; |
| 1505 | if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x00) < 0) /* stop acq @ coarse carrier state */ |
| 1506 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1507 | if (stv090x_set_srate(state, 1000000) < 0) |
| 1508 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1509 | |
| 1510 | steps = -1 + state->search_range / 1000000; |
| 1511 | steps /= 2; |
| 1512 | steps = (2 * steps) + 1; |
| 1513 | if (steps < 0) |
| 1514 | steps = 1; |
| 1515 | |
| 1516 | dir = 1; |
| 1517 | freq_step = (1000000 * 256) / (state->mclk / 256); |
| 1518 | freq_init = 0; |
| 1519 | |
| 1520 | for (i = 0; i < steps; i++) { |
| 1521 | if (dir > 0) |
| 1522 | freq_init = freq_init + (freq_step * i); |
| 1523 | else |
| 1524 | freq_init = freq_init - (freq_step * i); |
| 1525 | |
Andreas Regel | b671a8d | 2009-11-13 18:15:27 -0300 | [diff] [blame] | 1526 | dir *= -1; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1527 | |
| 1528 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5c) < 0) /* Demod RESET */ |
| 1529 | goto err; |
| 1530 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, (freq_init >> 8) & 0xff) < 0) |
| 1531 | goto err; |
| 1532 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, freq_init & 0xff) < 0) |
| 1533 | goto err; |
| 1534 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x58) < 0) /* Demod RESET */ |
| 1535 | goto err; |
| 1536 | msleep(10); |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1537 | |
| 1538 | agc2 = 0; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1539 | for (j = 0; j < 10; j++) { |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1540 | agc2 += (STV090x_READ_DEMOD(state, AGC2I1) << 8) | |
| 1541 | STV090x_READ_DEMOD(state, AGC2I0); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1542 | } |
| 1543 | agc2 /= 10; |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1544 | if (agc2 < agc2_min) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1545 | agc2_min = agc2; |
| 1546 | } |
| 1547 | |
| 1548 | return agc2_min; |
| 1549 | err: |
| 1550 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1551 | return -1; |
| 1552 | } |
| 1553 | |
| 1554 | static u32 stv090x_get_srate(struct stv090x_state *state, u32 clk) |
| 1555 | { |
| 1556 | u8 r3, r2, r1, r0; |
| 1557 | s32 srate, int_1, int_2, tmp_1, tmp_2; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1558 | |
| 1559 | r3 = STV090x_READ_DEMOD(state, SFR3); |
| 1560 | r2 = STV090x_READ_DEMOD(state, SFR2); |
| 1561 | r1 = STV090x_READ_DEMOD(state, SFR1); |
| 1562 | r0 = STV090x_READ_DEMOD(state, SFR0); |
| 1563 | |
| 1564 | srate = ((r3 << 24) | (r2 << 16) | (r1 << 8) | r0); |
| 1565 | |
Manu Abraham | f430fff | 2009-04-08 20:18:50 -0300 | [diff] [blame] | 1566 | int_1 = clk >> 16; |
| 1567 | int_2 = srate >> 16; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1568 | |
Manu Abraham | f430fff | 2009-04-08 20:18:50 -0300 | [diff] [blame] | 1569 | tmp_1 = clk % 0x10000; |
| 1570 | tmp_2 = srate % 0x10000; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1571 | |
| 1572 | srate = (int_1 * int_2) + |
Manu Abraham | f430fff | 2009-04-08 20:18:50 -0300 | [diff] [blame] | 1573 | ((int_1 * tmp_2) >> 16) + |
| 1574 | ((int_2 * tmp_1) >> 16); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1575 | |
| 1576 | return srate; |
| 1577 | } |
| 1578 | |
| 1579 | static u32 stv090x_srate_srch_coarse(struct stv090x_state *state) |
| 1580 | { |
| 1581 | struct dvb_frontend *fe = &state->frontend; |
| 1582 | |
| 1583 | int tmg_lock = 0, i; |
| 1584 | s32 tmg_cpt = 0, dir = 1, steps, cur_step = 0, freq; |
| 1585 | u32 srate_coarse = 0, agc2 = 0, car_step = 1200, reg; |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1586 | u32 agc2th; |
| 1587 | |
| 1588 | if (state->dev_ver >= 0x30) |
| 1589 | agc2th = 0x2e00; |
| 1590 | else |
| 1591 | agc2th = 0x1f00; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1592 | |
| 1593 | reg = STV090x_READ_DEMOD(state, DMDISTATE); |
| 1594 | STV090x_SETFIELD_Px(reg, I2C_DEMOD_MODE_FIELD, 0x1f); /* Demod RESET */ |
| 1595 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, reg) < 0) |
| 1596 | goto err; |
| 1597 | if (STV090x_WRITE_DEMOD(state, TMGCFG, 0x12) < 0) |
| 1598 | goto err; |
| 1599 | if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0xf0) < 0) |
| 1600 | goto err; |
| 1601 | if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0xe0) < 0) |
| 1602 | goto err; |
| 1603 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 1604 | STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 1); |
| 1605 | STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 1); |
| 1606 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1607 | goto err; |
| 1608 | |
| 1609 | if (STV090x_WRITE_DEMOD(state, SFRUP1, 0x83) < 0) |
| 1610 | goto err; |
| 1611 | if (STV090x_WRITE_DEMOD(state, SFRUP0, 0xc0) < 0) |
| 1612 | goto err; |
| 1613 | if (STV090x_WRITE_DEMOD(state, SFRLOW1, 0x82) < 0) |
| 1614 | goto err; |
| 1615 | if (STV090x_WRITE_DEMOD(state, SFRLOW0, 0xa0) < 0) |
| 1616 | goto err; |
| 1617 | if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x00) < 0) |
| 1618 | goto err; |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1619 | if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x50) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1620 | goto err; |
| 1621 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1622 | if (state->dev_ver >= 0x30) { |
| 1623 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x99) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1624 | goto err; |
| 1625 | if (STV090x_WRITE_DEMOD(state, SFRSTEP, 0x95) < 0) |
| 1626 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1627 | |
| 1628 | } else if (state->dev_ver >= 0x20) { |
| 1629 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x6a) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1630 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1631 | if (STV090x_WRITE_DEMOD(state, SFRSTEP, 0x95) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1632 | goto err; |
| 1633 | } |
| 1634 | |
| 1635 | if (state->srate <= 2000000) |
| 1636 | car_step = 1000; |
| 1637 | else if (state->srate <= 5000000) |
| 1638 | car_step = 2000; |
| 1639 | else if (state->srate <= 12000000) |
| 1640 | car_step = 3000; |
| 1641 | else |
| 1642 | car_step = 5000; |
| 1643 | |
| 1644 | steps = -1 + ((state->search_range / 1000) / car_step); |
| 1645 | steps /= 2; |
| 1646 | steps = (2 * steps) + 1; |
| 1647 | if (steps < 0) |
| 1648 | steps = 1; |
| 1649 | else if (steps > 10) { |
| 1650 | steps = 11; |
| 1651 | car_step = (state->search_range / 1000) / 10; |
| 1652 | } |
| 1653 | cur_step = 0; |
| 1654 | dir = 1; |
| 1655 | freq = state->frequency; |
| 1656 | |
| 1657 | while ((!tmg_lock) && (cur_step < steps)) { |
| 1658 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5f) < 0) /* Demod RESET */ |
| 1659 | goto err; |
| 1660 | reg = STV090x_READ_DEMOD(state, DMDISTATE); |
| 1661 | STV090x_SETFIELD_Px(reg, I2C_DEMOD_MODE_FIELD, 0x00); /* trigger acquisition */ |
| 1662 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, reg) < 0) |
| 1663 | goto err; |
| 1664 | msleep(50); |
| 1665 | for (i = 0; i < 10; i++) { |
| 1666 | reg = STV090x_READ_DEMOD(state, DSTATUS); |
| 1667 | if (STV090x_GETFIELD_Px(reg, TMGLOCK_QUALITY_FIELD) >= 2) |
| 1668 | tmg_cpt++; |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1669 | agc2 += (STV090x_READ_DEMOD(state, AGC2I1) << 8) | |
| 1670 | STV090x_READ_DEMOD(state, AGC2I0); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1671 | } |
| 1672 | agc2 /= 10; |
| 1673 | srate_coarse = stv090x_get_srate(state, state->mclk); |
| 1674 | cur_step++; |
| 1675 | dir *= -1; |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1676 | if ((tmg_cpt >= 5) && (agc2 < agc2th) && |
| 1677 | (srate_coarse < 50000000) && (srate_coarse > 850000)) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1678 | tmg_lock = 1; |
| 1679 | else if (cur_step < steps) { |
| 1680 | if (dir > 0) |
| 1681 | freq += cur_step * car_step; |
| 1682 | else |
| 1683 | freq -= cur_step * car_step; |
| 1684 | |
| 1685 | /* Setup tuner */ |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1686 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 1687 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1688 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1689 | if (state->config->tuner_set_frequency) { |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 1690 | if (state->config->tuner_set_frequency(fe, freq) < 0) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1691 | goto err; |
| 1692 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1693 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1694 | if (state->config->tuner_set_bandwidth) { |
| 1695 | if (state->config->tuner_set_bandwidth(fe, state->tuner_bw) < 0) |
| 1696 | goto err; |
| 1697 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1698 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1699 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 1700 | goto err; |
| 1701 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1702 | msleep(50); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1703 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1704 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 1705 | goto err; |
| 1706 | |
| 1707 | if (state->config->tuner_get_status) { |
| 1708 | if (state->config->tuner_get_status(fe, ®) < 0) |
| 1709 | goto err; |
| 1710 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1711 | |
| 1712 | if (reg) |
| 1713 | dprintk(FE_DEBUG, 1, "Tuner phase locked"); |
| 1714 | else |
| 1715 | dprintk(FE_DEBUG, 1, "Tuner unlocked"); |
| 1716 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1717 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 1718 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1719 | |
| 1720 | } |
| 1721 | } |
| 1722 | if (!tmg_lock) |
| 1723 | srate_coarse = 0; |
| 1724 | else |
| 1725 | srate_coarse = stv090x_get_srate(state, state->mclk); |
| 1726 | |
| 1727 | return srate_coarse; |
| 1728 | err: |
| 1729 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1730 | return -1; |
| 1731 | } |
| 1732 | |
| 1733 | static u32 stv090x_srate_srch_fine(struct stv090x_state *state) |
| 1734 | { |
| 1735 | u32 srate_coarse, freq_coarse, sym, reg; |
| 1736 | |
| 1737 | srate_coarse = stv090x_get_srate(state, state->mclk); |
| 1738 | freq_coarse = STV090x_READ_DEMOD(state, CFR2) << 8; |
| 1739 | freq_coarse |= STV090x_READ_DEMOD(state, CFR1); |
| 1740 | sym = 13 * (srate_coarse / 10); /* SFRUP = SFR + 30% */ |
| 1741 | |
| 1742 | if (sym < state->srate) |
| 1743 | srate_coarse = 0; |
| 1744 | else { |
| 1745 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) /* Demod RESET */ |
| 1746 | goto err; |
| 1747 | if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0x01) < 0) |
| 1748 | goto err; |
| 1749 | if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0x20) < 0) |
| 1750 | goto err; |
| 1751 | if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0x00) < 0) |
| 1752 | goto err; |
| 1753 | if (STV090x_WRITE_DEMOD(state, TMGCFG, 0xd2) < 0) |
| 1754 | goto err; |
| 1755 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 1756 | STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0x00); |
| 1757 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1758 | goto err; |
| 1759 | |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1760 | if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0) |
| 1761 | goto err; |
| 1762 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1763 | if (state->dev_ver >= 0x30) { |
| 1764 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x79) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1765 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1766 | } else if (state->dev_ver >= 0x20) { |
| 1767 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x49) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1768 | goto err; |
| 1769 | } |
| 1770 | |
| 1771 | if (srate_coarse > 3000000) { |
| 1772 | sym = 13 * (srate_coarse / 10); /* SFRUP = SFR + 30% */ |
| 1773 | sym = (sym / 1000) * 65536; |
| 1774 | sym /= (state->mclk / 1000); |
| 1775 | if (STV090x_WRITE_DEMOD(state, SFRUP1, (sym >> 8) & 0x7f) < 0) |
| 1776 | goto err; |
| 1777 | if (STV090x_WRITE_DEMOD(state, SFRUP0, sym & 0xff) < 0) |
| 1778 | goto err; |
| 1779 | sym = 10 * (srate_coarse / 13); /* SFRLOW = SFR - 30% */ |
| 1780 | sym = (sym / 1000) * 65536; |
| 1781 | sym /= (state->mclk / 1000); |
| 1782 | if (STV090x_WRITE_DEMOD(state, SFRLOW1, (sym >> 8) & 0x7f) < 0) |
| 1783 | goto err; |
| 1784 | if (STV090x_WRITE_DEMOD(state, SFRLOW0, sym & 0xff) < 0) |
| 1785 | goto err; |
| 1786 | sym = (srate_coarse / 1000) * 65536; |
| 1787 | sym /= (state->mclk / 1000); |
| 1788 | if (STV090x_WRITE_DEMOD(state, SFRINIT1, (sym >> 8) & 0xff) < 0) |
| 1789 | goto err; |
| 1790 | if (STV090x_WRITE_DEMOD(state, SFRINIT0, sym & 0xff) < 0) |
| 1791 | goto err; |
| 1792 | } else { |
| 1793 | sym = 13 * (srate_coarse / 10); /* SFRUP = SFR + 30% */ |
| 1794 | sym = (sym / 100) * 65536; |
| 1795 | sym /= (state->mclk / 100); |
| 1796 | if (STV090x_WRITE_DEMOD(state, SFRUP1, (sym >> 8) & 0x7f) < 0) |
| 1797 | goto err; |
| 1798 | if (STV090x_WRITE_DEMOD(state, SFRUP0, sym & 0xff) < 0) |
| 1799 | goto err; |
| 1800 | sym = 10 * (srate_coarse / 14); /* SFRLOW = SFR - 30% */ |
| 1801 | sym = (sym / 100) * 65536; |
| 1802 | sym /= (state->mclk / 100); |
| 1803 | if (STV090x_WRITE_DEMOD(state, SFRLOW1, (sym >> 8) & 0x7f) < 0) |
| 1804 | goto err; |
| 1805 | if (STV090x_WRITE_DEMOD(state, SFRLOW0, sym & 0xff) < 0) |
| 1806 | goto err; |
| 1807 | sym = (srate_coarse / 100) * 65536; |
| 1808 | sym /= (state->mclk / 100); |
| 1809 | if (STV090x_WRITE_DEMOD(state, SFRINIT1, (sym >> 8) & 0xff) < 0) |
| 1810 | goto err; |
| 1811 | if (STV090x_WRITE_DEMOD(state, SFRINIT0, sym & 0xff) < 0) |
| 1812 | goto err; |
| 1813 | } |
| 1814 | if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x20) < 0) |
| 1815 | goto err; |
| 1816 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, (freq_coarse >> 8) & 0xff) < 0) |
| 1817 | goto err; |
| 1818 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, freq_coarse & 0xff) < 0) |
| 1819 | goto err; |
| 1820 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0) /* trigger acquisition */ |
| 1821 | goto err; |
| 1822 | } |
| 1823 | |
| 1824 | return srate_coarse; |
| 1825 | |
| 1826 | err: |
| 1827 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1828 | return -1; |
| 1829 | } |
| 1830 | |
| 1831 | static int stv090x_get_dmdlock(struct stv090x_state *state, s32 timeout) |
| 1832 | { |
| 1833 | s32 timer = 0, lock = 0; |
| 1834 | u32 reg; |
| 1835 | u8 stat; |
| 1836 | |
| 1837 | while ((timer < timeout) && (!lock)) { |
| 1838 | reg = STV090x_READ_DEMOD(state, DMDSTATE); |
| 1839 | stat = STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD); |
| 1840 | |
| 1841 | switch (stat) { |
| 1842 | case 0: /* searching */ |
| 1843 | case 1: /* first PLH detected */ |
| 1844 | default: |
| 1845 | dprintk(FE_DEBUG, 1, "Demodulator searching .."); |
| 1846 | lock = 0; |
| 1847 | break; |
| 1848 | case 2: /* DVB-S2 mode */ |
| 1849 | case 3: /* DVB-S1/legacy mode */ |
| 1850 | reg = STV090x_READ_DEMOD(state, DSTATUS); |
| 1851 | lock = STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD); |
| 1852 | break; |
| 1853 | } |
| 1854 | |
| 1855 | if (!lock) |
| 1856 | msleep(10); |
| 1857 | else |
| 1858 | dprintk(FE_DEBUG, 1, "Demodulator acquired LOCK"); |
| 1859 | |
| 1860 | timer += 10; |
| 1861 | } |
| 1862 | return lock; |
| 1863 | } |
| 1864 | |
| 1865 | static int stv090x_blind_search(struct stv090x_state *state) |
| 1866 | { |
| 1867 | u32 agc2, reg, srate_coarse; |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 1868 | s32 cpt_fail, agc2_ovflw, i; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1869 | u8 k_ref, k_max, k_min; |
| 1870 | int coarse_fail, lock; |
| 1871 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1872 | k_max = 120; |
| 1873 | k_min = 30; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1874 | |
| 1875 | agc2 = stv090x_get_agc2_min_level(state); |
| 1876 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1877 | if (agc2 > STV090x_SEARCH_AGC2_TH(state->dev_ver)) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1878 | lock = 0; |
| 1879 | } else { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1880 | |
| 1881 | if (state->dev_ver <= 0x20) { |
| 1882 | if (STV090x_WRITE_DEMOD(state, CARCFG, 0xc4) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1883 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1884 | } else { |
| 1885 | /* > Cut 3 */ |
| 1886 | if (STV090x_WRITE_DEMOD(state, CARCFG, 0x06) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1887 | goto err; |
| 1888 | } |
| 1889 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1890 | if (STV090x_WRITE_DEMOD(state, RTCS2, 0x44) < 0) |
| 1891 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1892 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1893 | if (state->dev_ver >= 0x20) { |
| 1894 | if (STV090x_WRITE_DEMOD(state, EQUALCFG, 0x41) < 0) |
| 1895 | goto err; |
| 1896 | if (STV090x_WRITE_DEMOD(state, FFECFG, 0x41) < 0) |
| 1897 | goto err; |
| 1898 | if (STV090x_WRITE_DEMOD(state, VITSCALE, 0x82) < 0) |
| 1899 | goto err; |
| 1900 | if (STV090x_WRITE_DEMOD(state, VAVSRVIT, 0x00) < 0) /* set viterbi hysteresis */ |
| 1901 | goto err; |
| 1902 | } |
| 1903 | |
| 1904 | k_ref = k_max; |
| 1905 | do { |
| 1906 | if (STV090x_WRITE_DEMOD(state, KREFTMG, k_ref) < 0) |
| 1907 | goto err; |
| 1908 | if (stv090x_srate_srch_coarse(state) != 0) { |
| 1909 | srate_coarse = stv090x_srate_srch_fine(state); |
| 1910 | if (srate_coarse != 0) { |
| 1911 | stv090x_get_lock_tmg(state); |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 1912 | lock = stv090x_get_dmdlock(state, |
| 1913 | state->DemodTimeout); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1914 | } else { |
| 1915 | lock = 0; |
| 1916 | } |
| 1917 | } else { |
| 1918 | cpt_fail = 0; |
| 1919 | agc2_ovflw = 0; |
| 1920 | for (i = 0; i < 10; i++) { |
Andreas Regel | b4a4248 | 2009-11-13 18:16:44 -0300 | [diff] [blame] | 1921 | agc2 += (STV090x_READ_DEMOD(state, AGC2I1) << 8) | |
| 1922 | STV090x_READ_DEMOD(state, AGC2I0); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1923 | if (agc2 >= 0xff00) |
| 1924 | agc2_ovflw++; |
| 1925 | reg = STV090x_READ_DEMOD(state, DSTATUS2); |
| 1926 | if ((STV090x_GETFIELD_Px(reg, CFR_OVERFLOW_FIELD) == 0x01) && |
| 1927 | (STV090x_GETFIELD_Px(reg, DEMOD_DELOCK_FIELD) == 0x01)) |
| 1928 | |
| 1929 | cpt_fail++; |
| 1930 | } |
| 1931 | if ((cpt_fail > 7) || (agc2_ovflw > 7)) |
| 1932 | coarse_fail = 1; |
| 1933 | |
| 1934 | lock = 0; |
| 1935 | } |
| 1936 | k_ref -= 30; |
| 1937 | } while ((k_ref >= k_min) && (!lock) && (!coarse_fail)); |
| 1938 | } |
| 1939 | |
| 1940 | return lock; |
| 1941 | |
| 1942 | err: |
| 1943 | dprintk(FE_ERROR, 1, "I/O error"); |
| 1944 | return -1; |
| 1945 | } |
| 1946 | |
| 1947 | static int stv090x_chk_tmg(struct stv090x_state *state) |
| 1948 | { |
| 1949 | u32 reg; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 1950 | s32 tmg_cpt = 0, i; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 1951 | u8 freq, tmg_thh, tmg_thl; |
| 1952 | int tmg_lock; |
| 1953 | |
| 1954 | freq = STV090x_READ_DEMOD(state, CARFREQ); |
| 1955 | tmg_thh = STV090x_READ_DEMOD(state, TMGTHRISE); |
| 1956 | tmg_thl = STV090x_READ_DEMOD(state, TMGTHFALL); |
| 1957 | if (STV090x_WRITE_DEMOD(state, TMGTHRISE, 0x20) < 0) |
| 1958 | goto err; |
| 1959 | if (STV090x_WRITE_DEMOD(state, TMGTHFALL, 0x00) < 0) |
| 1960 | goto err; |
| 1961 | |
| 1962 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 1963 | STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0x00); /* stop carrier offset search */ |
| 1964 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 1965 | goto err; |
| 1966 | if (STV090x_WRITE_DEMOD(state, RTC, 0x80) < 0) |
| 1967 | goto err; |
| 1968 | |
| 1969 | if (STV090x_WRITE_DEMOD(state, RTCS2, 0x40) < 0) |
| 1970 | goto err; |
| 1971 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x00) < 0) |
| 1972 | goto err; |
| 1973 | |
| 1974 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, 0x00) < 0) /* set car ofset to 0 */ |
| 1975 | goto err; |
| 1976 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, 0x00) < 0) |
| 1977 | goto err; |
| 1978 | if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x65) < 0) |
| 1979 | goto err; |
| 1980 | |
| 1981 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) /* trigger acquisition */ |
| 1982 | goto err; |
| 1983 | msleep(10); |
| 1984 | |
| 1985 | for (i = 0; i < 10; i++) { |
| 1986 | reg = STV090x_READ_DEMOD(state, DSTATUS); |
| 1987 | if (STV090x_GETFIELD_Px(reg, TMGLOCK_QUALITY_FIELD) >= 2) |
| 1988 | tmg_cpt++; |
| 1989 | msleep(1); |
| 1990 | } |
| 1991 | if (tmg_cpt >= 3) |
| 1992 | tmg_lock = 1; |
| 1993 | |
| 1994 | if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0) |
| 1995 | goto err; |
| 1996 | if (STV090x_WRITE_DEMOD(state, RTC, 0x88) < 0) /* DVB-S1 timing */ |
| 1997 | goto err; |
| 1998 | if (STV090x_WRITE_DEMOD(state, RTCS2, 0x68) < 0) /* DVB-S2 timing */ |
| 1999 | goto err; |
| 2000 | |
| 2001 | if (STV090x_WRITE_DEMOD(state, CARFREQ, freq) < 0) |
| 2002 | goto err; |
| 2003 | if (STV090x_WRITE_DEMOD(state, TMGTHRISE, tmg_thh) < 0) |
| 2004 | goto err; |
| 2005 | if (STV090x_WRITE_DEMOD(state, TMGTHFALL, tmg_thl) < 0) |
| 2006 | goto err; |
| 2007 | |
| 2008 | return tmg_lock; |
| 2009 | |
| 2010 | err: |
| 2011 | dprintk(FE_ERROR, 1, "I/O error"); |
| 2012 | return -1; |
| 2013 | } |
| 2014 | |
| 2015 | static int stv090x_get_coldlock(struct stv090x_state *state, s32 timeout_dmd) |
| 2016 | { |
| 2017 | struct dvb_frontend *fe = &state->frontend; |
| 2018 | |
| 2019 | u32 reg; |
| 2020 | s32 car_step, steps, cur_step, dir, freq, timeout_lock; |
| 2021 | int lock = 0; |
| 2022 | |
| 2023 | if (state->srate >= 10000000) |
| 2024 | timeout_lock = timeout_dmd / 3; |
| 2025 | else |
| 2026 | timeout_lock = timeout_dmd / 2; |
| 2027 | |
| 2028 | lock = stv090x_get_dmdlock(state, timeout_lock); /* cold start wait */ |
| 2029 | if (!lock) { |
| 2030 | if (state->srate >= 10000000) { |
| 2031 | if (stv090x_chk_tmg(state)) { |
| 2032 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) |
| 2033 | goto err; |
| 2034 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0) |
| 2035 | goto err; |
| 2036 | lock = stv090x_get_dmdlock(state, timeout_dmd); |
| 2037 | } else { |
| 2038 | lock = 0; |
| 2039 | } |
| 2040 | } else { |
| 2041 | if (state->srate <= 4000000) |
| 2042 | car_step = 1000; |
| 2043 | else if (state->srate <= 7000000) |
| 2044 | car_step = 2000; |
| 2045 | else if (state->srate <= 10000000) |
| 2046 | car_step = 3000; |
| 2047 | else |
| 2048 | car_step = 5000; |
| 2049 | |
| 2050 | steps = (state->search_range / 1000) / car_step; |
| 2051 | steps /= 2; |
| 2052 | steps = 2 * (steps + 1); |
| 2053 | if (steps < 0) |
| 2054 | steps = 2; |
| 2055 | else if (steps > 12) |
| 2056 | steps = 12; |
| 2057 | |
| 2058 | cur_step = 1; |
| 2059 | dir = 1; |
| 2060 | |
| 2061 | if (!lock) { |
| 2062 | freq = state->frequency; |
| 2063 | state->tuner_bw = stv090x_car_width(state->srate, state->rolloff) + state->srate; |
| 2064 | while ((cur_step <= steps) && (!lock)) { |
| 2065 | if (dir > 0) |
| 2066 | freq += cur_step * car_step; |
| 2067 | else |
| 2068 | freq -= cur_step * car_step; |
| 2069 | |
| 2070 | /* Setup tuner */ |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2071 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 2072 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2073 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2074 | if (state->config->tuner_set_frequency) { |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 2075 | if (state->config->tuner_set_frequency(fe, freq) < 0) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2076 | goto err; |
| 2077 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2078 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2079 | if (state->config->tuner_set_bandwidth) { |
| 2080 | if (state->config->tuner_set_bandwidth(fe, state->tuner_bw) < 0) |
| 2081 | goto err; |
| 2082 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2083 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2084 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 2085 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2086 | |
| 2087 | msleep(50); |
| 2088 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2089 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 2090 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2091 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2092 | if (state->config->tuner_get_status) { |
| 2093 | if (state->config->tuner_get_status(fe, ®) < 0) |
| 2094 | goto err; |
| 2095 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2096 | |
| 2097 | if (reg) |
| 2098 | dprintk(FE_DEBUG, 1, "Tuner phase locked"); |
| 2099 | else |
| 2100 | dprintk(FE_DEBUG, 1, "Tuner unlocked"); |
| 2101 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2102 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 2103 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2104 | |
| 2105 | STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1c); |
| 2106 | if (state->delsys == STV090x_DVBS2) { |
| 2107 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 2108 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 0); |
| 2109 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0); |
| 2110 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 2111 | goto err; |
| 2112 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1); |
| 2113 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1); |
| 2114 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 2115 | goto err; |
| 2116 | } |
| 2117 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, 0x00) < 0) |
| 2118 | goto err; |
| 2119 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, 0x00) < 0) |
| 2120 | goto err; |
| 2121 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) |
| 2122 | goto err; |
| 2123 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x15) < 0) |
| 2124 | goto err; |
| 2125 | lock = stv090x_get_dmdlock(state, (timeout_dmd / 3)); |
| 2126 | |
| 2127 | dir *= -1; |
| 2128 | cur_step++; |
| 2129 | } |
| 2130 | } |
| 2131 | } |
| 2132 | } |
| 2133 | |
| 2134 | return lock; |
| 2135 | |
| 2136 | err: |
| 2137 | dprintk(FE_ERROR, 1, "I/O error"); |
| 2138 | return -1; |
| 2139 | } |
| 2140 | |
| 2141 | static int stv090x_get_loop_params(struct stv090x_state *state, s32 *freq_inc, s32 *timeout_sw, s32 *steps) |
| 2142 | { |
| 2143 | s32 timeout, inc, steps_max, srate, car_max; |
| 2144 | |
| 2145 | srate = state->srate; |
| 2146 | car_max = state->search_range / 1000; |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 2147 | car_max += car_max / 10; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2148 | car_max = 65536 * (car_max / 2); |
| 2149 | car_max /= (state->mclk / 1000); |
| 2150 | |
| 2151 | if (car_max > 0x4000) |
| 2152 | car_max = 0x4000 ; /* maxcarrier should be<= +-1/4 Mclk */ |
| 2153 | |
| 2154 | inc = srate; |
| 2155 | inc /= state->mclk / 1000; |
| 2156 | inc *= 256; |
| 2157 | inc *= 256; |
| 2158 | inc /= 1000; |
| 2159 | |
Andreas Regel | 72982f7 | 2009-04-08 17:28:41 -0300 | [diff] [blame] | 2160 | switch (state->search_mode) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2161 | case STV090x_SEARCH_DVBS1: |
| 2162 | case STV090x_SEARCH_DSS: |
| 2163 | inc *= 3; /* freq step = 3% of srate */ |
| 2164 | timeout = 20; |
| 2165 | break; |
| 2166 | |
| 2167 | case STV090x_SEARCH_DVBS2: |
| 2168 | inc *= 4; |
| 2169 | timeout = 25; |
| 2170 | break; |
| 2171 | |
| 2172 | case STV090x_SEARCH_AUTO: |
| 2173 | default: |
| 2174 | inc *= 3; |
| 2175 | timeout = 25; |
| 2176 | break; |
| 2177 | } |
| 2178 | inc /= 100; |
| 2179 | if ((inc > car_max) || (inc < 0)) |
| 2180 | inc = car_max / 2; /* increment <= 1/8 Mclk */ |
| 2181 | |
| 2182 | timeout *= 27500; /* 27.5 Msps reference */ |
| 2183 | if (srate > 0) |
| 2184 | timeout /= (srate / 1000); |
| 2185 | |
| 2186 | if ((timeout > 100) || (timeout < 0)) |
| 2187 | timeout = 100; |
| 2188 | |
| 2189 | steps_max = (car_max / inc) + 1; /* min steps = 3 */ |
| 2190 | if ((steps_max > 100) || (steps_max < 0)) { |
| 2191 | steps_max = 100; /* max steps <= 100 */ |
| 2192 | inc = car_max / steps_max; |
| 2193 | } |
| 2194 | *freq_inc = inc; |
| 2195 | *timeout_sw = timeout; |
| 2196 | *steps = steps_max; |
| 2197 | |
| 2198 | return 0; |
| 2199 | } |
| 2200 | |
| 2201 | static int stv090x_chk_signal(struct stv090x_state *state) |
| 2202 | { |
| 2203 | s32 offst_car, agc2, car_max; |
| 2204 | int no_signal; |
| 2205 | |
| 2206 | offst_car = STV090x_READ_DEMOD(state, CFR2) << 8; |
| 2207 | offst_car |= STV090x_READ_DEMOD(state, CFR1); |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 2208 | offst_car = comp2(offst_car, 16); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2209 | |
| 2210 | agc2 = STV090x_READ_DEMOD(state, AGC2I1) << 8; |
| 2211 | agc2 |= STV090x_READ_DEMOD(state, AGC2I0); |
| 2212 | car_max = state->search_range / 1000; |
| 2213 | |
| 2214 | car_max += (car_max / 10); /* 10% margin */ |
| 2215 | car_max = (65536 * car_max / 2); |
| 2216 | car_max /= state->mclk / 1000; |
| 2217 | |
| 2218 | if (car_max > 0x4000) |
| 2219 | car_max = 0x4000; |
| 2220 | |
| 2221 | if ((agc2 > 0x2000) || (offst_car > 2 * car_max) || (offst_car < -2 * car_max)) { |
| 2222 | no_signal = 1; |
| 2223 | dprintk(FE_DEBUG, 1, "No Signal"); |
| 2224 | } else { |
| 2225 | no_signal = 0; |
| 2226 | dprintk(FE_DEBUG, 1, "Found Signal"); |
| 2227 | } |
| 2228 | |
| 2229 | return no_signal; |
| 2230 | } |
| 2231 | |
| 2232 | static int stv090x_search_car_loop(struct stv090x_state *state, s32 inc, s32 timeout, int zigzag, s32 steps_max) |
| 2233 | { |
| 2234 | int no_signal, lock = 0; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2235 | s32 cpt_step = 0, offst_freq, car_max; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2236 | u32 reg; |
| 2237 | |
| 2238 | car_max = state->search_range / 1000; |
| 2239 | car_max += (car_max / 10); |
| 2240 | car_max = (65536 * car_max / 2); |
| 2241 | car_max /= (state->mclk / 1000); |
| 2242 | if (car_max > 0x4000) |
| 2243 | car_max = 0x4000; |
| 2244 | |
| 2245 | if (zigzag) |
| 2246 | offst_freq = 0; |
| 2247 | else |
| 2248 | offst_freq = -car_max + inc; |
| 2249 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2250 | do { |
| 2251 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1c) < 0) |
| 2252 | goto err; |
| 2253 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, ((offst_freq / 256) & 0xff)) < 0) |
| 2254 | goto err; |
| 2255 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, offst_freq & 0xff) < 0) |
| 2256 | goto err; |
| 2257 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) |
| 2258 | goto err; |
| 2259 | |
| 2260 | reg = STV090x_READ_DEMOD(state, PDELCTRL1); |
| 2261 | STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0x1); /* stop DVB-S2 packet delin */ |
| 2262 | if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0) |
| 2263 | goto err; |
| 2264 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2265 | if (zigzag) { |
| 2266 | if (offst_freq >= 0) |
| 2267 | offst_freq = -offst_freq - 2 * inc; |
| 2268 | else |
| 2269 | offst_freq = -offst_freq; |
| 2270 | } else { |
| 2271 | offst_freq += 2 * inc; |
| 2272 | } |
| 2273 | |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 2274 | cpt_step++; |
| 2275 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2276 | lock = stv090x_get_dmdlock(state, timeout); |
| 2277 | no_signal = stv090x_chk_signal(state); |
| 2278 | |
| 2279 | } while ((!lock) && |
| 2280 | (!no_signal) && |
| 2281 | ((offst_freq - inc) < car_max) && |
| 2282 | ((offst_freq + inc) > -car_max) && |
| 2283 | (cpt_step < steps_max)); |
| 2284 | |
| 2285 | reg = STV090x_READ_DEMOD(state, PDELCTRL1); |
| 2286 | STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0); |
| 2287 | if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0) |
| 2288 | goto err; |
| 2289 | |
| 2290 | return lock; |
| 2291 | err: |
| 2292 | dprintk(FE_ERROR, 1, "I/O error"); |
| 2293 | return -1; |
| 2294 | } |
| 2295 | |
| 2296 | static int stv090x_sw_algo(struct stv090x_state *state) |
| 2297 | { |
| 2298 | int no_signal, zigzag, lock = 0; |
| 2299 | u32 reg; |
| 2300 | |
| 2301 | s32 dvbs2_fly_wheel; |
| 2302 | s32 inc, timeout_step, trials, steps_max; |
| 2303 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2304 | /* get params */ |
| 2305 | stv090x_get_loop_params(state, &inc, &timeout_step, &steps_max); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2306 | |
Andreas Regel | 72982f7 | 2009-04-08 17:28:41 -0300 | [diff] [blame] | 2307 | switch (state->search_mode) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2308 | case STV090x_SEARCH_DVBS1: |
| 2309 | case STV090x_SEARCH_DSS: |
| 2310 | /* accelerate the frequency detector */ |
| 2311 | if (state->dev_ver >= 0x20) { |
| 2312 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x3B) < 0) |
| 2313 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2314 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2315 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2316 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0x49) < 0) |
| 2317 | goto err; |
| 2318 | zigzag = 0; |
| 2319 | break; |
| 2320 | |
| 2321 | case STV090x_SEARCH_DVBS2: |
| 2322 | if (state->dev_ver >= 0x20) { |
| 2323 | if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x79) < 0) |
| 2324 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2325 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2326 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2327 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0x89) < 0) |
| 2328 | goto err; |
| 2329 | zigzag = 1; |
| 2330 | break; |
| 2331 | |
| 2332 | case STV090x_SEARCH_AUTO: |
| 2333 | default: |
| 2334 | /* accelerate the frequency detector */ |
| 2335 | if (state->dev_ver >= 0x20) { |
| 2336 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x3b) < 0) |
| 2337 | goto err; |
| 2338 | if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x79) < 0) |
| 2339 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2340 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2341 | |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 2342 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0xc9) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2343 | goto err; |
| 2344 | zigzag = 0; |
| 2345 | break; |
| 2346 | } |
| 2347 | |
| 2348 | trials = 0; |
| 2349 | do { |
| 2350 | lock = stv090x_search_car_loop(state, inc, timeout_step, zigzag, steps_max); |
| 2351 | no_signal = stv090x_chk_signal(state); |
| 2352 | trials++; |
| 2353 | |
| 2354 | /*run the SW search 2 times maximum*/ |
| 2355 | if (lock || no_signal || (trials == 2)) { |
| 2356 | /*Check if the demod is not losing lock in DVBS2*/ |
| 2357 | if (state->dev_ver >= 0x20) { |
| 2358 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x49) < 0) |
| 2359 | goto err; |
| 2360 | if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x9e) < 0) |
| 2361 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2362 | } |
| 2363 | |
| 2364 | reg = STV090x_READ_DEMOD(state, DMDSTATE); |
| 2365 | if ((lock) && (STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD) == STV090x_DVBS2)) { |
| 2366 | /*Check if the demod is not losing lock in DVBS2*/ |
| 2367 | msleep(timeout_step); |
| 2368 | reg = STV090x_READ_DEMOD(state, DMDFLYW); |
| 2369 | dvbs2_fly_wheel = STV090x_GETFIELD_Px(reg, FLYWHEEL_CPT_FIELD); |
| 2370 | if (dvbs2_fly_wheel < 0xd) { /*if correct frames is decrementing */ |
| 2371 | msleep(timeout_step); |
| 2372 | reg = STV090x_READ_DEMOD(state, DMDFLYW); |
| 2373 | dvbs2_fly_wheel = STV090x_GETFIELD_Px(reg, FLYWHEEL_CPT_FIELD); |
| 2374 | } |
| 2375 | if (dvbs2_fly_wheel < 0xd) { |
| 2376 | /*FALSE lock, The demod is loosing lock */ |
| 2377 | lock = 0; |
| 2378 | if (trials < 2) { |
| 2379 | if (state->dev_ver >= 0x20) { |
| 2380 | if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x79) < 0) |
| 2381 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2382 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2383 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2384 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, 0x89) < 0) |
| 2385 | goto err; |
| 2386 | } |
| 2387 | } |
| 2388 | } |
| 2389 | } |
| 2390 | } while ((!lock) && (trials < 2) && (!no_signal)); |
| 2391 | |
| 2392 | return lock; |
| 2393 | err: |
| 2394 | dprintk(FE_ERROR, 1, "I/O error"); |
| 2395 | return -1; |
| 2396 | } |
| 2397 | |
| 2398 | static enum stv090x_delsys stv090x_get_std(struct stv090x_state *state) |
| 2399 | { |
| 2400 | u32 reg; |
| 2401 | enum stv090x_delsys delsys; |
| 2402 | |
| 2403 | reg = STV090x_READ_DEMOD(state, DMDSTATE); |
| 2404 | if (STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD) == 2) |
| 2405 | delsys = STV090x_DVBS2; |
| 2406 | else if (STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD) == 3) { |
| 2407 | reg = STV090x_READ_DEMOD(state, FECM); |
| 2408 | if (STV090x_GETFIELD_Px(reg, DSS_DVB_FIELD) == 1) |
| 2409 | delsys = STV090x_DSS; |
| 2410 | else |
| 2411 | delsys = STV090x_DVBS1; |
| 2412 | } else { |
| 2413 | delsys = STV090x_ERROR; |
| 2414 | } |
| 2415 | |
| 2416 | return delsys; |
| 2417 | } |
| 2418 | |
| 2419 | /* in Hz */ |
| 2420 | static s32 stv090x_get_car_freq(struct stv090x_state *state, u32 mclk) |
| 2421 | { |
| 2422 | s32 derot, int_1, int_2, tmp_1, tmp_2; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2423 | |
| 2424 | derot = STV090x_READ_DEMOD(state, CFR2) << 16; |
| 2425 | derot |= STV090x_READ_DEMOD(state, CFR1) << 8; |
| 2426 | derot |= STV090x_READ_DEMOD(state, CFR0); |
| 2427 | |
| 2428 | derot = comp2(derot, 24); |
Manu Abraham | da4b905 | 2009-04-08 20:30:29 -0300 | [diff] [blame] | 2429 | int_1 = state->mclk >> 12; |
| 2430 | int_2 = derot >> 12; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2431 | |
Manu Abraham | da4b905 | 2009-04-08 20:30:29 -0300 | [diff] [blame] | 2432 | /* carrier_frequency = MasterClock * Reg / 2^24 */ |
| 2433 | tmp_1 = state->mclk % 0x1000; |
| 2434 | tmp_2 = derot % 0x1000; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2435 | |
| 2436 | derot = (int_1 * int_2) + |
Manu Abraham | da4b905 | 2009-04-08 20:30:29 -0300 | [diff] [blame] | 2437 | ((int_1 * tmp_2) >> 12) + |
Andreas Regel | b671a8d | 2009-11-13 18:15:27 -0300 | [diff] [blame] | 2438 | ((int_2 * tmp_1) >> 12); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2439 | |
| 2440 | return derot; |
| 2441 | } |
| 2442 | |
| 2443 | static int stv090x_get_viterbi(struct stv090x_state *state) |
| 2444 | { |
| 2445 | u32 reg, rate; |
| 2446 | |
| 2447 | reg = STV090x_READ_DEMOD(state, VITCURPUN); |
| 2448 | rate = STV090x_GETFIELD_Px(reg, VIT_CURPUN_FIELD); |
| 2449 | |
| 2450 | switch (rate) { |
| 2451 | case 13: |
| 2452 | state->fec = STV090x_PR12; |
| 2453 | break; |
| 2454 | |
| 2455 | case 18: |
| 2456 | state->fec = STV090x_PR23; |
| 2457 | break; |
| 2458 | |
| 2459 | case 21: |
| 2460 | state->fec = STV090x_PR34; |
| 2461 | break; |
| 2462 | |
| 2463 | case 24: |
| 2464 | state->fec = STV090x_PR56; |
| 2465 | break; |
| 2466 | |
| 2467 | case 25: |
| 2468 | state->fec = STV090x_PR67; |
| 2469 | break; |
| 2470 | |
| 2471 | case 26: |
| 2472 | state->fec = STV090x_PR78; |
| 2473 | break; |
| 2474 | |
| 2475 | default: |
| 2476 | state->fec = STV090x_PRERR; |
| 2477 | break; |
| 2478 | } |
| 2479 | |
| 2480 | return 0; |
| 2481 | } |
| 2482 | |
| 2483 | static enum stv090x_signal_state stv090x_get_sig_params(struct stv090x_state *state) |
| 2484 | { |
| 2485 | struct dvb_frontend *fe = &state->frontend; |
| 2486 | |
| 2487 | u8 tmg; |
| 2488 | u32 reg; |
| 2489 | s32 i = 0, offst_freq; |
| 2490 | |
| 2491 | msleep(5); |
| 2492 | |
| 2493 | if (state->algo == STV090x_BLIND_SEARCH) { |
| 2494 | tmg = STV090x_READ_DEMOD(state, TMGREG2); |
| 2495 | STV090x_WRITE_DEMOD(state, SFRSTEP, 0x5c); |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 2496 | while ((i <= 50) && (tmg != 0) && (tmg != 0xff)) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2497 | tmg = STV090x_READ_DEMOD(state, TMGREG2); |
| 2498 | msleep(5); |
| 2499 | i += 5; |
| 2500 | } |
| 2501 | } |
| 2502 | state->delsys = stv090x_get_std(state); |
| 2503 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2504 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 2505 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2506 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2507 | if (state->config->tuner_get_frequency) { |
| 2508 | if (state->config->tuner_get_frequency(fe, &state->frequency) < 0) |
| 2509 | goto err; |
| 2510 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2511 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2512 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 2513 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2514 | |
| 2515 | offst_freq = stv090x_get_car_freq(state, state->mclk) / 1000; |
| 2516 | state->frequency += offst_freq; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2517 | |
| 2518 | if (stv090x_get_viterbi(state) < 0) |
| 2519 | goto err; |
| 2520 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2521 | reg = STV090x_READ_DEMOD(state, DMDMODCOD); |
| 2522 | state->modcod = STV090x_GETFIELD_Px(reg, DEMOD_MODCOD_FIELD); |
| 2523 | state->pilots = STV090x_GETFIELD_Px(reg, DEMOD_TYPE_FIELD) & 0x01; |
| 2524 | state->frame_len = STV090x_GETFIELD_Px(reg, DEMOD_TYPE_FIELD) >> 1; |
| 2525 | reg = STV090x_READ_DEMOD(state, TMGOBS); |
| 2526 | state->rolloff = STV090x_GETFIELD_Px(reg, ROLLOFF_STATUS_FIELD); |
| 2527 | reg = STV090x_READ_DEMOD(state, FECM); |
| 2528 | state->inversion = STV090x_GETFIELD_Px(reg, IQINV_FIELD); |
| 2529 | |
| 2530 | if ((state->algo == STV090x_BLIND_SEARCH) || (state->srate < 10000000)) { |
| 2531 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2532 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 2533 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2534 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2535 | if (state->config->tuner_get_frequency) { |
| 2536 | if (state->config->tuner_get_frequency(fe, &state->frequency) < 0) |
| 2537 | goto err; |
| 2538 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2539 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2540 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 2541 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2542 | |
| 2543 | if (abs(offst_freq) <= ((state->search_range / 2000) + 500)) |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 2544 | return STV090x_RANGEOK; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2545 | else if (abs(offst_freq) <= (stv090x_car_width(state->srate, state->rolloff) / 2000)) |
| 2546 | return STV090x_RANGEOK; |
| 2547 | else |
| 2548 | return STV090x_OUTOFRANGE; /* Out of Range */ |
| 2549 | } else { |
| 2550 | if (abs(offst_freq) <= ((state->search_range / 2000) + 500)) |
| 2551 | return STV090x_RANGEOK; |
| 2552 | else |
| 2553 | return STV090x_OUTOFRANGE; |
| 2554 | } |
| 2555 | |
| 2556 | return STV090x_OUTOFRANGE; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2557 | err: |
| 2558 | dprintk(FE_ERROR, 1, "I/O error"); |
| 2559 | return -1; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2560 | } |
| 2561 | |
| 2562 | static u32 stv090x_get_tmgoffst(struct stv090x_state *state, u32 srate) |
| 2563 | { |
| 2564 | s32 offst_tmg; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2565 | |
| 2566 | offst_tmg = STV090x_READ_DEMOD(state, TMGREG2) << 16; |
| 2567 | offst_tmg |= STV090x_READ_DEMOD(state, TMGREG1) << 8; |
| 2568 | offst_tmg |= STV090x_READ_DEMOD(state, TMGREG0); |
| 2569 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2570 | offst_tmg = comp2(offst_tmg, 24); /* 2's complement */ |
| 2571 | if (!offst_tmg) |
| 2572 | offst_tmg = 1; |
| 2573 | |
Manu Abraham | 5f99feff | 2009-04-08 20:24:53 -0300 | [diff] [blame] | 2574 | offst_tmg = ((s32) srate * 10) / ((s32) 0x1000000 / offst_tmg); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2575 | offst_tmg /= 320; |
| 2576 | |
| 2577 | return offst_tmg; |
| 2578 | } |
| 2579 | |
| 2580 | static u8 stv090x_optimize_carloop(struct stv090x_state *state, enum stv090x_modcod modcod, s32 pilots) |
| 2581 | { |
| 2582 | u8 aclc = 0x29; |
| 2583 | s32 i; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2584 | struct stv090x_long_frame_crloop *car_loop, *car_loop_qpsk_low, *car_loop_apsk_low; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2585 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2586 | if (state->dev_ver == 0x20) { |
| 2587 | car_loop = stv090x_s2_crl_cut20; |
| 2588 | car_loop_qpsk_low = stv090x_s2_lowqpsk_crl_cut20; |
| 2589 | car_loop_apsk_low = stv090x_s2_apsk_crl_cut20; |
| 2590 | } else { |
| 2591 | /* >= Cut 3 */ |
| 2592 | car_loop = stv090x_s2_crl_cut30; |
| 2593 | car_loop_qpsk_low = stv090x_s2_lowqpsk_crl_cut30; |
| 2594 | car_loop_apsk_low = stv090x_s2_apsk_crl_cut30; |
| 2595 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2596 | |
| 2597 | if (modcod < STV090x_QPSK_12) { |
| 2598 | i = 0; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2599 | while ((i < 3) && (modcod != car_loop_qpsk_low[i].modcod)) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2600 | i++; |
| 2601 | |
| 2602 | if (i >= 3) |
| 2603 | i = 2; |
| 2604 | |
| 2605 | } else { |
| 2606 | i = 0; |
| 2607 | while ((i < 14) && (modcod != car_loop[i].modcod)) |
| 2608 | i++; |
| 2609 | |
| 2610 | if (i >= 14) { |
| 2611 | i = 0; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2612 | while ((i < 11) && (modcod != car_loop_apsk_low[i].modcod)) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2613 | i++; |
| 2614 | |
| 2615 | if (i >= 11) |
| 2616 | i = 10; |
| 2617 | } |
| 2618 | } |
| 2619 | |
| 2620 | if (modcod <= STV090x_QPSK_25) { |
| 2621 | if (pilots) { |
| 2622 | if (state->srate <= 3000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2623 | aclc = car_loop_qpsk_low[i].crl_pilots_on_2; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2624 | else if (state->srate <= 7000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2625 | aclc = car_loop_qpsk_low[i].crl_pilots_on_5; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2626 | else if (state->srate <= 15000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2627 | aclc = car_loop_qpsk_low[i].crl_pilots_on_10; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2628 | else if (state->srate <= 25000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2629 | aclc = car_loop_qpsk_low[i].crl_pilots_on_20; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2630 | else |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2631 | aclc = car_loop_qpsk_low[i].crl_pilots_on_30; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2632 | } else { |
| 2633 | if (state->srate <= 3000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2634 | aclc = car_loop_qpsk_low[i].crl_pilots_off_2; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2635 | else if (state->srate <= 7000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2636 | aclc = car_loop_qpsk_low[i].crl_pilots_off_5; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2637 | else if (state->srate <= 15000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2638 | aclc = car_loop_qpsk_low[i].crl_pilots_off_10; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2639 | else if (state->srate <= 25000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2640 | aclc = car_loop_qpsk_low[i].crl_pilots_off_20; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2641 | else |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2642 | aclc = car_loop_qpsk_low[i].crl_pilots_off_30; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2643 | } |
| 2644 | |
| 2645 | } else if (modcod <= STV090x_8PSK_910) { |
| 2646 | if (pilots) { |
| 2647 | if (state->srate <= 3000000) |
| 2648 | aclc = car_loop[i].crl_pilots_on_2; |
| 2649 | else if (state->srate <= 7000000) |
| 2650 | aclc = car_loop[i].crl_pilots_on_5; |
| 2651 | else if (state->srate <= 15000000) |
| 2652 | aclc = car_loop[i].crl_pilots_on_10; |
| 2653 | else if (state->srate <= 25000000) |
| 2654 | aclc = car_loop[i].crl_pilots_on_20; |
| 2655 | else |
| 2656 | aclc = car_loop[i].crl_pilots_on_30; |
| 2657 | } else { |
| 2658 | if (state->srate <= 3000000) |
| 2659 | aclc = car_loop[i].crl_pilots_off_2; |
| 2660 | else if (state->srate <= 7000000) |
| 2661 | aclc = car_loop[i].crl_pilots_off_5; |
| 2662 | else if (state->srate <= 15000000) |
| 2663 | aclc = car_loop[i].crl_pilots_off_10; |
| 2664 | else if (state->srate <= 25000000) |
| 2665 | aclc = car_loop[i].crl_pilots_off_20; |
| 2666 | else |
| 2667 | aclc = car_loop[i].crl_pilots_off_30; |
| 2668 | } |
| 2669 | } else { /* 16APSK and 32APSK */ |
| 2670 | if (state->srate <= 3000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2671 | aclc = car_loop_apsk_low[i].crl_pilots_on_2; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2672 | else if (state->srate <= 7000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2673 | aclc = car_loop_apsk_low[i].crl_pilots_on_5; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2674 | else if (state->srate <= 15000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2675 | aclc = car_loop_apsk_low[i].crl_pilots_on_10; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2676 | else if (state->srate <= 25000000) |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2677 | aclc = car_loop_apsk_low[i].crl_pilots_on_20; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2678 | else |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2679 | aclc = car_loop_apsk_low[i].crl_pilots_on_30; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2680 | } |
| 2681 | |
| 2682 | return aclc; |
| 2683 | } |
| 2684 | |
| 2685 | static u8 stv090x_optimize_carloop_short(struct stv090x_state *state) |
| 2686 | { |
Manu Abraham | 0a5ded5 | 2009-06-17 16:48:17 -0300 | [diff] [blame] | 2687 | struct stv090x_short_frame_crloop *short_crl = NULL; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2688 | s32 index = 0; |
| 2689 | u8 aclc = 0x0b; |
| 2690 | |
| 2691 | switch (state->modulation) { |
| 2692 | case STV090x_QPSK: |
| 2693 | default: |
| 2694 | index = 0; |
| 2695 | break; |
| 2696 | case STV090x_8PSK: |
| 2697 | index = 1; |
| 2698 | break; |
| 2699 | case STV090x_16APSK: |
| 2700 | index = 2; |
| 2701 | break; |
| 2702 | case STV090x_32APSK: |
| 2703 | index = 3; |
| 2704 | break; |
| 2705 | } |
| 2706 | |
Manu Abraham | eebf8d8 | 2009-06-18 04:50:53 -0300 | [diff] [blame] | 2707 | if (state->dev_ver >= 0x30) { |
| 2708 | /* Cut 3.0 and up */ |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2709 | short_crl = stv090x_s2_short_crl_cut30; |
Manu Abraham | eebf8d8 | 2009-06-18 04:50:53 -0300 | [diff] [blame] | 2710 | } else { |
| 2711 | /* Cut 2.0 and up: we don't support cuts older than 2.0 */ |
| 2712 | short_crl = stv090x_s2_short_crl_cut20; |
| 2713 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2714 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2715 | if (state->srate <= 3000000) |
| 2716 | aclc = short_crl[index].crl_2; |
| 2717 | else if (state->srate <= 7000000) |
| 2718 | aclc = short_crl[index].crl_5; |
| 2719 | else if (state->srate <= 15000000) |
| 2720 | aclc = short_crl[index].crl_10; |
| 2721 | else if (state->srate <= 25000000) |
| 2722 | aclc = short_crl[index].crl_20; |
| 2723 | else |
| 2724 | aclc = short_crl[index].crl_30; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2725 | |
| 2726 | return aclc; |
| 2727 | } |
| 2728 | |
| 2729 | static int stv090x_optimize_track(struct stv090x_state *state) |
| 2730 | { |
| 2731 | struct dvb_frontend *fe = &state->frontend; |
| 2732 | |
| 2733 | enum stv090x_rolloff rolloff; |
| 2734 | enum stv090x_modcod modcod; |
| 2735 | |
| 2736 | s32 srate, pilots, aclc, f_1, f_0, i = 0, blind_tune = 0; |
| 2737 | u32 reg; |
| 2738 | |
| 2739 | srate = stv090x_get_srate(state, state->mclk); |
| 2740 | srate += stv090x_get_tmgoffst(state, srate); |
| 2741 | |
| 2742 | switch (state->delsys) { |
| 2743 | case STV090x_DVBS1: |
| 2744 | case STV090x_DSS: |
Andreas Regel | b671a8d | 2009-11-13 18:15:27 -0300 | [diff] [blame] | 2745 | if (state->search_mode == STV090x_SEARCH_AUTO) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2746 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 2747 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1); |
| 2748 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 0); |
| 2749 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 2750 | goto err; |
| 2751 | } |
| 2752 | reg = STV090x_READ_DEMOD(state, DEMOD); |
| 2753 | STV090x_SETFIELD_Px(reg, ROLLOFF_CONTROL_FIELD, state->rolloff); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2754 | STV090x_SETFIELD_Px(reg, MANUAL_SXROLLOFF_FIELD, 0x01); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2755 | if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0) |
| 2756 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2757 | |
| 2758 | if (state->dev_ver >= 0x30) { |
| 2759 | if (stv090x_get_viterbi(state) < 0) |
| 2760 | goto err; |
| 2761 | |
| 2762 | if (state->fec == STV090x_PR12) { |
| 2763 | if (STV090x_WRITE_DEMOD(state, GAUSSR0, 0x98) < 0) |
| 2764 | goto err; |
| 2765 | if (STV090x_WRITE_DEMOD(state, CCIR0, 0x18) < 0) |
| 2766 | goto err; |
| 2767 | } else { |
| 2768 | if (STV090x_WRITE_DEMOD(state, GAUSSR0, 0x18) < 0) |
| 2769 | goto err; |
| 2770 | if (STV090x_WRITE_DEMOD(state, CCIR0, 0x18) < 0) |
| 2771 | goto err; |
| 2772 | } |
| 2773 | } |
| 2774 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2775 | if (STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x75) < 0) |
| 2776 | goto err; |
| 2777 | break; |
| 2778 | |
| 2779 | case STV090x_DVBS2: |
| 2780 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 2781 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 0); |
| 2782 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2783 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 2784 | goto err; |
| 2785 | if (STV090x_WRITE_DEMOD(state, ACLC, 0) < 0) |
| 2786 | goto err; |
| 2787 | if (STV090x_WRITE_DEMOD(state, BCLC, 0) < 0) |
| 2788 | goto err; |
| 2789 | if (state->frame_len == STV090x_LONG_FRAME) { |
| 2790 | reg = STV090x_READ_DEMOD(state, DMDMODCOD); |
| 2791 | modcod = STV090x_GETFIELD_Px(reg, DEMOD_MODCOD_FIELD); |
| 2792 | pilots = STV090x_GETFIELD_Px(reg, DEMOD_TYPE_FIELD) & 0x01; |
| 2793 | aclc = stv090x_optimize_carloop(state, modcod, pilots); |
| 2794 | if (modcod <= STV090x_QPSK_910) { |
| 2795 | STV090x_WRITE_DEMOD(state, ACLC2S2Q, aclc); |
| 2796 | } else if (modcod <= STV090x_8PSK_910) { |
| 2797 | if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0) |
| 2798 | goto err; |
| 2799 | if (STV090x_WRITE_DEMOD(state, ACLC2S28, aclc) < 0) |
| 2800 | goto err; |
| 2801 | } |
| 2802 | if ((state->demod_mode == STV090x_SINGLE) && (modcod > STV090x_8PSK_910)) { |
| 2803 | if (modcod <= STV090x_16APSK_910) { |
| 2804 | if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0) |
| 2805 | goto err; |
| 2806 | if (STV090x_WRITE_DEMOD(state, ACLC2S216A, aclc) < 0) |
| 2807 | goto err; |
| 2808 | } else { |
| 2809 | if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0) |
| 2810 | goto err; |
| 2811 | if (STV090x_WRITE_DEMOD(state, ACLC2S232A, aclc) < 0) |
| 2812 | goto err; |
| 2813 | } |
| 2814 | } |
| 2815 | } else { |
| 2816 | /*Carrier loop setting for short frame*/ |
| 2817 | aclc = stv090x_optimize_carloop_short(state); |
| 2818 | if (state->modulation == STV090x_QPSK) { |
| 2819 | if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, aclc) < 0) |
| 2820 | goto err; |
| 2821 | } else if (state->modulation == STV090x_8PSK) { |
| 2822 | if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0) |
| 2823 | goto err; |
| 2824 | if (STV090x_WRITE_DEMOD(state, ACLC2S28, aclc) < 0) |
| 2825 | goto err; |
| 2826 | } else if (state->modulation == STV090x_16APSK) { |
| 2827 | if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0) |
| 2828 | goto err; |
| 2829 | if (STV090x_WRITE_DEMOD(state, ACLC2S216A, aclc) < 0) |
| 2830 | goto err; |
| 2831 | } else if (state->modulation == STV090x_32APSK) { |
| 2832 | if (STV090x_WRITE_DEMOD(state, ACLC2S2Q, 0x2a) < 0) |
| 2833 | goto err; |
| 2834 | if (STV090x_WRITE_DEMOD(state, ACLC2S232A, aclc) < 0) |
| 2835 | goto err; |
| 2836 | } |
| 2837 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2838 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2839 | STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x67); /* PER */ |
| 2840 | break; |
| 2841 | |
| 2842 | case STV090x_UNKNOWN: |
| 2843 | default: |
| 2844 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 2845 | STV090x_SETFIELD_Px(reg, DVBS1_ENABLE_FIELD, 1); |
| 2846 | STV090x_SETFIELD_Px(reg, DVBS2_ENABLE_FIELD, 1); |
| 2847 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 2848 | goto err; |
| 2849 | break; |
| 2850 | } |
| 2851 | |
| 2852 | f_1 = STV090x_READ_DEMOD(state, CFR2); |
| 2853 | f_0 = STV090x_READ_DEMOD(state, CFR1); |
| 2854 | reg = STV090x_READ_DEMOD(state, TMGOBS); |
| 2855 | rolloff = STV090x_GETFIELD_Px(reg, ROLLOFF_STATUS_FIELD); |
| 2856 | |
| 2857 | if (state->algo == STV090x_BLIND_SEARCH) { |
| 2858 | STV090x_WRITE_DEMOD(state, SFRSTEP, 0x00); |
| 2859 | reg = STV090x_READ_DEMOD(state, DMDCFGMD); |
| 2860 | STV090x_SETFIELD_Px(reg, SCAN_ENABLE_FIELD, 0x00); |
| 2861 | STV090x_SETFIELD_Px(reg, CFR_AUTOSCAN_FIELD, 0x00); |
| 2862 | if (STV090x_WRITE_DEMOD(state, DMDCFGMD, reg) < 0) |
| 2863 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2864 | if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0xc1) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2865 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2866 | |
| 2867 | if (stv090x_set_srate(state, srate) < 0) |
| 2868 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2869 | blind_tune = 1; |
| 2870 | } |
| 2871 | |
| 2872 | if (state->dev_ver >= 0x20) { |
| 2873 | if ((state->search_mode == STV090x_SEARCH_DVBS1) || |
| 2874 | (state->search_mode == STV090x_SEARCH_DSS) || |
| 2875 | (state->search_mode == STV090x_SEARCH_AUTO)) { |
| 2876 | |
| 2877 | if (STV090x_WRITE_DEMOD(state, VAVSRVIT, 0x0a) < 0) |
| 2878 | goto err; |
| 2879 | if (STV090x_WRITE_DEMOD(state, VITSCALE, 0x00) < 0) |
| 2880 | goto err; |
| 2881 | } |
| 2882 | } |
| 2883 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2884 | if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0) |
| 2885 | goto err; |
| 2886 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2887 | /* AUTO tracking MODE */ |
| 2888 | if (STV090x_WRITE_DEMOD(state, SFRUP1, 0x80) < 0) |
| 2889 | goto err; |
| 2890 | /* AUTO tracking MODE */ |
| 2891 | if (STV090x_WRITE_DEMOD(state, SFRLOW1, 0x80) < 0) |
| 2892 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2893 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2894 | if ((state->dev_ver >= 0x20) || (blind_tune == 1) || (state->srate < 10000000)) { |
| 2895 | /* update initial carrier freq with the found freq offset */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2896 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0) |
| 2897 | goto err; |
| 2898 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_0) < 0) |
| 2899 | goto err; |
| 2900 | state->tuner_bw = stv090x_car_width(srate, state->rolloff) + 10000000; |
| 2901 | |
| 2902 | if ((state->dev_ver >= 0x20) || (blind_tune == 1)) { |
| 2903 | |
| 2904 | if (state->algo != STV090x_WARM_SEARCH) { |
| 2905 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2906 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 2907 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2908 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2909 | if (state->config->tuner_set_bandwidth) { |
| 2910 | if (state->config->tuner_set_bandwidth(fe, state->tuner_bw) < 0) |
| 2911 | goto err; |
| 2912 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2913 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2914 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 2915 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2916 | |
| 2917 | } |
| 2918 | } |
| 2919 | if ((state->algo == STV090x_BLIND_SEARCH) || (state->srate < 10000000)) |
| 2920 | msleep(50); /* blind search: wait 50ms for SR stabilization */ |
| 2921 | else |
| 2922 | msleep(5); |
| 2923 | |
| 2924 | stv090x_get_lock_tmg(state); |
| 2925 | |
| 2926 | if (!(stv090x_get_dmdlock(state, (state->DemodTimeout / 2)))) { |
| 2927 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) |
| 2928 | goto err; |
| 2929 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0) |
| 2930 | goto err; |
| 2931 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_0) < 0) |
| 2932 | goto err; |
| 2933 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) |
| 2934 | goto err; |
| 2935 | |
| 2936 | i = 0; |
| 2937 | |
| 2938 | while ((!(stv090x_get_dmdlock(state, (state->DemodTimeout / 2)))) && (i <= 2)) { |
| 2939 | |
| 2940 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x1f) < 0) |
| 2941 | goto err; |
| 2942 | if (STV090x_WRITE_DEMOD(state, CFRINIT1, f_1) < 0) |
| 2943 | goto err; |
| 2944 | if (STV090x_WRITE_DEMOD(state, CFRINIT0, f_0) < 0) |
| 2945 | goto err; |
| 2946 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x18) < 0) |
| 2947 | goto err; |
| 2948 | i++; |
| 2949 | } |
| 2950 | } |
| 2951 | |
| 2952 | } |
| 2953 | |
| 2954 | if (state->dev_ver >= 0x20) { |
| 2955 | if (STV090x_WRITE_DEMOD(state, CARFREQ, 0x49) < 0) |
| 2956 | goto err; |
| 2957 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 2958 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 2959 | if ((state->delsys == STV090x_DVBS1) || (state->delsys == STV090x_DSS)) |
| 2960 | stv090x_set_vit_thtracq(state); |
| 2961 | |
| 2962 | return 0; |
| 2963 | err: |
| 2964 | dprintk(FE_ERROR, 1, "I/O error"); |
| 2965 | return -1; |
| 2966 | } |
| 2967 | |
| 2968 | static int stv090x_get_feclock(struct stv090x_state *state, s32 timeout) |
| 2969 | { |
| 2970 | s32 timer = 0, lock = 0, stat; |
| 2971 | u32 reg; |
| 2972 | |
| 2973 | while ((timer < timeout) && (!lock)) { |
| 2974 | reg = STV090x_READ_DEMOD(state, DMDSTATE); |
| 2975 | stat = STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD); |
| 2976 | |
| 2977 | switch (stat) { |
| 2978 | case 0: /* searching */ |
| 2979 | case 1: /* first PLH detected */ |
| 2980 | default: |
| 2981 | lock = 0; |
| 2982 | break; |
| 2983 | |
| 2984 | case 2: /* DVB-S2 mode */ |
| 2985 | reg = STV090x_READ_DEMOD(state, PDELSTATUS1); |
| 2986 | lock = STV090x_GETFIELD_Px(reg, PKTDELIN_LOCK_FIELD); |
| 2987 | break; |
| 2988 | |
| 2989 | case 3: /* DVB-S1/legacy mode */ |
| 2990 | reg = STV090x_READ_DEMOD(state, VSTATUSVIT); |
| 2991 | lock = STV090x_GETFIELD_Px(reg, LOCKEDVIT_FIELD); |
| 2992 | break; |
| 2993 | } |
| 2994 | if (!lock) { |
| 2995 | msleep(10); |
| 2996 | timer += 10; |
| 2997 | } |
| 2998 | } |
| 2999 | return lock; |
| 3000 | } |
| 3001 | |
| 3002 | static int stv090x_get_lock(struct stv090x_state *state, s32 timeout_dmd, s32 timeout_fec) |
| 3003 | { |
| 3004 | u32 reg; |
| 3005 | s32 timer = 0; |
| 3006 | int lock; |
| 3007 | |
| 3008 | lock = stv090x_get_dmdlock(state, timeout_dmd); |
| 3009 | if (lock) |
| 3010 | lock = stv090x_get_feclock(state, timeout_fec); |
| 3011 | |
| 3012 | if (lock) { |
| 3013 | lock = 0; |
| 3014 | |
| 3015 | while ((timer < timeout_fec) && (!lock)) { |
| 3016 | reg = STV090x_READ_DEMOD(state, TSSTATUS); |
| 3017 | lock = STV090x_GETFIELD_Px(reg, TSFIFO_LINEOK_FIELD); |
| 3018 | msleep(1); |
| 3019 | timer++; |
| 3020 | } |
| 3021 | } |
| 3022 | |
| 3023 | return lock; |
| 3024 | } |
| 3025 | |
| 3026 | static int stv090x_set_s2rolloff(struct stv090x_state *state) |
| 3027 | { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3028 | u32 reg; |
| 3029 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3030 | if (state->dev_ver <= 0x20) { |
| 3031 | /* rolloff to auto mode if DVBS2 */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3032 | reg = STV090x_READ_DEMOD(state, DEMOD); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3033 | STV090x_SETFIELD_Px(reg, MANUAL_SXROLLOFF_FIELD, 0x00); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3034 | if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0) |
| 3035 | goto err; |
| 3036 | } else { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3037 | /* DVB-S2 rolloff to auto mode if DVBS2 */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3038 | reg = STV090x_READ_DEMOD(state, DEMOD); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3039 | STV090x_SETFIELD_Px(reg, MANUAL_S2ROLLOFF_FIELD, 0x00); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3040 | if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0) |
| 3041 | goto err; |
| 3042 | } |
| 3043 | return 0; |
| 3044 | err: |
| 3045 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3046 | return -1; |
| 3047 | } |
| 3048 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3049 | |
| 3050 | static enum stv090x_signal_state stv090x_algo(struct stv090x_state *state) |
| 3051 | { |
| 3052 | struct dvb_frontend *fe = &state->frontend; |
| 3053 | enum stv090x_signal_state signal_state = STV090x_NOCARRIER; |
| 3054 | u32 reg; |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 3055 | s32 agc1_power, power_iq = 0, i; |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 3056 | int lock = 0, low_sr = 0, no_signal = 0; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3057 | |
| 3058 | reg = STV090x_READ_DEMOD(state, TSCFGH); |
| 3059 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 1); /* Stop path 1 stream merger */ |
| 3060 | if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0) |
| 3061 | goto err; |
| 3062 | |
| 3063 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5c) < 0) /* Demod stop */ |
| 3064 | goto err; |
| 3065 | |
| 3066 | if (state->dev_ver >= 0x20) { |
| 3067 | if (STV090x_WRITE_DEMOD(state, CORRELABS, 0x9e) < 0) /* cut 2.0 */ |
| 3068 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3069 | } |
| 3070 | |
| 3071 | stv090x_get_lock_tmg(state); |
| 3072 | |
| 3073 | if (state->algo == STV090x_BLIND_SEARCH) { |
| 3074 | state->tuner_bw = 2 * 36000000; /* wide bw for unknown srate */ |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3075 | if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0xc0) < 0) /* wider srate scan */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3076 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3077 | if (STV090x_WRITE_DEMOD(state, CORRELMANT, 0x70) < 0) |
| 3078 | goto err; |
| 3079 | if (stv090x_set_srate(state, 1000000) < 0) /* inital srate = 1Msps */ |
| 3080 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3081 | } else { |
| 3082 | /* known srate */ |
| 3083 | if (STV090x_WRITE_DEMOD(state, DMDTOM, 0x20) < 0) |
| 3084 | goto err; |
| 3085 | if (STV090x_WRITE_DEMOD(state, TMGCFG, 0xd2) < 0) |
| 3086 | goto err; |
| 3087 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3088 | if (state->srate < 2000000) { |
| 3089 | /* SR < 2MSPS */ |
| 3090 | if (STV090x_WRITE_DEMOD(state, CORRELMANT, 0x63) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3091 | goto err; |
| 3092 | } else { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3093 | /* SR >= 2Msps */ |
| 3094 | if (STV090x_WRITE_DEMOD(state, CORRELMANT, 0x70) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3095 | goto err; |
| 3096 | } |
| 3097 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3098 | if (STV090x_WRITE_DEMOD(state, AGC2REF, 0x38) < 0) |
| 3099 | goto err; |
| 3100 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3101 | if (state->dev_ver >= 0x20) { |
| 3102 | if (STV090x_WRITE_DEMOD(state, KREFTMG, 0x5a) < 0) |
| 3103 | goto err; |
| 3104 | if (state->algo == STV090x_COLD_SEARCH) |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 3105 | state->tuner_bw = (15 * (stv090x_car_width(state->srate, state->rolloff) + 10000000)) / 10; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3106 | else if (state->algo == STV090x_WARM_SEARCH) |
| 3107 | state->tuner_bw = stv090x_car_width(state->srate, state->rolloff) + 10000000; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3108 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3109 | |
| 3110 | /* if cold start or warm (Symbolrate is known) |
| 3111 | * use a Narrow symbol rate scan range |
| 3112 | */ |
| 3113 | if (STV090x_WRITE_DEMOD(state, TMGCFG2, 0xc1) < 0) /* narrow srate scan */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3114 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3115 | |
| 3116 | if (stv090x_set_srate(state, state->srate) < 0) |
| 3117 | goto err; |
| 3118 | |
| 3119 | if (stv090x_set_max_srate(state, state->mclk, state->srate) < 0) |
| 3120 | goto err; |
| 3121 | if (stv090x_set_min_srate(state, state->mclk, state->srate) < 0) |
| 3122 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3123 | |
| 3124 | if (state->srate >= 10000000) |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 3125 | low_sr = 0; |
| 3126 | else |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3127 | low_sr = 1; |
| 3128 | } |
| 3129 | |
| 3130 | /* Setup tuner */ |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3131 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 3132 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3133 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3134 | if (state->config->tuner_set_bbgain) { |
| 3135 | if (state->config->tuner_set_bbgain(fe, 10) < 0) /* 10dB */ |
| 3136 | goto err; |
| 3137 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3138 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3139 | if (state->config->tuner_set_frequency) { |
| 3140 | if (state->config->tuner_set_frequency(fe, state->frequency) < 0) |
| 3141 | goto err; |
| 3142 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3143 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3144 | if (state->config->tuner_set_bandwidth) { |
| 3145 | if (state->config->tuner_set_bandwidth(fe, state->tuner_bw) < 0) |
| 3146 | goto err; |
| 3147 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3148 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3149 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 3150 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3151 | |
| 3152 | msleep(50); |
| 3153 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3154 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 3155 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3156 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3157 | if (state->config->tuner_get_status) { |
| 3158 | if (state->config->tuner_get_status(fe, ®) < 0) |
| 3159 | goto err; |
| 3160 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3161 | |
| 3162 | if (reg) |
| 3163 | dprintk(FE_DEBUG, 1, "Tuner phase locked"); |
| 3164 | else |
| 3165 | dprintk(FE_DEBUG, 1, "Tuner unlocked"); |
| 3166 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3167 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3168 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3169 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3170 | msleep(10); |
| 3171 | agc1_power = MAKEWORD16(STV090x_READ_DEMOD(state, AGCIQIN1), |
| 3172 | STV090x_READ_DEMOD(state, AGCIQIN0)); |
| 3173 | |
| 3174 | if (agc1_power == 0) { |
| 3175 | /* If AGC1 integrator value is 0 |
| 3176 | * then read POWERI, POWERQ |
| 3177 | */ |
| 3178 | for (i = 0; i < 5; i++) { |
| 3179 | power_iq += (STV090x_READ_DEMOD(state, POWERI) + |
| 3180 | STV090x_READ_DEMOD(state, POWERQ)) >> 1; |
| 3181 | } |
| 3182 | power_iq /= 5; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3183 | } |
| 3184 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3185 | if ((agc1_power == 0) && (power_iq < STV090x_IQPOWER_THRESHOLD)) { |
| 3186 | dprintk(FE_ERROR, 1, "No Signal: POWER_IQ=0x%02x", power_iq); |
| 3187 | lock = 0; |
| 3188 | |
| 3189 | } else { |
| 3190 | reg = STV090x_READ_DEMOD(state, DEMOD); |
| 3191 | STV090x_SETFIELD_Px(reg, SPECINV_CONTROL_FIELD, state->inversion); |
| 3192 | |
| 3193 | if (state->dev_ver <= 0x20) { |
| 3194 | /* rolloff to auto mode if DVBS2 */ |
| 3195 | STV090x_SETFIELD_Px(reg, MANUAL_SXROLLOFF_FIELD, 1); |
| 3196 | } else { |
| 3197 | /* DVB-S2 rolloff to auto mode if DVBS2 */ |
| 3198 | STV090x_SETFIELD_Px(reg, MANUAL_S2ROLLOFF_FIELD, 1); |
| 3199 | } |
| 3200 | if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0) |
| 3201 | goto err; |
| 3202 | |
| 3203 | if (stv090x_delivery_search(state) < 0) |
| 3204 | goto err; |
| 3205 | |
| 3206 | if (state->algo != STV090x_BLIND_SEARCH) { |
| 3207 | if (stv090x_start_search(state) < 0) |
| 3208 | goto err; |
| 3209 | } |
| 3210 | } |
| 3211 | |
| 3212 | /* need to check for AGC1 state */ |
| 3213 | |
| 3214 | |
| 3215 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3216 | if (state->algo == STV090x_BLIND_SEARCH) |
| 3217 | lock = stv090x_blind_search(state); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3218 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3219 | else if (state->algo == STV090x_COLD_SEARCH) |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 3220 | lock = stv090x_get_coldlock(state, state->DemodTimeout); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3221 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3222 | else if (state->algo == STV090x_WARM_SEARCH) |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 3223 | lock = stv090x_get_dmdlock(state, state->DemodTimeout); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3224 | |
| 3225 | if ((!lock) && (state->algo == STV090x_COLD_SEARCH)) { |
| 3226 | if (!low_sr) { |
| 3227 | if (stv090x_chk_tmg(state)) |
| 3228 | lock = stv090x_sw_algo(state); |
| 3229 | } |
| 3230 | } |
| 3231 | |
| 3232 | if (lock) |
| 3233 | signal_state = stv090x_get_sig_params(state); |
| 3234 | |
| 3235 | if ((lock) && (signal_state == STV090x_RANGEOK)) { /* signal within Range */ |
| 3236 | stv090x_optimize_track(state); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3237 | |
| 3238 | if (state->dev_ver >= 0x20) { |
| 3239 | /* >= Cut 2.0 :release TS reset after |
| 3240 | * demod lock and optimized Tracking |
| 3241 | */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3242 | reg = STV090x_READ_DEMOD(state, TSCFGH); |
| 3243 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */ |
| 3244 | if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0) |
| 3245 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3246 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3247 | msleep(3); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3248 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3249 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 1); /* merger reset */ |
| 3250 | if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0) |
| 3251 | goto err; |
| 3252 | |
| 3253 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0); /* release merger reset */ |
| 3254 | if (STV090x_WRITE_DEMOD(state, TSCFGH, reg) < 0) |
| 3255 | goto err; |
| 3256 | } |
| 3257 | |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 3258 | lock = stv090x_get_lock(state, state->FecTimeout, |
| 3259 | state->FecTimeout); |
| 3260 | if (lock) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3261 | if (state->delsys == STV090x_DVBS2) { |
| 3262 | stv090x_set_s2rolloff(state); |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3263 | |
| 3264 | reg = STV090x_READ_DEMOD(state, PDELCTRL2); |
| 3265 | STV090x_SETFIELD_Px(reg, RESET_UPKO_COUNT, 1); |
| 3266 | if (STV090x_WRITE_DEMOD(state, PDELCTRL2, reg) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3267 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3268 | /* Reset DVBS2 packet delinator error counter */ |
| 3269 | reg = STV090x_READ_DEMOD(state, PDELCTRL2); |
| 3270 | STV090x_SETFIELD_Px(reg, RESET_UPKO_COUNT, 0); |
| 3271 | if (STV090x_WRITE_DEMOD(state, PDELCTRL2, reg) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3272 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3273 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3274 | if (STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x67) < 0) /* PER */ |
| 3275 | goto err; |
| 3276 | } else { |
| 3277 | if (STV090x_WRITE_DEMOD(state, ERRCTRL1, 0x75) < 0) |
| 3278 | goto err; |
| 3279 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3280 | /* Reset the Total packet counter */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3281 | if (STV090x_WRITE_DEMOD(state, FBERCPT4, 0x00) < 0) |
| 3282 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3283 | /* Reset the packet Error counter2 */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3284 | if (STV090x_WRITE_DEMOD(state, ERRCTRL2, 0xc1) < 0) |
| 3285 | goto err; |
| 3286 | } else { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3287 | signal_state = STV090x_NODATA; |
| 3288 | no_signal = stv090x_chk_signal(state); |
| 3289 | } |
| 3290 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3291 | return signal_state; |
| 3292 | |
| 3293 | err: |
| 3294 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3295 | return -1; |
| 3296 | } |
| 3297 | |
| 3298 | static enum dvbfe_search stv090x_search(struct dvb_frontend *fe, struct dvb_frontend_parameters *p) |
| 3299 | { |
| 3300 | struct stv090x_state *state = fe->demodulator_priv; |
| 3301 | struct dtv_frontend_properties *props = &fe->dtv_property_cache; |
| 3302 | |
| 3303 | state->delsys = props->delivery_system; |
| 3304 | state->frequency = p->frequency; |
| 3305 | state->srate = p->u.qpsk.symbol_rate; |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 3306 | state->search_mode = STV090x_SEARCH_AUTO; |
| 3307 | state->algo = STV090x_COLD_SEARCH; |
| 3308 | state->fec = STV090x_PRERR; |
Andreas Regel | c879d8c | 2009-11-13 18:11:26 -0300 | [diff] [blame] | 3309 | if (state->srate > 10000000) { |
| 3310 | dprintk(FE_DEBUG, 1, "Search range: 10 MHz"); |
| 3311 | state->search_range = 10000000; |
| 3312 | } else { |
| 3313 | dprintk(FE_DEBUG, 1, "Search range: 5 MHz"); |
| 3314 | state->search_range = 5000000; |
| 3315 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3316 | |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 3317 | if (stv090x_algo(state) == STV090x_RANGEOK) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3318 | dprintk(FE_DEBUG, 1, "Search success!"); |
| 3319 | return DVBFE_ALGO_SEARCH_SUCCESS; |
| 3320 | } else { |
| 3321 | dprintk(FE_DEBUG, 1, "Search failed!"); |
| 3322 | return DVBFE_ALGO_SEARCH_FAILED; |
| 3323 | } |
| 3324 | |
| 3325 | return DVBFE_ALGO_SEARCH_ERROR; |
| 3326 | } |
| 3327 | |
| 3328 | /* FIXME! */ |
| 3329 | static int stv090x_read_status(struct dvb_frontend *fe, enum fe_status *status) |
| 3330 | { |
| 3331 | struct stv090x_state *state = fe->demodulator_priv; |
| 3332 | u32 reg; |
| 3333 | u8 search_state; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3334 | |
| 3335 | reg = STV090x_READ_DEMOD(state, DMDSTATE); |
| 3336 | search_state = STV090x_GETFIELD_Px(reg, HEADER_MODE_FIELD); |
| 3337 | |
| 3338 | switch (search_state) { |
| 3339 | case 0: /* searching */ |
| 3340 | case 1: /* first PLH detected */ |
| 3341 | default: |
| 3342 | dprintk(FE_DEBUG, 1, "Status: Unlocked (Searching ..)"); |
Andreas Regel | 9629c5b | 2009-04-23 14:58:36 -0300 | [diff] [blame] | 3343 | *status = 0; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3344 | break; |
| 3345 | |
| 3346 | case 2: /* DVB-S2 mode */ |
| 3347 | dprintk(FE_DEBUG, 1, "Delivery system: DVB-S2"); |
| 3348 | reg = STV090x_READ_DEMOD(state, DSTATUS); |
| 3349 | if (STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD)) { |
| 3350 | reg = STV090x_READ_DEMOD(state, TSSTATUS); |
| 3351 | if (STV090x_GETFIELD_Px(reg, TSFIFO_LINEOK_FIELD)) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3352 | *status = FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK; |
| 3353 | } |
| 3354 | } |
| 3355 | break; |
| 3356 | |
| 3357 | case 3: /* DVB-S1/legacy mode */ |
| 3358 | dprintk(FE_DEBUG, 1, "Delivery system: DVB-S"); |
| 3359 | reg = STV090x_READ_DEMOD(state, DSTATUS); |
| 3360 | if (STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD)) { |
| 3361 | reg = STV090x_READ_DEMOD(state, VSTATUSVIT); |
| 3362 | if (STV090x_GETFIELD_Px(reg, LOCKEDVIT_FIELD)) { |
| 3363 | reg = STV090x_READ_DEMOD(state, TSSTATUS); |
| 3364 | if (STV090x_GETFIELD_Px(reg, TSFIFO_LINEOK_FIELD)) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3365 | *status = FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK; |
| 3366 | } |
| 3367 | } |
| 3368 | } |
| 3369 | break; |
| 3370 | } |
| 3371 | |
Andreas Regel | 9629c5b | 2009-04-23 14:58:36 -0300 | [diff] [blame] | 3372 | return 0; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3373 | } |
| 3374 | |
| 3375 | static int stv090x_read_per(struct dvb_frontend *fe, u32 *per) |
| 3376 | { |
| 3377 | struct stv090x_state *state = fe->demodulator_priv; |
| 3378 | |
| 3379 | s32 count_4, count_3, count_2, count_1, count_0, count; |
| 3380 | u32 reg, h, m, l; |
| 3381 | enum fe_status status; |
| 3382 | |
Andreas Regel | 9629c5b | 2009-04-23 14:58:36 -0300 | [diff] [blame] | 3383 | stv090x_read_status(fe, &status); |
| 3384 | if (!(status & FE_HAS_LOCK)) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3385 | *per = 1 << 23; /* Max PER */ |
| 3386 | } else { |
| 3387 | /* Counter 2 */ |
| 3388 | reg = STV090x_READ_DEMOD(state, ERRCNT22); |
| 3389 | h = STV090x_GETFIELD_Px(reg, ERR_CNT2_FIELD); |
| 3390 | |
| 3391 | reg = STV090x_READ_DEMOD(state, ERRCNT21); |
| 3392 | m = STV090x_GETFIELD_Px(reg, ERR_CNT21_FIELD); |
| 3393 | |
| 3394 | reg = STV090x_READ_DEMOD(state, ERRCNT20); |
| 3395 | l = STV090x_GETFIELD_Px(reg, ERR_CNT20_FIELD); |
| 3396 | |
| 3397 | *per = ((h << 16) | (m << 8) | l); |
| 3398 | |
| 3399 | count_4 = STV090x_READ_DEMOD(state, FBERCPT4); |
| 3400 | count_3 = STV090x_READ_DEMOD(state, FBERCPT3); |
| 3401 | count_2 = STV090x_READ_DEMOD(state, FBERCPT2); |
| 3402 | count_1 = STV090x_READ_DEMOD(state, FBERCPT1); |
| 3403 | count_0 = STV090x_READ_DEMOD(state, FBERCPT0); |
| 3404 | |
| 3405 | if ((!count_4) && (!count_3)) { |
| 3406 | count = (count_2 & 0xff) << 16; |
| 3407 | count |= (count_1 & 0xff) << 8; |
| 3408 | count |= count_0 & 0xff; |
| 3409 | } else { |
| 3410 | count = 1 << 24; |
| 3411 | } |
| 3412 | if (count == 0) |
| 3413 | *per = 1; |
| 3414 | } |
| 3415 | if (STV090x_WRITE_DEMOD(state, FBERCPT4, 0) < 0) |
| 3416 | goto err; |
| 3417 | if (STV090x_WRITE_DEMOD(state, ERRCTRL2, 0xc1) < 0) |
| 3418 | goto err; |
| 3419 | |
| 3420 | return 0; |
| 3421 | err: |
| 3422 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3423 | return -1; |
| 3424 | } |
| 3425 | |
| 3426 | static int stv090x_table_lookup(const struct stv090x_tab *tab, int max, int val) |
| 3427 | { |
| 3428 | int res = 0; |
| 3429 | int min = 0, med; |
| 3430 | |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3431 | if ((val >= tab[min].read && val < tab[max].read) || |
| 3432 | (val >= tab[max].read && val < tab[min].read)) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3433 | while ((max - min) > 1) { |
| 3434 | med = (max + min) / 2; |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3435 | if ((val >= tab[min].read && val < tab[med].read) || |
| 3436 | (val >= tab[med].read && val < tab[min].read)) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3437 | max = med; |
| 3438 | else |
| 3439 | min = med; |
| 3440 | } |
| 3441 | res = ((val - tab[min].read) * |
| 3442 | (tab[max].real - tab[min].real) / |
| 3443 | (tab[max].read - tab[min].read)) + |
| 3444 | tab[min].real; |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3445 | } else { |
| 3446 | if (tab[min].read < tab[max].read) { |
| 3447 | if (val < tab[min].read) |
| 3448 | res = tab[min].real; |
| 3449 | else if (val >= tab[max].read) |
| 3450 | res = tab[max].real; |
| 3451 | } else { |
| 3452 | if (val >= tab[min].read) |
| 3453 | res = tab[min].real; |
| 3454 | else if (val < tab[max].read) |
| 3455 | res = tab[max].real; |
| 3456 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3457 | } |
| 3458 | |
| 3459 | return res; |
| 3460 | } |
| 3461 | |
| 3462 | static int stv090x_read_signal_strength(struct dvb_frontend *fe, u16 *strength) |
| 3463 | { |
| 3464 | struct stv090x_state *state = fe->demodulator_priv; |
| 3465 | u32 reg; |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3466 | s32 agc_0, agc_1, agc; |
| 3467 | s32 str; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3468 | |
| 3469 | reg = STV090x_READ_DEMOD(state, AGCIQIN1); |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3470 | agc_1 = STV090x_GETFIELD_Px(reg, AGCIQ_VALUE_FIELD); |
| 3471 | reg = STV090x_READ_DEMOD(state, AGCIQIN0); |
| 3472 | agc_0 = STV090x_GETFIELD_Px(reg, AGCIQ_VALUE_FIELD); |
| 3473 | agc = MAKEWORD16(agc_1, agc_0); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3474 | |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3475 | str = stv090x_table_lookup(stv090x_rf_tab, |
| 3476 | ARRAY_SIZE(stv090x_rf_tab) - 1, agc); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3477 | if (agc > stv090x_rf_tab[0].read) |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3478 | str = 0; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3479 | else if (agc < stv090x_rf_tab[ARRAY_SIZE(stv090x_rf_tab) - 1].read) |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3480 | str = -100; |
| 3481 | *strength = (str + 100) * 0xFFFF / 100; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3482 | |
| 3483 | return 0; |
| 3484 | } |
| 3485 | |
| 3486 | static int stv090x_read_cnr(struct dvb_frontend *fe, u16 *cnr) |
| 3487 | { |
| 3488 | struct stv090x_state *state = fe->demodulator_priv; |
| 3489 | u32 reg_0, reg_1, reg, i; |
| 3490 | s32 val_0, val_1, val = 0; |
| 3491 | u8 lock_f; |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3492 | s32 div; |
| 3493 | u32 last; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3494 | |
| 3495 | switch (state->delsys) { |
| 3496 | case STV090x_DVBS2: |
| 3497 | reg = STV090x_READ_DEMOD(state, DSTATUS); |
| 3498 | lock_f = STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD); |
| 3499 | if (lock_f) { |
| 3500 | msleep(5); |
| 3501 | for (i = 0; i < 16; i++) { |
| 3502 | reg_1 = STV090x_READ_DEMOD(state, NNOSPLHT1); |
| 3503 | val_1 = STV090x_GETFIELD_Px(reg_1, NOSPLHT_NORMED_FIELD); |
| 3504 | reg_0 = STV090x_READ_DEMOD(state, NNOSPLHT0); |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3505 | val_0 = STV090x_GETFIELD_Px(reg_0, NOSPLHT_NORMED_FIELD); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3506 | val += MAKEWORD16(val_1, val_0); |
| 3507 | msleep(1); |
| 3508 | } |
| 3509 | val /= 16; |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3510 | last = ARRAY_SIZE(stv090x_s2cn_tab) - 1; |
| 3511 | div = stv090x_s2cn_tab[0].read - |
| 3512 | stv090x_s2cn_tab[last].read; |
| 3513 | *cnr = 0xFFFF - ((val * 0xFFFF) / div); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3514 | } |
| 3515 | break; |
| 3516 | |
| 3517 | case STV090x_DVBS1: |
| 3518 | case STV090x_DSS: |
| 3519 | reg = STV090x_READ_DEMOD(state, DSTATUS); |
| 3520 | lock_f = STV090x_GETFIELD_Px(reg, LOCK_DEFINITIF_FIELD); |
| 3521 | if (lock_f) { |
| 3522 | msleep(5); |
| 3523 | for (i = 0; i < 16; i++) { |
| 3524 | reg_1 = STV090x_READ_DEMOD(state, NOSDATAT1); |
| 3525 | val_1 = STV090x_GETFIELD_Px(reg_1, NOSDATAT_UNNORMED_FIELD); |
| 3526 | reg_0 = STV090x_READ_DEMOD(state, NOSDATAT0); |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3527 | val_0 = STV090x_GETFIELD_Px(reg_0, NOSDATAT_UNNORMED_FIELD); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3528 | val += MAKEWORD16(val_1, val_0); |
| 3529 | msleep(1); |
| 3530 | } |
| 3531 | val /= 16; |
Andreas Regel | dbeb7db | 2009-11-13 18:14:00 -0300 | [diff] [blame] | 3532 | last = ARRAY_SIZE(stv090x_s1cn_tab) - 1; |
| 3533 | div = stv090x_s1cn_tab[0].read - |
| 3534 | stv090x_s1cn_tab[last].read; |
| 3535 | *cnr = 0xFFFF - ((val * 0xFFFF) / div); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3536 | } |
| 3537 | break; |
| 3538 | default: |
| 3539 | break; |
| 3540 | } |
| 3541 | |
| 3542 | return 0; |
| 3543 | } |
| 3544 | |
| 3545 | static int stv090x_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone) |
| 3546 | { |
| 3547 | struct stv090x_state *state = fe->demodulator_priv; |
| 3548 | u32 reg; |
| 3549 | |
| 3550 | reg = STV090x_READ_DEMOD(state, DISTXCTL); |
| 3551 | switch (tone) { |
| 3552 | case SEC_TONE_ON: |
| 3553 | STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, 0); |
| 3554 | STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1); |
| 3555 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3556 | goto err; |
| 3557 | STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 0); |
| 3558 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3559 | goto err; |
| 3560 | break; |
| 3561 | |
| 3562 | case SEC_TONE_OFF: |
| 3563 | STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, 0); |
| 3564 | STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1); |
| 3565 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3566 | goto err; |
| 3567 | break; |
| 3568 | default: |
| 3569 | return -EINVAL; |
| 3570 | } |
| 3571 | |
| 3572 | return 0; |
| 3573 | err: |
| 3574 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3575 | return -1; |
| 3576 | } |
| 3577 | |
| 3578 | |
| 3579 | static enum dvbfe_algo stv090x_frontend_algo(struct dvb_frontend *fe) |
| 3580 | { |
| 3581 | return DVBFE_ALGO_CUSTOM; |
| 3582 | } |
| 3583 | |
| 3584 | static int stv090x_send_diseqc_msg(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd) |
| 3585 | { |
| 3586 | struct stv090x_state *state = fe->demodulator_priv; |
| 3587 | u32 reg, idle = 0, fifo_full = 1; |
| 3588 | int i; |
| 3589 | |
| 3590 | reg = STV090x_READ_DEMOD(state, DISTXCTL); |
Andreas Regel | f9ed95d | 2009-04-08 17:27:51 -0300 | [diff] [blame] | 3591 | |
| 3592 | STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, 2); |
| 3593 | STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1); |
| 3594 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3595 | goto err; |
| 3596 | STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 0); |
| 3597 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3598 | goto err; |
| 3599 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3600 | STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 1); |
| 3601 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3602 | goto err; |
| 3603 | |
| 3604 | for (i = 0; i < cmd->msg_len; i++) { |
| 3605 | |
| 3606 | while (fifo_full) { |
| 3607 | reg = STV090x_READ_DEMOD(state, DISTXSTATUS); |
| 3608 | fifo_full = STV090x_GETFIELD_Px(reg, FIFO_FULL_FIELD); |
| 3609 | } |
| 3610 | |
| 3611 | if (STV090x_WRITE_DEMOD(state, DISTXDATA, cmd->msg[i]) < 0) |
| 3612 | goto err; |
Andreas Regel | f9ed95d | 2009-04-08 17:27:51 -0300 | [diff] [blame] | 3613 | } |
| 3614 | reg = STV090x_READ_DEMOD(state, DISTXCTL); |
| 3615 | STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 0); |
| 3616 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3617 | goto err; |
| 3618 | |
| 3619 | i = 0; |
| 3620 | |
| 3621 | while ((!idle) && (i < 10)) { |
| 3622 | reg = STV090x_READ_DEMOD(state, DISTXSTATUS); |
| 3623 | idle = STV090x_GETFIELD_Px(reg, TX_IDLE_FIELD); |
| 3624 | msleep(10); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3625 | i++; |
| 3626 | } |
Andreas Regel | f9ed95d | 2009-04-08 17:27:51 -0300 | [diff] [blame] | 3627 | |
| 3628 | return 0; |
| 3629 | err: |
| 3630 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3631 | return -1; |
| 3632 | } |
| 3633 | |
| 3634 | static int stv090x_send_diseqc_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t burst) |
| 3635 | { |
| 3636 | struct stv090x_state *state = fe->demodulator_priv; |
| 3637 | u32 reg, idle = 0, fifo_full = 1; |
| 3638 | u8 mode, value; |
| 3639 | int i; |
| 3640 | |
| 3641 | reg = STV090x_READ_DEMOD(state, DISTXCTL); |
| 3642 | |
| 3643 | if (burst == SEC_MINI_A) { |
| 3644 | mode = 3; |
| 3645 | value = 0x00; |
| 3646 | } else { |
| 3647 | mode = 2; |
| 3648 | value = 0xFF; |
| 3649 | } |
| 3650 | |
| 3651 | STV090x_SETFIELD_Px(reg, DISTX_MODE_FIELD, mode); |
| 3652 | STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 1); |
| 3653 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3654 | goto err; |
| 3655 | STV090x_SETFIELD_Px(reg, DISEQC_RESET_FIELD, 0); |
| 3656 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3657 | goto err; |
| 3658 | |
| 3659 | STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 1); |
| 3660 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3661 | goto err; |
| 3662 | |
| 3663 | while (fifo_full) { |
| 3664 | reg = STV090x_READ_DEMOD(state, DISTXSTATUS); |
| 3665 | fifo_full = STV090x_GETFIELD_Px(reg, FIFO_FULL_FIELD); |
| 3666 | } |
| 3667 | |
| 3668 | if (STV090x_WRITE_DEMOD(state, DISTXDATA, value) < 0) |
| 3669 | goto err; |
| 3670 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3671 | reg = STV090x_READ_DEMOD(state, DISTXCTL); |
| 3672 | STV090x_SETFIELD_Px(reg, DIS_PRECHARGE_FIELD, 0); |
| 3673 | if (STV090x_WRITE_DEMOD(state, DISTXCTL, reg) < 0) |
| 3674 | goto err; |
| 3675 | |
| 3676 | i = 0; |
| 3677 | |
| 3678 | while ((!idle) && (i < 10)) { |
| 3679 | reg = STV090x_READ_DEMOD(state, DISTXSTATUS); |
| 3680 | idle = STV090x_GETFIELD_Px(reg, TX_IDLE_FIELD); |
| 3681 | msleep(10); |
| 3682 | i++; |
| 3683 | } |
| 3684 | |
| 3685 | return 0; |
| 3686 | err: |
| 3687 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3688 | return -1; |
| 3689 | } |
| 3690 | |
| 3691 | static int stv090x_recv_slave_reply(struct dvb_frontend *fe, struct dvb_diseqc_slave_reply *reply) |
| 3692 | { |
| 3693 | struct stv090x_state *state = fe->demodulator_priv; |
| 3694 | u32 reg = 0, i = 0, rx_end = 0; |
| 3695 | |
| 3696 | while ((rx_end != 1) && (i < 10)) { |
| 3697 | msleep(10); |
| 3698 | i++; |
| 3699 | reg = STV090x_READ_DEMOD(state, DISRX_ST0); |
| 3700 | rx_end = STV090x_GETFIELD_Px(reg, RX_END_FIELD); |
| 3701 | } |
| 3702 | |
| 3703 | if (rx_end) { |
| 3704 | reply->msg_len = STV090x_GETFIELD_Px(reg, FIFO_BYTENBR_FIELD); |
| 3705 | for (i = 0; i < reply->msg_len; i++) |
| 3706 | reply->msg[i] = STV090x_READ_DEMOD(state, DISRXDATA); |
| 3707 | } |
| 3708 | |
| 3709 | return 0; |
| 3710 | } |
| 3711 | |
| 3712 | static int stv090x_sleep(struct dvb_frontend *fe) |
| 3713 | { |
| 3714 | struct stv090x_state *state = fe->demodulator_priv; |
| 3715 | u32 reg; |
| 3716 | |
| 3717 | dprintk(FE_DEBUG, 1, "Set %s to sleep", |
| 3718 | state->device == STV0900 ? "STV0900" : "STV0903"); |
| 3719 | |
| 3720 | reg = stv090x_read_reg(state, STV090x_SYNTCTRL); |
| 3721 | STV090x_SETFIELD(reg, STANDBY_FIELD, 0x01); |
| 3722 | if (stv090x_write_reg(state, STV090x_SYNTCTRL, reg) < 0) |
| 3723 | goto err; |
| 3724 | |
Manu Abraham | 26b03bc | 2009-04-08 18:27:10 -0300 | [diff] [blame] | 3725 | reg = stv090x_read_reg(state, STV090x_TSTTNR1); |
| 3726 | STV090x_SETFIELD(reg, ADC1_PON_FIELD, 0); |
| 3727 | if (stv090x_write_reg(state, STV090x_TSTTNR1, reg) < 0) |
| 3728 | goto err; |
| 3729 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3730 | return 0; |
| 3731 | err: |
| 3732 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3733 | return -1; |
| 3734 | } |
| 3735 | |
| 3736 | static int stv090x_wakeup(struct dvb_frontend *fe) |
| 3737 | { |
| 3738 | struct stv090x_state *state = fe->demodulator_priv; |
| 3739 | u32 reg; |
| 3740 | |
| 3741 | dprintk(FE_DEBUG, 1, "Wake %s from standby", |
| 3742 | state->device == STV0900 ? "STV0900" : "STV0903"); |
| 3743 | |
| 3744 | reg = stv090x_read_reg(state, STV090x_SYNTCTRL); |
| 3745 | STV090x_SETFIELD(reg, STANDBY_FIELD, 0x00); |
| 3746 | if (stv090x_write_reg(state, STV090x_SYNTCTRL, reg) < 0) |
| 3747 | goto err; |
| 3748 | |
Manu Abraham | 26b03bc | 2009-04-08 18:27:10 -0300 | [diff] [blame] | 3749 | reg = stv090x_read_reg(state, STV090x_TSTTNR1); |
| 3750 | STV090x_SETFIELD(reg, ADC1_PON_FIELD, 1); |
| 3751 | if (stv090x_write_reg(state, STV090x_TSTTNR1, reg) < 0) |
| 3752 | goto err; |
| 3753 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3754 | return 0; |
| 3755 | err: |
| 3756 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3757 | return -1; |
| 3758 | } |
| 3759 | |
| 3760 | static void stv090x_release(struct dvb_frontend *fe) |
| 3761 | { |
| 3762 | struct stv090x_state *state = fe->demodulator_priv; |
| 3763 | |
| 3764 | kfree(state); |
| 3765 | } |
| 3766 | |
| 3767 | static int stv090x_ldpc_mode(struct stv090x_state *state, enum stv090x_mode ldpc_mode) |
| 3768 | { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3769 | u32 reg = 0; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3770 | |
Andreas Regel | a4978a8 | 2009-11-13 18:17:45 -0300 | [diff] [blame^] | 3771 | reg = stv090x_read_reg(state, STV090x_GENCFG); |
| 3772 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3773 | switch (ldpc_mode) { |
| 3774 | case STV090x_DUAL: |
| 3775 | default: |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3776 | if ((state->demod_mode != STV090x_DUAL) || (STV090x_GETFIELD(reg, DDEMOD_FIELD) != 1)) { |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3777 | /* set LDPC to dual mode */ |
| 3778 | if (stv090x_write_reg(state, STV090x_GENCFG, 0x1d) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3779 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3780 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3781 | state->demod_mode = STV090x_DUAL; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3782 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3783 | reg = stv090x_read_reg(state, STV090x_TSTRES0); |
| 3784 | STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x1); |
| 3785 | if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0) |
| 3786 | goto err; |
| 3787 | STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x0); |
| 3788 | if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0) |
| 3789 | goto err; |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3790 | |
| 3791 | if (STV090x_WRITE_DEMOD(state, MODCODLST0, 0xff) < 0) |
| 3792 | goto err; |
| 3793 | if (STV090x_WRITE_DEMOD(state, MODCODLST1, 0xff) < 0) |
| 3794 | goto err; |
| 3795 | if (STV090x_WRITE_DEMOD(state, MODCODLST2, 0xff) < 0) |
| 3796 | goto err; |
| 3797 | if (STV090x_WRITE_DEMOD(state, MODCODLST3, 0xff) < 0) |
| 3798 | goto err; |
| 3799 | if (STV090x_WRITE_DEMOD(state, MODCODLST4, 0xff) < 0) |
| 3800 | goto err; |
| 3801 | if (STV090x_WRITE_DEMOD(state, MODCODLST5, 0xff) < 0) |
| 3802 | goto err; |
| 3803 | if (STV090x_WRITE_DEMOD(state, MODCODLST6, 0xff) < 0) |
| 3804 | goto err; |
| 3805 | |
| 3806 | if (STV090x_WRITE_DEMOD(state, MODCODLST7, 0xcc) < 0) |
| 3807 | goto err; |
| 3808 | if (STV090x_WRITE_DEMOD(state, MODCODLST8, 0xcc) < 0) |
| 3809 | goto err; |
| 3810 | if (STV090x_WRITE_DEMOD(state, MODCODLST9, 0xcc) < 0) |
| 3811 | goto err; |
| 3812 | if (STV090x_WRITE_DEMOD(state, MODCODLSTA, 0xcc) < 0) |
| 3813 | goto err; |
| 3814 | if (STV090x_WRITE_DEMOD(state, MODCODLSTB, 0xcc) < 0) |
| 3815 | goto err; |
| 3816 | if (STV090x_WRITE_DEMOD(state, MODCODLSTC, 0xcc) < 0) |
| 3817 | goto err; |
| 3818 | if (STV090x_WRITE_DEMOD(state, MODCODLSTD, 0xcc) < 0) |
| 3819 | goto err; |
| 3820 | |
| 3821 | if (STV090x_WRITE_DEMOD(state, MODCODLSTE, 0xff) < 0) |
| 3822 | goto err; |
| 3823 | if (STV090x_WRITE_DEMOD(state, MODCODLSTF, 0xcf) < 0) |
| 3824 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3825 | } |
| 3826 | break; |
| 3827 | |
| 3828 | case STV090x_SINGLE: |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 3829 | if (stv090x_stop_modcod(state) < 0) |
| 3830 | goto err; |
| 3831 | if (stv090x_activate_modcod_single(state) < 0) |
| 3832 | goto err; |
| 3833 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3834 | if (state->demod == STV090x_DEMODULATOR_1) { |
| 3835 | if (stv090x_write_reg(state, STV090x_GENCFG, 0x06) < 0) /* path 2 */ |
| 3836 | goto err; |
| 3837 | } else { |
| 3838 | if (stv090x_write_reg(state, STV090x_GENCFG, 0x04) < 0) /* path 1 */ |
| 3839 | goto err; |
| 3840 | } |
| 3841 | |
| 3842 | reg = stv090x_read_reg(state, STV090x_TSTRES0); |
| 3843 | STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x1); |
| 3844 | if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0) |
| 3845 | goto err; |
| 3846 | STV090x_SETFIELD(reg, FRESFEC_FIELD, 0x0); |
| 3847 | if (stv090x_write_reg(state, STV090x_TSTRES0, reg) < 0) |
| 3848 | goto err; |
| 3849 | |
| 3850 | reg = STV090x_READ_DEMOD(state, PDELCTRL1); |
| 3851 | STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0x01); |
| 3852 | if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0) |
| 3853 | goto err; |
| 3854 | STV090x_SETFIELD_Px(reg, ALGOSWRST_FIELD, 0x00); |
| 3855 | if (STV090x_WRITE_DEMOD(state, PDELCTRL1, reg) < 0) |
| 3856 | goto err; |
| 3857 | break; |
| 3858 | } |
| 3859 | |
| 3860 | return 0; |
| 3861 | err: |
| 3862 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3863 | return -1; |
| 3864 | } |
| 3865 | |
| 3866 | /* return (Hz), clk in Hz*/ |
| 3867 | static u32 stv090x_get_mclk(struct stv090x_state *state) |
| 3868 | { |
| 3869 | const struct stv090x_config *config = state->config; |
| 3870 | u32 div, reg; |
| 3871 | u8 ratio; |
| 3872 | |
| 3873 | div = stv090x_read_reg(state, STV090x_NCOARSE); |
| 3874 | reg = stv090x_read_reg(state, STV090x_SYNTCTRL); |
| 3875 | ratio = STV090x_GETFIELD(reg, SELX1RATIO_FIELD) ? 4 : 6; |
| 3876 | |
| 3877 | return (div + 1) * config->xtal / ratio; /* kHz */ |
| 3878 | } |
| 3879 | |
| 3880 | static int stv090x_set_mclk(struct stv090x_state *state, u32 mclk, u32 clk) |
| 3881 | { |
| 3882 | const struct stv090x_config *config = state->config; |
| 3883 | u32 reg, div, clk_sel; |
| 3884 | |
| 3885 | reg = stv090x_read_reg(state, STV090x_SYNTCTRL); |
| 3886 | clk_sel = ((STV090x_GETFIELD(reg, SELX1RATIO_FIELD) == 1) ? 4 : 6); |
| 3887 | |
| 3888 | div = ((clk_sel * mclk) / config->xtal) - 1; |
| 3889 | |
| 3890 | reg = stv090x_read_reg(state, STV090x_NCOARSE); |
| 3891 | STV090x_SETFIELD(reg, M_DIV_FIELD, div); |
| 3892 | if (stv090x_write_reg(state, STV090x_NCOARSE, reg) < 0) |
| 3893 | goto err; |
| 3894 | |
| 3895 | state->mclk = stv090x_get_mclk(state); |
| 3896 | |
Manu Abraham | 94a8091 | 2009-04-08 19:45:43 -0300 | [diff] [blame] | 3897 | /*Set the DiseqC frequency to 22KHz */ |
| 3898 | div = state->mclk / 704000; |
| 3899 | if (STV090x_WRITE_DEMOD(state, F22TX, div) < 0) |
| 3900 | goto err; |
| 3901 | if (STV090x_WRITE_DEMOD(state, F22RX, div) < 0) |
| 3902 | goto err; |
| 3903 | |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3904 | return 0; |
| 3905 | err: |
| 3906 | dprintk(FE_ERROR, 1, "I/O error"); |
| 3907 | return -1; |
| 3908 | } |
| 3909 | |
| 3910 | static int stv090x_set_tspath(struct stv090x_state *state) |
| 3911 | { |
| 3912 | u32 reg; |
| 3913 | |
| 3914 | if (state->dev_ver >= 0x20) { |
| 3915 | switch (state->config->ts1_mode) { |
| 3916 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
| 3917 | case STV090x_TSMODE_DVBCI: |
| 3918 | switch (state->config->ts2_mode) { |
| 3919 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
| 3920 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
| 3921 | default: |
| 3922 | stv090x_write_reg(state, STV090x_TSGENERAL, 0x00); |
| 3923 | break; |
| 3924 | |
| 3925 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
| 3926 | case STV090x_TSMODE_DVBCI: |
| 3927 | if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x06) < 0) /* Mux'd stream mode */ |
| 3928 | goto err; |
| 3929 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGM); |
| 3930 | STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 3); |
| 3931 | if (stv090x_write_reg(state, STV090x_P1_TSCFGM, reg) < 0) |
| 3932 | goto err; |
| 3933 | reg = stv090x_read_reg(state, STV090x_P2_TSCFGM); |
| 3934 | STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 3); |
| 3935 | if (stv090x_write_reg(state, STV090x_P2_TSCFGM, reg) < 0) |
| 3936 | goto err; |
| 3937 | if (stv090x_write_reg(state, STV090x_P1_TSSPEED, 0x14) < 0) |
| 3938 | goto err; |
| 3939 | if (stv090x_write_reg(state, STV090x_P2_TSSPEED, 0x28) < 0) |
| 3940 | goto err; |
| 3941 | break; |
| 3942 | } |
| 3943 | break; |
| 3944 | |
| 3945 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
| 3946 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
| 3947 | default: |
| 3948 | switch (state->config->ts2_mode) { |
| 3949 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
| 3950 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
| 3951 | default: |
| 3952 | if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x0c) < 0) |
| 3953 | goto err; |
| 3954 | break; |
| 3955 | |
| 3956 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
| 3957 | case STV090x_TSMODE_DVBCI: |
| 3958 | if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x0a) < 0) |
| 3959 | goto err; |
| 3960 | break; |
| 3961 | } |
| 3962 | break; |
| 3963 | } |
| 3964 | } else { |
| 3965 | switch (state->config->ts1_mode) { |
| 3966 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
| 3967 | case STV090x_TSMODE_DVBCI: |
| 3968 | switch (state->config->ts2_mode) { |
| 3969 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
| 3970 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
| 3971 | default: |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 3972 | stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x10); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3973 | break; |
| 3974 | |
| 3975 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
| 3976 | case STV090x_TSMODE_DVBCI: |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 3977 | stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x16); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 3978 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGM); |
| 3979 | STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 3); |
| 3980 | if (stv090x_write_reg(state, STV090x_P1_TSCFGM, reg) < 0) |
| 3981 | goto err; |
| 3982 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGM); |
| 3983 | STV090x_SETFIELD_Px(reg, TSFIFO_MANSPEED_FIELD, 0); |
| 3984 | if (stv090x_write_reg(state, STV090x_P1_TSCFGM, reg) < 0) |
| 3985 | goto err; |
| 3986 | if (stv090x_write_reg(state, STV090x_P1_TSSPEED, 0x14) < 0) |
| 3987 | goto err; |
| 3988 | if (stv090x_write_reg(state, STV090x_P2_TSSPEED, 0x28) < 0) |
| 3989 | goto err; |
| 3990 | break; |
| 3991 | } |
| 3992 | break; |
| 3993 | |
| 3994 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
| 3995 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
| 3996 | default: |
| 3997 | switch (state->config->ts2_mode) { |
| 3998 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
| 3999 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
| 4000 | default: |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 4001 | stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x14); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4002 | break; |
| 4003 | |
| 4004 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
| 4005 | case STV090x_TSMODE_DVBCI: |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 4006 | stv090x_write_reg(state, STV090x_TSGENERAL1X, 0x12); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4007 | break; |
| 4008 | } |
| 4009 | break; |
| 4010 | } |
| 4011 | } |
| 4012 | |
| 4013 | switch (state->config->ts1_mode) { |
| 4014 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
| 4015 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGH); |
| 4016 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00); |
| 4017 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00); |
| 4018 | if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0) |
| 4019 | goto err; |
| 4020 | break; |
| 4021 | |
| 4022 | case STV090x_TSMODE_DVBCI: |
| 4023 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGH); |
| 4024 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00); |
| 4025 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01); |
| 4026 | if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0) |
| 4027 | goto err; |
| 4028 | break; |
| 4029 | |
| 4030 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
| 4031 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGH); |
| 4032 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01); |
| 4033 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00); |
| 4034 | if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0) |
| 4035 | goto err; |
| 4036 | break; |
| 4037 | |
| 4038 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
| 4039 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGH); |
| 4040 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01); |
| 4041 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01); |
| 4042 | if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0) |
| 4043 | goto err; |
| 4044 | break; |
| 4045 | |
| 4046 | default: |
| 4047 | break; |
| 4048 | } |
| 4049 | |
| 4050 | switch (state->config->ts2_mode) { |
| 4051 | case STV090x_TSMODE_PARALLEL_PUNCTURED: |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4052 | reg = stv090x_read_reg(state, STV090x_P2_TSCFGH); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4053 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00); |
| 4054 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00); |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4055 | if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4056 | goto err; |
| 4057 | break; |
| 4058 | |
| 4059 | case STV090x_TSMODE_DVBCI: |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4060 | reg = stv090x_read_reg(state, STV090x_P2_TSCFGH); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4061 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x00); |
| 4062 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01); |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4063 | if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4064 | goto err; |
| 4065 | break; |
| 4066 | |
| 4067 | case STV090x_TSMODE_SERIAL_PUNCTURED: |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4068 | reg = stv090x_read_reg(state, STV090x_P2_TSCFGH); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4069 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01); |
| 4070 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x00); |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4071 | if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4072 | goto err; |
| 4073 | break; |
| 4074 | |
| 4075 | case STV090x_TSMODE_SERIAL_CONTINUOUS: |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4076 | reg = stv090x_read_reg(state, STV090x_P2_TSCFGH); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4077 | STV090x_SETFIELD_Px(reg, TSFIFO_SERIAL_FIELD, 0x01); |
| 4078 | STV090x_SETFIELD_Px(reg, TSFIFO_DVBCI_FIELD, 0x01); |
Andreas Regel | 64104dc | 2009-04-16 08:43:41 -0300 | [diff] [blame] | 4079 | if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0) |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4080 | goto err; |
| 4081 | break; |
| 4082 | |
| 4083 | default: |
| 4084 | break; |
| 4085 | } |
| 4086 | reg = stv090x_read_reg(state, STV090x_P2_TSCFGH); |
| 4087 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x01); |
| 4088 | if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0) |
| 4089 | goto err; |
| 4090 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x00); |
| 4091 | if (stv090x_write_reg(state, STV090x_P2_TSCFGH, reg) < 0) |
| 4092 | goto err; |
| 4093 | |
| 4094 | reg = stv090x_read_reg(state, STV090x_P1_TSCFGH); |
| 4095 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x01); |
| 4096 | if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0) |
| 4097 | goto err; |
| 4098 | STV090x_SETFIELD_Px(reg, RST_HWARE_FIELD, 0x00); |
| 4099 | if (stv090x_write_reg(state, STV090x_P1_TSCFGH, reg) < 0) |
| 4100 | goto err; |
| 4101 | |
| 4102 | return 0; |
| 4103 | err: |
| 4104 | dprintk(FE_ERROR, 1, "I/O error"); |
| 4105 | return -1; |
| 4106 | } |
| 4107 | |
| 4108 | static int stv090x_init(struct dvb_frontend *fe) |
| 4109 | { |
| 4110 | struct stv090x_state *state = fe->demodulator_priv; |
| 4111 | const struct stv090x_config *config = state->config; |
| 4112 | u32 reg; |
| 4113 | |
Andreas Regel | cbc320d | 2009-04-23 14:59:03 -0300 | [diff] [blame] | 4114 | if (stv090x_wakeup(fe) < 0) { |
| 4115 | dprintk(FE_ERROR, 1, "Error waking device"); |
| 4116 | goto err; |
| 4117 | } |
| 4118 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 4119 | if (stv090x_ldpc_mode(state, state->demod_mode) < 0) |
| 4120 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4121 | |
| 4122 | reg = STV090x_READ_DEMOD(state, TNRCFG2); |
| 4123 | STV090x_SETFIELD_Px(reg, TUN_IQSWAP_FIELD, state->inversion); |
| 4124 | if (STV090x_WRITE_DEMOD(state, TNRCFG2, reg) < 0) |
| 4125 | goto err; |
| 4126 | reg = STV090x_READ_DEMOD(state, DEMOD); |
| 4127 | STV090x_SETFIELD_Px(reg, ROLLOFF_CONTROL_FIELD, state->rolloff); |
| 4128 | if (STV090x_WRITE_DEMOD(state, DEMOD, reg) < 0) |
| 4129 | goto err; |
| 4130 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 4131 | if (stv090x_i2c_gate_ctrl(fe, 1) < 0) |
| 4132 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4133 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 4134 | if (config->tuner_set_mode) { |
| 4135 | if (config->tuner_set_mode(fe, TUNER_WAKE) < 0) |
| 4136 | goto err; |
| 4137 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4138 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 4139 | if (config->tuner_init) { |
| 4140 | if (config->tuner_init(fe) < 0) |
| 4141 | goto err; |
| 4142 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4143 | |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 4144 | if (stv090x_i2c_gate_ctrl(fe, 0) < 0) |
| 4145 | goto err; |
| 4146 | |
| 4147 | if (stv090x_set_tspath(state) < 0) |
| 4148 | goto err; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4149 | |
| 4150 | return 0; |
| 4151 | err: |
| 4152 | dprintk(FE_ERROR, 1, "I/O error"); |
| 4153 | return -1; |
| 4154 | } |
| 4155 | |
| 4156 | static int stv090x_setup(struct dvb_frontend *fe) |
| 4157 | { |
| 4158 | struct stv090x_state *state = fe->demodulator_priv; |
| 4159 | const struct stv090x_config *config = state->config; |
| 4160 | const struct stv090x_reg *stv090x_initval = NULL; |
| 4161 | const struct stv090x_reg *stv090x_cut20_val = NULL; |
| 4162 | unsigned long t1_size = 0, t2_size = 0; |
Manu Abraham | 017eb038 | 2009-04-07 05:19:54 -0300 | [diff] [blame] | 4163 | u32 reg = 0; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4164 | |
| 4165 | int i; |
| 4166 | |
| 4167 | if (state->device == STV0900) { |
| 4168 | dprintk(FE_DEBUG, 1, "Initializing STV0900"); |
| 4169 | stv090x_initval = stv0900_initval; |
| 4170 | t1_size = ARRAY_SIZE(stv0900_initval); |
| 4171 | stv090x_cut20_val = stv0900_cut20_val; |
| 4172 | t2_size = ARRAY_SIZE(stv0900_cut20_val); |
| 4173 | } else if (state->device == STV0903) { |
| 4174 | dprintk(FE_DEBUG, 1, "Initializing STV0903"); |
| 4175 | stv090x_initval = stv0903_initval; |
| 4176 | t1_size = ARRAY_SIZE(stv0903_initval); |
| 4177 | stv090x_cut20_val = stv0903_cut20_val; |
| 4178 | t2_size = ARRAY_SIZE(stv0903_cut20_val); |
| 4179 | } |
| 4180 | |
| 4181 | /* STV090x init */ |
| 4182 | if (STV090x_WRITE_DEMOD(state, DMDISTATE, 0x5c) < 0) /* Stop Demod */ |
| 4183 | goto err; |
| 4184 | |
| 4185 | msleep(5); |
| 4186 | |
| 4187 | if (STV090x_WRITE_DEMOD(state, TNRCFG, 0x6c) < 0) /* check register ! (No Tuner Mode) */ |
| 4188 | goto err; |
| 4189 | |
Manu Abraham | 017eb038 | 2009-04-07 05:19:54 -0300 | [diff] [blame] | 4190 | STV090x_SETFIELD_Px(reg, ENARPT_LEVEL_FIELD, config->repeater_level); |
| 4191 | if (STV090x_WRITE_DEMOD(state, I2CRPT, reg) < 0) /* repeater OFF */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4192 | goto err; |
| 4193 | |
| 4194 | if (stv090x_write_reg(state, STV090x_NCOARSE, 0x13) < 0) /* set PLL divider */ |
| 4195 | goto err; |
| 4196 | msleep(5); |
| 4197 | if (stv090x_write_reg(state, STV090x_I2CCFG, 0x08) < 0) /* 1/41 oversampling */ |
| 4198 | goto err; |
| 4199 | if (stv090x_write_reg(state, STV090x_SYNTCTRL, 0x20 | config->clk_mode) < 0) /* enable PLL */ |
| 4200 | goto err; |
| 4201 | msleep(5); |
| 4202 | |
| 4203 | /* write initval */ |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 4204 | dprintk(FE_DEBUG, 1, "Setting up initial values"); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4205 | for (i = 0; i < t1_size; i++) { |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4206 | if (stv090x_write_reg(state, stv090x_initval[i].addr, stv090x_initval[i].data) < 0) |
| 4207 | goto err; |
| 4208 | } |
| 4209 | |
Andreas Regel | 2f5914b | 2009-04-23 14:56:41 -0300 | [diff] [blame] | 4210 | state->dev_ver = stv090x_read_reg(state, STV090x_MID); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4211 | if (state->dev_ver >= 0x20) { |
| 4212 | if (stv090x_write_reg(state, STV090x_TSGENERAL, 0x0c) < 0) |
| 4213 | goto err; |
| 4214 | |
| 4215 | /* write cut20_val*/ |
| 4216 | dprintk(FE_DEBUG, 1, "Setting up Cut 2.0 initial values"); |
| 4217 | for (i = 0; i < t2_size; i++) { |
| 4218 | if (stv090x_write_reg(state, stv090x_cut20_val[i].addr, stv090x_cut20_val[i].data) < 0) |
| 4219 | goto err; |
| 4220 | } |
Manu Abraham | 27d4032 | 2009-05-02 18:26:58 -0300 | [diff] [blame] | 4221 | |
| 4222 | } else if (state->dev_ver < 0x20) { |
| 4223 | dprintk(FE_ERROR, 1, "ERROR: Unsupported Cut: 0x%02x!", |
| 4224 | state->dev_ver); |
| 4225 | |
| 4226 | goto err; |
| 4227 | } else if (state->dev_ver > 0x30) { |
| 4228 | /* we shouldn't bail out from here */ |
| 4229 | dprintk(FE_ERROR, 1, "INFO: Cut: 0x%02x probably incomplete support!", |
| 4230 | state->dev_ver); |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4231 | } |
| 4232 | |
| 4233 | if (stv090x_write_reg(state, STV090x_TSTRES0, 0x80) < 0) |
| 4234 | goto err; |
| 4235 | if (stv090x_write_reg(state, STV090x_TSTRES0, 0x00) < 0) |
| 4236 | goto err; |
| 4237 | |
| 4238 | stv090x_set_mclk(state, 135000000, config->xtal); /* 135 Mhz */ |
| 4239 | msleep(5); |
| 4240 | if (stv090x_write_reg(state, STV090x_SYNTCTRL, 0x20 | config->clk_mode) < 0) |
| 4241 | goto err; |
| 4242 | stv090x_get_mclk(state); |
| 4243 | |
| 4244 | return 0; |
| 4245 | err: |
| 4246 | dprintk(FE_ERROR, 1, "I/O error"); |
| 4247 | return -1; |
| 4248 | } |
| 4249 | |
| 4250 | static struct dvb_frontend_ops stv090x_ops = { |
| 4251 | |
| 4252 | .info = { |
| 4253 | .name = "STV090x Multistandard", |
Andreas Regel | 7fc08bb | 2009-04-23 15:00:40 -0300 | [diff] [blame] | 4254 | .type = FE_QPSK, |
| 4255 | .frequency_min = 950000, |
| 4256 | .frequency_max = 2150000, |
| 4257 | .frequency_stepsize = 0, |
| 4258 | .frequency_tolerance = 0, |
| 4259 | .symbol_rate_min = 1000000, |
| 4260 | .symbol_rate_max = 45000000, |
| 4261 | .caps = FE_CAN_INVERSION_AUTO | |
| 4262 | FE_CAN_FEC_AUTO | |
| 4263 | FE_CAN_QPSK | |
| 4264 | FE_CAN_2G_MODULATION |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4265 | }, |
| 4266 | |
| 4267 | .release = stv090x_release, |
| 4268 | .init = stv090x_init, |
| 4269 | |
| 4270 | .sleep = stv090x_sleep, |
| 4271 | .get_frontend_algo = stv090x_frontend_algo, |
| 4272 | |
| 4273 | .i2c_gate_ctrl = stv090x_i2c_gate_ctrl, |
| 4274 | |
| 4275 | .diseqc_send_master_cmd = stv090x_send_diseqc_msg, |
Andreas Regel | f9ed95d | 2009-04-08 17:27:51 -0300 | [diff] [blame] | 4276 | .diseqc_send_burst = stv090x_send_diseqc_burst, |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4277 | .diseqc_recv_slave_reply = stv090x_recv_slave_reply, |
| 4278 | .set_tone = stv090x_set_tone, |
| 4279 | |
| 4280 | .search = stv090x_search, |
| 4281 | .read_status = stv090x_read_status, |
| 4282 | .read_ber = stv090x_read_per, |
| 4283 | .read_signal_strength = stv090x_read_signal_strength, |
| 4284 | .read_snr = stv090x_read_cnr |
| 4285 | }; |
| 4286 | |
| 4287 | |
| 4288 | struct dvb_frontend *stv090x_attach(const struct stv090x_config *config, |
| 4289 | struct i2c_adapter *i2c, |
| 4290 | enum stv090x_demodulator demod) |
| 4291 | { |
| 4292 | struct stv090x_state *state = NULL; |
| 4293 | |
| 4294 | state = kzalloc(sizeof (struct stv090x_state), GFP_KERNEL); |
| 4295 | if (state == NULL) |
| 4296 | goto error; |
| 4297 | |
| 4298 | state->verbose = &verbose; |
| 4299 | state->config = config; |
| 4300 | state->i2c = i2c; |
| 4301 | state->frontend.ops = stv090x_ops; |
| 4302 | state->frontend.demodulator_priv = state; |
Manu Abraham | 5657150 | 2009-04-07 16:08:26 -0300 | [diff] [blame] | 4303 | state->demod = demod; |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4304 | state->demod_mode = config->demod_mode; /* Single or Dual mode */ |
| 4305 | state->device = config->device; |
Andreas Regel | 4e58a68 | 2009-04-16 08:40:36 -0300 | [diff] [blame] | 4306 | state->rolloff = STV090x_RO_35; /* default */ |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4307 | |
| 4308 | if (state->demod == STV090x_DEMODULATOR_0) |
| 4309 | mutex_init(&demod_lock); |
| 4310 | |
| 4311 | if (stv090x_sleep(&state->frontend) < 0) { |
| 4312 | dprintk(FE_ERROR, 1, "Error putting device to sleep"); |
| 4313 | goto error; |
| 4314 | } |
| 4315 | |
| 4316 | if (stv090x_setup(&state->frontend) < 0) { |
| 4317 | dprintk(FE_ERROR, 1, "Error setting up device"); |
| 4318 | goto error; |
| 4319 | } |
| 4320 | if (stv090x_wakeup(&state->frontend) < 0) { |
| 4321 | dprintk(FE_ERROR, 1, "Error waking device"); |
| 4322 | goto error; |
| 4323 | } |
Manu Abraham | e415c68 | 2009-04-06 15:45:20 -0300 | [diff] [blame] | 4324 | |
| 4325 | dprintk(FE_ERROR, 1, "Attaching %s demodulator(%d) Cut=0x%02x\n", |
| 4326 | state->device == STV0900 ? "STV0900" : "STV0903", |
| 4327 | demod, |
| 4328 | state->dev_ver); |
| 4329 | |
| 4330 | return &state->frontend; |
| 4331 | |
| 4332 | error: |
| 4333 | kfree(state); |
| 4334 | return NULL; |
| 4335 | } |
| 4336 | EXPORT_SYMBOL(stv090x_attach); |
| 4337 | MODULE_PARM_DESC(verbose, "Set Verbosity level"); |
| 4338 | MODULE_AUTHOR("Manu Abraham"); |
| 4339 | MODULE_DESCRIPTION("STV090x Multi-Std Broadcast frontend"); |
| 4340 | MODULE_LICENSE("GPL"); |