Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1 | /* |
| 2 | * drxk_hard: DRX-K DVB-C/T demodulator driver |
| 3 | * |
| 4 | * Copyright (C) 2010-2011 Digital Devices GmbH |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * version 2 only, as published by the Free Software Foundation. |
| 9 | * |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 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., 51 Franklin Street, Fifth Floor, Boston, MA |
| 20 | * 02110-1301, USA |
| 21 | * Or, point your browser to http://www.gnu.org/copyleft/gpl.html |
| 22 | */ |
| 23 | |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/moduleparam.h> |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/delay.h> |
| 29 | #include <linux/firmware.h> |
| 30 | #include <linux/i2c.h> |
| 31 | #include <linux/version.h> |
| 32 | #include <asm/div64.h> |
| 33 | |
| 34 | #include "dvb_frontend.h" |
| 35 | #include "drxk.h" |
| 36 | #include "drxk_hard.h" |
| 37 | |
| 38 | static int PowerDownDVBT(struct drxk_state *state, bool setPowerMode); |
| 39 | static int PowerDownQAM(struct drxk_state *state); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 40 | static int SetDVBTStandard(struct drxk_state *state, |
| 41 | enum OperationMode oMode); |
| 42 | static int SetQAMStandard(struct drxk_state *state, |
| 43 | enum OperationMode oMode); |
| 44 | static int SetQAM(struct drxk_state *state, u16 IntermediateFreqkHz, |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 45 | s32 tunerFreqOffset); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 46 | static int SetDVBTStandard(struct drxk_state *state, |
| 47 | enum OperationMode oMode); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 48 | static int DVBTStart(struct drxk_state *state); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 49 | static int SetDVBT(struct drxk_state *state, u16 IntermediateFreqkHz, |
| 50 | s32 tunerFreqOffset); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 51 | static int GetQAMLockStatus(struct drxk_state *state, u32 *pLockStatus); |
| 52 | static int GetDVBTLockStatus(struct drxk_state *state, u32 *pLockStatus); |
| 53 | static int SwitchAntennaToQAM(struct drxk_state *state); |
| 54 | static int SwitchAntennaToDVBT(struct drxk_state *state); |
| 55 | |
| 56 | static bool IsDVBT(struct drxk_state *state) |
| 57 | { |
| 58 | return state->m_OperationMode == OM_DVBT; |
| 59 | } |
| 60 | |
| 61 | static bool IsQAM(struct drxk_state *state) |
| 62 | { |
| 63 | return state->m_OperationMode == OM_QAM_ITU_A || |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 64 | state->m_OperationMode == OM_QAM_ITU_B || |
| 65 | state->m_OperationMode == OM_QAM_ITU_C; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | bool IsA1WithPatchCode(struct drxk_state *state) |
| 69 | { |
| 70 | return state->m_DRXK_A1_PATCH_CODE; |
| 71 | } |
| 72 | |
| 73 | bool IsA1WithRomCode(struct drxk_state *state) |
| 74 | { |
| 75 | return state->m_DRXK_A1_ROM_CODE; |
| 76 | } |
| 77 | |
| 78 | #define NOA1ROM 0 |
| 79 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 80 | #define DRXDAP_FASI_SHORT_FORMAT(addr) (((addr) & 0xFC30FF80) == 0) |
| 81 | #define DRXDAP_FASI_LONG_FORMAT(addr) (((addr) & 0xFC30FF80) != 0) |
| 82 | |
| 83 | #define DEFAULT_MER_83 165 |
| 84 | #define DEFAULT_MER_93 250 |
| 85 | |
| 86 | #ifndef DRXK_MPEG_SERIAL_OUTPUT_PIN_DRIVE_STRENGTH |
| 87 | #define DRXK_MPEG_SERIAL_OUTPUT_PIN_DRIVE_STRENGTH (0x02) |
| 88 | #endif |
| 89 | |
| 90 | #ifndef DRXK_MPEG_PARALLEL_OUTPUT_PIN_DRIVE_STRENGTH |
| 91 | #define DRXK_MPEG_PARALLEL_OUTPUT_PIN_DRIVE_STRENGTH (0x03) |
| 92 | #endif |
| 93 | |
| 94 | #ifndef DRXK_MPEG_OUTPUT_CLK_DRIVE_STRENGTH |
| 95 | #define DRXK_MPEG_OUTPUT_CLK_DRIVE_STRENGTH (0x06) |
| 96 | #endif |
| 97 | |
| 98 | #define DEFAULT_DRXK_MPEG_LOCK_TIMEOUT 700 |
| 99 | #define DEFAULT_DRXK_DEMOD_LOCK_TIMEOUT 500 |
| 100 | |
| 101 | #ifndef DRXK_KI_RAGC_ATV |
| 102 | #define DRXK_KI_RAGC_ATV 4 |
| 103 | #endif |
| 104 | #ifndef DRXK_KI_IAGC_ATV |
| 105 | #define DRXK_KI_IAGC_ATV 6 |
| 106 | #endif |
| 107 | #ifndef DRXK_KI_DAGC_ATV |
| 108 | #define DRXK_KI_DAGC_ATV 7 |
| 109 | #endif |
| 110 | |
| 111 | #ifndef DRXK_KI_RAGC_QAM |
| 112 | #define DRXK_KI_RAGC_QAM 3 |
| 113 | #endif |
| 114 | #ifndef DRXK_KI_IAGC_QAM |
| 115 | #define DRXK_KI_IAGC_QAM 4 |
| 116 | #endif |
| 117 | #ifndef DRXK_KI_DAGC_QAM |
| 118 | #define DRXK_KI_DAGC_QAM 7 |
| 119 | #endif |
| 120 | #ifndef DRXK_KI_RAGC_DVBT |
| 121 | #define DRXK_KI_RAGC_DVBT (IsA1WithPatchCode(state) ? 3 : 2) |
| 122 | #endif |
| 123 | #ifndef DRXK_KI_IAGC_DVBT |
| 124 | #define DRXK_KI_IAGC_DVBT (IsA1WithPatchCode(state) ? 4 : 2) |
| 125 | #endif |
| 126 | #ifndef DRXK_KI_DAGC_DVBT |
| 127 | #define DRXK_KI_DAGC_DVBT (IsA1WithPatchCode(state) ? 10 : 7) |
| 128 | #endif |
| 129 | |
| 130 | #ifndef DRXK_AGC_DAC_OFFSET |
| 131 | #define DRXK_AGC_DAC_OFFSET (0x800) |
| 132 | #endif |
| 133 | |
| 134 | #ifndef DRXK_BANDWIDTH_8MHZ_IN_HZ |
| 135 | #define DRXK_BANDWIDTH_8MHZ_IN_HZ (0x8B8249L) |
| 136 | #endif |
| 137 | |
| 138 | #ifndef DRXK_BANDWIDTH_7MHZ_IN_HZ |
| 139 | #define DRXK_BANDWIDTH_7MHZ_IN_HZ (0x7A1200L) |
| 140 | #endif |
| 141 | |
| 142 | #ifndef DRXK_BANDWIDTH_6MHZ_IN_HZ |
| 143 | #define DRXK_BANDWIDTH_6MHZ_IN_HZ (0x68A1B6L) |
| 144 | #endif |
| 145 | |
| 146 | #ifndef DRXK_QAM_SYMBOLRATE_MAX |
| 147 | #define DRXK_QAM_SYMBOLRATE_MAX (7233000) |
| 148 | #endif |
| 149 | |
| 150 | #define DRXK_BL_ROM_OFFSET_TAPS_DVBT 56 |
| 151 | #define DRXK_BL_ROM_OFFSET_TAPS_ITU_A 64 |
| 152 | #define DRXK_BL_ROM_OFFSET_TAPS_ITU_C 0x5FE0 |
| 153 | #define DRXK_BL_ROM_OFFSET_TAPS_BG 24 |
| 154 | #define DRXK_BL_ROM_OFFSET_TAPS_DKILLP 32 |
| 155 | #define DRXK_BL_ROM_OFFSET_TAPS_NTSC 40 |
| 156 | #define DRXK_BL_ROM_OFFSET_TAPS_FM 48 |
| 157 | #define DRXK_BL_ROM_OFFSET_UCODE 0 |
| 158 | |
| 159 | #define DRXK_BLC_TIMEOUT 100 |
| 160 | |
| 161 | #define DRXK_BLCC_NR_ELEMENTS_TAPS 2 |
| 162 | #define DRXK_BLCC_NR_ELEMENTS_UCODE 6 |
| 163 | |
| 164 | #define DRXK_BLDC_NR_ELEMENTS_TAPS 28 |
| 165 | |
| 166 | #ifndef DRXK_OFDM_NE_NOTCH_WIDTH |
| 167 | #define DRXK_OFDM_NE_NOTCH_WIDTH (4) |
| 168 | #endif |
| 169 | |
| 170 | #define DRXK_QAM_SL_SIG_POWER_QAM16 (40960) |
| 171 | #define DRXK_QAM_SL_SIG_POWER_QAM32 (20480) |
| 172 | #define DRXK_QAM_SL_SIG_POWER_QAM64 (43008) |
| 173 | #define DRXK_QAM_SL_SIG_POWER_QAM128 (20992) |
| 174 | #define DRXK_QAM_SL_SIG_POWER_QAM256 (43520) |
| 175 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 176 | static unsigned int debug; |
| 177 | module_param(debug, int, 0644); |
| 178 | MODULE_PARM_DESC(debug, "enable debug messages"); |
| 179 | |
| 180 | #define dprintk(level, fmt, arg...) do { \ |
| 181 | if (debug >= level) \ |
| 182 | printk(KERN_DEBUG "drxk: %s" fmt, __func__, ## arg); \ |
| 183 | } while (0) |
| 184 | |
| 185 | |
Mauro Carvalho Chehab | b01fbc1 | 2011-07-03 17:18:57 -0300 | [diff] [blame] | 186 | static inline u32 MulDiv32(u32 a, u32 b, u32 c) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 187 | { |
| 188 | u64 tmp64; |
| 189 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 190 | tmp64 = (u64) a * (u64) b; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 191 | do_div(tmp64, c); |
| 192 | |
| 193 | return (u32) tmp64; |
| 194 | } |
| 195 | |
| 196 | inline u32 Frac28a(u32 a, u32 c) |
| 197 | { |
| 198 | int i = 0; |
| 199 | u32 Q1 = 0; |
| 200 | u32 R0 = 0; |
| 201 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 202 | R0 = (a % c) << 4; /* 32-28 == 4 shifts possible at max */ |
| 203 | Q1 = a / c; /* integer part, only the 4 least significant bits |
| 204 | will be visible in the result */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 205 | |
| 206 | /* division using radix 16, 7 nibbles in the result */ |
| 207 | for (i = 0; i < 7; i++) { |
| 208 | Q1 = (Q1 << 4) | (R0 / c); |
| 209 | R0 = (R0 % c) << 4; |
| 210 | } |
| 211 | /* rounding */ |
| 212 | if ((R0 >> 3) >= c) |
| 213 | Q1++; |
| 214 | |
| 215 | return Q1; |
| 216 | } |
| 217 | |
| 218 | static u32 Log10Times100(u32 x) |
| 219 | { |
| 220 | static const u8 scale = 15; |
| 221 | static const u8 indexWidth = 5; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 222 | u8 i = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 223 | u32 y = 0; |
| 224 | u32 d = 0; |
| 225 | u32 k = 0; |
| 226 | u32 r = 0; |
| 227 | /* |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 228 | log2lut[n] = (1<<scale) * 200 * log2(1.0 + ((1.0/(1<<INDEXWIDTH)) * n)) |
| 229 | 0 <= n < ((1<<INDEXWIDTH)+1) |
| 230 | */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 231 | |
| 232 | static const u32 log2lut[] = { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 233 | 0, /* 0.000000 */ |
| 234 | 290941, /* 290941.300628 */ |
| 235 | 573196, /* 573196.476418 */ |
| 236 | 847269, /* 847269.179851 */ |
| 237 | 1113620, /* 1113620.489452 */ |
| 238 | 1372674, /* 1372673.576986 */ |
| 239 | 1624818, /* 1624817.752104 */ |
| 240 | 1870412, /* 1870411.981536 */ |
| 241 | 2109788, /* 2109787.962654 */ |
| 242 | 2343253, /* 2343252.817465 */ |
| 243 | 2571091, /* 2571091.461923 */ |
| 244 | 2793569, /* 2793568.696416 */ |
| 245 | 3010931, /* 3010931.055901 */ |
| 246 | 3223408, /* 3223408.452106 */ |
| 247 | 3431216, /* 3431215.635215 */ |
| 248 | 3634553, /* 3634553.498355 */ |
| 249 | 3833610, /* 3833610.244726 */ |
| 250 | 4028562, /* 4028562.434393 */ |
| 251 | 4219576, /* 4219575.925308 */ |
| 252 | 4406807, /* 4406806.721144 */ |
| 253 | 4590402, /* 4590401.736809 */ |
| 254 | 4770499, /* 4770499.491025 */ |
| 255 | 4947231, /* 4947230.734179 */ |
| 256 | 5120719, /* 5120719.018555 */ |
| 257 | 5291081, /* 5291081.217197 */ |
| 258 | 5458428, /* 5458427.996830 */ |
| 259 | 5622864, /* 5622864.249668 */ |
| 260 | 5784489, /* 5784489.488298 */ |
| 261 | 5943398, /* 5943398.207380 */ |
| 262 | 6099680, /* 6099680.215452 */ |
| 263 | 6253421, /* 6253420.939751 */ |
| 264 | 6404702, /* 6404701.706649 */ |
| 265 | 6553600, /* 6553600.000000 */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 266 | }; |
| 267 | |
| 268 | |
| 269 | if (x == 0) |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 270 | return 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 271 | |
| 272 | /* Scale x (normalize) */ |
| 273 | /* computing y in log(x/y) = log(x) - log(y) */ |
| 274 | if ((x & ((0xffffffff) << (scale + 1))) == 0) { |
| 275 | for (k = scale; k > 0; k--) { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 276 | if (x & (((u32) 1) << scale)) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 277 | break; |
| 278 | x <<= 1; |
| 279 | } |
| 280 | } else { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 281 | for (k = scale; k < 31; k++) { |
| 282 | if ((x & (((u32) (-1)) << (scale + 1))) == 0) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 283 | break; |
| 284 | x >>= 1; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 285 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 286 | } |
| 287 | /* |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 288 | Now x has binary point between bit[scale] and bit[scale-1] |
| 289 | and 1.0 <= x < 2.0 */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 290 | |
| 291 | /* correction for divison: log(x) = log(x/y)+log(y) */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 292 | y = k * ((((u32) 1) << scale) * 200); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 293 | |
| 294 | /* remove integer part */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 295 | x &= ((((u32) 1) << scale) - 1); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 296 | /* get index */ |
| 297 | i = (u8) (x >> (scale - indexWidth)); |
| 298 | /* compute delta (x - a) */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 299 | d = x & ((((u32) 1) << (scale - indexWidth)) - 1); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 300 | /* compute log, multiplication (d* (..)) must be within range ! */ |
| 301 | y += log2lut[i] + |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 302 | ((d * (log2lut[i + 1] - log2lut[i])) >> (scale - indexWidth)); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 303 | /* Conver to log10() */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 304 | y /= 108853; /* (log2(10) << scale) */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 305 | r = (y >> 1); |
| 306 | /* rounding */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 307 | if (y & ((u32) 1)) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 308 | r++; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 309 | return r; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | /****************************************************************************/ |
| 313 | /* I2C **********************************************************************/ |
| 314 | /****************************************************************************/ |
| 315 | |
| 316 | static int i2c_read1(struct i2c_adapter *adapter, u8 adr, u8 *val) |
| 317 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 318 | struct i2c_msg msgs[1] = { {.addr = adr, .flags = I2C_M_RD, |
| 319 | .buf = val, .len = 1} |
| 320 | }; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 321 | |
| 322 | return i2c_transfer(adapter, msgs, 1); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | static int i2c_write(struct i2c_adapter *adap, u8 adr, u8 *data, int len) |
| 326 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 327 | int status; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 328 | struct i2c_msg msg = { |
| 329 | .addr = adr, .flags = 0, .buf = data, .len = len }; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 330 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 331 | dprintk(3, ":"); |
| 332 | if (debug > 2) { |
| 333 | int i; |
| 334 | for (i = 0; i < len; i++) |
| 335 | printk(KERN_CONT " %02x", data[i]); |
| 336 | printk(KERN_CONT "\n"); |
| 337 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 338 | status = i2c_transfer(adap, &msg, 1); |
| 339 | if (status >= 0 && status != 1) |
| 340 | status = -EIO; |
| 341 | |
| 342 | if (status < 0) |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 343 | printk(KERN_ERR "drxk: i2c write error at addr 0x%02x\n", adr); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 344 | |
| 345 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | static int i2c_read(struct i2c_adapter *adap, |
| 349 | u8 adr, u8 *msg, int len, u8 *answ, int alen) |
| 350 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 351 | int status; |
Mauro Carvalho Chehab | e4f4f87 | 2011-07-09 17:35:26 -0300 | [diff] [blame] | 352 | struct i2c_msg msgs[2] = { |
| 353 | {.addr = adr, .flags = 0, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 354 | .buf = msg, .len = len}, |
Mauro Carvalho Chehab | e4f4f87 | 2011-07-09 17:35:26 -0300 | [diff] [blame] | 355 | {.addr = adr, .flags = I2C_M_RD, |
| 356 | .buf = answ, .len = alen} |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 357 | }; |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 358 | dprintk(3, ":"); |
| 359 | if (debug > 2) { |
| 360 | int i; |
| 361 | for (i = 0; i < len; i++) |
| 362 | printk(KERN_CONT " %02x", msg[i]); |
| 363 | printk(KERN_CONT "\n"); |
| 364 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 365 | status = i2c_transfer(adap, msgs, 2); |
| 366 | if (status != 2) { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 367 | if (debug > 2) |
| 368 | printk(KERN_CONT ": ERROR!\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 369 | if (status >= 0) |
| 370 | status = -EIO; |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 371 | |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 372 | printk(KERN_ERR "drxk: i2c read error at addr 0x%02x\n", adr); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 373 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 374 | } |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 375 | if (debug > 2) { |
| 376 | int i; |
| 377 | printk(KERN_CONT ": Read "); |
| 378 | for (i = 0; i < len; i++) |
| 379 | printk(KERN_CONT " %02x", msg[i]); |
| 380 | printk(KERN_CONT "\n"); |
| 381 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 382 | return 0; |
| 383 | } |
| 384 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 385 | static int read16_flags(struct drxk_state *state, u32 reg, u16 *data, u8 flags) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 386 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 387 | int status; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 388 | u8 adr = state->demod_address, mm1[4], mm2[2], len; |
Mauro Carvalho Chehab | e076c92 | 2011-07-09 13:06:12 -0300 | [diff] [blame] | 389 | |
| 390 | if (state->single_master) |
| 391 | flags |= 0xC0; |
| 392 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 393 | if (DRXDAP_FASI_LONG_FORMAT(reg) || (flags != 0)) { |
| 394 | mm1[0] = (((reg << 1) & 0xFF) | 0x01); |
| 395 | mm1[1] = ((reg >> 16) & 0xFF); |
| 396 | mm1[2] = ((reg >> 24) & 0xFF) | flags; |
| 397 | mm1[3] = ((reg >> 7) & 0xFF); |
| 398 | len = 4; |
| 399 | } else { |
| 400 | mm1[0] = ((reg << 1) & 0xFF); |
| 401 | mm1[1] = (((reg >> 16) & 0x0F) | ((reg >> 18) & 0xF0)); |
| 402 | len = 2; |
| 403 | } |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 404 | dprintk(2, "(0x%08x, 0x%02x)\n", reg, flags); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 405 | status = i2c_read(state->i2c, adr, mm1, len, mm2, 2); |
| 406 | if (status < 0) |
| 407 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 408 | if (data) |
| 409 | *data = mm2[0] | (mm2[1] << 8); |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 410 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 411 | return 0; |
| 412 | } |
| 413 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 414 | static int read16(struct drxk_state *state, u32 reg, u16 *data) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 415 | { |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 416 | return read16_flags(state, reg, data, 0); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 417 | } |
| 418 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 419 | static int read32_flags(struct drxk_state *state, u32 reg, u32 *data, u8 flags) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 420 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 421 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 422 | u8 adr = state->demod_address, mm1[4], mm2[4], len; |
Mauro Carvalho Chehab | e076c92 | 2011-07-09 13:06:12 -0300 | [diff] [blame] | 423 | |
| 424 | if (state->single_master) |
| 425 | flags |= 0xC0; |
| 426 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 427 | if (DRXDAP_FASI_LONG_FORMAT(reg) || (flags != 0)) { |
| 428 | mm1[0] = (((reg << 1) & 0xFF) | 0x01); |
| 429 | mm1[1] = ((reg >> 16) & 0xFF); |
| 430 | mm1[2] = ((reg >> 24) & 0xFF) | flags; |
| 431 | mm1[3] = ((reg >> 7) & 0xFF); |
| 432 | len = 4; |
| 433 | } else { |
| 434 | mm1[0] = ((reg << 1) & 0xFF); |
| 435 | mm1[1] = (((reg >> 16) & 0x0F) | ((reg >> 18) & 0xF0)); |
| 436 | len = 2; |
| 437 | } |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 438 | dprintk(2, "(0x%08x, 0x%02x)\n", reg, flags); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 439 | status = i2c_read(state->i2c, adr, mm1, len, mm2, 4); |
| 440 | if (status < 0) |
| 441 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 442 | if (data) |
| 443 | *data = mm2[0] | (mm2[1] << 8) | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 444 | (mm2[2] << 16) | (mm2[3] << 24); |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 445 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 446 | return 0; |
| 447 | } |
| 448 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 449 | static int read32(struct drxk_state *state, u32 reg, u32 *data) |
| 450 | { |
| 451 | return read32_flags(state, reg, data, 0); |
| 452 | } |
| 453 | |
| 454 | static int write16_flags(struct drxk_state *state, u32 reg, u16 data, u8 flags) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 455 | { |
| 456 | u8 adr = state->demod_address, mm[6], len; |
Mauro Carvalho Chehab | e076c92 | 2011-07-09 13:06:12 -0300 | [diff] [blame] | 457 | |
| 458 | if (state->single_master) |
| 459 | flags |= 0xC0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 460 | if (DRXDAP_FASI_LONG_FORMAT(reg) || (flags != 0)) { |
| 461 | mm[0] = (((reg << 1) & 0xFF) | 0x01); |
| 462 | mm[1] = ((reg >> 16) & 0xFF); |
| 463 | mm[2] = ((reg >> 24) & 0xFF) | flags; |
| 464 | mm[3] = ((reg >> 7) & 0xFF); |
| 465 | len = 4; |
| 466 | } else { |
| 467 | mm[0] = ((reg << 1) & 0xFF); |
| 468 | mm[1] = (((reg >> 16) & 0x0F) | ((reg >> 18) & 0xF0)); |
| 469 | len = 2; |
| 470 | } |
| 471 | mm[len] = data & 0xff; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 472 | mm[len + 1] = (data >> 8) & 0xff; |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 473 | |
| 474 | dprintk(2, "(0x%08x, 0x%04x, 0x%02x)\n", reg, data, flags); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 475 | return i2c_write(state->i2c, adr, mm, len + 2); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 476 | } |
| 477 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 478 | static int write16(struct drxk_state *state, u32 reg, u16 data) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 479 | { |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 480 | return write16_flags(state, reg, data, 0); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 481 | } |
| 482 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 483 | static int write32_flags(struct drxk_state *state, u32 reg, u32 data, u8 flags) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 484 | { |
| 485 | u8 adr = state->demod_address, mm[8], len; |
Mauro Carvalho Chehab | e076c92 | 2011-07-09 13:06:12 -0300 | [diff] [blame] | 486 | |
| 487 | if (state->single_master) |
| 488 | flags |= 0xC0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 489 | if (DRXDAP_FASI_LONG_FORMAT(reg) || (flags != 0)) { |
| 490 | mm[0] = (((reg << 1) & 0xFF) | 0x01); |
| 491 | mm[1] = ((reg >> 16) & 0xFF); |
| 492 | mm[2] = ((reg >> 24) & 0xFF) | flags; |
| 493 | mm[3] = ((reg >> 7) & 0xFF); |
| 494 | len = 4; |
| 495 | } else { |
| 496 | mm[0] = ((reg << 1) & 0xFF); |
| 497 | mm[1] = (((reg >> 16) & 0x0F) | ((reg >> 18) & 0xF0)); |
| 498 | len = 2; |
| 499 | } |
| 500 | mm[len] = data & 0xff; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 501 | mm[len + 1] = (data >> 8) & 0xff; |
| 502 | mm[len + 2] = (data >> 16) & 0xff; |
| 503 | mm[len + 3] = (data >> 24) & 0xff; |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 504 | dprintk(2, "(0x%08x, 0x%08x, 0x%02x)\n", reg, data, flags); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 505 | |
| 506 | return i2c_write(state->i2c, adr, mm, len + 4); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 507 | } |
| 508 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 509 | static int write32(struct drxk_state *state, u32 reg, u32 data) |
| 510 | { |
| 511 | return write32_flags(state, reg, data, 0); |
| 512 | } |
| 513 | |
| 514 | static int write_block(struct drxk_state *state, u32 Address, |
| 515 | const int BlockSize, const u8 pBlock[]) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 516 | { |
| 517 | int status = 0, BlkSize = BlockSize; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 518 | u8 Flags = 0; |
Mauro Carvalho Chehab | e076c92 | 2011-07-09 13:06:12 -0300 | [diff] [blame] | 519 | |
| 520 | if (state->single_master) |
| 521 | Flags |= 0xC0; |
| 522 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 523 | while (BlkSize > 0) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 524 | int Chunk = BlkSize > state->m_ChunkSize ? |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 525 | state->m_ChunkSize : BlkSize; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 526 | u8 *AdrBuf = &state->Chunk[0]; |
| 527 | u32 AdrLength = 0; |
| 528 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 529 | if (DRXDAP_FASI_LONG_FORMAT(Address) || (Flags != 0)) { |
| 530 | AdrBuf[0] = (((Address << 1) & 0xFF) | 0x01); |
| 531 | AdrBuf[1] = ((Address >> 16) & 0xFF); |
| 532 | AdrBuf[2] = ((Address >> 24) & 0xFF); |
| 533 | AdrBuf[3] = ((Address >> 7) & 0xFF); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 534 | AdrBuf[2] |= Flags; |
| 535 | AdrLength = 4; |
| 536 | if (Chunk == state->m_ChunkSize) |
| 537 | Chunk -= 2; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 538 | } else { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 539 | AdrBuf[0] = ((Address << 1) & 0xFF); |
| 540 | AdrBuf[1] = (((Address >> 16) & 0x0F) | |
| 541 | ((Address >> 18) & 0xF0)); |
| 542 | AdrLength = 2; |
| 543 | } |
| 544 | memcpy(&state->Chunk[AdrLength], pBlock, Chunk); |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 545 | dprintk(2, "(0x%08x, 0x%02x)\n", Address, Flags); |
| 546 | if (debug > 1) { |
| 547 | int i; |
| 548 | if (pBlock) |
| 549 | for (i = 0; i < Chunk; i++) |
| 550 | printk(KERN_CONT " %02x", pBlock[i]); |
| 551 | printk(KERN_CONT "\n"); |
| 552 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 553 | status = i2c_write(state->i2c, state->demod_address, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 554 | &state->Chunk[0], Chunk + AdrLength); |
| 555 | if (status < 0) { |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 556 | printk(KERN_ERR "drxk: %s: i2c write error at addr 0x%02x\n", |
| 557 | __func__, Address); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 558 | break; |
| 559 | } |
| 560 | pBlock += Chunk; |
| 561 | Address += (Chunk >> 1); |
| 562 | BlkSize -= Chunk; |
| 563 | } |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 564 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | #ifndef DRXK_MAX_RETRIES_POWERUP |
| 568 | #define DRXK_MAX_RETRIES_POWERUP 20 |
| 569 | #endif |
| 570 | |
| 571 | int PowerUpDevice(struct drxk_state *state) |
| 572 | { |
| 573 | int status; |
| 574 | u8 data = 0; |
| 575 | u16 retryCount = 0; |
| 576 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 577 | dprintk(1, "\n"); |
| 578 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 579 | status = i2c_read1(state->i2c, state->demod_address, &data); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 580 | if (status < 0) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 581 | do { |
| 582 | data = 0; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 583 | status = i2c_write(state->i2c, state->demod_address, |
| 584 | &data, 1); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 585 | msleep(10); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 586 | retryCount++; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 587 | if (status < 0) |
| 588 | continue; |
| 589 | status = i2c_read1(state->i2c, state->demod_address, |
| 590 | &data); |
| 591 | } while (status < 0 && |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 592 | (retryCount < DRXK_MAX_RETRIES_POWERUP)); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 593 | if (status < 0 && retryCount >= DRXK_MAX_RETRIES_POWERUP) |
| 594 | goto error; |
| 595 | } |
| 596 | |
| 597 | /* Make sure all clk domains are active */ |
| 598 | status = write16(state, SIO_CC_PWD_MODE__A, SIO_CC_PWD_MODE_LEVEL_NONE); |
| 599 | if (status < 0) |
| 600 | goto error; |
| 601 | status = write16(state, SIO_CC_UPDATE__A, SIO_CC_UPDATE_KEY); |
| 602 | if (status < 0) |
| 603 | goto error; |
| 604 | /* Enable pll lock tests */ |
| 605 | status = write16(state, SIO_CC_PLL_LOCK__A, 1); |
| 606 | if (status < 0) |
| 607 | goto error; |
| 608 | |
| 609 | state->m_currentPowerMode = DRX_POWER_UP; |
| 610 | |
| 611 | error: |
| 612 | if (status < 0) |
| 613 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 614 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 615 | return status; |
| 616 | } |
| 617 | |
| 618 | |
| 619 | static int init_state(struct drxk_state *state) |
| 620 | { |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 621 | /* |
| 622 | * FIXME: most (all?) of the values bellow should be moved into |
| 623 | * struct drxk_config, as they are probably board-specific |
| 624 | */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 625 | u32 ulVSBIfAgcMode = DRXK_AGC_CTRL_AUTO; |
| 626 | u32 ulVSBIfAgcOutputLevel = 0; |
| 627 | u32 ulVSBIfAgcMinLevel = 0; |
| 628 | u32 ulVSBIfAgcMaxLevel = 0x7FFF; |
| 629 | u32 ulVSBIfAgcSpeed = 3; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 630 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 631 | u32 ulVSBRfAgcMode = DRXK_AGC_CTRL_AUTO; |
| 632 | u32 ulVSBRfAgcOutputLevel = 0; |
| 633 | u32 ulVSBRfAgcMinLevel = 0; |
| 634 | u32 ulVSBRfAgcMaxLevel = 0x7FFF; |
| 635 | u32 ulVSBRfAgcSpeed = 3; |
| 636 | u32 ulVSBRfAgcTop = 9500; |
| 637 | u32 ulVSBRfAgcCutOffCurrent = 4000; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 638 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 639 | u32 ulATVIfAgcMode = DRXK_AGC_CTRL_AUTO; |
| 640 | u32 ulATVIfAgcOutputLevel = 0; |
| 641 | u32 ulATVIfAgcMinLevel = 0; |
| 642 | u32 ulATVIfAgcMaxLevel = 0; |
| 643 | u32 ulATVIfAgcSpeed = 3; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 644 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 645 | u32 ulATVRfAgcMode = DRXK_AGC_CTRL_OFF; |
| 646 | u32 ulATVRfAgcOutputLevel = 0; |
| 647 | u32 ulATVRfAgcMinLevel = 0; |
| 648 | u32 ulATVRfAgcMaxLevel = 0; |
| 649 | u32 ulATVRfAgcTop = 9500; |
| 650 | u32 ulATVRfAgcCutOffCurrent = 4000; |
| 651 | u32 ulATVRfAgcSpeed = 3; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 652 | |
| 653 | u32 ulQual83 = DEFAULT_MER_83; |
| 654 | u32 ulQual93 = DEFAULT_MER_93; |
| 655 | |
| 656 | u32 ulDVBTStaticTSClock = 1; |
| 657 | u32 ulDVBCStaticTSClock = 1; |
| 658 | |
| 659 | u32 ulMpegLockTimeOut = DEFAULT_DRXK_MPEG_LOCK_TIMEOUT; |
| 660 | u32 ulDemodLockTimeOut = DEFAULT_DRXK_DEMOD_LOCK_TIMEOUT; |
| 661 | |
| 662 | /* io_pad_cfg register (8 bit reg.) MSB bit is 1 (default value) */ |
| 663 | /* io_pad_cfg_mode output mode is drive always */ |
| 664 | /* io_pad_cfg_drive is set to power 2 (23 mA) */ |
| 665 | u32 ulGPIOCfg = 0x0113; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 666 | u32 ulGPIO = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 667 | u32 ulSerialMode = 1; |
| 668 | u32 ulInvertTSClock = 0; |
| 669 | u32 ulTSDataStrength = DRXK_MPEG_SERIAL_OUTPUT_PIN_DRIVE_STRENGTH; |
| 670 | u32 ulTSClockkStrength = DRXK_MPEG_OUTPUT_CLK_DRIVE_STRENGTH; |
| 671 | u32 ulDVBTBitrate = 50000000; |
| 672 | u32 ulDVBCBitrate = DRXK_QAM_SYMBOLRATE_MAX * 8; |
| 673 | |
| 674 | u32 ulInsertRSByte = 0; |
| 675 | |
| 676 | u32 ulRfMirror = 1; |
| 677 | u32 ulPowerDown = 0; |
| 678 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 679 | dprintk(1, "\n"); |
| 680 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 681 | state->m_hasLNA = false; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 682 | state->m_hasDVBT = false; |
| 683 | state->m_hasDVBC = false; |
| 684 | state->m_hasATV = false; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 685 | state->m_hasOOB = false; |
| 686 | state->m_hasAudio = false; |
| 687 | |
| 688 | state->m_ChunkSize = 124; |
| 689 | |
| 690 | state->m_oscClockFreq = 0; |
| 691 | state->m_smartAntInverted = false; |
| 692 | state->m_bPDownOpenBridge = false; |
| 693 | |
| 694 | /* real system clock frequency in kHz */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 695 | state->m_sysClockFreq = 151875; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 696 | /* Timing div, 250ns/Psys */ |
| 697 | /* Timing div, = (delay (nano seconds) * sysclk (kHz))/ 1000 */ |
| 698 | state->m_HICfgTimingDiv = ((state->m_sysClockFreq / 1000) * |
| 699 | HI_I2C_DELAY) / 1000; |
| 700 | /* Clipping */ |
| 701 | if (state->m_HICfgTimingDiv > SIO_HI_RA_RAM_PAR_2_CFG_DIV__M) |
| 702 | state->m_HICfgTimingDiv = SIO_HI_RA_RAM_PAR_2_CFG_DIV__M; |
| 703 | state->m_HICfgWakeUpKey = (state->demod_address << 1); |
| 704 | /* port/bridge/power down ctrl */ |
| 705 | state->m_HICfgCtrl = SIO_HI_RA_RAM_PAR_5_CFG_SLV0_SLAVE; |
| 706 | |
| 707 | state->m_bPowerDown = (ulPowerDown != 0); |
| 708 | |
| 709 | state->m_DRXK_A1_PATCH_CODE = false; |
| 710 | state->m_DRXK_A1_ROM_CODE = false; |
| 711 | state->m_DRXK_A2_ROM_CODE = false; |
| 712 | state->m_DRXK_A3_ROM_CODE = false; |
| 713 | state->m_DRXK_A2_PATCH_CODE = false; |
| 714 | state->m_DRXK_A3_PATCH_CODE = false; |
| 715 | |
| 716 | /* Init AGC and PGA parameters */ |
| 717 | /* VSB IF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 718 | state->m_vsbIfAgcCfg.ctrlMode = (ulVSBIfAgcMode); |
| 719 | state->m_vsbIfAgcCfg.outputLevel = (ulVSBIfAgcOutputLevel); |
| 720 | state->m_vsbIfAgcCfg.minOutputLevel = (ulVSBIfAgcMinLevel); |
| 721 | state->m_vsbIfAgcCfg.maxOutputLevel = (ulVSBIfAgcMaxLevel); |
| 722 | state->m_vsbIfAgcCfg.speed = (ulVSBIfAgcSpeed); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 723 | state->m_vsbPgaCfg = 140; |
| 724 | |
| 725 | /* VSB RF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 726 | state->m_vsbRfAgcCfg.ctrlMode = (ulVSBRfAgcMode); |
| 727 | state->m_vsbRfAgcCfg.outputLevel = (ulVSBRfAgcOutputLevel); |
| 728 | state->m_vsbRfAgcCfg.minOutputLevel = (ulVSBRfAgcMinLevel); |
| 729 | state->m_vsbRfAgcCfg.maxOutputLevel = (ulVSBRfAgcMaxLevel); |
| 730 | state->m_vsbRfAgcCfg.speed = (ulVSBRfAgcSpeed); |
| 731 | state->m_vsbRfAgcCfg.top = (ulVSBRfAgcTop); |
| 732 | state->m_vsbRfAgcCfg.cutOffCurrent = (ulVSBRfAgcCutOffCurrent); |
| 733 | state->m_vsbPreSawCfg.reference = 0x07; |
| 734 | state->m_vsbPreSawCfg.usePreSaw = true; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 735 | |
| 736 | state->m_Quality83percent = DEFAULT_MER_83; |
| 737 | state->m_Quality93percent = DEFAULT_MER_93; |
| 738 | if (ulQual93 <= 500 && ulQual83 < ulQual93) { |
| 739 | state->m_Quality83percent = ulQual83; |
| 740 | state->m_Quality93percent = ulQual93; |
| 741 | } |
| 742 | |
| 743 | /* ATV IF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 744 | state->m_atvIfAgcCfg.ctrlMode = (ulATVIfAgcMode); |
| 745 | state->m_atvIfAgcCfg.outputLevel = (ulATVIfAgcOutputLevel); |
| 746 | state->m_atvIfAgcCfg.minOutputLevel = (ulATVIfAgcMinLevel); |
| 747 | state->m_atvIfAgcCfg.maxOutputLevel = (ulATVIfAgcMaxLevel); |
| 748 | state->m_atvIfAgcCfg.speed = (ulATVIfAgcSpeed); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 749 | |
| 750 | /* ATV RF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 751 | state->m_atvRfAgcCfg.ctrlMode = (ulATVRfAgcMode); |
| 752 | state->m_atvRfAgcCfg.outputLevel = (ulATVRfAgcOutputLevel); |
| 753 | state->m_atvRfAgcCfg.minOutputLevel = (ulATVRfAgcMinLevel); |
| 754 | state->m_atvRfAgcCfg.maxOutputLevel = (ulATVRfAgcMaxLevel); |
| 755 | state->m_atvRfAgcCfg.speed = (ulATVRfAgcSpeed); |
| 756 | state->m_atvRfAgcCfg.top = (ulATVRfAgcTop); |
| 757 | state->m_atvRfAgcCfg.cutOffCurrent = (ulATVRfAgcCutOffCurrent); |
| 758 | state->m_atvPreSawCfg.reference = 0x04; |
| 759 | state->m_atvPreSawCfg.usePreSaw = true; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 760 | |
| 761 | |
| 762 | /* DVBT RF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 763 | state->m_dvbtRfAgcCfg.ctrlMode = DRXK_AGC_CTRL_OFF; |
| 764 | state->m_dvbtRfAgcCfg.outputLevel = 0; |
| 765 | state->m_dvbtRfAgcCfg.minOutputLevel = 0; |
| 766 | state->m_dvbtRfAgcCfg.maxOutputLevel = 0xFFFF; |
| 767 | state->m_dvbtRfAgcCfg.top = 0x2100; |
| 768 | state->m_dvbtRfAgcCfg.cutOffCurrent = 4000; |
| 769 | state->m_dvbtRfAgcCfg.speed = 1; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 770 | |
| 771 | |
| 772 | /* DVBT IF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 773 | state->m_dvbtIfAgcCfg.ctrlMode = DRXK_AGC_CTRL_AUTO; |
| 774 | state->m_dvbtIfAgcCfg.outputLevel = 0; |
| 775 | state->m_dvbtIfAgcCfg.minOutputLevel = 0; |
| 776 | state->m_dvbtIfAgcCfg.maxOutputLevel = 9000; |
| 777 | state->m_dvbtIfAgcCfg.top = 13424; |
| 778 | state->m_dvbtIfAgcCfg.cutOffCurrent = 0; |
| 779 | state->m_dvbtIfAgcCfg.speed = 3; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 780 | state->m_dvbtIfAgcCfg.FastClipCtrlDelay = 30; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 781 | state->m_dvbtIfAgcCfg.IngainTgtMax = 30000; |
| 782 | /* state->m_dvbtPgaCfg = 140; */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 783 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 784 | state->m_dvbtPreSawCfg.reference = 4; |
| 785 | state->m_dvbtPreSawCfg.usePreSaw = false; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 786 | |
| 787 | /* QAM RF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 788 | state->m_qamRfAgcCfg.ctrlMode = DRXK_AGC_CTRL_OFF; |
| 789 | state->m_qamRfAgcCfg.outputLevel = 0; |
| 790 | state->m_qamRfAgcCfg.minOutputLevel = 6023; |
| 791 | state->m_qamRfAgcCfg.maxOutputLevel = 27000; |
| 792 | state->m_qamRfAgcCfg.top = 0x2380; |
| 793 | state->m_qamRfAgcCfg.cutOffCurrent = 4000; |
| 794 | state->m_qamRfAgcCfg.speed = 3; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 795 | |
| 796 | /* QAM IF */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 797 | state->m_qamIfAgcCfg.ctrlMode = DRXK_AGC_CTRL_AUTO; |
| 798 | state->m_qamIfAgcCfg.outputLevel = 0; |
| 799 | state->m_qamIfAgcCfg.minOutputLevel = 0; |
| 800 | state->m_qamIfAgcCfg.maxOutputLevel = 9000; |
| 801 | state->m_qamIfAgcCfg.top = 0x0511; |
| 802 | state->m_qamIfAgcCfg.cutOffCurrent = 0; |
| 803 | state->m_qamIfAgcCfg.speed = 3; |
| 804 | state->m_qamIfAgcCfg.IngainTgtMax = 5119; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 805 | state->m_qamIfAgcCfg.FastClipCtrlDelay = 50; |
| 806 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 807 | state->m_qamPgaCfg = 140; |
| 808 | state->m_qamPreSawCfg.reference = 4; |
| 809 | state->m_qamPreSawCfg.usePreSaw = false; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 810 | |
| 811 | state->m_OperationMode = OM_NONE; |
| 812 | state->m_DrxkState = DRXK_UNINITIALIZED; |
| 813 | |
| 814 | /* MPEG output configuration */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 815 | state->m_enableMPEGOutput = true; /* If TRUE; enable MPEG ouput */ |
| 816 | state->m_insertRSByte = false; /* If TRUE; insert RS byte */ |
| 817 | state->m_enableParallel = true; /* If TRUE; |
| 818 | parallel out otherwise serial */ |
| 819 | state->m_invertDATA = false; /* If TRUE; invert DATA signals */ |
| 820 | state->m_invertERR = false; /* If TRUE; invert ERR signal */ |
| 821 | state->m_invertSTR = false; /* If TRUE; invert STR signals */ |
| 822 | state->m_invertVAL = false; /* If TRUE; invert VAL signals */ |
| 823 | state->m_invertCLK = (ulInvertTSClock != 0); /* If TRUE; invert CLK signals */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 824 | state->m_DVBTStaticCLK = (ulDVBTStaticTSClock != 0); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 825 | state->m_DVBCStaticCLK = (ulDVBCStaticTSClock != 0); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 826 | /* If TRUE; static MPEG clockrate will be used; |
| 827 | otherwise clockrate will adapt to the bitrate of the TS */ |
| 828 | |
| 829 | state->m_DVBTBitrate = ulDVBTBitrate; |
| 830 | state->m_DVBCBitrate = ulDVBCBitrate; |
| 831 | |
| 832 | state->m_TSDataStrength = (ulTSDataStrength & 0x07); |
| 833 | state->m_TSClockkStrength = (ulTSClockkStrength & 0x07); |
| 834 | |
| 835 | /* Maximum bitrate in b/s in case static clockrate is selected */ |
| 836 | state->m_mpegTsStaticBitrate = 19392658; |
| 837 | state->m_disableTEIhandling = false; |
| 838 | |
| 839 | if (ulInsertRSByte) |
| 840 | state->m_insertRSByte = true; |
| 841 | |
| 842 | state->m_MpegLockTimeOut = DEFAULT_DRXK_MPEG_LOCK_TIMEOUT; |
| 843 | if (ulMpegLockTimeOut < 10000) |
| 844 | state->m_MpegLockTimeOut = ulMpegLockTimeOut; |
| 845 | state->m_DemodLockTimeOut = DEFAULT_DRXK_DEMOD_LOCK_TIMEOUT; |
| 846 | if (ulDemodLockTimeOut < 10000) |
| 847 | state->m_DemodLockTimeOut = ulDemodLockTimeOut; |
| 848 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 849 | /* QAM defaults */ |
| 850 | state->m_Constellation = DRX_CONSTELLATION_AUTO; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 851 | state->m_qamInterleaveMode = DRXK_QAM_I12_J17; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 852 | state->m_fecRsPlen = 204 * 8; /* fecRsPlen annex A */ |
| 853 | state->m_fecRsPrescale = 1; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 854 | |
| 855 | state->m_sqiSpeed = DRXK_DVBT_SQI_SPEED_MEDIUM; |
| 856 | state->m_agcFastClipCtrlDelay = 0; |
| 857 | |
| 858 | state->m_GPIOCfg = (ulGPIOCfg); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 859 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 860 | state->m_bPowerDown = false; |
| 861 | state->m_currentPowerMode = DRX_POWER_DOWN; |
| 862 | |
| 863 | state->m_enableParallel = (ulSerialMode == 0); |
| 864 | |
| 865 | state->m_rfmirror = (ulRfMirror == 0); |
| 866 | state->m_IfAgcPol = false; |
| 867 | return 0; |
| 868 | } |
| 869 | |
| 870 | static int DRXX_Open(struct drxk_state *state) |
| 871 | { |
| 872 | int status = 0; |
| 873 | u32 jtag = 0; |
| 874 | u16 bid = 0; |
| 875 | u16 key = 0; |
| 876 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 877 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 878 | /* stop lock indicator process */ |
| 879 | status = write16(state, SCU_RAM_GPIO__A, SCU_RAM_GPIO_HW_LOCK_IND_DISABLE); |
| 880 | if (status < 0) |
| 881 | goto error; |
| 882 | /* Check device id */ |
| 883 | status = read16(state, SIO_TOP_COMM_KEY__A, &key); |
| 884 | if (status < 0) |
| 885 | goto error; |
| 886 | status = write16(state, SIO_TOP_COMM_KEY__A, SIO_TOP_COMM_KEY_KEY); |
| 887 | if (status < 0) |
| 888 | goto error; |
| 889 | status = read32(state, SIO_TOP_JTAGID_LO__A, &jtag); |
| 890 | if (status < 0) |
| 891 | goto error; |
| 892 | status = read16(state, SIO_PDR_UIO_IN_HI__A, &bid); |
| 893 | if (status < 0) |
| 894 | goto error; |
| 895 | status = write16(state, SIO_TOP_COMM_KEY__A, key); |
| 896 | error: |
| 897 | if (status < 0) |
| 898 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 899 | return status; |
| 900 | } |
| 901 | |
| 902 | static int GetDeviceCapabilities(struct drxk_state *state) |
| 903 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 904 | u16 sioPdrOhwCfg = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 905 | u32 sioTopJtagidLo = 0; |
| 906 | int status; |
Mauro Carvalho Chehab | 9c6e182 | 2011-07-10 08:38:18 -0300 | [diff] [blame] | 907 | const char *spin = ""; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 908 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 909 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 910 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 911 | /* driver 0.9.0 */ |
| 912 | /* stop lock indicator process */ |
| 913 | status = write16(state, SCU_RAM_GPIO__A, SCU_RAM_GPIO_HW_LOCK_IND_DISABLE); |
| 914 | if (status < 0) |
| 915 | goto error; |
| 916 | status = write16(state, SIO_TOP_COMM_KEY__A, 0xFABA); |
| 917 | if (status < 0) |
| 918 | goto error; |
| 919 | status = read16(state, SIO_PDR_OHW_CFG__A, &sioPdrOhwCfg); |
| 920 | if (status < 0) |
| 921 | goto error; |
| 922 | status = write16(state, SIO_TOP_COMM_KEY__A, 0x0000); |
| 923 | if (status < 0) |
| 924 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 925 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 926 | switch ((sioPdrOhwCfg & SIO_PDR_OHW_CFG_FREF_SEL__M)) { |
| 927 | case 0: |
| 928 | /* ignore (bypass ?) */ |
| 929 | break; |
| 930 | case 1: |
| 931 | /* 27 MHz */ |
| 932 | state->m_oscClockFreq = 27000; |
| 933 | break; |
| 934 | case 2: |
| 935 | /* 20.25 MHz */ |
| 936 | state->m_oscClockFreq = 20250; |
| 937 | break; |
| 938 | case 3: |
| 939 | /* 4 MHz */ |
| 940 | state->m_oscClockFreq = 20250; |
| 941 | break; |
| 942 | default: |
| 943 | printk(KERN_ERR "drxk: Clock Frequency is unkonwn\n"); |
| 944 | return -EINVAL; |
| 945 | } |
| 946 | /* |
| 947 | Determine device capabilities |
| 948 | Based on pinning v14 |
| 949 | */ |
| 950 | status = read32(state, SIO_TOP_JTAGID_LO__A, &sioTopJtagidLo); |
| 951 | if (status < 0) |
| 952 | goto error; |
| 953 | /* driver 0.9.0 */ |
| 954 | switch ((sioTopJtagidLo >> 29) & 0xF) { |
| 955 | case 0: |
| 956 | state->m_deviceSpin = DRXK_SPIN_A1; |
Mauro Carvalho Chehab | 9c6e182 | 2011-07-10 08:38:18 -0300 | [diff] [blame] | 957 | spin = "A1"; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 958 | break; |
| 959 | case 2: |
| 960 | state->m_deviceSpin = DRXK_SPIN_A2; |
Mauro Carvalho Chehab | 9c6e182 | 2011-07-10 08:38:18 -0300 | [diff] [blame] | 961 | spin = "A2"; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 962 | break; |
| 963 | case 3: |
| 964 | state->m_deviceSpin = DRXK_SPIN_A3; |
Mauro Carvalho Chehab | 9c6e182 | 2011-07-10 08:38:18 -0300 | [diff] [blame] | 965 | spin = "A3"; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 966 | break; |
| 967 | default: |
| 968 | state->m_deviceSpin = DRXK_SPIN_UNKNOWN; |
| 969 | status = -EINVAL; |
| 970 | printk(KERN_ERR "drxk: Spin unknown\n"); |
| 971 | goto error2; |
| 972 | } |
| 973 | switch ((sioTopJtagidLo >> 12) & 0xFF) { |
| 974 | case 0x13: |
| 975 | /* typeId = DRX3913K_TYPE_ID */ |
| 976 | state->m_hasLNA = false; |
| 977 | state->m_hasOOB = false; |
| 978 | state->m_hasATV = false; |
| 979 | state->m_hasAudio = false; |
| 980 | state->m_hasDVBT = true; |
| 981 | state->m_hasDVBC = true; |
| 982 | state->m_hasSAWSW = true; |
| 983 | state->m_hasGPIO2 = false; |
| 984 | state->m_hasGPIO1 = false; |
| 985 | state->m_hasIRQN = false; |
| 986 | break; |
| 987 | case 0x15: |
| 988 | /* typeId = DRX3915K_TYPE_ID */ |
| 989 | state->m_hasLNA = false; |
| 990 | state->m_hasOOB = false; |
| 991 | state->m_hasATV = true; |
| 992 | state->m_hasAudio = false; |
| 993 | state->m_hasDVBT = true; |
| 994 | state->m_hasDVBC = false; |
| 995 | state->m_hasSAWSW = true; |
| 996 | state->m_hasGPIO2 = true; |
| 997 | state->m_hasGPIO1 = true; |
| 998 | state->m_hasIRQN = false; |
| 999 | break; |
| 1000 | case 0x16: |
| 1001 | /* typeId = DRX3916K_TYPE_ID */ |
| 1002 | state->m_hasLNA = false; |
| 1003 | state->m_hasOOB = false; |
| 1004 | state->m_hasATV = true; |
| 1005 | state->m_hasAudio = false; |
| 1006 | state->m_hasDVBT = true; |
| 1007 | state->m_hasDVBC = false; |
| 1008 | state->m_hasSAWSW = true; |
| 1009 | state->m_hasGPIO2 = true; |
| 1010 | state->m_hasGPIO1 = true; |
| 1011 | state->m_hasIRQN = false; |
| 1012 | break; |
| 1013 | case 0x18: |
| 1014 | /* typeId = DRX3918K_TYPE_ID */ |
| 1015 | state->m_hasLNA = false; |
| 1016 | state->m_hasOOB = false; |
| 1017 | state->m_hasATV = true; |
| 1018 | state->m_hasAudio = true; |
| 1019 | state->m_hasDVBT = true; |
| 1020 | state->m_hasDVBC = false; |
| 1021 | state->m_hasSAWSW = true; |
| 1022 | state->m_hasGPIO2 = true; |
| 1023 | state->m_hasGPIO1 = true; |
| 1024 | state->m_hasIRQN = false; |
| 1025 | break; |
| 1026 | case 0x21: |
| 1027 | /* typeId = DRX3921K_TYPE_ID */ |
| 1028 | state->m_hasLNA = false; |
| 1029 | state->m_hasOOB = false; |
| 1030 | state->m_hasATV = true; |
| 1031 | state->m_hasAudio = true; |
| 1032 | state->m_hasDVBT = true; |
| 1033 | state->m_hasDVBC = true; |
| 1034 | state->m_hasSAWSW = true; |
| 1035 | state->m_hasGPIO2 = true; |
| 1036 | state->m_hasGPIO1 = true; |
| 1037 | state->m_hasIRQN = false; |
| 1038 | break; |
| 1039 | case 0x23: |
| 1040 | /* typeId = DRX3923K_TYPE_ID */ |
| 1041 | state->m_hasLNA = false; |
| 1042 | state->m_hasOOB = false; |
| 1043 | state->m_hasATV = true; |
| 1044 | state->m_hasAudio = true; |
| 1045 | state->m_hasDVBT = true; |
| 1046 | state->m_hasDVBC = true; |
| 1047 | state->m_hasSAWSW = true; |
| 1048 | state->m_hasGPIO2 = true; |
| 1049 | state->m_hasGPIO1 = true; |
| 1050 | state->m_hasIRQN = false; |
| 1051 | break; |
| 1052 | case 0x25: |
| 1053 | /* typeId = DRX3925K_TYPE_ID */ |
| 1054 | state->m_hasLNA = false; |
| 1055 | state->m_hasOOB = false; |
| 1056 | state->m_hasATV = true; |
| 1057 | state->m_hasAudio = true; |
| 1058 | state->m_hasDVBT = true; |
| 1059 | state->m_hasDVBC = true; |
| 1060 | state->m_hasSAWSW = true; |
| 1061 | state->m_hasGPIO2 = true; |
| 1062 | state->m_hasGPIO1 = true; |
| 1063 | state->m_hasIRQN = false; |
| 1064 | break; |
| 1065 | case 0x26: |
| 1066 | /* typeId = DRX3926K_TYPE_ID */ |
| 1067 | state->m_hasLNA = false; |
| 1068 | state->m_hasOOB = false; |
| 1069 | state->m_hasATV = true; |
| 1070 | state->m_hasAudio = false; |
| 1071 | state->m_hasDVBT = true; |
| 1072 | state->m_hasDVBC = true; |
| 1073 | state->m_hasSAWSW = true; |
| 1074 | state->m_hasGPIO2 = true; |
| 1075 | state->m_hasGPIO1 = true; |
| 1076 | state->m_hasIRQN = false; |
| 1077 | break; |
| 1078 | default: |
| 1079 | printk(KERN_ERR "drxk: DeviceID not supported = %02x\n", |
| 1080 | ((sioTopJtagidLo >> 12) & 0xFF)); |
| 1081 | status = -EINVAL; |
| 1082 | goto error2; |
| 1083 | } |
| 1084 | |
Mauro Carvalho Chehab | 9c6e182 | 2011-07-10 08:38:18 -0300 | [diff] [blame] | 1085 | printk(KERN_INFO |
| 1086 | "drxk: detected a drx-39%02xk, spin %s, xtal %d.%03d MHz\n", |
| 1087 | ((sioTopJtagidLo >> 12) & 0xFF), spin, |
| 1088 | state->m_oscClockFreq / 1000, |
| 1089 | state->m_oscClockFreq % 1000); |
| 1090 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1091 | error: |
| 1092 | if (status < 0) |
| 1093 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 1094 | |
| 1095 | error2: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1096 | return status; |
| 1097 | } |
| 1098 | |
| 1099 | static int HI_Command(struct drxk_state *state, u16 cmd, u16 *pResult) |
| 1100 | { |
| 1101 | int status; |
| 1102 | bool powerdown_cmd; |
| 1103 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1104 | dprintk(1, "\n"); |
| 1105 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1106 | /* Write command */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1107 | status = write16(state, SIO_HI_RA_RAM_CMD__A, cmd); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1108 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1109 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1110 | if (cmd == SIO_HI_RA_RAM_CMD_RESET) |
| 1111 | msleep(1); |
| 1112 | |
| 1113 | powerdown_cmd = |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1114 | (bool) ((cmd == SIO_HI_RA_RAM_CMD_CONFIG) && |
| 1115 | ((state->m_HICfgCtrl) & |
| 1116 | SIO_HI_RA_RAM_PAR_5_CFG_SLEEP__M) == |
| 1117 | SIO_HI_RA_RAM_PAR_5_CFG_SLEEP_ZZZ); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1118 | if (powerdown_cmd == false) { |
| 1119 | /* Wait until command rdy */ |
| 1120 | u32 retryCount = 0; |
| 1121 | u16 waitCmd; |
| 1122 | |
| 1123 | do { |
| 1124 | msleep(1); |
| 1125 | retryCount += 1; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1126 | status = read16(state, SIO_HI_RA_RAM_CMD__A, |
| 1127 | &waitCmd); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1128 | } while ((status < 0) && (retryCount < DRXK_MAX_RETRIES) |
| 1129 | && (waitCmd != 0)); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1130 | if (status < 0) |
| 1131 | goto error; |
| 1132 | status = read16(state, SIO_HI_RA_RAM_RES__A, pResult); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1133 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1134 | error: |
| 1135 | if (status < 0) |
| 1136 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 1137 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1138 | return status; |
| 1139 | } |
| 1140 | |
| 1141 | static int HI_CfgCommand(struct drxk_state *state) |
| 1142 | { |
| 1143 | int status; |
| 1144 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1145 | dprintk(1, "\n"); |
| 1146 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1147 | mutex_lock(&state->mutex); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1148 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1149 | status = write16(state, SIO_HI_RA_RAM_PAR_6__A, state->m_HICfgTimeout); |
| 1150 | if (status < 0) |
| 1151 | goto error; |
| 1152 | status = write16(state, SIO_HI_RA_RAM_PAR_5__A, state->m_HICfgCtrl); |
| 1153 | if (status < 0) |
| 1154 | goto error; |
| 1155 | status = write16(state, SIO_HI_RA_RAM_PAR_4__A, state->m_HICfgWakeUpKey); |
| 1156 | if (status < 0) |
| 1157 | goto error; |
| 1158 | status = write16(state, SIO_HI_RA_RAM_PAR_3__A, state->m_HICfgBridgeDelay); |
| 1159 | if (status < 0) |
| 1160 | goto error; |
| 1161 | status = write16(state, SIO_HI_RA_RAM_PAR_2__A, state->m_HICfgTimingDiv); |
| 1162 | if (status < 0) |
| 1163 | goto error; |
| 1164 | status = write16(state, SIO_HI_RA_RAM_PAR_1__A, SIO_HI_RA_RAM_PAR_1_PAR1_SEC_KEY); |
| 1165 | if (status < 0) |
| 1166 | goto error; |
| 1167 | status = HI_Command(state, SIO_HI_RA_RAM_CMD_CONFIG, 0); |
| 1168 | if (status < 0) |
| 1169 | goto error; |
| 1170 | |
| 1171 | state->m_HICfgCtrl &= ~SIO_HI_RA_RAM_PAR_5_CFG_SLEEP_ZZZ; |
| 1172 | error: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1173 | mutex_unlock(&state->mutex); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1174 | if (status < 0) |
| 1175 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1176 | return status; |
| 1177 | } |
| 1178 | |
| 1179 | static int InitHI(struct drxk_state *state) |
| 1180 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1181 | dprintk(1, "\n"); |
| 1182 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1183 | state->m_HICfgWakeUpKey = (state->demod_address << 1); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1184 | state->m_HICfgTimeout = 0x96FF; |
| 1185 | /* port/bridge/power down ctrl */ |
| 1186 | state->m_HICfgCtrl = SIO_HI_RA_RAM_PAR_5_CFG_SLV0_SLAVE; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1187 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1188 | return HI_CfgCommand(state); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | static int MPEGTSConfigurePins(struct drxk_state *state, bool mpegEnable) |
| 1192 | { |
| 1193 | int status = -1; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1194 | u16 sioPdrMclkCfg = 0; |
| 1195 | u16 sioPdrMdxCfg = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1196 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1197 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1198 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1199 | /* stop lock indicator process */ |
| 1200 | status = write16(state, SCU_RAM_GPIO__A, SCU_RAM_GPIO_HW_LOCK_IND_DISABLE); |
| 1201 | if (status < 0) |
| 1202 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1203 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1204 | /* MPEG TS pad configuration */ |
| 1205 | status = write16(state, SIO_TOP_COMM_KEY__A, 0xFABA); |
| 1206 | if (status < 0) |
| 1207 | goto error; |
| 1208 | |
| 1209 | if (mpegEnable == false) { |
| 1210 | /* Set MPEG TS pads to inputmode */ |
| 1211 | status = write16(state, SIO_PDR_MSTRT_CFG__A, 0x0000); |
| 1212 | if (status < 0) |
| 1213 | goto error; |
| 1214 | status = write16(state, SIO_PDR_MERR_CFG__A, 0x0000); |
| 1215 | if (status < 0) |
| 1216 | goto error; |
| 1217 | status = write16(state, SIO_PDR_MCLK_CFG__A, 0x0000); |
| 1218 | if (status < 0) |
| 1219 | goto error; |
| 1220 | status = write16(state, SIO_PDR_MVAL_CFG__A, 0x0000); |
| 1221 | if (status < 0) |
| 1222 | goto error; |
| 1223 | status = write16(state, SIO_PDR_MD0_CFG__A, 0x0000); |
| 1224 | if (status < 0) |
| 1225 | goto error; |
| 1226 | status = write16(state, SIO_PDR_MD1_CFG__A, 0x0000); |
| 1227 | if (status < 0) |
| 1228 | goto error; |
| 1229 | status = write16(state, SIO_PDR_MD2_CFG__A, 0x0000); |
| 1230 | if (status < 0) |
| 1231 | goto error; |
| 1232 | status = write16(state, SIO_PDR_MD3_CFG__A, 0x0000); |
| 1233 | if (status < 0) |
| 1234 | goto error; |
| 1235 | status = write16(state, SIO_PDR_MD4_CFG__A, 0x0000); |
| 1236 | if (status < 0) |
| 1237 | goto error; |
| 1238 | status = write16(state, SIO_PDR_MD5_CFG__A, 0x0000); |
| 1239 | if (status < 0) |
| 1240 | goto error; |
| 1241 | status = write16(state, SIO_PDR_MD6_CFG__A, 0x0000); |
| 1242 | if (status < 0) |
| 1243 | goto error; |
| 1244 | status = write16(state, SIO_PDR_MD7_CFG__A, 0x0000); |
| 1245 | if (status < 0) |
| 1246 | goto error; |
| 1247 | } else { |
| 1248 | /* Enable MPEG output */ |
| 1249 | sioPdrMdxCfg = |
| 1250 | ((state->m_TSDataStrength << |
| 1251 | SIO_PDR_MD0_CFG_DRIVE__B) | 0x0003); |
| 1252 | sioPdrMclkCfg = ((state->m_TSClockkStrength << |
| 1253 | SIO_PDR_MCLK_CFG_DRIVE__B) | |
| 1254 | 0x0003); |
| 1255 | |
| 1256 | status = write16(state, SIO_PDR_MSTRT_CFG__A, sioPdrMdxCfg); |
| 1257 | if (status < 0) |
| 1258 | goto error; |
| 1259 | status = write16(state, SIO_PDR_MERR_CFG__A, 0x0000); /* Disable */ |
| 1260 | if (status < 0) |
| 1261 | goto error; |
| 1262 | status = write16(state, SIO_PDR_MVAL_CFG__A, 0x0000); /* Disable */ |
| 1263 | if (status < 0) |
| 1264 | goto error; |
| 1265 | if (state->m_enableParallel == true) { |
| 1266 | /* paralel -> enable MD1 to MD7 */ |
| 1267 | status = write16(state, SIO_PDR_MD1_CFG__A, sioPdrMdxCfg); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1268 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1269 | goto error; |
| 1270 | status = write16(state, SIO_PDR_MD2_CFG__A, sioPdrMdxCfg); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1271 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1272 | goto error; |
| 1273 | status = write16(state, SIO_PDR_MD3_CFG__A, sioPdrMdxCfg); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1274 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1275 | goto error; |
| 1276 | status = write16(state, SIO_PDR_MD4_CFG__A, sioPdrMdxCfg); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1277 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1278 | goto error; |
| 1279 | status = write16(state, SIO_PDR_MD5_CFG__A, sioPdrMdxCfg); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1280 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1281 | goto error; |
| 1282 | status = write16(state, SIO_PDR_MD6_CFG__A, sioPdrMdxCfg); |
| 1283 | if (status < 0) |
| 1284 | goto error; |
| 1285 | status = write16(state, SIO_PDR_MD7_CFG__A, sioPdrMdxCfg); |
| 1286 | if (status < 0) |
| 1287 | goto error; |
| 1288 | } else { |
| 1289 | sioPdrMdxCfg = ((state->m_TSDataStrength << |
| 1290 | SIO_PDR_MD0_CFG_DRIVE__B) |
| 1291 | | 0x0003); |
| 1292 | /* serial -> disable MD1 to MD7 */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1293 | status = write16(state, SIO_PDR_MD1_CFG__A, 0x0000); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1294 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1295 | goto error; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1296 | status = write16(state, SIO_PDR_MD2_CFG__A, 0x0000); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1297 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1298 | goto error; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1299 | status = write16(state, SIO_PDR_MD3_CFG__A, 0x0000); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1300 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1301 | goto error; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1302 | status = write16(state, SIO_PDR_MD4_CFG__A, 0x0000); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1303 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1304 | goto error; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1305 | status = write16(state, SIO_PDR_MD5_CFG__A, 0x0000); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1306 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1307 | goto error; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1308 | status = write16(state, SIO_PDR_MD6_CFG__A, 0x0000); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1309 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1310 | goto error; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1311 | status = write16(state, SIO_PDR_MD7_CFG__A, 0x0000); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1312 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1313 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1314 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1315 | status = write16(state, SIO_PDR_MCLK_CFG__A, sioPdrMclkCfg); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1316 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1317 | goto error; |
| 1318 | status = write16(state, SIO_PDR_MD0_CFG__A, sioPdrMdxCfg); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1319 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1320 | goto error; |
| 1321 | } |
| 1322 | /* Enable MB output over MPEG pads and ctl input */ |
| 1323 | status = write16(state, SIO_PDR_MON_CFG__A, 0x0000); |
| 1324 | if (status < 0) |
| 1325 | goto error; |
| 1326 | /* Write nomagic word to enable pdr reg write */ |
| 1327 | status = write16(state, SIO_TOP_COMM_KEY__A, 0x0000); |
| 1328 | error: |
| 1329 | if (status < 0) |
| 1330 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1331 | return status; |
| 1332 | } |
| 1333 | |
| 1334 | static int MPEGTSDisable(struct drxk_state *state) |
| 1335 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1336 | dprintk(1, "\n"); |
| 1337 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1338 | return MPEGTSConfigurePins(state, false); |
| 1339 | } |
| 1340 | |
| 1341 | static int BLChainCmd(struct drxk_state *state, |
| 1342 | u16 romOffset, u16 nrOfElements, u32 timeOut) |
| 1343 | { |
| 1344 | u16 blStatus = 0; |
| 1345 | int status; |
| 1346 | unsigned long end; |
| 1347 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1348 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1349 | mutex_lock(&state->mutex); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1350 | status = write16(state, SIO_BL_MODE__A, SIO_BL_MODE_CHAIN); |
| 1351 | if (status < 0) |
| 1352 | goto error; |
| 1353 | status = write16(state, SIO_BL_CHAIN_ADDR__A, romOffset); |
| 1354 | if (status < 0) |
| 1355 | goto error; |
| 1356 | status = write16(state, SIO_BL_CHAIN_LEN__A, nrOfElements); |
| 1357 | if (status < 0) |
| 1358 | goto error; |
| 1359 | status = write16(state, SIO_BL_ENABLE__A, SIO_BL_ENABLE_ON); |
| 1360 | if (status < 0) |
| 1361 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1362 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1363 | end = jiffies + msecs_to_jiffies(timeOut); |
| 1364 | do { |
| 1365 | msleep(1); |
| 1366 | status = read16(state, SIO_BL_STATUS__A, &blStatus); |
| 1367 | if (status < 0) |
| 1368 | goto error; |
| 1369 | } while ((blStatus == 0x1) && |
| 1370 | ((time_is_after_jiffies(end)))); |
| 1371 | |
| 1372 | if (blStatus == 0x1) { |
| 1373 | printk(KERN_ERR "drxk: SIO not ready\n"); |
| 1374 | status = -EINVAL; |
| 1375 | goto error2; |
| 1376 | } |
| 1377 | error: |
| 1378 | if (status < 0) |
| 1379 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 1380 | error2: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1381 | mutex_unlock(&state->mutex); |
| 1382 | return status; |
| 1383 | } |
| 1384 | |
| 1385 | |
| 1386 | static int DownloadMicrocode(struct drxk_state *state, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1387 | const u8 pMCImage[], u32 Length) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1388 | { |
| 1389 | const u8 *pSrc = pMCImage; |
| 1390 | u16 Flags; |
| 1391 | u16 Drain; |
| 1392 | u32 Address; |
| 1393 | u16 nBlocks; |
| 1394 | u16 BlockSize; |
| 1395 | u16 BlockCRC; |
| 1396 | u32 offset = 0; |
| 1397 | u32 i; |
Mauro Carvalho Chehab | 1bd09dd | 2011-07-03 18:21:59 -0300 | [diff] [blame] | 1398 | int status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1399 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1400 | dprintk(1, "\n"); |
| 1401 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1402 | /* down the drain (we don care about MAGIC_WORD) */ |
| 1403 | Drain = (pSrc[0] << 8) | pSrc[1]; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1404 | pSrc += sizeof(u16); |
| 1405 | offset += sizeof(u16); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1406 | nBlocks = (pSrc[0] << 8) | pSrc[1]; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1407 | pSrc += sizeof(u16); |
| 1408 | offset += sizeof(u16); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1409 | |
| 1410 | for (i = 0; i < nBlocks; i += 1) { |
| 1411 | Address = (pSrc[0] << 24) | (pSrc[1] << 16) | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1412 | (pSrc[2] << 8) | pSrc[3]; |
| 1413 | pSrc += sizeof(u32); |
| 1414 | offset += sizeof(u32); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1415 | |
| 1416 | BlockSize = ((pSrc[0] << 8) | pSrc[1]) * sizeof(u16); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1417 | pSrc += sizeof(u16); |
| 1418 | offset += sizeof(u16); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1419 | |
| 1420 | Flags = (pSrc[0] << 8) | pSrc[1]; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1421 | pSrc += sizeof(u16); |
| 1422 | offset += sizeof(u16); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1423 | |
| 1424 | BlockCRC = (pSrc[0] << 8) | pSrc[1]; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1425 | pSrc += sizeof(u16); |
| 1426 | offset += sizeof(u16); |
Mauro Carvalho Chehab | bcd2ebb | 2011-07-09 18:57:54 -0300 | [diff] [blame] | 1427 | |
| 1428 | if (offset + BlockSize > Length) { |
| 1429 | printk(KERN_ERR "drxk: Firmware is corrupted.\n"); |
| 1430 | return -EINVAL; |
| 1431 | } |
| 1432 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1433 | status = write_block(state, Address, BlockSize, pSrc); |
Mauro Carvalho Chehab | 39624f7 | 2011-07-09 19:23:44 -0300 | [diff] [blame] | 1434 | if (status < 0) { |
| 1435 | printk(KERN_ERR "drxk: Error %d while loading firmware\n", status); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1436 | break; |
Mauro Carvalho Chehab | 39624f7 | 2011-07-09 19:23:44 -0300 | [diff] [blame] | 1437 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1438 | pSrc += BlockSize; |
| 1439 | offset += BlockSize; |
| 1440 | } |
| 1441 | return status; |
| 1442 | } |
| 1443 | |
| 1444 | static int DVBTEnableOFDMTokenRing(struct drxk_state *state, bool enable) |
| 1445 | { |
| 1446 | int status; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1447 | u16 data = 0; |
| 1448 | u16 desiredCtrl = SIO_OFDM_SH_OFDM_RING_ENABLE_ON; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1449 | u16 desiredStatus = SIO_OFDM_SH_OFDM_RING_STATUS_ENABLED; |
| 1450 | unsigned long end; |
| 1451 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1452 | dprintk(1, "\n"); |
| 1453 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1454 | if (enable == false) { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1455 | desiredCtrl = SIO_OFDM_SH_OFDM_RING_ENABLE_OFF; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1456 | desiredStatus = SIO_OFDM_SH_OFDM_RING_STATUS_DOWN; |
| 1457 | } |
| 1458 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1459 | status = read16(state, SIO_OFDM_SH_OFDM_RING_STATUS__A, &data); |
| 1460 | if (status >= 0 && data == desiredStatus) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1461 | /* tokenring already has correct status */ |
| 1462 | return status; |
| 1463 | } |
| 1464 | /* Disable/enable dvbt tokenring bridge */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1465 | status = write16(state, SIO_OFDM_SH_OFDM_RING_ENABLE__A, desiredCtrl); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1466 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1467 | end = jiffies + msecs_to_jiffies(DRXK_OFDM_TR_SHUTDOWN_TIMEOUT); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1468 | do { |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 1469 | status = read16(state, SIO_OFDM_SH_OFDM_RING_STATUS__A, &data); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1470 | if ((status >= 0 && data == desiredStatus) || time_is_after_jiffies(end)) |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1471 | break; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1472 | msleep(1); |
| 1473 | } while (1); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1474 | if (data != desiredStatus) { |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 1475 | printk(KERN_ERR "drxk: SIO not ready\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1476 | return -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1477 | } |
| 1478 | return status; |
| 1479 | } |
| 1480 | |
| 1481 | static int MPEGTSStop(struct drxk_state *state) |
| 1482 | { |
| 1483 | int status = 0; |
| 1484 | u16 fecOcSncMode = 0; |
| 1485 | u16 fecOcIprMode = 0; |
| 1486 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1487 | dprintk(1, "\n"); |
| 1488 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1489 | /* Gracefull shutdown (byte boundaries) */ |
| 1490 | status = read16(state, FEC_OC_SNC_MODE__A, &fecOcSncMode); |
| 1491 | if (status < 0) |
| 1492 | goto error; |
| 1493 | fecOcSncMode |= FEC_OC_SNC_MODE_SHUTDOWN__M; |
| 1494 | status = write16(state, FEC_OC_SNC_MODE__A, fecOcSncMode); |
| 1495 | if (status < 0) |
| 1496 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1497 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1498 | /* Suppress MCLK during absence of data */ |
| 1499 | status = read16(state, FEC_OC_IPR_MODE__A, &fecOcIprMode); |
| 1500 | if (status < 0) |
| 1501 | goto error; |
| 1502 | fecOcIprMode |= FEC_OC_IPR_MODE_MCLK_DIS_DAT_ABS__M; |
| 1503 | status = write16(state, FEC_OC_IPR_MODE__A, fecOcIprMode); |
| 1504 | |
| 1505 | error: |
| 1506 | if (status < 0) |
| 1507 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 1508 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1509 | return status; |
| 1510 | } |
| 1511 | |
| 1512 | static int scu_command(struct drxk_state *state, |
| 1513 | u16 cmd, u8 parameterLen, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1514 | u16 *parameter, u8 resultLen, u16 *result) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1515 | { |
| 1516 | #if (SCU_RAM_PARAM_0__A - SCU_RAM_PARAM_15__A) != 15 |
| 1517 | #error DRXK register mapping no longer compatible with this routine! |
| 1518 | #endif |
| 1519 | u16 curCmd = 0; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1520 | int status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1521 | unsigned long end; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1522 | u8 buffer[34]; |
| 1523 | int cnt = 0, ii; |
Mauro Carvalho Chehab | 7558977 | 2011-07-10 13:25:48 -0300 | [diff] [blame^] | 1524 | const char *p; |
| 1525 | char errname[30]; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1526 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1527 | dprintk(1, "\n"); |
| 1528 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1529 | if ((cmd == 0) || ((parameterLen > 0) && (parameter == NULL)) || |
| 1530 | ((resultLen > 0) && (result == NULL))) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1531 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1532 | |
| 1533 | mutex_lock(&state->mutex); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1534 | |
| 1535 | /* assume that the command register is ready |
| 1536 | since it is checked afterwards */ |
| 1537 | for (ii = parameterLen - 1; ii >= 0; ii -= 1) { |
| 1538 | buffer[cnt++] = (parameter[ii] & 0xFF); |
| 1539 | buffer[cnt++] = ((parameter[ii] >> 8) & 0xFF); |
| 1540 | } |
| 1541 | buffer[cnt++] = (cmd & 0xFF); |
| 1542 | buffer[cnt++] = ((cmd >> 8) & 0xFF); |
| 1543 | |
| 1544 | write_block(state, SCU_RAM_PARAM_0__A - |
| 1545 | (parameterLen - 1), cnt, buffer); |
| 1546 | /* Wait until SCU has processed command */ |
| 1547 | end = jiffies + msecs_to_jiffies(DRXK_MAX_WAITTIME); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1548 | do { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1549 | msleep(1); |
| 1550 | status = read16(state, SCU_RAM_COMMAND__A, &curCmd); |
| 1551 | if (status < 0) |
| 1552 | goto error; |
| 1553 | } while (!(curCmd == DRX_SCU_READY) && (time_is_after_jiffies(end))); |
| 1554 | if (curCmd != DRX_SCU_READY) { |
| 1555 | printk(KERN_ERR "drxk: SCU not ready\n"); |
| 1556 | status = -EIO; |
| 1557 | goto error2; |
| 1558 | } |
| 1559 | /* read results */ |
| 1560 | if ((resultLen > 0) && (result != NULL)) { |
| 1561 | s16 err; |
| 1562 | int ii; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1563 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1564 | for (ii = resultLen - 1; ii >= 0; ii -= 1) { |
| 1565 | status = read16(state, SCU_RAM_PARAM_0__A - ii, &result[ii]); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1566 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1567 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1568 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1569 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1570 | /* Check if an error was reported by SCU */ |
| 1571 | err = (s16)result[0]; |
Mauro Carvalho Chehab | 7558977 | 2011-07-10 13:25:48 -0300 | [diff] [blame^] | 1572 | if (err >= 0) |
| 1573 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1574 | |
Mauro Carvalho Chehab | 7558977 | 2011-07-10 13:25:48 -0300 | [diff] [blame^] | 1575 | /* check for the known error codes */ |
| 1576 | switch (err) { |
| 1577 | case SCU_RESULT_UNKCMD: |
| 1578 | p = "SCU_RESULT_UNKCMD"; |
| 1579 | break; |
| 1580 | case SCU_RESULT_UNKSTD: |
| 1581 | p = "SCU_RESULT_UNKSTD"; |
| 1582 | break; |
| 1583 | case SCU_RESULT_SIZE: |
| 1584 | p = "SCU_RESULT_SIZE"; |
| 1585 | break; |
| 1586 | case SCU_RESULT_INVPAR: |
| 1587 | p = "SCU_RESULT_INVPAR"; |
| 1588 | break; |
| 1589 | default: /* Other negative values are errors */ |
| 1590 | sprintf(errname, "ERROR: %d\n", err); |
| 1591 | p = errname; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1592 | } |
Mauro Carvalho Chehab | 7558977 | 2011-07-10 13:25:48 -0300 | [diff] [blame^] | 1593 | printk(KERN_ERR "drxk: %s while sending cmd 0x%04x with params:", p, cmd); |
| 1594 | print_hex_dump_bytes("drxk: ", DUMP_PREFIX_NONE, buffer, cnt); |
| 1595 | status = -EINVAL; |
| 1596 | goto error2; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1597 | } |
| 1598 | |
| 1599 | error: |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1600 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1601 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1602 | error2: |
| 1603 | mutex_unlock(&state->mutex); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1604 | return status; |
| 1605 | } |
| 1606 | |
| 1607 | static int SetIqmAf(struct drxk_state *state, bool active) |
| 1608 | { |
| 1609 | u16 data = 0; |
| 1610 | int status; |
| 1611 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1612 | dprintk(1, "\n"); |
| 1613 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1614 | /* Configure IQM */ |
| 1615 | status = read16(state, IQM_AF_STDBY__A, &data); |
| 1616 | if (status < 0) |
| 1617 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1618 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1619 | if (!active) { |
| 1620 | data |= (IQM_AF_STDBY_STDBY_ADC_STANDBY |
| 1621 | | IQM_AF_STDBY_STDBY_AMP_STANDBY |
| 1622 | | IQM_AF_STDBY_STDBY_PD_STANDBY |
| 1623 | | IQM_AF_STDBY_STDBY_TAGC_IF_STANDBY |
| 1624 | | IQM_AF_STDBY_STDBY_TAGC_RF_STANDBY); |
| 1625 | } else { |
| 1626 | data &= ((~IQM_AF_STDBY_STDBY_ADC_STANDBY) |
| 1627 | & (~IQM_AF_STDBY_STDBY_AMP_STANDBY) |
| 1628 | & (~IQM_AF_STDBY_STDBY_PD_STANDBY) |
| 1629 | & (~IQM_AF_STDBY_STDBY_TAGC_IF_STANDBY) |
| 1630 | & (~IQM_AF_STDBY_STDBY_TAGC_RF_STANDBY) |
| 1631 | ); |
| 1632 | } |
| 1633 | status = write16(state, IQM_AF_STDBY__A, data); |
| 1634 | |
| 1635 | error: |
| 1636 | if (status < 0) |
| 1637 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1638 | return status; |
| 1639 | } |
| 1640 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1641 | static int CtrlPowerMode(struct drxk_state *state, enum DRXPowerMode *mode) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1642 | { |
| 1643 | int status = 0; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1644 | u16 sioCcPwdMode = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1645 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1646 | dprintk(1, "\n"); |
| 1647 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1648 | /* Check arguments */ |
| 1649 | if (mode == NULL) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1650 | return -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1651 | |
| 1652 | switch (*mode) { |
| 1653 | case DRX_POWER_UP: |
| 1654 | sioCcPwdMode = SIO_CC_PWD_MODE_LEVEL_NONE; |
| 1655 | break; |
| 1656 | case DRXK_POWER_DOWN_OFDM: |
| 1657 | sioCcPwdMode = SIO_CC_PWD_MODE_LEVEL_OFDM; |
| 1658 | break; |
| 1659 | case DRXK_POWER_DOWN_CORE: |
| 1660 | sioCcPwdMode = SIO_CC_PWD_MODE_LEVEL_CLOCK; |
| 1661 | break; |
| 1662 | case DRXK_POWER_DOWN_PLL: |
| 1663 | sioCcPwdMode = SIO_CC_PWD_MODE_LEVEL_PLL; |
| 1664 | break; |
| 1665 | case DRX_POWER_DOWN: |
| 1666 | sioCcPwdMode = SIO_CC_PWD_MODE_LEVEL_OSC; |
| 1667 | break; |
| 1668 | default: |
| 1669 | /* Unknow sleep mode */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1670 | return -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1671 | break; |
| 1672 | } |
| 1673 | |
| 1674 | /* If already in requested power mode, do nothing */ |
| 1675 | if (state->m_currentPowerMode == *mode) |
| 1676 | return 0; |
| 1677 | |
| 1678 | /* For next steps make sure to start from DRX_POWER_UP mode */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1679 | if (state->m_currentPowerMode != DRX_POWER_UP) { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1680 | status = PowerUpDevice(state); |
| 1681 | if (status < 0) |
| 1682 | goto error; |
| 1683 | status = DVBTEnableOFDMTokenRing(state, true); |
| 1684 | if (status < 0) |
| 1685 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1686 | } |
| 1687 | |
| 1688 | if (*mode == DRX_POWER_UP) { |
| 1689 | /* Restore analog & pin configuartion */ |
| 1690 | } else { |
| 1691 | /* Power down to requested mode */ |
| 1692 | /* Backup some register settings */ |
| 1693 | /* Set pins with possible pull-ups connected |
| 1694 | to them in input mode */ |
| 1695 | /* Analog power down */ |
| 1696 | /* ADC power down */ |
| 1697 | /* Power down device */ |
| 1698 | /* stop all comm_exec */ |
| 1699 | /* Stop and power down previous standard */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1700 | switch (state->m_OperationMode) { |
| 1701 | case OM_DVBT: |
| 1702 | status = MPEGTSStop(state); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1703 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1704 | goto error; |
| 1705 | status = PowerDownDVBT(state, false); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1706 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1707 | goto error; |
| 1708 | break; |
| 1709 | case OM_QAM_ITU_A: |
| 1710 | case OM_QAM_ITU_C: |
| 1711 | status = MPEGTSStop(state); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1712 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1713 | goto error; |
| 1714 | status = PowerDownQAM(state); |
| 1715 | if (status < 0) |
| 1716 | goto error; |
| 1717 | break; |
| 1718 | default: |
| 1719 | break; |
| 1720 | } |
| 1721 | status = DVBTEnableOFDMTokenRing(state, false); |
| 1722 | if (status < 0) |
| 1723 | goto error; |
| 1724 | status = write16(state, SIO_CC_PWD_MODE__A, sioCcPwdMode); |
| 1725 | if (status < 0) |
| 1726 | goto error; |
| 1727 | status = write16(state, SIO_CC_UPDATE__A, SIO_CC_UPDATE_KEY); |
| 1728 | if (status < 0) |
| 1729 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1730 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1731 | if (*mode != DRXK_POWER_DOWN_OFDM) { |
| 1732 | state->m_HICfgCtrl |= |
| 1733 | SIO_HI_RA_RAM_PAR_5_CFG_SLEEP_ZZZ; |
| 1734 | status = HI_CfgCommand(state); |
| 1735 | if (status < 0) |
| 1736 | goto error; |
| 1737 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1738 | } |
| 1739 | state->m_currentPowerMode = *mode; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1740 | |
| 1741 | error: |
| 1742 | if (status < 0) |
| 1743 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 1744 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1745 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1746 | } |
| 1747 | |
| 1748 | static int PowerDownDVBT(struct drxk_state *state, bool setPowerMode) |
| 1749 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1750 | enum DRXPowerMode powerMode = DRXK_POWER_DOWN_OFDM; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1751 | u16 cmdResult = 0; |
| 1752 | u16 data = 0; |
| 1753 | int status; |
| 1754 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1755 | dprintk(1, "\n"); |
| 1756 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1757 | status = read16(state, SCU_COMM_EXEC__A, &data); |
| 1758 | if (status < 0) |
| 1759 | goto error; |
| 1760 | if (data == SCU_COMM_EXEC_ACTIVE) { |
| 1761 | /* Send OFDM stop command */ |
| 1762 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_OFDM | SCU_RAM_COMMAND_CMD_DEMOD_STOP, 0, NULL, 1, &cmdResult); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 1763 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1764 | goto error; |
| 1765 | /* Send OFDM reset command */ |
| 1766 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_OFDM | SCU_RAM_COMMAND_CMD_DEMOD_RESET, 0, NULL, 1, &cmdResult); |
| 1767 | if (status < 0) |
| 1768 | goto error; |
| 1769 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1770 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1771 | /* Reset datapath for OFDM, processors first */ |
| 1772 | status = write16(state, OFDM_SC_COMM_EXEC__A, OFDM_SC_COMM_EXEC_STOP); |
| 1773 | if (status < 0) |
| 1774 | goto error; |
| 1775 | status = write16(state, OFDM_LC_COMM_EXEC__A, OFDM_LC_COMM_EXEC_STOP); |
| 1776 | if (status < 0) |
| 1777 | goto error; |
| 1778 | status = write16(state, IQM_COMM_EXEC__A, IQM_COMM_EXEC_B_STOP); |
| 1779 | if (status < 0) |
| 1780 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1781 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1782 | /* powerdown AFE */ |
| 1783 | status = SetIqmAf(state, false); |
| 1784 | if (status < 0) |
| 1785 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1786 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1787 | /* powerdown to OFDM mode */ |
| 1788 | if (setPowerMode) { |
| 1789 | status = CtrlPowerMode(state, &powerMode); |
| 1790 | if (status < 0) |
| 1791 | goto error; |
| 1792 | } |
| 1793 | error: |
| 1794 | if (status < 0) |
| 1795 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1796 | return status; |
| 1797 | } |
| 1798 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1799 | static int SetOperationMode(struct drxk_state *state, |
| 1800 | enum OperationMode oMode) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1801 | { |
| 1802 | int status = 0; |
| 1803 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1804 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1805 | /* |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1806 | Stop and power down previous standard |
| 1807 | TODO investigate total power down instead of partial |
| 1808 | power down depending on "previous" standard. |
| 1809 | */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1810 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1811 | /* disable HW lock indicator */ |
| 1812 | status = write16(state, SCU_RAM_GPIO__A, SCU_RAM_GPIO_HW_LOCK_IND_DISABLE); |
| 1813 | if (status < 0) |
| 1814 | goto error; |
| 1815 | |
Mauro Carvalho Chehab | f1b8297 | 2011-07-10 13:08:44 -0300 | [diff] [blame] | 1816 | /* Device is already at the required mode */ |
| 1817 | if (state->m_OperationMode == oMode) |
| 1818 | return 0; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1819 | |
Mauro Carvalho Chehab | f1b8297 | 2011-07-10 13:08:44 -0300 | [diff] [blame] | 1820 | switch (state->m_OperationMode) { |
| 1821 | /* OM_NONE was added for start up */ |
| 1822 | case OM_NONE: |
| 1823 | break; |
| 1824 | case OM_DVBT: |
| 1825 | status = MPEGTSStop(state); |
| 1826 | if (status < 0) |
| 1827 | goto error; |
| 1828 | status = PowerDownDVBT(state, true); |
| 1829 | if (status < 0) |
| 1830 | goto error; |
| 1831 | state->m_OperationMode = OM_NONE; |
| 1832 | break; |
| 1833 | case OM_QAM_ITU_A: /* fallthrough */ |
| 1834 | case OM_QAM_ITU_C: |
| 1835 | status = MPEGTSStop(state); |
| 1836 | if (status < 0) |
| 1837 | goto error; |
| 1838 | status = PowerDownQAM(state); |
| 1839 | if (status < 0) |
| 1840 | goto error; |
| 1841 | state->m_OperationMode = OM_NONE; |
| 1842 | break; |
| 1843 | case OM_QAM_ITU_B: |
| 1844 | default: |
| 1845 | status = -EINVAL; |
| 1846 | goto error; |
| 1847 | } |
| 1848 | |
| 1849 | /* |
| 1850 | Power up new standard |
| 1851 | */ |
| 1852 | switch (oMode) { |
| 1853 | case OM_DVBT: |
| 1854 | state->m_OperationMode = oMode; |
| 1855 | status = SetDVBTStandard(state, oMode); |
| 1856 | if (status < 0) |
| 1857 | goto error; |
| 1858 | break; |
| 1859 | case OM_QAM_ITU_A: /* fallthrough */ |
| 1860 | case OM_QAM_ITU_C: |
| 1861 | state->m_OperationMode = oMode; |
| 1862 | status = SetQAMStandard(state, oMode); |
| 1863 | if (status < 0) |
| 1864 | goto error; |
| 1865 | break; |
| 1866 | case OM_QAM_ITU_B: |
| 1867 | default: |
| 1868 | status = -EINVAL; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1869 | } |
| 1870 | error: |
| 1871 | if (status < 0) |
| 1872 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 1873 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1874 | } |
| 1875 | |
| 1876 | static int Start(struct drxk_state *state, s32 offsetFreq, |
| 1877 | s32 IntermediateFrequency) |
| 1878 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1879 | int status = -EINVAL; |
| 1880 | |
| 1881 | u16 IFreqkHz; |
| 1882 | s32 OffsetkHz = offsetFreq / 1000; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1883 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1884 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1885 | if (state->m_DrxkState != DRXK_STOPPED && |
| 1886 | state->m_DrxkState != DRXK_DTV_STARTED) |
| 1887 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1888 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1889 | state->m_bMirrorFreqSpect = (state->param.inversion == INVERSION_ON); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1890 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1891 | if (IntermediateFrequency < 0) { |
| 1892 | state->m_bMirrorFreqSpect = !state->m_bMirrorFreqSpect; |
| 1893 | IntermediateFrequency = -IntermediateFrequency; |
| 1894 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1895 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1896 | switch (state->m_OperationMode) { |
| 1897 | case OM_QAM_ITU_A: |
| 1898 | case OM_QAM_ITU_C: |
| 1899 | IFreqkHz = (IntermediateFrequency / 1000); |
| 1900 | status = SetQAM(state, IFreqkHz, OffsetkHz); |
| 1901 | if (status < 0) |
| 1902 | goto error; |
| 1903 | state->m_DrxkState = DRXK_DTV_STARTED; |
| 1904 | break; |
| 1905 | case OM_DVBT: |
| 1906 | IFreqkHz = (IntermediateFrequency / 1000); |
| 1907 | status = MPEGTSStop(state); |
| 1908 | if (status < 0) |
| 1909 | goto error; |
| 1910 | status = SetDVBT(state, IFreqkHz, OffsetkHz); |
| 1911 | if (status < 0) |
| 1912 | goto error; |
| 1913 | status = DVBTStart(state); |
| 1914 | if (status < 0) |
| 1915 | goto error; |
| 1916 | state->m_DrxkState = DRXK_DTV_STARTED; |
| 1917 | break; |
| 1918 | default: |
| 1919 | break; |
| 1920 | } |
| 1921 | error: |
| 1922 | if (status < 0) |
| 1923 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1924 | return status; |
| 1925 | } |
| 1926 | |
| 1927 | static int ShutDown(struct drxk_state *state) |
| 1928 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1929 | dprintk(1, "\n"); |
| 1930 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1931 | MPEGTSStop(state); |
| 1932 | return 0; |
| 1933 | } |
| 1934 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 1935 | static int GetLockStatus(struct drxk_state *state, u32 *pLockStatus, |
| 1936 | u32 Time) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1937 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1938 | int status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1939 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1940 | dprintk(1, "\n"); |
| 1941 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1942 | if (pLockStatus == NULL) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1943 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1944 | |
| 1945 | *pLockStatus = NOT_LOCKED; |
| 1946 | |
| 1947 | /* define the SCU command code */ |
| 1948 | switch (state->m_OperationMode) { |
| 1949 | case OM_QAM_ITU_A: |
| 1950 | case OM_QAM_ITU_B: |
| 1951 | case OM_QAM_ITU_C: |
| 1952 | status = GetQAMLockStatus(state, pLockStatus); |
| 1953 | break; |
| 1954 | case OM_DVBT: |
| 1955 | status = GetDVBTLockStatus(state, pLockStatus); |
| 1956 | break; |
| 1957 | default: |
| 1958 | break; |
| 1959 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1960 | error: |
| 1961 | if (status < 0) |
| 1962 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1963 | return status; |
| 1964 | } |
| 1965 | |
| 1966 | static int MPEGTSStart(struct drxk_state *state) |
| 1967 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1968 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1969 | |
| 1970 | u16 fecOcSncMode = 0; |
| 1971 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1972 | /* Allow OC to sync again */ |
| 1973 | status = read16(state, FEC_OC_SNC_MODE__A, &fecOcSncMode); |
| 1974 | if (status < 0) |
| 1975 | goto error; |
| 1976 | fecOcSncMode &= ~FEC_OC_SNC_MODE_SHUTDOWN__M; |
| 1977 | status = write16(state, FEC_OC_SNC_MODE__A, fecOcSncMode); |
| 1978 | if (status < 0) |
| 1979 | goto error; |
| 1980 | status = write16(state, FEC_OC_SNC_UNLOCK__A, 1); |
| 1981 | error: |
| 1982 | if (status < 0) |
| 1983 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1984 | return status; |
| 1985 | } |
| 1986 | |
| 1987 | static int MPEGTSDtoInit(struct drxk_state *state) |
| 1988 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1989 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1990 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 1991 | dprintk(1, "\n"); |
| 1992 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 1993 | /* Rate integration settings */ |
| 1994 | status = write16(state, FEC_OC_RCN_CTL_STEP_LO__A, 0x0000); |
| 1995 | if (status < 0) |
| 1996 | goto error; |
| 1997 | status = write16(state, FEC_OC_RCN_CTL_STEP_HI__A, 0x000C); |
| 1998 | if (status < 0) |
| 1999 | goto error; |
| 2000 | status = write16(state, FEC_OC_RCN_GAIN__A, 0x000A); |
| 2001 | if (status < 0) |
| 2002 | goto error; |
| 2003 | status = write16(state, FEC_OC_AVR_PARM_A__A, 0x0008); |
| 2004 | if (status < 0) |
| 2005 | goto error; |
| 2006 | status = write16(state, FEC_OC_AVR_PARM_B__A, 0x0006); |
| 2007 | if (status < 0) |
| 2008 | goto error; |
| 2009 | status = write16(state, FEC_OC_TMD_HI_MARGIN__A, 0x0680); |
| 2010 | if (status < 0) |
| 2011 | goto error; |
| 2012 | status = write16(state, FEC_OC_TMD_LO_MARGIN__A, 0x0080); |
| 2013 | if (status < 0) |
| 2014 | goto error; |
| 2015 | status = write16(state, FEC_OC_TMD_COUNT__A, 0x03F4); |
| 2016 | if (status < 0) |
| 2017 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2018 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2019 | /* Additional configuration */ |
| 2020 | status = write16(state, FEC_OC_OCR_INVERT__A, 0); |
| 2021 | if (status < 0) |
| 2022 | goto error; |
| 2023 | status = write16(state, FEC_OC_SNC_LWM__A, 2); |
| 2024 | if (status < 0) |
| 2025 | goto error; |
| 2026 | status = write16(state, FEC_OC_SNC_HWM__A, 12); |
| 2027 | error: |
| 2028 | if (status < 0) |
| 2029 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 2030 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2031 | return status; |
| 2032 | } |
| 2033 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2034 | static int MPEGTSDtoSetup(struct drxk_state *state, |
| 2035 | enum OperationMode oMode) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2036 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2037 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2038 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2039 | u16 fecOcRegMode = 0; /* FEC_OC_MODE register value */ |
| 2040 | u16 fecOcRegIprMode = 0; /* FEC_OC_IPR_MODE register value */ |
| 2041 | u16 fecOcDtoMode = 0; /* FEC_OC_IPR_INVERT register value */ |
| 2042 | u16 fecOcFctMode = 0; /* FEC_OC_IPR_INVERT register value */ |
| 2043 | u16 fecOcDtoPeriod = 2; /* FEC_OC_IPR_INVERT register value */ |
| 2044 | u16 fecOcDtoBurstLen = 188; /* FEC_OC_IPR_INVERT register value */ |
| 2045 | u32 fecOcRcnCtlRate = 0; /* FEC_OC_IPR_INVERT register value */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2046 | u16 fecOcTmdMode = 0; |
| 2047 | u16 fecOcTmdIntUpdRate = 0; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2048 | u32 maxBitRate = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2049 | bool staticCLK = false; |
| 2050 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2051 | dprintk(1, "\n"); |
| 2052 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2053 | /* Check insertion of the Reed-Solomon parity bytes */ |
| 2054 | status = read16(state, FEC_OC_MODE__A, &fecOcRegMode); |
| 2055 | if (status < 0) |
| 2056 | goto error; |
| 2057 | status = read16(state, FEC_OC_IPR_MODE__A, &fecOcRegIprMode); |
| 2058 | if (status < 0) |
| 2059 | goto error; |
| 2060 | fecOcRegMode &= (~FEC_OC_MODE_PARITY__M); |
| 2061 | fecOcRegIprMode &= (~FEC_OC_IPR_MODE_MVAL_DIS_PAR__M); |
| 2062 | if (state->m_insertRSByte == true) { |
| 2063 | /* enable parity symbol forward */ |
| 2064 | fecOcRegMode |= FEC_OC_MODE_PARITY__M; |
| 2065 | /* MVAL disable during parity bytes */ |
| 2066 | fecOcRegIprMode |= FEC_OC_IPR_MODE_MVAL_DIS_PAR__M; |
| 2067 | /* TS burst length to 204 */ |
| 2068 | fecOcDtoBurstLen = 204; |
| 2069 | } |
| 2070 | |
| 2071 | /* Check serial or parrallel output */ |
| 2072 | fecOcRegIprMode &= (~(FEC_OC_IPR_MODE_SERIAL__M)); |
| 2073 | if (state->m_enableParallel == false) { |
| 2074 | /* MPEG data output is serial -> set ipr_mode[0] */ |
| 2075 | fecOcRegIprMode |= FEC_OC_IPR_MODE_SERIAL__M; |
| 2076 | } |
| 2077 | |
| 2078 | switch (oMode) { |
| 2079 | case OM_DVBT: |
| 2080 | maxBitRate = state->m_DVBTBitrate; |
| 2081 | fecOcTmdMode = 3; |
| 2082 | fecOcRcnCtlRate = 0xC00000; |
| 2083 | staticCLK = state->m_DVBTStaticCLK; |
| 2084 | break; |
| 2085 | case OM_QAM_ITU_A: /* fallthrough */ |
| 2086 | case OM_QAM_ITU_C: |
| 2087 | fecOcTmdMode = 0x0004; |
| 2088 | fecOcRcnCtlRate = 0xD2B4EE; /* good for >63 Mb/s */ |
| 2089 | maxBitRate = state->m_DVBCBitrate; |
| 2090 | staticCLK = state->m_DVBCStaticCLK; |
| 2091 | break; |
| 2092 | default: |
| 2093 | status = -EINVAL; |
| 2094 | } /* switch (standard) */ |
| 2095 | if (status < 0) |
| 2096 | goto error; |
| 2097 | |
| 2098 | /* Configure DTO's */ |
| 2099 | if (staticCLK) { |
| 2100 | u32 bitRate = 0; |
| 2101 | |
| 2102 | /* Rational DTO for MCLK source (static MCLK rate), |
| 2103 | Dynamic DTO for optimal grouping |
| 2104 | (avoid intra-packet gaps), |
| 2105 | DTO offset enable to sync TS burst with MSTRT */ |
| 2106 | fecOcDtoMode = (FEC_OC_DTO_MODE_DYNAMIC__M | |
| 2107 | FEC_OC_DTO_MODE_OFFSET_ENABLE__M); |
| 2108 | fecOcFctMode = (FEC_OC_FCT_MODE_RAT_ENA__M | |
| 2109 | FEC_OC_FCT_MODE_VIRT_ENA__M); |
| 2110 | |
| 2111 | /* Check user defined bitrate */ |
| 2112 | bitRate = maxBitRate; |
| 2113 | if (bitRate > 75900000UL) { /* max is 75.9 Mb/s */ |
| 2114 | bitRate = 75900000UL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2115 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2116 | /* Rational DTO period: |
| 2117 | dto_period = (Fsys / bitrate) - 2 |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2118 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2119 | Result should be floored, |
| 2120 | to make sure >= requested bitrate |
| 2121 | */ |
| 2122 | fecOcDtoPeriod = (u16) (((state->m_sysClockFreq) |
| 2123 | * 1000) / bitRate); |
| 2124 | if (fecOcDtoPeriod <= 2) |
| 2125 | fecOcDtoPeriod = 0; |
| 2126 | else |
| 2127 | fecOcDtoPeriod -= 2; |
| 2128 | fecOcTmdIntUpdRate = 8; |
| 2129 | } else { |
| 2130 | /* (commonAttr->staticCLK == false) => dynamic mode */ |
| 2131 | fecOcDtoMode = FEC_OC_DTO_MODE_DYNAMIC__M; |
| 2132 | fecOcFctMode = FEC_OC_FCT_MODE__PRE; |
| 2133 | fecOcTmdIntUpdRate = 5; |
| 2134 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2135 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2136 | /* Write appropriate registers with requested configuration */ |
| 2137 | status = write16(state, FEC_OC_DTO_BURST_LEN__A, fecOcDtoBurstLen); |
| 2138 | if (status < 0) |
| 2139 | goto error; |
| 2140 | status = write16(state, FEC_OC_DTO_PERIOD__A, fecOcDtoPeriod); |
| 2141 | if (status < 0) |
| 2142 | goto error; |
| 2143 | status = write16(state, FEC_OC_DTO_MODE__A, fecOcDtoMode); |
| 2144 | if (status < 0) |
| 2145 | goto error; |
| 2146 | status = write16(state, FEC_OC_FCT_MODE__A, fecOcFctMode); |
| 2147 | if (status < 0) |
| 2148 | goto error; |
| 2149 | status = write16(state, FEC_OC_MODE__A, fecOcRegMode); |
| 2150 | if (status < 0) |
| 2151 | goto error; |
| 2152 | status = write16(state, FEC_OC_IPR_MODE__A, fecOcRegIprMode); |
| 2153 | if (status < 0) |
| 2154 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2155 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2156 | /* Rate integration settings */ |
| 2157 | status = write32(state, FEC_OC_RCN_CTL_RATE_LO__A, fecOcRcnCtlRate); |
| 2158 | if (status < 0) |
| 2159 | goto error; |
| 2160 | status = write16(state, FEC_OC_TMD_INT_UPD_RATE__A, fecOcTmdIntUpdRate); |
| 2161 | if (status < 0) |
| 2162 | goto error; |
| 2163 | status = write16(state, FEC_OC_TMD_MODE__A, fecOcTmdMode); |
| 2164 | error: |
| 2165 | if (status < 0) |
| 2166 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2167 | return status; |
| 2168 | } |
| 2169 | |
| 2170 | static int MPEGTSConfigurePolarity(struct drxk_state *state) |
| 2171 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2172 | u16 fecOcRegIprInvert = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2173 | |
| 2174 | /* Data mask for the output data byte */ |
| 2175 | u16 InvertDataMask = |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2176 | FEC_OC_IPR_INVERT_MD7__M | FEC_OC_IPR_INVERT_MD6__M | |
| 2177 | FEC_OC_IPR_INVERT_MD5__M | FEC_OC_IPR_INVERT_MD4__M | |
| 2178 | FEC_OC_IPR_INVERT_MD3__M | FEC_OC_IPR_INVERT_MD2__M | |
| 2179 | FEC_OC_IPR_INVERT_MD1__M | FEC_OC_IPR_INVERT_MD0__M; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2180 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2181 | dprintk(1, "\n"); |
| 2182 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2183 | /* Control selective inversion of output bits */ |
| 2184 | fecOcRegIprInvert &= (~(InvertDataMask)); |
| 2185 | if (state->m_invertDATA == true) |
| 2186 | fecOcRegIprInvert |= InvertDataMask; |
| 2187 | fecOcRegIprInvert &= (~(FEC_OC_IPR_INVERT_MERR__M)); |
| 2188 | if (state->m_invertERR == true) |
| 2189 | fecOcRegIprInvert |= FEC_OC_IPR_INVERT_MERR__M; |
| 2190 | fecOcRegIprInvert &= (~(FEC_OC_IPR_INVERT_MSTRT__M)); |
| 2191 | if (state->m_invertSTR == true) |
| 2192 | fecOcRegIprInvert |= FEC_OC_IPR_INVERT_MSTRT__M; |
| 2193 | fecOcRegIprInvert &= (~(FEC_OC_IPR_INVERT_MVAL__M)); |
| 2194 | if (state->m_invertVAL == true) |
| 2195 | fecOcRegIprInvert |= FEC_OC_IPR_INVERT_MVAL__M; |
| 2196 | fecOcRegIprInvert &= (~(FEC_OC_IPR_INVERT_MCLK__M)); |
| 2197 | if (state->m_invertCLK == true) |
| 2198 | fecOcRegIprInvert |= FEC_OC_IPR_INVERT_MCLK__M; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2199 | |
| 2200 | return write16(state, FEC_OC_IPR_INVERT__A, fecOcRegIprInvert); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2201 | } |
| 2202 | |
| 2203 | #define SCU_RAM_AGC_KI_INV_RF_POL__M 0x4000 |
| 2204 | |
| 2205 | static int SetAgcRf(struct drxk_state *state, |
| 2206 | struct SCfgAgc *pAgcCfg, bool isDTV) |
| 2207 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2208 | int status = -EINVAL; |
| 2209 | u16 data = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2210 | struct SCfgAgc *pIfAgcSettings; |
| 2211 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2212 | dprintk(1, "\n"); |
| 2213 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2214 | if (pAgcCfg == NULL) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2215 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2216 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2217 | switch (pAgcCfg->ctrlMode) { |
| 2218 | case DRXK_AGC_CTRL_AUTO: |
| 2219 | /* Enable RF AGC DAC */ |
| 2220 | status = read16(state, IQM_AF_STDBY__A, &data); |
| 2221 | if (status < 0) |
| 2222 | goto error; |
| 2223 | data &= ~IQM_AF_STDBY_STDBY_TAGC_RF_STANDBY; |
| 2224 | status = write16(state, IQM_AF_STDBY__A, data); |
| 2225 | if (status < 0) |
| 2226 | goto error; |
| 2227 | status = read16(state, SCU_RAM_AGC_CONFIG__A, &data); |
| 2228 | if (status < 0) |
| 2229 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2230 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2231 | /* Enable SCU RF AGC loop */ |
| 2232 | data &= ~SCU_RAM_AGC_CONFIG_DISABLE_RF_AGC__M; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2233 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2234 | /* Polarity */ |
| 2235 | if (state->m_RfAgcPol) |
| 2236 | data |= SCU_RAM_AGC_CONFIG_INV_RF_POL__M; |
| 2237 | else |
| 2238 | data &= ~SCU_RAM_AGC_CONFIG_INV_RF_POL__M; |
| 2239 | status = write16(state, SCU_RAM_AGC_CONFIG__A, data); |
| 2240 | if (status < 0) |
| 2241 | goto error; |
| 2242 | |
| 2243 | /* Set speed (using complementary reduction value) */ |
| 2244 | status = read16(state, SCU_RAM_AGC_KI_RED__A, &data); |
| 2245 | if (status < 0) |
| 2246 | goto error; |
| 2247 | |
| 2248 | data &= ~SCU_RAM_AGC_KI_RED_RAGC_RED__M; |
| 2249 | data |= (~(pAgcCfg->speed << |
| 2250 | SCU_RAM_AGC_KI_RED_RAGC_RED__B) |
| 2251 | & SCU_RAM_AGC_KI_RED_RAGC_RED__M); |
| 2252 | |
| 2253 | status = write16(state, SCU_RAM_AGC_KI_RED__A, data); |
| 2254 | if (status < 0) |
| 2255 | goto error; |
| 2256 | |
| 2257 | if (IsDVBT(state)) |
| 2258 | pIfAgcSettings = &state->m_dvbtIfAgcCfg; |
| 2259 | else if (IsQAM(state)) |
| 2260 | pIfAgcSettings = &state->m_qamIfAgcCfg; |
| 2261 | else |
| 2262 | pIfAgcSettings = &state->m_atvIfAgcCfg; |
| 2263 | if (pIfAgcSettings == NULL) { |
| 2264 | status = -EINVAL; |
| 2265 | goto error; |
| 2266 | } |
| 2267 | |
| 2268 | /* Set TOP, only if IF-AGC is in AUTO mode */ |
| 2269 | if (pIfAgcSettings->ctrlMode == DRXK_AGC_CTRL_AUTO) |
| 2270 | status = write16(state, SCU_RAM_AGC_IF_IACCU_HI_TGT_MAX__A, pAgcCfg->top); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2271 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2272 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2273 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2274 | /* Cut-Off current */ |
| 2275 | status = write16(state, SCU_RAM_AGC_RF_IACCU_HI_CO__A, pAgcCfg->cutOffCurrent); |
| 2276 | if (status < 0) |
| 2277 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2278 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2279 | /* Max. output level */ |
| 2280 | status = write16(state, SCU_RAM_AGC_RF_MAX__A, pAgcCfg->maxOutputLevel); |
| 2281 | if (status < 0) |
| 2282 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2283 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2284 | break; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2285 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2286 | case DRXK_AGC_CTRL_USER: |
| 2287 | /* Enable RF AGC DAC */ |
| 2288 | status = read16(state, IQM_AF_STDBY__A, &data); |
| 2289 | if (status < 0) |
| 2290 | goto error; |
| 2291 | data &= ~IQM_AF_STDBY_STDBY_TAGC_RF_STANDBY; |
| 2292 | status = write16(state, IQM_AF_STDBY__A, data); |
| 2293 | if (status < 0) |
| 2294 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2295 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2296 | /* Disable SCU RF AGC loop */ |
| 2297 | status = read16(state, SCU_RAM_AGC_CONFIG__A, &data); |
| 2298 | if (status < 0) |
| 2299 | goto error; |
| 2300 | data |= SCU_RAM_AGC_CONFIG_DISABLE_RF_AGC__M; |
| 2301 | if (state->m_RfAgcPol) |
| 2302 | data |= SCU_RAM_AGC_CONFIG_INV_RF_POL__M; |
| 2303 | else |
| 2304 | data &= ~SCU_RAM_AGC_CONFIG_INV_RF_POL__M; |
| 2305 | status = write16(state, SCU_RAM_AGC_CONFIG__A, data); |
| 2306 | if (status < 0) |
| 2307 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2308 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2309 | /* SCU c.o.c. to 0, enabling full control range */ |
| 2310 | status = write16(state, SCU_RAM_AGC_RF_IACCU_HI_CO__A, 0); |
| 2311 | if (status < 0) |
| 2312 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2313 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2314 | /* Write value to output pin */ |
| 2315 | status = write16(state, SCU_RAM_AGC_RF_IACCU_HI__A, pAgcCfg->outputLevel); |
| 2316 | if (status < 0) |
| 2317 | goto error; |
| 2318 | break; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2319 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2320 | case DRXK_AGC_CTRL_OFF: |
| 2321 | /* Disable RF AGC DAC */ |
| 2322 | status = read16(state, IQM_AF_STDBY__A, &data); |
| 2323 | if (status < 0) |
| 2324 | goto error; |
| 2325 | data |= IQM_AF_STDBY_STDBY_TAGC_RF_STANDBY; |
| 2326 | status = write16(state, IQM_AF_STDBY__A, data); |
| 2327 | if (status < 0) |
| 2328 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2329 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2330 | /* Disable SCU RF AGC loop */ |
| 2331 | status = read16(state, SCU_RAM_AGC_CONFIG__A, &data); |
| 2332 | if (status < 0) |
| 2333 | goto error; |
| 2334 | data |= SCU_RAM_AGC_CONFIG_DISABLE_RF_AGC__M; |
| 2335 | status = write16(state, SCU_RAM_AGC_CONFIG__A, data); |
| 2336 | if (status < 0) |
| 2337 | goto error; |
| 2338 | break; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2339 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2340 | default: |
| 2341 | status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2342 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2343 | } |
| 2344 | error: |
| 2345 | if (status < 0) |
| 2346 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2347 | return status; |
| 2348 | } |
| 2349 | |
| 2350 | #define SCU_RAM_AGC_KI_INV_IF_POL__M 0x2000 |
| 2351 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2352 | static int SetAgcIf(struct drxk_state *state, |
| 2353 | struct SCfgAgc *pAgcCfg, bool isDTV) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2354 | { |
| 2355 | u16 data = 0; |
| 2356 | int status = 0; |
| 2357 | struct SCfgAgc *pRfAgcSettings; |
| 2358 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2359 | dprintk(1, "\n"); |
| 2360 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2361 | switch (pAgcCfg->ctrlMode) { |
| 2362 | case DRXK_AGC_CTRL_AUTO: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2363 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2364 | /* Enable IF AGC DAC */ |
| 2365 | status = read16(state, IQM_AF_STDBY__A, &data); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2366 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2367 | goto error; |
| 2368 | data &= ~IQM_AF_STDBY_STDBY_TAGC_IF_STANDBY; |
| 2369 | status = write16(state, IQM_AF_STDBY__A, data); |
| 2370 | if (status < 0) |
| 2371 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2372 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2373 | status = read16(state, SCU_RAM_AGC_CONFIG__A, &data); |
| 2374 | if (status < 0) |
| 2375 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2376 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2377 | /* Enable SCU IF AGC loop */ |
| 2378 | data &= ~SCU_RAM_AGC_CONFIG_DISABLE_IF_AGC__M; |
| 2379 | |
| 2380 | /* Polarity */ |
| 2381 | if (state->m_IfAgcPol) |
| 2382 | data |= SCU_RAM_AGC_CONFIG_INV_IF_POL__M; |
| 2383 | else |
| 2384 | data &= ~SCU_RAM_AGC_CONFIG_INV_IF_POL__M; |
| 2385 | status = write16(state, SCU_RAM_AGC_CONFIG__A, data); |
| 2386 | if (status < 0) |
| 2387 | goto error; |
| 2388 | |
| 2389 | /* Set speed (using complementary reduction value) */ |
| 2390 | status = read16(state, SCU_RAM_AGC_KI_RED__A, &data); |
| 2391 | if (status < 0) |
| 2392 | goto error; |
| 2393 | data &= ~SCU_RAM_AGC_KI_RED_IAGC_RED__M; |
| 2394 | data |= (~(pAgcCfg->speed << |
| 2395 | SCU_RAM_AGC_KI_RED_IAGC_RED__B) |
| 2396 | & SCU_RAM_AGC_KI_RED_IAGC_RED__M); |
| 2397 | |
| 2398 | status = write16(state, SCU_RAM_AGC_KI_RED__A, data); |
| 2399 | if (status < 0) |
| 2400 | goto error; |
| 2401 | |
| 2402 | if (IsQAM(state)) |
| 2403 | pRfAgcSettings = &state->m_qamRfAgcCfg; |
| 2404 | else |
| 2405 | pRfAgcSettings = &state->m_atvRfAgcCfg; |
| 2406 | if (pRfAgcSettings == NULL) |
| 2407 | return -1; |
| 2408 | /* Restore TOP */ |
| 2409 | status = write16(state, SCU_RAM_AGC_IF_IACCU_HI_TGT_MAX__A, pRfAgcSettings->top); |
| 2410 | if (status < 0) |
| 2411 | goto error; |
| 2412 | break; |
| 2413 | |
| 2414 | case DRXK_AGC_CTRL_USER: |
| 2415 | |
| 2416 | /* Enable IF AGC DAC */ |
| 2417 | status = read16(state, IQM_AF_STDBY__A, &data); |
| 2418 | if (status < 0) |
| 2419 | goto error; |
| 2420 | data &= ~IQM_AF_STDBY_STDBY_TAGC_IF_STANDBY; |
| 2421 | status = write16(state, IQM_AF_STDBY__A, data); |
| 2422 | if (status < 0) |
| 2423 | goto error; |
| 2424 | |
| 2425 | status = read16(state, SCU_RAM_AGC_CONFIG__A, &data); |
| 2426 | if (status < 0) |
| 2427 | goto error; |
| 2428 | |
| 2429 | /* Disable SCU IF AGC loop */ |
| 2430 | data |= SCU_RAM_AGC_CONFIG_DISABLE_IF_AGC__M; |
| 2431 | |
| 2432 | /* Polarity */ |
| 2433 | if (state->m_IfAgcPol) |
| 2434 | data |= SCU_RAM_AGC_CONFIG_INV_IF_POL__M; |
| 2435 | else |
| 2436 | data &= ~SCU_RAM_AGC_CONFIG_INV_IF_POL__M; |
| 2437 | status = write16(state, SCU_RAM_AGC_CONFIG__A, data); |
| 2438 | if (status < 0) |
| 2439 | goto error; |
| 2440 | |
| 2441 | /* Write value to output pin */ |
| 2442 | status = write16(state, SCU_RAM_AGC_IF_IACCU_HI_TGT_MAX__A, pAgcCfg->outputLevel); |
| 2443 | if (status < 0) |
| 2444 | goto error; |
| 2445 | break; |
| 2446 | |
| 2447 | case DRXK_AGC_CTRL_OFF: |
| 2448 | |
| 2449 | /* Disable If AGC DAC */ |
| 2450 | status = read16(state, IQM_AF_STDBY__A, &data); |
| 2451 | if (status < 0) |
| 2452 | goto error; |
| 2453 | data |= IQM_AF_STDBY_STDBY_TAGC_IF_STANDBY; |
| 2454 | status = write16(state, IQM_AF_STDBY__A, data); |
| 2455 | if (status < 0) |
| 2456 | goto error; |
| 2457 | |
| 2458 | /* Disable SCU IF AGC loop */ |
| 2459 | status = read16(state, SCU_RAM_AGC_CONFIG__A, &data); |
| 2460 | if (status < 0) |
| 2461 | goto error; |
| 2462 | data |= SCU_RAM_AGC_CONFIG_DISABLE_IF_AGC__M; |
| 2463 | status = write16(state, SCU_RAM_AGC_CONFIG__A, data); |
| 2464 | if (status < 0) |
| 2465 | goto error; |
| 2466 | break; |
| 2467 | } /* switch (agcSettingsIf->ctrlMode) */ |
| 2468 | |
| 2469 | /* always set the top to support |
| 2470 | configurations without if-loop */ |
| 2471 | status = write16(state, SCU_RAM_AGC_INGAIN_TGT_MIN__A, pAgcCfg->top); |
| 2472 | error: |
| 2473 | if (status < 0) |
| 2474 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2475 | return status; |
| 2476 | } |
| 2477 | |
| 2478 | static int ReadIFAgc(struct drxk_state *state, u32 *pValue) |
| 2479 | { |
| 2480 | u16 agcDacLvl; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2481 | int status; |
| 2482 | u16 Level = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2483 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2484 | dprintk(1, "\n"); |
| 2485 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2486 | status = read16(state, IQM_AF_AGC_IF__A, &agcDacLvl); |
| 2487 | if (status < 0) { |
| 2488 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 2489 | return status; |
| 2490 | } |
| 2491 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2492 | *pValue = 0; |
| 2493 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2494 | if (agcDacLvl > DRXK_AGC_DAC_OFFSET) |
| 2495 | Level = agcDacLvl - DRXK_AGC_DAC_OFFSET; |
| 2496 | if (Level < 14000) |
| 2497 | *pValue = (14000 - Level) / 4; |
| 2498 | else |
| 2499 | *pValue = 0; |
| 2500 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2501 | return status; |
| 2502 | } |
| 2503 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2504 | static int GetQAMSignalToNoise(struct drxk_state *state, |
| 2505 | s32 *pSignalToNoise) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2506 | { |
| 2507 | int status = 0; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2508 | u16 qamSlErrPower = 0; /* accum. error between |
| 2509 | raw and sliced symbols */ |
| 2510 | u32 qamSlSigPower = 0; /* used for MER, depends of |
| 2511 | QAM constellation */ |
| 2512 | u32 qamSlMer = 0; /* QAM MER */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2513 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2514 | dprintk(1, "\n"); |
| 2515 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2516 | /* MER calculation */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2517 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2518 | /* get the register value needed for MER */ |
| 2519 | status = read16(state, QAM_SL_ERR_POWER__A, &qamSlErrPower); |
| 2520 | if (status < 0) { |
| 2521 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 2522 | return -EINVAL; |
| 2523 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2524 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2525 | switch (state->param.u.qam.modulation) { |
| 2526 | case QAM_16: |
| 2527 | qamSlSigPower = DRXK_QAM_SL_SIG_POWER_QAM16 << 2; |
| 2528 | break; |
| 2529 | case QAM_32: |
| 2530 | qamSlSigPower = DRXK_QAM_SL_SIG_POWER_QAM32 << 2; |
| 2531 | break; |
| 2532 | case QAM_64: |
| 2533 | qamSlSigPower = DRXK_QAM_SL_SIG_POWER_QAM64 << 2; |
| 2534 | break; |
| 2535 | case QAM_128: |
| 2536 | qamSlSigPower = DRXK_QAM_SL_SIG_POWER_QAM128 << 2; |
| 2537 | break; |
| 2538 | default: |
| 2539 | case QAM_256: |
| 2540 | qamSlSigPower = DRXK_QAM_SL_SIG_POWER_QAM256 << 2; |
| 2541 | break; |
| 2542 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2543 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2544 | if (qamSlErrPower > 0) { |
| 2545 | qamSlMer = Log10Times100(qamSlSigPower) - |
| 2546 | Log10Times100((u32) qamSlErrPower); |
| 2547 | } |
| 2548 | *pSignalToNoise = qamSlMer; |
| 2549 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2550 | return status; |
| 2551 | } |
| 2552 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2553 | static int GetDVBTSignalToNoise(struct drxk_state *state, |
| 2554 | s32 *pSignalToNoise) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2555 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2556 | int status; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2557 | u16 regData = 0; |
| 2558 | u32 EqRegTdSqrErrI = 0; |
| 2559 | u32 EqRegTdSqrErrQ = 0; |
| 2560 | u16 EqRegTdSqrErrExp = 0; |
| 2561 | u16 EqRegTdTpsPwrOfs = 0; |
| 2562 | u16 EqRegTdReqSmbCnt = 0; |
| 2563 | u32 tpsCnt = 0; |
| 2564 | u32 SqrErrIQ = 0; |
| 2565 | u32 a = 0; |
| 2566 | u32 b = 0; |
| 2567 | u32 c = 0; |
| 2568 | u32 iMER = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2569 | u16 transmissionParams = 0; |
| 2570 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2571 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2572 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2573 | status = read16(state, OFDM_EQ_TOP_TD_TPS_PWR_OFS__A, &EqRegTdTpsPwrOfs); |
| 2574 | if (status < 0) |
| 2575 | goto error; |
| 2576 | status = read16(state, OFDM_EQ_TOP_TD_REQ_SMB_CNT__A, &EqRegTdReqSmbCnt); |
| 2577 | if (status < 0) |
| 2578 | goto error; |
| 2579 | status = read16(state, OFDM_EQ_TOP_TD_SQR_ERR_EXP__A, &EqRegTdSqrErrExp); |
| 2580 | if (status < 0) |
| 2581 | goto error; |
| 2582 | status = read16(state, OFDM_EQ_TOP_TD_SQR_ERR_I__A, ®Data); |
| 2583 | if (status < 0) |
| 2584 | goto error; |
| 2585 | /* Extend SQR_ERR_I operational range */ |
| 2586 | EqRegTdSqrErrI = (u32) regData; |
| 2587 | if ((EqRegTdSqrErrExp > 11) && |
| 2588 | (EqRegTdSqrErrI < 0x00000FFFUL)) { |
| 2589 | EqRegTdSqrErrI += 0x00010000UL; |
| 2590 | } |
| 2591 | status = read16(state, OFDM_EQ_TOP_TD_SQR_ERR_Q__A, ®Data); |
| 2592 | if (status < 0) |
| 2593 | goto error; |
| 2594 | /* Extend SQR_ERR_Q operational range */ |
| 2595 | EqRegTdSqrErrQ = (u32) regData; |
| 2596 | if ((EqRegTdSqrErrExp > 11) && |
| 2597 | (EqRegTdSqrErrQ < 0x00000FFFUL)) |
| 2598 | EqRegTdSqrErrQ += 0x00010000UL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2599 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2600 | status = read16(state, OFDM_SC_RA_RAM_OP_PARAM__A, &transmissionParams); |
| 2601 | if (status < 0) |
| 2602 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2603 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2604 | /* Check input data for MER */ |
| 2605 | |
| 2606 | /* MER calculation (in 0.1 dB) without math.h */ |
| 2607 | if ((EqRegTdTpsPwrOfs == 0) || (EqRegTdReqSmbCnt == 0)) |
| 2608 | iMER = 0; |
| 2609 | else if ((EqRegTdSqrErrI + EqRegTdSqrErrQ) == 0) { |
| 2610 | /* No error at all, this must be the HW reset value |
| 2611 | * Apparently no first measurement yet |
| 2612 | * Set MER to 0.0 */ |
| 2613 | iMER = 0; |
| 2614 | } else { |
| 2615 | SqrErrIQ = (EqRegTdSqrErrI + EqRegTdSqrErrQ) << |
| 2616 | EqRegTdSqrErrExp; |
| 2617 | if ((transmissionParams & |
| 2618 | OFDM_SC_RA_RAM_OP_PARAM_MODE__M) |
| 2619 | == OFDM_SC_RA_RAM_OP_PARAM_MODE_2K) |
| 2620 | tpsCnt = 17; |
| 2621 | else |
| 2622 | tpsCnt = 68; |
| 2623 | |
| 2624 | /* IMER = 100 * log10 (x) |
| 2625 | where x = (EqRegTdTpsPwrOfs^2 * |
| 2626 | EqRegTdReqSmbCnt * tpsCnt)/SqrErrIQ |
| 2627 | |
| 2628 | => IMER = a + b -c |
| 2629 | where a = 100 * log10 (EqRegTdTpsPwrOfs^2) |
| 2630 | b = 100 * log10 (EqRegTdReqSmbCnt * tpsCnt) |
| 2631 | c = 100 * log10 (SqrErrIQ) |
| 2632 | */ |
| 2633 | |
| 2634 | /* log(x) x = 9bits * 9bits->18 bits */ |
| 2635 | a = Log10Times100(EqRegTdTpsPwrOfs * |
| 2636 | EqRegTdTpsPwrOfs); |
| 2637 | /* log(x) x = 16bits * 7bits->23 bits */ |
| 2638 | b = Log10Times100(EqRegTdReqSmbCnt * tpsCnt); |
| 2639 | /* log(x) x = (16bits + 16bits) << 15 ->32 bits */ |
| 2640 | c = Log10Times100(SqrErrIQ); |
| 2641 | |
| 2642 | iMER = a + b; |
| 2643 | /* No negative MER, clip to zero */ |
| 2644 | if (iMER > c) |
| 2645 | iMER -= c; |
| 2646 | else |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2647 | iMER = 0; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2648 | } |
| 2649 | *pSignalToNoise = iMER; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2650 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2651 | error: |
| 2652 | if (status < 0) |
| 2653 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2654 | return status; |
| 2655 | } |
| 2656 | |
| 2657 | static int GetSignalToNoise(struct drxk_state *state, s32 *pSignalToNoise) |
| 2658 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2659 | dprintk(1, "\n"); |
| 2660 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2661 | *pSignalToNoise = 0; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2662 | switch (state->m_OperationMode) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2663 | case OM_DVBT: |
| 2664 | return GetDVBTSignalToNoise(state, pSignalToNoise); |
| 2665 | case OM_QAM_ITU_A: |
| 2666 | case OM_QAM_ITU_C: |
| 2667 | return GetQAMSignalToNoise(state, pSignalToNoise); |
| 2668 | default: |
| 2669 | break; |
| 2670 | } |
| 2671 | return 0; |
| 2672 | } |
| 2673 | |
| 2674 | #if 0 |
| 2675 | static int GetDVBTQuality(struct drxk_state *state, s32 *pQuality) |
| 2676 | { |
| 2677 | /* SNR Values for quasi errorfree reception rom Nordig 2.2 */ |
| 2678 | int status = 0; |
| 2679 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2680 | dprintk(1, "\n"); |
| 2681 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2682 | static s32 QE_SN[] = { |
| 2683 | 51, /* QPSK 1/2 */ |
| 2684 | 69, /* QPSK 2/3 */ |
| 2685 | 79, /* QPSK 3/4 */ |
| 2686 | 89, /* QPSK 5/6 */ |
| 2687 | 97, /* QPSK 7/8 */ |
| 2688 | 108, /* 16-QAM 1/2 */ |
| 2689 | 131, /* 16-QAM 2/3 */ |
| 2690 | 146, /* 16-QAM 3/4 */ |
| 2691 | 156, /* 16-QAM 5/6 */ |
| 2692 | 160, /* 16-QAM 7/8 */ |
| 2693 | 165, /* 64-QAM 1/2 */ |
| 2694 | 187, /* 64-QAM 2/3 */ |
| 2695 | 202, /* 64-QAM 3/4 */ |
| 2696 | 216, /* 64-QAM 5/6 */ |
| 2697 | 225, /* 64-QAM 7/8 */ |
| 2698 | }; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2699 | |
| 2700 | *pQuality = 0; |
| 2701 | |
| 2702 | do { |
| 2703 | s32 SignalToNoise = 0; |
| 2704 | u16 Constellation = 0; |
| 2705 | u16 CodeRate = 0; |
| 2706 | u32 SignalToNoiseRel; |
| 2707 | u32 BERQuality; |
| 2708 | |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2709 | status = GetDVBTSignalToNoise(state, &SignalToNoise); |
| 2710 | if (status < 0) |
| 2711 | break; |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 2712 | status = read16(state, OFDM_EQ_TOP_TD_TPS_CONST__A, &Constellation); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2713 | if (status < 0) |
| 2714 | break; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2715 | Constellation &= OFDM_EQ_TOP_TD_TPS_CONST__M; |
| 2716 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 2717 | status = read16(state, OFDM_EQ_TOP_TD_TPS_CODE_HP__A, &CodeRate); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2718 | if (status < 0) |
| 2719 | break; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2720 | CodeRate &= OFDM_EQ_TOP_TD_TPS_CODE_HP__M; |
| 2721 | |
| 2722 | if (Constellation > OFDM_EQ_TOP_TD_TPS_CONST_64QAM || |
| 2723 | CodeRate > OFDM_EQ_TOP_TD_TPS_CODE_LP_7_8) |
| 2724 | break; |
| 2725 | SignalToNoiseRel = SignalToNoise - |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2726 | QE_SN[Constellation * 5 + CodeRate]; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2727 | BERQuality = 100; |
| 2728 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2729 | if (SignalToNoiseRel < -70) |
| 2730 | *pQuality = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2731 | else if (SignalToNoiseRel < 30) |
| 2732 | *pQuality = ((SignalToNoiseRel + 70) * |
| 2733 | BERQuality) / 100; |
| 2734 | else |
| 2735 | *pQuality = BERQuality; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2736 | } while (0); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2737 | return 0; |
| 2738 | }; |
| 2739 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2740 | static int GetDVBCQuality(struct drxk_state *state, s32 *pQuality) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2741 | { |
| 2742 | int status = 0; |
| 2743 | *pQuality = 0; |
| 2744 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2745 | dprintk(1, "\n"); |
| 2746 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2747 | do { |
| 2748 | u32 SignalToNoise = 0; |
| 2749 | u32 BERQuality = 100; |
| 2750 | u32 SignalToNoiseRel = 0; |
| 2751 | |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2752 | status = GetQAMSignalToNoise(state, &SignalToNoise); |
| 2753 | if (status < 0) |
| 2754 | break; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2755 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2756 | switch (state->param.u.qam.modulation) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2757 | case QAM_16: |
| 2758 | SignalToNoiseRel = SignalToNoise - 200; |
| 2759 | break; |
| 2760 | case QAM_32: |
| 2761 | SignalToNoiseRel = SignalToNoise - 230; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2762 | break; /* Not in NorDig */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2763 | case QAM_64: |
| 2764 | SignalToNoiseRel = SignalToNoise - 260; |
| 2765 | break; |
| 2766 | case QAM_128: |
| 2767 | SignalToNoiseRel = SignalToNoise - 290; |
| 2768 | break; |
| 2769 | default: |
| 2770 | case QAM_256: |
| 2771 | SignalToNoiseRel = SignalToNoise - 320; |
| 2772 | break; |
| 2773 | } |
| 2774 | |
| 2775 | if (SignalToNoiseRel < -70) |
| 2776 | *pQuality = 0; |
| 2777 | else if (SignalToNoiseRel < 30) |
| 2778 | *pQuality = ((SignalToNoiseRel + 70) * |
| 2779 | BERQuality) / 100; |
| 2780 | else |
| 2781 | *pQuality = BERQuality; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2782 | } while (0); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2783 | |
| 2784 | return status; |
| 2785 | } |
| 2786 | |
| 2787 | static int GetQuality(struct drxk_state *state, s32 *pQuality) |
| 2788 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2789 | dprintk(1, "\n"); |
| 2790 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2791 | switch (state->m_OperationMode) { |
| 2792 | case OM_DVBT: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2793 | return GetDVBTQuality(state, pQuality); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2794 | case OM_QAM_ITU_A: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2795 | return GetDVBCQuality(state, pQuality); |
| 2796 | default: |
| 2797 | break; |
| 2798 | } |
| 2799 | |
| 2800 | return 0; |
| 2801 | } |
| 2802 | #endif |
| 2803 | |
| 2804 | /* Free data ram in SIO HI */ |
| 2805 | #define SIO_HI_RA_RAM_USR_BEGIN__A 0x420040 |
| 2806 | #define SIO_HI_RA_RAM_USR_END__A 0x420060 |
| 2807 | |
| 2808 | #define DRXK_HI_ATOMIC_BUF_START (SIO_HI_RA_RAM_USR_BEGIN__A) |
| 2809 | #define DRXK_HI_ATOMIC_BUF_END (SIO_HI_RA_RAM_USR_BEGIN__A + 7) |
| 2810 | #define DRXK_HI_ATOMIC_READ SIO_HI_RA_RAM_PAR_3_ACP_RW_READ |
| 2811 | #define DRXK_HI_ATOMIC_WRITE SIO_HI_RA_RAM_PAR_3_ACP_RW_WRITE |
| 2812 | |
| 2813 | #define DRXDAP_FASI_ADDR2BLOCK(addr) (((addr) >> 22) & 0x3F) |
| 2814 | #define DRXDAP_FASI_ADDR2BANK(addr) (((addr) >> 16) & 0x3F) |
| 2815 | #define DRXDAP_FASI_ADDR2OFFSET(addr) ((addr) & 0x7FFF) |
| 2816 | |
| 2817 | static int ConfigureI2CBridge(struct drxk_state *state, bool bEnableBridge) |
| 2818 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2819 | int status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2820 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2821 | dprintk(1, "\n"); |
| 2822 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2823 | if (state->m_DrxkState == DRXK_UNINITIALIZED) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2824 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2825 | if (state->m_DrxkState == DRXK_POWERED_DOWN) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2826 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2827 | |
Mauro Carvalho Chehab | f1fe1b7 | 2011-07-09 21:59:33 -0300 | [diff] [blame] | 2828 | if (state->no_i2c_bridge) |
| 2829 | return 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2830 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2831 | status = write16(state, SIO_HI_RA_RAM_PAR_1__A, SIO_HI_RA_RAM_PAR_1_PAR1_SEC_KEY); |
| 2832 | if (status < 0) |
| 2833 | goto error; |
| 2834 | if (bEnableBridge) { |
| 2835 | status = write16(state, SIO_HI_RA_RAM_PAR_2__A, SIO_HI_RA_RAM_PAR_2_BRD_CFG_CLOSED); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2836 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2837 | goto error; |
| 2838 | } else { |
| 2839 | status = write16(state, SIO_HI_RA_RAM_PAR_2__A, SIO_HI_RA_RAM_PAR_2_BRD_CFG_OPEN); |
| 2840 | if (status < 0) |
| 2841 | goto error; |
| 2842 | } |
| 2843 | |
| 2844 | status = HI_Command(state, SIO_HI_RA_RAM_CMD_BRDCTRL, 0); |
| 2845 | |
| 2846 | error: |
| 2847 | if (status < 0) |
| 2848 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2849 | return status; |
| 2850 | } |
| 2851 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2852 | static int SetPreSaw(struct drxk_state *state, |
| 2853 | struct SCfgPreSaw *pPreSawCfg) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2854 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2855 | int status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2856 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2857 | dprintk(1, "\n"); |
| 2858 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2859 | if ((pPreSawCfg == NULL) |
| 2860 | || (pPreSawCfg->reference > IQM_AF_PDREF__M)) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2861 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2862 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 2863 | status = write16(state, IQM_AF_PDREF__A, pPreSawCfg->reference); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2864 | error: |
| 2865 | if (status < 0) |
| 2866 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2867 | return status; |
| 2868 | } |
| 2869 | |
| 2870 | static int BLDirectCmd(struct drxk_state *state, u32 targetAddr, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2871 | u16 romOffset, u16 nrOfElements, u32 timeOut) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2872 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2873 | u16 blStatus = 0; |
| 2874 | u16 offset = (u16) ((targetAddr >> 0) & 0x00FFFF); |
| 2875 | u16 blockbank = (u16) ((targetAddr >> 16) & 0x000FFF); |
| 2876 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2877 | unsigned long end; |
| 2878 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2879 | dprintk(1, "\n"); |
| 2880 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2881 | mutex_lock(&state->mutex); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2882 | status = write16(state, SIO_BL_MODE__A, SIO_BL_MODE_DIRECT); |
| 2883 | if (status < 0) |
| 2884 | goto error; |
| 2885 | status = write16(state, SIO_BL_TGT_HDR__A, blockbank); |
| 2886 | if (status < 0) |
| 2887 | goto error; |
| 2888 | status = write16(state, SIO_BL_TGT_ADDR__A, offset); |
| 2889 | if (status < 0) |
| 2890 | goto error; |
| 2891 | status = write16(state, SIO_BL_SRC_ADDR__A, romOffset); |
| 2892 | if (status < 0) |
| 2893 | goto error; |
| 2894 | status = write16(state, SIO_BL_SRC_LEN__A, nrOfElements); |
| 2895 | if (status < 0) |
| 2896 | goto error; |
| 2897 | status = write16(state, SIO_BL_ENABLE__A, SIO_BL_ENABLE_ON); |
| 2898 | if (status < 0) |
| 2899 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2900 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2901 | end = jiffies + msecs_to_jiffies(timeOut); |
| 2902 | do { |
| 2903 | status = read16(state, SIO_BL_STATUS__A, &blStatus); |
| 2904 | if (status < 0) |
| 2905 | goto error; |
| 2906 | } while ((blStatus == 0x1) && time_is_after_jiffies(end)); |
| 2907 | if (blStatus == 0x1) { |
| 2908 | printk(KERN_ERR "drxk: SIO not ready\n"); |
| 2909 | status = -EINVAL; |
| 2910 | goto error2; |
| 2911 | } |
| 2912 | error: |
| 2913 | if (status < 0) |
| 2914 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 2915 | error2: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2916 | mutex_unlock(&state->mutex); |
| 2917 | return status; |
| 2918 | |
| 2919 | } |
| 2920 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 2921 | static int ADCSyncMeasurement(struct drxk_state *state, u16 *count) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2922 | { |
| 2923 | u16 data = 0; |
| 2924 | int status; |
| 2925 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2926 | dprintk(1, "\n"); |
| 2927 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2928 | /* Start measurement */ |
| 2929 | status = write16(state, IQM_AF_COMM_EXEC__A, IQM_AF_COMM_EXEC_ACTIVE); |
| 2930 | if (status < 0) |
| 2931 | goto error; |
| 2932 | status = write16(state, IQM_AF_START_LOCK__A, 1); |
| 2933 | if (status < 0) |
| 2934 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2935 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2936 | *count = 0; |
| 2937 | status = read16(state, IQM_AF_PHASE0__A, &data); |
| 2938 | if (status < 0) |
| 2939 | goto error; |
| 2940 | if (data == 127) |
| 2941 | *count = *count + 1; |
| 2942 | status = read16(state, IQM_AF_PHASE1__A, &data); |
| 2943 | if (status < 0) |
| 2944 | goto error; |
| 2945 | if (data == 127) |
| 2946 | *count = *count + 1; |
| 2947 | status = read16(state, IQM_AF_PHASE2__A, &data); |
| 2948 | if (status < 0) |
| 2949 | goto error; |
| 2950 | if (data == 127) |
| 2951 | *count = *count + 1; |
| 2952 | |
| 2953 | error: |
| 2954 | if (status < 0) |
| 2955 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2956 | return status; |
| 2957 | } |
| 2958 | |
| 2959 | static int ADCSynchronization(struct drxk_state *state) |
| 2960 | { |
| 2961 | u16 count = 0; |
| 2962 | int status; |
| 2963 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 2964 | dprintk(1, "\n"); |
| 2965 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2966 | status = ADCSyncMeasurement(state, &count); |
| 2967 | if (status < 0) |
| 2968 | goto error; |
| 2969 | |
| 2970 | if (count == 1) { |
| 2971 | /* Try sampling on a diffrent edge */ |
| 2972 | u16 clkNeg = 0; |
| 2973 | |
| 2974 | status = read16(state, IQM_AF_CLKNEG__A, &clkNeg); |
| 2975 | if (status < 0) |
| 2976 | goto error; |
| 2977 | if ((clkNeg | IQM_AF_CLKNEG_CLKNEGDATA__M) == |
| 2978 | IQM_AF_CLKNEG_CLKNEGDATA_CLK_ADC_DATA_POS) { |
| 2979 | clkNeg &= (~(IQM_AF_CLKNEG_CLKNEGDATA__M)); |
| 2980 | clkNeg |= |
| 2981 | IQM_AF_CLKNEG_CLKNEGDATA_CLK_ADC_DATA_NEG; |
| 2982 | } else { |
| 2983 | clkNeg &= (~(IQM_AF_CLKNEG_CLKNEGDATA__M)); |
| 2984 | clkNeg |= |
| 2985 | IQM_AF_CLKNEG_CLKNEGDATA_CLK_ADC_DATA_POS; |
| 2986 | } |
| 2987 | status = write16(state, IQM_AF_CLKNEG__A, clkNeg); |
| 2988 | if (status < 0) |
| 2989 | goto error; |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 2990 | status = ADCSyncMeasurement(state, &count); |
| 2991 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2992 | goto error; |
| 2993 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 2994 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 2995 | if (count < 2) |
| 2996 | status = -EINVAL; |
| 2997 | error: |
| 2998 | if (status < 0) |
| 2999 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3000 | return status; |
| 3001 | } |
| 3002 | |
| 3003 | static int SetFrequencyShifter(struct drxk_state *state, |
| 3004 | u16 intermediateFreqkHz, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3005 | s32 tunerFreqOffset, bool isDTV) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3006 | { |
| 3007 | bool selectPosImage = false; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3008 | u32 rfFreqResidual = tunerFreqOffset; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3009 | u32 fmFrequencyShift = 0; |
| 3010 | bool tunerMirror = !state->m_bMirrorFreqSpect; |
| 3011 | u32 adcFreq; |
| 3012 | bool adcFlip; |
| 3013 | int status; |
| 3014 | u32 ifFreqActual; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3015 | u32 samplingFrequency = (u32) (state->m_sysClockFreq / 3); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3016 | u32 frequencyShift; |
| 3017 | bool imageToSelect; |
| 3018 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3019 | dprintk(1, "\n"); |
| 3020 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3021 | /* |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3022 | Program frequency shifter |
| 3023 | No need to account for mirroring on RF |
| 3024 | */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3025 | if (isDTV) { |
| 3026 | if ((state->m_OperationMode == OM_QAM_ITU_A) || |
| 3027 | (state->m_OperationMode == OM_QAM_ITU_C) || |
| 3028 | (state->m_OperationMode == OM_DVBT)) |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3029 | selectPosImage = true; |
| 3030 | else |
| 3031 | selectPosImage = false; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3032 | } |
| 3033 | if (tunerMirror) |
| 3034 | /* tuner doesn't mirror */ |
| 3035 | ifFreqActual = intermediateFreqkHz + |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3036 | rfFreqResidual + fmFrequencyShift; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3037 | else |
| 3038 | /* tuner mirrors */ |
| 3039 | ifFreqActual = intermediateFreqkHz - |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3040 | rfFreqResidual - fmFrequencyShift; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3041 | if (ifFreqActual > samplingFrequency / 2) { |
| 3042 | /* adc mirrors */ |
| 3043 | adcFreq = samplingFrequency - ifFreqActual; |
| 3044 | adcFlip = true; |
| 3045 | } else { |
| 3046 | /* adc doesn't mirror */ |
| 3047 | adcFreq = ifFreqActual; |
| 3048 | adcFlip = false; |
| 3049 | } |
| 3050 | |
| 3051 | frequencyShift = adcFreq; |
| 3052 | imageToSelect = state->m_rfmirror ^ tunerMirror ^ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3053 | adcFlip ^ selectPosImage; |
| 3054 | state->m_IqmFsRateOfs = |
| 3055 | Frac28a((frequencyShift), samplingFrequency); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3056 | |
| 3057 | if (imageToSelect) |
| 3058 | state->m_IqmFsRateOfs = ~state->m_IqmFsRateOfs + 1; |
| 3059 | |
| 3060 | /* Program frequency shifter with tuner offset compensation */ |
| 3061 | /* frequencyShift += tunerFreqOffset; TODO */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3062 | status = write32(state, IQM_FS_RATE_OFS_LO__A, |
| 3063 | state->m_IqmFsRateOfs); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3064 | if (status < 0) |
| 3065 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3066 | return status; |
| 3067 | } |
| 3068 | |
| 3069 | static int InitAGC(struct drxk_state *state, bool isDTV) |
| 3070 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3071 | u16 ingainTgt = 0; |
| 3072 | u16 ingainTgtMin = 0; |
| 3073 | u16 ingainTgtMax = 0; |
| 3074 | u16 clpCyclen = 0; |
| 3075 | u16 clpSumMin = 0; |
| 3076 | u16 clpDirTo = 0; |
| 3077 | u16 snsSumMin = 0; |
| 3078 | u16 snsSumMax = 0; |
| 3079 | u16 clpSumMax = 0; |
| 3080 | u16 snsDirTo = 0; |
| 3081 | u16 kiInnergainMin = 0; |
| 3082 | u16 ifIaccuHiTgt = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3083 | u16 ifIaccuHiTgtMin = 0; |
| 3084 | u16 ifIaccuHiTgtMax = 0; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3085 | u16 data = 0; |
| 3086 | u16 fastClpCtrlDelay = 0; |
| 3087 | u16 clpCtrlMode = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3088 | int status = 0; |
| 3089 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3090 | dprintk(1, "\n"); |
| 3091 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3092 | /* Common settings */ |
| 3093 | snsSumMax = 1023; |
| 3094 | ifIaccuHiTgtMin = 2047; |
| 3095 | clpCyclen = 500; |
| 3096 | clpSumMax = 1023; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3097 | |
Mauro Carvalho Chehab | f1b8297 | 2011-07-10 13:08:44 -0300 | [diff] [blame] | 3098 | /* AGCInit() not available for DVBT; init done in microcode */ |
| 3099 | if (!IsQAM(state)) { |
| 3100 | printk(KERN_ERR "drxk: %s: mode %d is not DVB-C\n", __func__, state->m_OperationMode); |
| 3101 | return -EINVAL; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3102 | } |
Mauro Carvalho Chehab | f1b8297 | 2011-07-10 13:08:44 -0300 | [diff] [blame] | 3103 | |
| 3104 | /* FIXME: Analog TV AGC require different settings */ |
| 3105 | |
| 3106 | /* Standard specific settings */ |
| 3107 | clpSumMin = 8; |
| 3108 | clpDirTo = (u16) -9; |
| 3109 | clpCtrlMode = 0; |
| 3110 | snsSumMin = 8; |
| 3111 | snsDirTo = (u16) -9; |
| 3112 | kiInnergainMin = (u16) -1030; |
| 3113 | ifIaccuHiTgtMax = 0x2380; |
| 3114 | ifIaccuHiTgt = 0x2380; |
| 3115 | ingainTgtMin = 0x0511; |
| 3116 | ingainTgt = 0x0511; |
| 3117 | ingainTgtMax = 5119; |
| 3118 | fastClpCtrlDelay = state->m_qamIfAgcCfg.FastClipCtrlDelay; |
| 3119 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3120 | status = write16(state, SCU_RAM_AGC_FAST_CLP_CTRL_DELAY__A, fastClpCtrlDelay); |
| 3121 | if (status < 0) |
| 3122 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3123 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3124 | status = write16(state, SCU_RAM_AGC_CLP_CTRL_MODE__A, clpCtrlMode); |
| 3125 | if (status < 0) |
| 3126 | goto error; |
| 3127 | status = write16(state, SCU_RAM_AGC_INGAIN_TGT__A, ingainTgt); |
| 3128 | if (status < 0) |
| 3129 | goto error; |
| 3130 | status = write16(state, SCU_RAM_AGC_INGAIN_TGT_MIN__A, ingainTgtMin); |
| 3131 | if (status < 0) |
| 3132 | goto error; |
| 3133 | status = write16(state, SCU_RAM_AGC_INGAIN_TGT_MAX__A, ingainTgtMax); |
| 3134 | if (status < 0) |
| 3135 | goto error; |
| 3136 | status = write16(state, SCU_RAM_AGC_IF_IACCU_HI_TGT_MIN__A, ifIaccuHiTgtMin); |
| 3137 | if (status < 0) |
| 3138 | goto error; |
| 3139 | status = write16(state, SCU_RAM_AGC_IF_IACCU_HI_TGT_MAX__A, ifIaccuHiTgtMax); |
| 3140 | if (status < 0) |
| 3141 | goto error; |
| 3142 | status = write16(state, SCU_RAM_AGC_IF_IACCU_HI__A, 0); |
| 3143 | if (status < 0) |
| 3144 | goto error; |
| 3145 | status = write16(state, SCU_RAM_AGC_IF_IACCU_LO__A, 0); |
| 3146 | if (status < 0) |
| 3147 | goto error; |
| 3148 | status = write16(state, SCU_RAM_AGC_RF_IACCU_HI__A, 0); |
| 3149 | if (status < 0) |
| 3150 | goto error; |
| 3151 | status = write16(state, SCU_RAM_AGC_RF_IACCU_LO__A, 0); |
| 3152 | if (status < 0) |
| 3153 | goto error; |
| 3154 | status = write16(state, SCU_RAM_AGC_CLP_SUM_MAX__A, clpSumMax); |
| 3155 | if (status < 0) |
| 3156 | goto error; |
| 3157 | status = write16(state, SCU_RAM_AGC_SNS_SUM_MAX__A, snsSumMax); |
| 3158 | if (status < 0) |
| 3159 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3160 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3161 | status = write16(state, SCU_RAM_AGC_KI_INNERGAIN_MIN__A, kiInnergainMin); |
| 3162 | if (status < 0) |
| 3163 | goto error; |
| 3164 | status = write16(state, SCU_RAM_AGC_IF_IACCU_HI_TGT__A, ifIaccuHiTgt); |
| 3165 | if (status < 0) |
| 3166 | goto error; |
| 3167 | status = write16(state, SCU_RAM_AGC_CLP_CYCLEN__A, clpCyclen); |
| 3168 | if (status < 0) |
| 3169 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3170 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3171 | status = write16(state, SCU_RAM_AGC_RF_SNS_DEV_MAX__A, 1023); |
| 3172 | if (status < 0) |
| 3173 | goto error; |
| 3174 | status = write16(state, SCU_RAM_AGC_RF_SNS_DEV_MIN__A, (u16) -1023); |
| 3175 | if (status < 0) |
| 3176 | goto error; |
| 3177 | status = write16(state, SCU_RAM_AGC_FAST_SNS_CTRL_DELAY__A, 50); |
| 3178 | if (status < 0) |
| 3179 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3180 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3181 | status = write16(state, SCU_RAM_AGC_KI_MAXMINGAIN_TH__A, 20); |
| 3182 | if (status < 0) |
| 3183 | goto error; |
| 3184 | status = write16(state, SCU_RAM_AGC_CLP_SUM_MIN__A, clpSumMin); |
| 3185 | if (status < 0) |
| 3186 | goto error; |
| 3187 | status = write16(state, SCU_RAM_AGC_SNS_SUM_MIN__A, snsSumMin); |
| 3188 | if (status < 0) |
| 3189 | goto error; |
| 3190 | status = write16(state, SCU_RAM_AGC_CLP_DIR_TO__A, clpDirTo); |
| 3191 | if (status < 0) |
| 3192 | goto error; |
| 3193 | status = write16(state, SCU_RAM_AGC_SNS_DIR_TO__A, snsDirTo); |
| 3194 | if (status < 0) |
| 3195 | goto error; |
| 3196 | status = write16(state, SCU_RAM_AGC_KI_MINGAIN__A, 0x7fff); |
| 3197 | if (status < 0) |
| 3198 | goto error; |
| 3199 | status = write16(state, SCU_RAM_AGC_KI_MAXGAIN__A, 0x0); |
| 3200 | if (status < 0) |
| 3201 | goto error; |
| 3202 | status = write16(state, SCU_RAM_AGC_KI_MIN__A, 0x0117); |
| 3203 | if (status < 0) |
| 3204 | goto error; |
| 3205 | status = write16(state, SCU_RAM_AGC_KI_MAX__A, 0x0657); |
| 3206 | if (status < 0) |
| 3207 | goto error; |
| 3208 | status = write16(state, SCU_RAM_AGC_CLP_SUM__A, 0); |
| 3209 | if (status < 0) |
| 3210 | goto error; |
| 3211 | status = write16(state, SCU_RAM_AGC_CLP_CYCCNT__A, 0); |
| 3212 | if (status < 0) |
| 3213 | goto error; |
| 3214 | status = write16(state, SCU_RAM_AGC_CLP_DIR_WD__A, 0); |
| 3215 | if (status < 0) |
| 3216 | goto error; |
| 3217 | status = write16(state, SCU_RAM_AGC_CLP_DIR_STP__A, 1); |
| 3218 | if (status < 0) |
| 3219 | goto error; |
| 3220 | status = write16(state, SCU_RAM_AGC_SNS_SUM__A, 0); |
| 3221 | if (status < 0) |
| 3222 | goto error; |
| 3223 | status = write16(state, SCU_RAM_AGC_SNS_CYCCNT__A, 0); |
| 3224 | if (status < 0) |
| 3225 | goto error; |
| 3226 | status = write16(state, SCU_RAM_AGC_SNS_DIR_WD__A, 0); |
| 3227 | if (status < 0) |
| 3228 | goto error; |
| 3229 | status = write16(state, SCU_RAM_AGC_SNS_DIR_STP__A, 1); |
| 3230 | if (status < 0) |
| 3231 | goto error; |
| 3232 | status = write16(state, SCU_RAM_AGC_SNS_CYCLEN__A, 500); |
| 3233 | if (status < 0) |
| 3234 | goto error; |
| 3235 | status = write16(state, SCU_RAM_AGC_KI_CYCLEN__A, 500); |
| 3236 | if (status < 0) |
| 3237 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3238 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3239 | /* Initialize inner-loop KI gain factors */ |
| 3240 | status = read16(state, SCU_RAM_AGC_KI__A, &data); |
| 3241 | if (status < 0) |
| 3242 | goto error; |
Mauro Carvalho Chehab | f1b8297 | 2011-07-10 13:08:44 -0300 | [diff] [blame] | 3243 | |
| 3244 | data = 0x0657; |
| 3245 | data &= ~SCU_RAM_AGC_KI_RF__M; |
| 3246 | data |= (DRXK_KI_RAGC_QAM << SCU_RAM_AGC_KI_RF__B); |
| 3247 | data &= ~SCU_RAM_AGC_KI_IF__M; |
| 3248 | data |= (DRXK_KI_IAGC_QAM << SCU_RAM_AGC_KI_IF__B); |
| 3249 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3250 | status = write16(state, SCU_RAM_AGC_KI__A, data); |
| 3251 | error: |
| 3252 | if (status < 0) |
| 3253 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3254 | return status; |
| 3255 | } |
| 3256 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3257 | static int DVBTQAMGetAccPktErr(struct drxk_state *state, u16 *packetErr) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3258 | { |
| 3259 | int status; |
| 3260 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3261 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3262 | if (packetErr == NULL) |
| 3263 | status = write16(state, SCU_RAM_FEC_ACCUM_PKT_FAILURES__A, 0); |
| 3264 | else |
| 3265 | status = read16(state, SCU_RAM_FEC_ACCUM_PKT_FAILURES__A, packetErr); |
| 3266 | if (status < 0) |
| 3267 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3268 | return status; |
| 3269 | } |
| 3270 | |
| 3271 | static int DVBTScCommand(struct drxk_state *state, |
| 3272 | u16 cmd, u16 subcmd, |
| 3273 | u16 param0, u16 param1, u16 param2, |
| 3274 | u16 param3, u16 param4) |
| 3275 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3276 | u16 curCmd = 0; |
| 3277 | u16 errCode = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3278 | u16 retryCnt = 0; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3279 | u16 scExec = 0; |
| 3280 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3281 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3282 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3283 | status = read16(state, OFDM_SC_COMM_EXEC__A, &scExec); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3284 | if (scExec != 1) { |
| 3285 | /* SC is not running */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3286 | status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3287 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3288 | if (status < 0) |
| 3289 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3290 | |
| 3291 | /* Wait until sc is ready to receive command */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3292 | retryCnt = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3293 | do { |
| 3294 | msleep(1); |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3295 | status = read16(state, OFDM_SC_RA_RAM_CMD__A, &curCmd); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3296 | retryCnt++; |
| 3297 | } while ((curCmd != 0) && (retryCnt < DRXK_MAX_RETRIES)); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3298 | if (retryCnt >= DRXK_MAX_RETRIES && (status < 0)) |
| 3299 | goto error; |
| 3300 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3301 | /* Write sub-command */ |
| 3302 | switch (cmd) { |
| 3303 | /* All commands using sub-cmd */ |
| 3304 | case OFDM_SC_RA_RAM_CMD_PROC_START: |
| 3305 | case OFDM_SC_RA_RAM_CMD_SET_PREF_PARAM: |
| 3306 | case OFDM_SC_RA_RAM_CMD_PROGRAM_PARAM: |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3307 | status = write16(state, OFDM_SC_RA_RAM_CMD_ADDR__A, subcmd); |
| 3308 | if (status < 0) |
| 3309 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3310 | break; |
| 3311 | default: |
| 3312 | /* Do nothing */ |
| 3313 | break; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3314 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3315 | |
| 3316 | /* Write needed parameters and the command */ |
| 3317 | switch (cmd) { |
| 3318 | /* All commands using 5 parameters */ |
| 3319 | /* All commands using 4 parameters */ |
| 3320 | /* All commands using 3 parameters */ |
| 3321 | /* All commands using 2 parameters */ |
| 3322 | case OFDM_SC_RA_RAM_CMD_PROC_START: |
| 3323 | case OFDM_SC_RA_RAM_CMD_SET_PREF_PARAM: |
| 3324 | case OFDM_SC_RA_RAM_CMD_PROGRAM_PARAM: |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3325 | status = write16(state, OFDM_SC_RA_RAM_PARAM1__A, param1); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3326 | /* All commands using 1 parameters */ |
| 3327 | case OFDM_SC_RA_RAM_CMD_SET_ECHO_TIMING: |
| 3328 | case OFDM_SC_RA_RAM_CMD_USER_IO: |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3329 | status = write16(state, OFDM_SC_RA_RAM_PARAM0__A, param0); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3330 | /* All commands using 0 parameters */ |
| 3331 | case OFDM_SC_RA_RAM_CMD_GET_OP_PARAM: |
| 3332 | case OFDM_SC_RA_RAM_CMD_NULL: |
| 3333 | /* Write command */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3334 | status = write16(state, OFDM_SC_RA_RAM_CMD__A, cmd); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3335 | break; |
| 3336 | default: |
| 3337 | /* Unknown command */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3338 | status = -EINVAL; |
| 3339 | } |
| 3340 | if (status < 0) |
| 3341 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3342 | |
| 3343 | /* Wait until sc is ready processing command */ |
| 3344 | retryCnt = 0; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3345 | do { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3346 | msleep(1); |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3347 | status = read16(state, OFDM_SC_RA_RAM_CMD__A, &curCmd); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3348 | retryCnt++; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3349 | } while ((curCmd != 0) && (retryCnt < DRXK_MAX_RETRIES)); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3350 | if (retryCnt >= DRXK_MAX_RETRIES && (status < 0)) |
| 3351 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3352 | |
| 3353 | /* Check for illegal cmd */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3354 | status = read16(state, OFDM_SC_RA_RAM_CMD_ADDR__A, &errCode); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3355 | if (errCode == 0xFFFF) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3356 | /* illegal command */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3357 | status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3358 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3359 | if (status < 0) |
| 3360 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3361 | |
| 3362 | /* Retreive results parameters from SC */ |
| 3363 | switch (cmd) { |
| 3364 | /* All commands yielding 5 results */ |
| 3365 | /* All commands yielding 4 results */ |
| 3366 | /* All commands yielding 3 results */ |
| 3367 | /* All commands yielding 2 results */ |
| 3368 | /* All commands yielding 1 result */ |
| 3369 | case OFDM_SC_RA_RAM_CMD_USER_IO: |
| 3370 | case OFDM_SC_RA_RAM_CMD_GET_OP_PARAM: |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3371 | status = read16(state, OFDM_SC_RA_RAM_PARAM0__A, &(param0)); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3372 | /* All commands yielding 0 results */ |
| 3373 | case OFDM_SC_RA_RAM_CMD_SET_ECHO_TIMING: |
| 3374 | case OFDM_SC_RA_RAM_CMD_SET_TIMER: |
| 3375 | case OFDM_SC_RA_RAM_CMD_PROC_START: |
| 3376 | case OFDM_SC_RA_RAM_CMD_SET_PREF_PARAM: |
| 3377 | case OFDM_SC_RA_RAM_CMD_PROGRAM_PARAM: |
| 3378 | case OFDM_SC_RA_RAM_CMD_NULL: |
| 3379 | break; |
| 3380 | default: |
| 3381 | /* Unknown command */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3382 | status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3383 | break; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3384 | } /* switch (cmd->cmd) */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3385 | error: |
| 3386 | if (status < 0) |
| 3387 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3388 | return status; |
| 3389 | } |
| 3390 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3391 | static int PowerUpDVBT(struct drxk_state *state) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3392 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3393 | enum DRXPowerMode powerMode = DRX_POWER_UP; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3394 | int status; |
| 3395 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3396 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3397 | status = CtrlPowerMode(state, &powerMode); |
| 3398 | if (status < 0) |
| 3399 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3400 | return status; |
| 3401 | } |
| 3402 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3403 | static int DVBTCtrlSetIncEnable(struct drxk_state *state, bool *enabled) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3404 | { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3405 | int status; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3406 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3407 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3408 | if (*enabled == true) |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3409 | status = write16(state, IQM_CF_BYPASSDET__A, 0); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3410 | else |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3411 | status = write16(state, IQM_CF_BYPASSDET__A, 1); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3412 | if (status < 0) |
| 3413 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3414 | return status; |
| 3415 | } |
| 3416 | |
| 3417 | #define DEFAULT_FR_THRES_8K 4000 |
| 3418 | static int DVBTCtrlSetFrEnable(struct drxk_state *state, bool *enabled) |
| 3419 | { |
| 3420 | |
| 3421 | int status; |
| 3422 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3423 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3424 | if (*enabled == true) { |
| 3425 | /* write mask to 1 */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3426 | status = write16(state, OFDM_SC_RA_RAM_FR_THRES_8K__A, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3427 | DEFAULT_FR_THRES_8K); |
| 3428 | } else { |
| 3429 | /* write mask to 0 */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3430 | status = write16(state, OFDM_SC_RA_RAM_FR_THRES_8K__A, 0); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3431 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3432 | if (status < 0) |
| 3433 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3434 | |
| 3435 | return status; |
| 3436 | } |
| 3437 | |
| 3438 | static int DVBTCtrlSetEchoThreshold(struct drxk_state *state, |
| 3439 | struct DRXKCfgDvbtEchoThres_t *echoThres) |
| 3440 | { |
| 3441 | u16 data = 0; |
| 3442 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3443 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3444 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3445 | status = read16(state, OFDM_SC_RA_RAM_ECHO_THRES__A, &data); |
| 3446 | if (status < 0) |
| 3447 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3448 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3449 | switch (echoThres->fftMode) { |
| 3450 | case DRX_FFTMODE_2K: |
| 3451 | data &= ~OFDM_SC_RA_RAM_ECHO_THRES_2K__M; |
| 3452 | data |= ((echoThres->threshold << |
| 3453 | OFDM_SC_RA_RAM_ECHO_THRES_2K__B) |
| 3454 | & (OFDM_SC_RA_RAM_ECHO_THRES_2K__M)); |
| 3455 | goto error; |
| 3456 | case DRX_FFTMODE_8K: |
| 3457 | data &= ~OFDM_SC_RA_RAM_ECHO_THRES_8K__M; |
| 3458 | data |= ((echoThres->threshold << |
| 3459 | OFDM_SC_RA_RAM_ECHO_THRES_8K__B) |
| 3460 | & (OFDM_SC_RA_RAM_ECHO_THRES_8K__M)); |
| 3461 | goto error; |
| 3462 | default: |
| 3463 | return -EINVAL; |
| 3464 | goto error; |
| 3465 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3466 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3467 | status = write16(state, OFDM_SC_RA_RAM_ECHO_THRES__A, data); |
| 3468 | error: |
| 3469 | if (status < 0) |
| 3470 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3471 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3472 | } |
| 3473 | |
| 3474 | static int DVBTCtrlSetSqiSpeed(struct drxk_state *state, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3475 | enum DRXKCfgDvbtSqiSpeed *speed) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3476 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3477 | int status = -EINVAL; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3478 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3479 | dprintk(1, "\n"); |
| 3480 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3481 | switch (*speed) { |
| 3482 | case DRXK_DVBT_SQI_SPEED_FAST: |
| 3483 | case DRXK_DVBT_SQI_SPEED_MEDIUM: |
| 3484 | case DRXK_DVBT_SQI_SPEED_SLOW: |
| 3485 | break; |
| 3486 | default: |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3487 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3488 | } |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 3489 | status = write16(state, SCU_RAM_FEC_PRE_RS_BER_FILTER_SH__A, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3490 | (u16) *speed); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3491 | error: |
| 3492 | if (status < 0) |
| 3493 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3494 | return status; |
| 3495 | } |
| 3496 | |
| 3497 | /*============================================================================*/ |
| 3498 | |
| 3499 | /** |
| 3500 | * \brief Activate DVBT specific presets |
| 3501 | * \param demod instance of demodulator. |
| 3502 | * \return DRXStatus_t. |
| 3503 | * |
| 3504 | * Called in DVBTSetStandard |
| 3505 | * |
| 3506 | */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3507 | static int DVBTActivatePresets(struct drxk_state *state) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3508 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3509 | int status; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3510 | bool setincenable = false; |
| 3511 | bool setfrenable = true; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3512 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3513 | struct DRXKCfgDvbtEchoThres_t echoThres2k = { 0, DRX_FFTMODE_2K }; |
| 3514 | struct DRXKCfgDvbtEchoThres_t echoThres8k = { 0, DRX_FFTMODE_8K }; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3515 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3516 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3517 | status = DVBTCtrlSetIncEnable(state, &setincenable); |
| 3518 | if (status < 0) |
| 3519 | goto error; |
| 3520 | status = DVBTCtrlSetFrEnable(state, &setfrenable); |
| 3521 | if (status < 0) |
| 3522 | goto error; |
| 3523 | status = DVBTCtrlSetEchoThreshold(state, &echoThres2k); |
| 3524 | if (status < 0) |
| 3525 | goto error; |
| 3526 | status = DVBTCtrlSetEchoThreshold(state, &echoThres8k); |
| 3527 | if (status < 0) |
| 3528 | goto error; |
| 3529 | status = write16(state, SCU_RAM_AGC_INGAIN_TGT_MAX__A, state->m_dvbtIfAgcCfg.IngainTgtMax); |
| 3530 | error: |
| 3531 | if (status < 0) |
| 3532 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3533 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3534 | } |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3535 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3536 | /*============================================================================*/ |
| 3537 | |
| 3538 | /** |
| 3539 | * \brief Initialize channelswitch-independent settings for DVBT. |
| 3540 | * \param demod instance of demodulator. |
| 3541 | * \return DRXStatus_t. |
| 3542 | * |
| 3543 | * For ROM code channel filter taps are loaded from the bootloader. For microcode |
| 3544 | * the DVB-T taps from the drxk_filters.h are used. |
| 3545 | */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3546 | static int SetDVBTStandard(struct drxk_state *state, |
| 3547 | enum OperationMode oMode) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3548 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3549 | u16 cmdResult = 0; |
| 3550 | u16 data = 0; |
| 3551 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3552 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3553 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3554 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3555 | PowerUpDVBT(state); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3556 | /* added antenna switch */ |
| 3557 | SwitchAntennaToDVBT(state); |
| 3558 | /* send OFDM reset command */ |
| 3559 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_OFDM | SCU_RAM_COMMAND_CMD_DEMOD_RESET, 0, NULL, 1, &cmdResult); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3560 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3561 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3562 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3563 | /* send OFDM setenv command */ |
| 3564 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_OFDM | SCU_RAM_COMMAND_CMD_DEMOD_SET_ENV, 0, NULL, 1, &cmdResult); |
| 3565 | if (status < 0) |
| 3566 | goto error; |
| 3567 | |
| 3568 | /* reset datapath for OFDM, processors first */ |
| 3569 | status = write16(state, OFDM_SC_COMM_EXEC__A, OFDM_SC_COMM_EXEC_STOP); |
| 3570 | if (status < 0) |
| 3571 | goto error; |
| 3572 | status = write16(state, OFDM_LC_COMM_EXEC__A, OFDM_LC_COMM_EXEC_STOP); |
| 3573 | if (status < 0) |
| 3574 | goto error; |
| 3575 | status = write16(state, IQM_COMM_EXEC__A, IQM_COMM_EXEC_B_STOP); |
| 3576 | if (status < 0) |
| 3577 | goto error; |
| 3578 | |
| 3579 | /* IQM setup */ |
| 3580 | /* synchronize on ofdstate->m_festart */ |
| 3581 | status = write16(state, IQM_AF_UPD_SEL__A, 1); |
| 3582 | if (status < 0) |
| 3583 | goto error; |
| 3584 | /* window size for clipping ADC detection */ |
| 3585 | status = write16(state, IQM_AF_CLP_LEN__A, 0); |
| 3586 | if (status < 0) |
| 3587 | goto error; |
| 3588 | /* window size for for sense pre-SAW detection */ |
| 3589 | status = write16(state, IQM_AF_SNS_LEN__A, 0); |
| 3590 | if (status < 0) |
| 3591 | goto error; |
| 3592 | /* sense threshold for sense pre-SAW detection */ |
| 3593 | status = write16(state, IQM_AF_AMUX__A, IQM_AF_AMUX_SIGNAL2ADC); |
| 3594 | if (status < 0) |
| 3595 | goto error; |
| 3596 | status = SetIqmAf(state, true); |
| 3597 | if (status < 0) |
| 3598 | goto error; |
| 3599 | |
| 3600 | status = write16(state, IQM_AF_AGC_RF__A, 0); |
| 3601 | if (status < 0) |
| 3602 | goto error; |
| 3603 | |
| 3604 | /* Impulse noise cruncher setup */ |
| 3605 | status = write16(state, IQM_AF_INC_LCT__A, 0); /* crunch in IQM_CF */ |
| 3606 | if (status < 0) |
| 3607 | goto error; |
| 3608 | status = write16(state, IQM_CF_DET_LCT__A, 0); /* detect in IQM_CF */ |
| 3609 | if (status < 0) |
| 3610 | goto error; |
| 3611 | status = write16(state, IQM_CF_WND_LEN__A, 3); /* peak detector window length */ |
| 3612 | if (status < 0) |
| 3613 | goto error; |
| 3614 | |
| 3615 | status = write16(state, IQM_RC_STRETCH__A, 16); |
| 3616 | if (status < 0) |
| 3617 | goto error; |
| 3618 | status = write16(state, IQM_CF_OUT_ENA__A, 0x4); /* enable output 2 */ |
| 3619 | if (status < 0) |
| 3620 | goto error; |
| 3621 | status = write16(state, IQM_CF_DS_ENA__A, 0x4); /* decimate output 2 */ |
| 3622 | if (status < 0) |
| 3623 | goto error; |
| 3624 | status = write16(state, IQM_CF_SCALE__A, 1600); |
| 3625 | if (status < 0) |
| 3626 | goto error; |
| 3627 | status = write16(state, IQM_CF_SCALE_SH__A, 0); |
| 3628 | if (status < 0) |
| 3629 | goto error; |
| 3630 | |
| 3631 | /* virtual clipping threshold for clipping ADC detection */ |
| 3632 | status = write16(state, IQM_AF_CLP_TH__A, 448); |
| 3633 | if (status < 0) |
| 3634 | goto error; |
| 3635 | status = write16(state, IQM_CF_DATATH__A, 495); /* crunching threshold */ |
| 3636 | if (status < 0) |
| 3637 | goto error; |
| 3638 | |
| 3639 | status = BLChainCmd(state, DRXK_BL_ROM_OFFSET_TAPS_DVBT, DRXK_BLCC_NR_ELEMENTS_TAPS, DRXK_BLC_TIMEOUT); |
| 3640 | if (status < 0) |
| 3641 | goto error; |
| 3642 | |
| 3643 | status = write16(state, IQM_CF_PKDTH__A, 2); /* peak detector threshold */ |
| 3644 | if (status < 0) |
| 3645 | goto error; |
| 3646 | status = write16(state, IQM_CF_POW_MEAS_LEN__A, 2); |
| 3647 | if (status < 0) |
| 3648 | goto error; |
| 3649 | /* enable power measurement interrupt */ |
| 3650 | status = write16(state, IQM_CF_COMM_INT_MSK__A, 1); |
| 3651 | if (status < 0) |
| 3652 | goto error; |
| 3653 | status = write16(state, IQM_COMM_EXEC__A, IQM_COMM_EXEC_B_ACTIVE); |
| 3654 | if (status < 0) |
| 3655 | goto error; |
| 3656 | |
| 3657 | /* IQM will not be reset from here, sync ADC and update/init AGC */ |
| 3658 | status = ADCSynchronization(state); |
| 3659 | if (status < 0) |
| 3660 | goto error; |
| 3661 | status = SetPreSaw(state, &state->m_dvbtPreSawCfg); |
| 3662 | if (status < 0) |
| 3663 | goto error; |
| 3664 | |
| 3665 | /* Halt SCU to enable safe non-atomic accesses */ |
| 3666 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_HOLD); |
| 3667 | if (status < 0) |
| 3668 | goto error; |
| 3669 | |
| 3670 | status = SetAgcRf(state, &state->m_dvbtRfAgcCfg, true); |
| 3671 | if (status < 0) |
| 3672 | goto error; |
| 3673 | status = SetAgcIf(state, &state->m_dvbtIfAgcCfg, true); |
| 3674 | if (status < 0) |
| 3675 | goto error; |
| 3676 | |
| 3677 | /* Set Noise Estimation notch width and enable DC fix */ |
| 3678 | status = read16(state, OFDM_SC_RA_RAM_CONFIG__A, &data); |
| 3679 | if (status < 0) |
| 3680 | goto error; |
| 3681 | data |= OFDM_SC_RA_RAM_CONFIG_NE_FIX_ENABLE__M; |
| 3682 | status = write16(state, OFDM_SC_RA_RAM_CONFIG__A, data); |
| 3683 | if (status < 0) |
| 3684 | goto error; |
| 3685 | |
| 3686 | /* Activate SCU to enable SCU commands */ |
| 3687 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_ACTIVE); |
| 3688 | if (status < 0) |
| 3689 | goto error; |
| 3690 | |
| 3691 | if (!state->m_DRXK_A3_ROM_CODE) { |
| 3692 | /* AGCInit() is not done for DVBT, so set agcFastClipCtrlDelay */ |
| 3693 | status = write16(state, SCU_RAM_AGC_FAST_CLP_CTRL_DELAY__A, state->m_dvbtIfAgcCfg.FastClipCtrlDelay); |
| 3694 | if (status < 0) |
| 3695 | goto error; |
| 3696 | } |
| 3697 | |
| 3698 | /* OFDM_SC setup */ |
| 3699 | #ifdef COMPILE_FOR_NONRT |
| 3700 | status = write16(state, OFDM_SC_RA_RAM_BE_OPT_DELAY__A, 1); |
| 3701 | if (status < 0) |
| 3702 | goto error; |
| 3703 | status = write16(state, OFDM_SC_RA_RAM_BE_OPT_INIT_DELAY__A, 2); |
| 3704 | if (status < 0) |
| 3705 | goto error; |
| 3706 | #endif |
| 3707 | |
| 3708 | /* FEC setup */ |
| 3709 | status = write16(state, FEC_DI_INPUT_CTL__A, 1); /* OFDM input */ |
| 3710 | if (status < 0) |
| 3711 | goto error; |
| 3712 | |
| 3713 | |
| 3714 | #ifdef COMPILE_FOR_NONRT |
| 3715 | status = write16(state, FEC_RS_MEASUREMENT_PERIOD__A, 0x400); |
| 3716 | if (status < 0) |
| 3717 | goto error; |
| 3718 | #else |
| 3719 | status = write16(state, FEC_RS_MEASUREMENT_PERIOD__A, 0x1000); |
| 3720 | if (status < 0) |
| 3721 | goto error; |
| 3722 | #endif |
| 3723 | status = write16(state, FEC_RS_MEASUREMENT_PRESCALE__A, 0x0001); |
| 3724 | if (status < 0) |
| 3725 | goto error; |
| 3726 | |
| 3727 | /* Setup MPEG bus */ |
| 3728 | status = MPEGTSDtoSetup(state, OM_DVBT); |
| 3729 | if (status < 0) |
| 3730 | goto error; |
| 3731 | /* Set DVBT Presets */ |
| 3732 | status = DVBTActivatePresets(state); |
| 3733 | if (status < 0) |
| 3734 | goto error; |
| 3735 | |
| 3736 | error: |
| 3737 | if (status < 0) |
| 3738 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3739 | return status; |
| 3740 | } |
| 3741 | |
| 3742 | /*============================================================================*/ |
| 3743 | /** |
| 3744 | * \brief Start dvbt demodulating for channel. |
| 3745 | * \param demod instance of demodulator. |
| 3746 | * \return DRXStatus_t. |
| 3747 | */ |
| 3748 | static int DVBTStart(struct drxk_state *state) |
| 3749 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3750 | u16 param1; |
| 3751 | int status; |
| 3752 | /* DRXKOfdmScCmd_t scCmd; */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3753 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 3754 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3755 | /* Start correct processes to get in lock */ |
| 3756 | /* DRXK: OFDM_SC_RA_RAM_PROC_LOCKTRACK is no longer in mapfile! */ |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3757 | param1 = OFDM_SC_RA_RAM_LOCKTRACK_MIN; |
| 3758 | status = DVBTScCommand(state, OFDM_SC_RA_RAM_CMD_PROC_START, 0, OFDM_SC_RA_RAM_SW_EVENT_RUN_NMASK__M, param1, 0, 0, 0); |
| 3759 | if (status < 0) |
| 3760 | goto error; |
| 3761 | /* Start FEC OC */ |
| 3762 | status = MPEGTSStart(state); |
| 3763 | if (status < 0) |
| 3764 | goto error; |
| 3765 | status = write16(state, FEC_COMM_EXEC__A, FEC_COMM_EXEC_ACTIVE); |
| 3766 | if (status < 0) |
| 3767 | goto error; |
| 3768 | error: |
| 3769 | if (status < 0) |
| 3770 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3771 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3772 | } |
| 3773 | |
| 3774 | |
| 3775 | /*============================================================================*/ |
| 3776 | |
| 3777 | /** |
| 3778 | * \brief Set up dvbt demodulator for channel. |
| 3779 | * \param demod instance of demodulator. |
| 3780 | * \return DRXStatus_t. |
| 3781 | * // original DVBTSetChannel() |
| 3782 | */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3783 | static int SetDVBT(struct drxk_state *state, u16 IntermediateFreqkHz, |
| 3784 | s32 tunerFreqOffset) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3785 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 3786 | u16 cmdResult = 0; |
| 3787 | u16 transmissionParams = 0; |
| 3788 | u16 operationMode = 0; |
| 3789 | u32 iqmRcRateOfs = 0; |
| 3790 | u32 bandwidth = 0; |
| 3791 | u16 param1; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3792 | int status; |
| 3793 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3794 | dprintk(1, "IF =%d, TFO = %d\n", IntermediateFreqkHz, tunerFreqOffset); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3795 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3796 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_OFDM | SCU_RAM_COMMAND_CMD_DEMOD_STOP, 0, NULL, 1, &cmdResult); |
| 3797 | if (status < 0) |
| 3798 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3799 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3800 | /* Halt SCU to enable safe non-atomic accesses */ |
| 3801 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_HOLD); |
| 3802 | if (status < 0) |
| 3803 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3804 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3805 | /* Stop processors */ |
| 3806 | status = write16(state, OFDM_SC_COMM_EXEC__A, OFDM_SC_COMM_EXEC_STOP); |
| 3807 | if (status < 0) |
| 3808 | goto error; |
| 3809 | status = write16(state, OFDM_LC_COMM_EXEC__A, OFDM_LC_COMM_EXEC_STOP); |
| 3810 | if (status < 0) |
| 3811 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3812 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3813 | /* Mandatory fix, always stop CP, required to set spl offset back to |
| 3814 | hardware default (is set to 0 by ucode during pilot detection */ |
| 3815 | status = write16(state, OFDM_CP_COMM_EXEC__A, OFDM_CP_COMM_EXEC_STOP); |
| 3816 | if (status < 0) |
| 3817 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3818 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3819 | /*== Write channel settings to device =====================================*/ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3820 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3821 | /* mode */ |
| 3822 | switch (state->param.u.ofdm.transmission_mode) { |
| 3823 | case TRANSMISSION_MODE_AUTO: |
| 3824 | default: |
| 3825 | operationMode |= OFDM_SC_RA_RAM_OP_AUTO_MODE__M; |
| 3826 | /* fall through , try first guess DRX_FFTMODE_8K */ |
| 3827 | case TRANSMISSION_MODE_8K: |
| 3828 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_MODE_8K; |
| 3829 | goto error; |
| 3830 | case TRANSMISSION_MODE_2K: |
| 3831 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_MODE_2K; |
| 3832 | goto error; |
| 3833 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3834 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3835 | /* guard */ |
| 3836 | switch (state->param.u.ofdm.guard_interval) { |
| 3837 | default: |
| 3838 | case GUARD_INTERVAL_AUTO: |
| 3839 | operationMode |= OFDM_SC_RA_RAM_OP_AUTO_GUARD__M; |
| 3840 | /* fall through , try first guess DRX_GUARD_1DIV4 */ |
| 3841 | case GUARD_INTERVAL_1_4: |
| 3842 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_GUARD_4; |
| 3843 | goto error; |
| 3844 | case GUARD_INTERVAL_1_32: |
| 3845 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_GUARD_32; |
| 3846 | goto error; |
| 3847 | case GUARD_INTERVAL_1_16: |
| 3848 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_GUARD_16; |
| 3849 | goto error; |
| 3850 | case GUARD_INTERVAL_1_8: |
| 3851 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_GUARD_8; |
| 3852 | goto error; |
| 3853 | } |
| 3854 | |
| 3855 | /* hierarchy */ |
| 3856 | switch (state->param.u.ofdm.hierarchy_information) { |
| 3857 | case HIERARCHY_AUTO: |
| 3858 | case HIERARCHY_NONE: |
| 3859 | default: |
| 3860 | operationMode |= OFDM_SC_RA_RAM_OP_AUTO_HIER__M; |
| 3861 | /* fall through , try first guess SC_RA_RAM_OP_PARAM_HIER_NO */ |
| 3862 | /* transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_HIER_NO; */ |
| 3863 | /* break; */ |
| 3864 | case HIERARCHY_1: |
| 3865 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_HIER_A1; |
| 3866 | break; |
| 3867 | case HIERARCHY_2: |
| 3868 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_HIER_A2; |
| 3869 | break; |
| 3870 | case HIERARCHY_4: |
| 3871 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_HIER_A4; |
| 3872 | break; |
| 3873 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3874 | |
| 3875 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3876 | /* constellation */ |
| 3877 | switch (state->param.u.ofdm.constellation) { |
| 3878 | case QAM_AUTO: |
| 3879 | default: |
| 3880 | operationMode |= OFDM_SC_RA_RAM_OP_AUTO_CONST__M; |
| 3881 | /* fall through , try first guess DRX_CONSTELLATION_QAM64 */ |
| 3882 | case QAM_64: |
| 3883 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_CONST_QAM64; |
| 3884 | break; |
| 3885 | case QPSK: |
| 3886 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_CONST_QPSK; |
| 3887 | break; |
| 3888 | case QAM_16: |
| 3889 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_CONST_QAM16; |
| 3890 | break; |
| 3891 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3892 | #if 0 |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3893 | /* No hierachical channels support in BDA */ |
| 3894 | /* Priority (only for hierarchical channels) */ |
| 3895 | switch (channel->priority) { |
| 3896 | case DRX_PRIORITY_LOW: |
| 3897 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_PRIO_LO; |
| 3898 | WR16(devAddr, OFDM_EC_SB_PRIOR__A, |
| 3899 | OFDM_EC_SB_PRIOR_LO); |
| 3900 | break; |
| 3901 | case DRX_PRIORITY_HIGH: |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3902 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_PRIO_HI; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3903 | WR16(devAddr, OFDM_EC_SB_PRIOR__A, |
| 3904 | OFDM_EC_SB_PRIOR_HI)); |
| 3905 | break; |
| 3906 | case DRX_PRIORITY_UNKNOWN: /* fall through */ |
| 3907 | default: |
| 3908 | status = -EINVAL; |
| 3909 | goto error; |
| 3910 | } |
| 3911 | #else |
| 3912 | /* Set Priorty high */ |
| 3913 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_PRIO_HI; |
| 3914 | status = write16(state, OFDM_EC_SB_PRIOR__A, OFDM_EC_SB_PRIOR_HI); |
| 3915 | if (status < 0) |
| 3916 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3917 | #endif |
| 3918 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3919 | /* coderate */ |
| 3920 | switch (state->param.u.ofdm.code_rate_HP) { |
| 3921 | case FEC_AUTO: |
| 3922 | default: |
| 3923 | operationMode |= OFDM_SC_RA_RAM_OP_AUTO_RATE__M; |
| 3924 | /* fall through , try first guess DRX_CODERATE_2DIV3 */ |
| 3925 | case FEC_2_3: |
| 3926 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_RATE_2_3; |
| 3927 | break; |
| 3928 | case FEC_1_2: |
| 3929 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_RATE_1_2; |
| 3930 | break; |
| 3931 | case FEC_3_4: |
| 3932 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_RATE_3_4; |
| 3933 | break; |
| 3934 | case FEC_5_6: |
| 3935 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_RATE_5_6; |
| 3936 | break; |
| 3937 | case FEC_7_8: |
| 3938 | transmissionParams |= OFDM_SC_RA_RAM_OP_PARAM_RATE_7_8; |
| 3939 | break; |
| 3940 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 3941 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3942 | /* SAW filter selection: normaly not necesarry, but if wanted |
| 3943 | the application can select a SAW filter via the driver by using UIOs */ |
| 3944 | /* First determine real bandwidth (Hz) */ |
| 3945 | /* Also set delay for impulse noise cruncher */ |
| 3946 | /* Also set parameters for EC_OC fix, note EC_OC_REG_TMD_HIL_MAR is changed |
| 3947 | by SC for fix for some 8K,1/8 guard but is restored by InitEC and ResetEC |
| 3948 | functions */ |
| 3949 | switch (state->param.u.ofdm.bandwidth) { |
| 3950 | case BANDWIDTH_AUTO: |
| 3951 | case BANDWIDTH_8_MHZ: |
| 3952 | bandwidth = DRXK_BANDWIDTH_8MHZ_IN_HZ; |
| 3953 | status = write16(state, OFDM_SC_RA_RAM_SRMM_FIX_FACT_8K__A, 3052); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 3954 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 3955 | goto error; |
| 3956 | /* cochannel protection for PAL 8 MHz */ |
| 3957 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_8K_PER_LEFT__A, 7); |
| 3958 | if (status < 0) |
| 3959 | goto error; |
| 3960 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_8K_PER_RIGHT__A, 7); |
| 3961 | if (status < 0) |
| 3962 | goto error; |
| 3963 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_2K_PER_LEFT__A, 7); |
| 3964 | if (status < 0) |
| 3965 | goto error; |
| 3966 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_2K_PER_RIGHT__A, 1); |
| 3967 | if (status < 0) |
| 3968 | goto error; |
| 3969 | break; |
| 3970 | case BANDWIDTH_7_MHZ: |
| 3971 | bandwidth = DRXK_BANDWIDTH_7MHZ_IN_HZ; |
| 3972 | status = write16(state, OFDM_SC_RA_RAM_SRMM_FIX_FACT_8K__A, 3491); |
| 3973 | if (status < 0) |
| 3974 | goto error; |
| 3975 | /* cochannel protection for PAL 7 MHz */ |
| 3976 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_8K_PER_LEFT__A, 8); |
| 3977 | if (status < 0) |
| 3978 | goto error; |
| 3979 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_8K_PER_RIGHT__A, 8); |
| 3980 | if (status < 0) |
| 3981 | goto error; |
| 3982 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_2K_PER_LEFT__A, 4); |
| 3983 | if (status < 0) |
| 3984 | goto error; |
| 3985 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_2K_PER_RIGHT__A, 1); |
| 3986 | if (status < 0) |
| 3987 | goto error; |
| 3988 | break; |
| 3989 | case BANDWIDTH_6_MHZ: |
| 3990 | bandwidth = DRXK_BANDWIDTH_6MHZ_IN_HZ; |
| 3991 | status = write16(state, OFDM_SC_RA_RAM_SRMM_FIX_FACT_8K__A, 4073); |
| 3992 | if (status < 0) |
| 3993 | goto error; |
| 3994 | /* cochannel protection for NTSC 6 MHz */ |
| 3995 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_8K_PER_LEFT__A, 19); |
| 3996 | if (status < 0) |
| 3997 | goto error; |
| 3998 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_8K_PER_RIGHT__A, 19); |
| 3999 | if (status < 0) |
| 4000 | goto error; |
| 4001 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_2K_PER_LEFT__A, 14); |
| 4002 | if (status < 0) |
| 4003 | goto error; |
| 4004 | status = write16(state, OFDM_SC_RA_RAM_NI_INIT_2K_PER_RIGHT__A, 1); |
| 4005 | if (status < 0) |
| 4006 | goto error; |
| 4007 | break; |
| 4008 | default: |
| 4009 | status = -EINVAL; |
| 4010 | goto error; |
| 4011 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4012 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4013 | if (iqmRcRateOfs == 0) { |
| 4014 | /* Now compute IQM_RC_RATE_OFS |
| 4015 | (((SysFreq/BandWidth)/2)/2) -1) * 2^23) |
| 4016 | => |
| 4017 | ((SysFreq / BandWidth) * (2^21)) - (2^23) |
| 4018 | */ |
| 4019 | /* (SysFreq / BandWidth) * (2^28) */ |
| 4020 | /* assert (MAX(sysClk)/MIN(bandwidth) < 16) |
| 4021 | => assert(MAX(sysClk) < 16*MIN(bandwidth)) |
| 4022 | => assert(109714272 > 48000000) = true so Frac 28 can be used */ |
| 4023 | iqmRcRateOfs = Frac28a((u32) |
| 4024 | ((state->m_sysClockFreq * |
| 4025 | 1000) / 3), bandwidth); |
| 4026 | /* (SysFreq / BandWidth) * (2^21), rounding before truncating */ |
| 4027 | if ((iqmRcRateOfs & 0x7fL) >= 0x40) |
| 4028 | iqmRcRateOfs += 0x80L; |
| 4029 | iqmRcRateOfs = iqmRcRateOfs >> 7; |
| 4030 | /* ((SysFreq / BandWidth) * (2^21)) - (2^23) */ |
| 4031 | iqmRcRateOfs = iqmRcRateOfs - (1 << 23); |
| 4032 | } |
| 4033 | |
| 4034 | iqmRcRateOfs &= |
| 4035 | ((((u32) IQM_RC_RATE_OFS_HI__M) << |
| 4036 | IQM_RC_RATE_OFS_LO__W) | IQM_RC_RATE_OFS_LO__M); |
| 4037 | status = write32(state, IQM_RC_RATE_OFS_LO__A, iqmRcRateOfs); |
| 4038 | if (status < 0) |
| 4039 | goto error; |
| 4040 | |
| 4041 | /* Bandwidth setting done */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4042 | |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 4043 | #if 0 |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4044 | status = DVBTSetFrequencyShift(demod, channel, tunerOffset); |
| 4045 | if (status < 0) |
| 4046 | goto error; |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 4047 | #endif |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4048 | status = SetFrequencyShifter(state, IntermediateFreqkHz, tunerFreqOffset, true); |
| 4049 | if (status < 0) |
| 4050 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4051 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4052 | /*== Start SC, write channel settings to SC ===============================*/ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4053 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4054 | /* Activate SCU to enable SCU commands */ |
| 4055 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_ACTIVE); |
| 4056 | if (status < 0) |
| 4057 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4058 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4059 | /* Enable SC after setting all other parameters */ |
| 4060 | status = write16(state, OFDM_SC_COMM_STATE__A, 0); |
| 4061 | if (status < 0) |
| 4062 | goto error; |
| 4063 | status = write16(state, OFDM_SC_COMM_EXEC__A, 1); |
| 4064 | if (status < 0) |
| 4065 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4066 | |
| 4067 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4068 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_OFDM | SCU_RAM_COMMAND_CMD_DEMOD_START, 0, NULL, 1, &cmdResult); |
| 4069 | if (status < 0) |
| 4070 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4071 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4072 | /* Write SC parameter registers, set all AUTO flags in operation mode */ |
| 4073 | param1 = (OFDM_SC_RA_RAM_OP_AUTO_MODE__M | |
| 4074 | OFDM_SC_RA_RAM_OP_AUTO_GUARD__M | |
| 4075 | OFDM_SC_RA_RAM_OP_AUTO_CONST__M | |
| 4076 | OFDM_SC_RA_RAM_OP_AUTO_HIER__M | |
| 4077 | OFDM_SC_RA_RAM_OP_AUTO_RATE__M); |
| 4078 | status = DVBTScCommand(state, OFDM_SC_RA_RAM_CMD_SET_PREF_PARAM, |
| 4079 | 0, transmissionParams, param1, 0, 0, 0); |
| 4080 | if (status < 0) |
| 4081 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4082 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4083 | if (!state->m_DRXK_A3_ROM_CODE) |
| 4084 | status = DVBTCtrlSetSqiSpeed(state, &state->m_sqiSpeed); |
| 4085 | error: |
| 4086 | if (status < 0) |
| 4087 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4088 | |
| 4089 | return status; |
| 4090 | } |
| 4091 | |
| 4092 | |
| 4093 | /*============================================================================*/ |
| 4094 | |
| 4095 | /** |
| 4096 | * \brief Retreive lock status . |
| 4097 | * \param demod Pointer to demodulator instance. |
| 4098 | * \param lockStat Pointer to lock status structure. |
| 4099 | * \return DRXStatus_t. |
| 4100 | * |
| 4101 | */ |
| 4102 | static int GetDVBTLockStatus(struct drxk_state *state, u32 *pLockStatus) |
| 4103 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4104 | int status; |
| 4105 | const u16 mpeg_lock_mask = (OFDM_SC_RA_RAM_LOCK_MPEG__M | |
| 4106 | OFDM_SC_RA_RAM_LOCK_FEC__M); |
| 4107 | const u16 fec_lock_mask = (OFDM_SC_RA_RAM_LOCK_FEC__M); |
| 4108 | const u16 demod_lock_mask = OFDM_SC_RA_RAM_LOCK_DEMOD__M; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4109 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4110 | u16 ScRaRamLock = 0; |
| 4111 | u16 ScCommExec = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4112 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4113 | dprintk(1, "\n"); |
| 4114 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4115 | *pLockStatus = NOT_LOCKED; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4116 | /* driver 0.9.0 */ |
| 4117 | /* Check if SC is running */ |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 4118 | status = read16(state, OFDM_SC_COMM_EXEC__A, &ScCommExec); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4119 | if (status < 0) |
| 4120 | goto end; |
| 4121 | if (ScCommExec == OFDM_SC_COMM_EXEC_STOP) |
| 4122 | goto end; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4123 | |
Mauro Carvalho Chehab | 5e66b87 | 2011-07-09 09:50:21 -0300 | [diff] [blame] | 4124 | status = read16(state, OFDM_SC_RA_RAM_LOCK__A, &ScRaRamLock); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4125 | if (status < 0) |
| 4126 | goto end; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4127 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4128 | if ((ScRaRamLock & mpeg_lock_mask) == mpeg_lock_mask) |
| 4129 | *pLockStatus = MPEG_LOCK; |
| 4130 | else if ((ScRaRamLock & fec_lock_mask) == fec_lock_mask) |
| 4131 | *pLockStatus = FEC_LOCK; |
| 4132 | else if ((ScRaRamLock & demod_lock_mask) == demod_lock_mask) |
| 4133 | *pLockStatus = DEMOD_LOCK; |
| 4134 | else if (ScRaRamLock & OFDM_SC_RA_RAM_LOCK_NODVBT__M) |
| 4135 | *pLockStatus = NEVER_LOCK; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4136 | end: |
| 4137 | if (status < 0) |
| 4138 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4139 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4140 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4141 | } |
| 4142 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4143 | static int PowerUpQAM(struct drxk_state *state) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4144 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4145 | enum DRXPowerMode powerMode = DRXK_POWER_DOWN_OFDM; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4146 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4147 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4148 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4149 | status = CtrlPowerMode(state, &powerMode); |
| 4150 | if (status < 0) |
| 4151 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4152 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4153 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4154 | } |
| 4155 | |
| 4156 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4157 | /** Power Down QAM */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4158 | static int PowerDownQAM(struct drxk_state *state) |
| 4159 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4160 | u16 data = 0; |
| 4161 | u16 cmdResult; |
| 4162 | int status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4163 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4164 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4165 | status = read16(state, SCU_COMM_EXEC__A, &data); |
| 4166 | if (status < 0) |
| 4167 | goto error; |
| 4168 | if (data == SCU_COMM_EXEC_ACTIVE) { |
| 4169 | /* |
| 4170 | STOP demodulator |
| 4171 | QAM and HW blocks |
| 4172 | */ |
| 4173 | /* stop all comstate->m_exec */ |
| 4174 | status = write16(state, QAM_COMM_EXEC__A, QAM_COMM_EXEC_STOP); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 4175 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4176 | goto error; |
| 4177 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_QAM | SCU_RAM_COMMAND_CMD_DEMOD_STOP, 0, NULL, 1, &cmdResult); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 4178 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4179 | goto error; |
| 4180 | } |
| 4181 | /* powerdown AFE */ |
| 4182 | status = SetIqmAf(state, false); |
| 4183 | |
| 4184 | error: |
| 4185 | if (status < 0) |
| 4186 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4187 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4188 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4189 | } |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4190 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4191 | /*============================================================================*/ |
| 4192 | |
| 4193 | /** |
| 4194 | * \brief Setup of the QAM Measurement intervals for signal quality |
| 4195 | * \param demod instance of demod. |
| 4196 | * \param constellation current constellation. |
| 4197 | * \return DRXStatus_t. |
| 4198 | * |
| 4199 | * NOTE: |
| 4200 | * Take into account that for certain settings the errorcounters can overflow. |
| 4201 | * The implementation does not check this. |
| 4202 | * |
| 4203 | */ |
| 4204 | static int SetQAMMeasurement(struct drxk_state *state, |
| 4205 | enum EDrxkConstellation constellation, |
| 4206 | u32 symbolRate) |
| 4207 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4208 | u32 fecBitsDesired = 0; /* BER accounting period */ |
| 4209 | u32 fecRsPeriodTotal = 0; /* Total period */ |
| 4210 | u16 fecRsPrescale = 0; /* ReedSolomon Measurement Prescale */ |
| 4211 | u16 fecRsPeriod = 0; /* Value for corresponding I2C register */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4212 | int status = 0; |
| 4213 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4214 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4215 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4216 | fecRsPrescale = 1; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4217 | /* fecBitsDesired = symbolRate [kHz] * |
| 4218 | FrameLenght [ms] * |
| 4219 | (constellation + 1) * |
| 4220 | SyncLoss (== 1) * |
| 4221 | ViterbiLoss (==1) |
| 4222 | */ |
| 4223 | switch (constellation) { |
| 4224 | case DRX_CONSTELLATION_QAM16: |
| 4225 | fecBitsDesired = 4 * symbolRate; |
| 4226 | break; |
| 4227 | case DRX_CONSTELLATION_QAM32: |
| 4228 | fecBitsDesired = 5 * symbolRate; |
| 4229 | break; |
| 4230 | case DRX_CONSTELLATION_QAM64: |
| 4231 | fecBitsDesired = 6 * symbolRate; |
| 4232 | break; |
| 4233 | case DRX_CONSTELLATION_QAM128: |
| 4234 | fecBitsDesired = 7 * symbolRate; |
| 4235 | break; |
| 4236 | case DRX_CONSTELLATION_QAM256: |
| 4237 | fecBitsDesired = 8 * symbolRate; |
| 4238 | break; |
| 4239 | default: |
| 4240 | status = -EINVAL; |
| 4241 | } |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4242 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4243 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4244 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4245 | fecBitsDesired /= 1000; /* symbolRate [Hz] -> symbolRate [kHz] */ |
| 4246 | fecBitsDesired *= 500; /* meas. period [ms] */ |
| 4247 | |
| 4248 | /* Annex A/C: bits/RsPeriod = 204 * 8 = 1632 */ |
| 4249 | /* fecRsPeriodTotal = fecBitsDesired / 1632 */ |
| 4250 | fecRsPeriodTotal = (fecBitsDesired / 1632UL) + 1; /* roughly ceil */ |
| 4251 | |
| 4252 | /* fecRsPeriodTotal = fecRsPrescale * fecRsPeriod */ |
| 4253 | fecRsPrescale = 1 + (u16) (fecRsPeriodTotal >> 16); |
| 4254 | if (fecRsPrescale == 0) { |
| 4255 | /* Divide by zero (though impossible) */ |
| 4256 | status = -EINVAL; |
| 4257 | if (status < 0) |
| 4258 | goto error; |
| 4259 | } |
| 4260 | fecRsPeriod = |
| 4261 | ((u16) fecRsPeriodTotal + |
| 4262 | (fecRsPrescale >> 1)) / fecRsPrescale; |
| 4263 | |
| 4264 | /* write corresponding registers */ |
| 4265 | status = write16(state, FEC_RS_MEASUREMENT_PERIOD__A, fecRsPeriod); |
| 4266 | if (status < 0) |
| 4267 | goto error; |
| 4268 | status = write16(state, FEC_RS_MEASUREMENT_PRESCALE__A, fecRsPrescale); |
| 4269 | if (status < 0) |
| 4270 | goto error; |
| 4271 | status = write16(state, FEC_OC_SNC_FAIL_PERIOD__A, fecRsPeriod); |
| 4272 | error: |
| 4273 | if (status < 0) |
| 4274 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4275 | return status; |
| 4276 | } |
| 4277 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4278 | static int SetQAM16(struct drxk_state *state) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4279 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4280 | int status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4281 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4282 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4283 | /* QAM Equalizer Setup */ |
| 4284 | /* Equalizer */ |
| 4285 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD0__A, 13517); |
| 4286 | if (status < 0) |
| 4287 | goto error; |
| 4288 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD1__A, 13517); |
| 4289 | if (status < 0) |
| 4290 | goto error; |
| 4291 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD2__A, 13517); |
| 4292 | if (status < 0) |
| 4293 | goto error; |
| 4294 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD3__A, 13517); |
| 4295 | if (status < 0) |
| 4296 | goto error; |
| 4297 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD4__A, 13517); |
| 4298 | if (status < 0) |
| 4299 | goto error; |
| 4300 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD5__A, 13517); |
| 4301 | if (status < 0) |
| 4302 | goto error; |
| 4303 | /* Decision Feedback Equalizer */ |
| 4304 | status = write16(state, QAM_DQ_QUAL_FUN0__A, 2); |
| 4305 | if (status < 0) |
| 4306 | goto error; |
| 4307 | status = write16(state, QAM_DQ_QUAL_FUN1__A, 2); |
| 4308 | if (status < 0) |
| 4309 | goto error; |
| 4310 | status = write16(state, QAM_DQ_QUAL_FUN2__A, 2); |
| 4311 | if (status < 0) |
| 4312 | goto error; |
| 4313 | status = write16(state, QAM_DQ_QUAL_FUN3__A, 2); |
| 4314 | if (status < 0) |
| 4315 | goto error; |
| 4316 | status = write16(state, QAM_DQ_QUAL_FUN4__A, 2); |
| 4317 | if (status < 0) |
| 4318 | goto error; |
| 4319 | status = write16(state, QAM_DQ_QUAL_FUN5__A, 0); |
| 4320 | if (status < 0) |
| 4321 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4322 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4323 | status = write16(state, QAM_SY_SYNC_HWM__A, 5); |
| 4324 | if (status < 0) |
| 4325 | goto error; |
| 4326 | status = write16(state, QAM_SY_SYNC_AWM__A, 4); |
| 4327 | if (status < 0) |
| 4328 | goto error; |
| 4329 | status = write16(state, QAM_SY_SYNC_LWM__A, 3); |
| 4330 | if (status < 0) |
| 4331 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4332 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4333 | /* QAM Slicer Settings */ |
| 4334 | status = write16(state, SCU_RAM_QAM_SL_SIG_POWER__A, DRXK_QAM_SL_SIG_POWER_QAM16); |
| 4335 | if (status < 0) |
| 4336 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4337 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4338 | /* QAM Loop Controller Coeficients */ |
| 4339 | status = write16(state, SCU_RAM_QAM_LC_CA_FINE__A, 15); |
| 4340 | if (status < 0) |
| 4341 | goto error; |
| 4342 | status = write16(state, SCU_RAM_QAM_LC_CA_COARSE__A, 40); |
| 4343 | if (status < 0) |
| 4344 | goto error; |
| 4345 | status = write16(state, SCU_RAM_QAM_LC_EP_FINE__A, 12); |
| 4346 | if (status < 0) |
| 4347 | goto error; |
| 4348 | status = write16(state, SCU_RAM_QAM_LC_EP_MEDIUM__A, 24); |
| 4349 | if (status < 0) |
| 4350 | goto error; |
| 4351 | status = write16(state, SCU_RAM_QAM_LC_EP_COARSE__A, 24); |
| 4352 | if (status < 0) |
| 4353 | goto error; |
| 4354 | status = write16(state, SCU_RAM_QAM_LC_EI_FINE__A, 12); |
| 4355 | if (status < 0) |
| 4356 | goto error; |
| 4357 | status = write16(state, SCU_RAM_QAM_LC_EI_MEDIUM__A, 16); |
| 4358 | if (status < 0) |
| 4359 | goto error; |
| 4360 | status = write16(state, SCU_RAM_QAM_LC_EI_COARSE__A, 16); |
| 4361 | if (status < 0) |
| 4362 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4363 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4364 | status = write16(state, SCU_RAM_QAM_LC_CP_FINE__A, 5); |
| 4365 | if (status < 0) |
| 4366 | goto error; |
| 4367 | status = write16(state, SCU_RAM_QAM_LC_CP_MEDIUM__A, 20); |
| 4368 | if (status < 0) |
| 4369 | goto error; |
| 4370 | status = write16(state, SCU_RAM_QAM_LC_CP_COARSE__A, 80); |
| 4371 | if (status < 0) |
| 4372 | goto error; |
| 4373 | status = write16(state, SCU_RAM_QAM_LC_CI_FINE__A, 5); |
| 4374 | if (status < 0) |
| 4375 | goto error; |
| 4376 | status = write16(state, SCU_RAM_QAM_LC_CI_MEDIUM__A, 20); |
| 4377 | if (status < 0) |
| 4378 | goto error; |
| 4379 | status = write16(state, SCU_RAM_QAM_LC_CI_COARSE__A, 50); |
| 4380 | if (status < 0) |
| 4381 | goto error; |
| 4382 | status = write16(state, SCU_RAM_QAM_LC_CF_FINE__A, 16); |
| 4383 | if (status < 0) |
| 4384 | goto error; |
| 4385 | status = write16(state, SCU_RAM_QAM_LC_CF_MEDIUM__A, 16); |
| 4386 | if (status < 0) |
| 4387 | goto error; |
| 4388 | status = write16(state, SCU_RAM_QAM_LC_CF_COARSE__A, 32); |
| 4389 | if (status < 0) |
| 4390 | goto error; |
| 4391 | status = write16(state, SCU_RAM_QAM_LC_CF1_FINE__A, 5); |
| 4392 | if (status < 0) |
| 4393 | goto error; |
| 4394 | status = write16(state, SCU_RAM_QAM_LC_CF1_MEDIUM__A, 10); |
| 4395 | if (status < 0) |
| 4396 | goto error; |
| 4397 | status = write16(state, SCU_RAM_QAM_LC_CF1_COARSE__A, 10); |
| 4398 | if (status < 0) |
| 4399 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4400 | |
| 4401 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4402 | /* QAM State Machine (FSM) Thresholds */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4403 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4404 | status = write16(state, SCU_RAM_QAM_FSM_RTH__A, 140); |
| 4405 | if (status < 0) |
| 4406 | goto error; |
| 4407 | status = write16(state, SCU_RAM_QAM_FSM_FTH__A, 50); |
| 4408 | if (status < 0) |
| 4409 | goto error; |
| 4410 | status = write16(state, SCU_RAM_QAM_FSM_CTH__A, 95); |
| 4411 | if (status < 0) |
| 4412 | goto error; |
| 4413 | status = write16(state, SCU_RAM_QAM_FSM_PTH__A, 120); |
| 4414 | if (status < 0) |
| 4415 | goto error; |
| 4416 | status = write16(state, SCU_RAM_QAM_FSM_QTH__A, 230); |
| 4417 | if (status < 0) |
| 4418 | goto error; |
| 4419 | status = write16(state, SCU_RAM_QAM_FSM_MTH__A, 105); |
| 4420 | if (status < 0) |
| 4421 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4422 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4423 | status = write16(state, SCU_RAM_QAM_FSM_RATE_LIM__A, 40); |
| 4424 | if (status < 0) |
| 4425 | goto error; |
| 4426 | status = write16(state, SCU_RAM_QAM_FSM_COUNT_LIM__A, 4); |
| 4427 | if (status < 0) |
| 4428 | goto error; |
| 4429 | status = write16(state, SCU_RAM_QAM_FSM_FREQ_LIM__A, 24); |
| 4430 | if (status < 0) |
| 4431 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4432 | |
| 4433 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4434 | /* QAM FSM Tracking Parameters */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4435 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4436 | status = write16(state, SCU_RAM_QAM_FSM_MEDIAN_AV_MULT__A, (u16) 16); |
| 4437 | if (status < 0) |
| 4438 | goto error; |
| 4439 | status = write16(state, SCU_RAM_QAM_FSM_RADIUS_AV_LIMIT__A, (u16) 220); |
| 4440 | if (status < 0) |
| 4441 | goto error; |
| 4442 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET1__A, (u16) 25); |
| 4443 | if (status < 0) |
| 4444 | goto error; |
| 4445 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET2__A, (u16) 6); |
| 4446 | if (status < 0) |
| 4447 | goto error; |
| 4448 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET3__A, (u16) -24); |
| 4449 | if (status < 0) |
| 4450 | goto error; |
| 4451 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET4__A, (u16) -65); |
| 4452 | if (status < 0) |
| 4453 | goto error; |
| 4454 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET5__A, (u16) -127); |
| 4455 | if (status < 0) |
| 4456 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4457 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4458 | error: |
| 4459 | if (status < 0) |
| 4460 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4461 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4462 | } |
| 4463 | |
| 4464 | /*============================================================================*/ |
| 4465 | |
| 4466 | /** |
| 4467 | * \brief QAM32 specific setup |
| 4468 | * \param demod instance of demod. |
| 4469 | * \return DRXStatus_t. |
| 4470 | */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4471 | static int SetQAM32(struct drxk_state *state) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4472 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4473 | int status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4474 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4475 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4476 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4477 | /* QAM Equalizer Setup */ |
| 4478 | /* Equalizer */ |
| 4479 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD0__A, 6707); |
| 4480 | if (status < 0) |
| 4481 | goto error; |
| 4482 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD1__A, 6707); |
| 4483 | if (status < 0) |
| 4484 | goto error; |
| 4485 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD2__A, 6707); |
| 4486 | if (status < 0) |
| 4487 | goto error; |
| 4488 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD3__A, 6707); |
| 4489 | if (status < 0) |
| 4490 | goto error; |
| 4491 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD4__A, 6707); |
| 4492 | if (status < 0) |
| 4493 | goto error; |
| 4494 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD5__A, 6707); |
| 4495 | if (status < 0) |
| 4496 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4497 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4498 | /* Decision Feedback Equalizer */ |
| 4499 | status = write16(state, QAM_DQ_QUAL_FUN0__A, 3); |
| 4500 | if (status < 0) |
| 4501 | goto error; |
| 4502 | status = write16(state, QAM_DQ_QUAL_FUN1__A, 3); |
| 4503 | if (status < 0) |
| 4504 | goto error; |
| 4505 | status = write16(state, QAM_DQ_QUAL_FUN2__A, 3); |
| 4506 | if (status < 0) |
| 4507 | goto error; |
| 4508 | status = write16(state, QAM_DQ_QUAL_FUN3__A, 3); |
| 4509 | if (status < 0) |
| 4510 | goto error; |
| 4511 | status = write16(state, QAM_DQ_QUAL_FUN4__A, 3); |
| 4512 | if (status < 0) |
| 4513 | goto error; |
| 4514 | status = write16(state, QAM_DQ_QUAL_FUN5__A, 0); |
| 4515 | if (status < 0) |
| 4516 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4517 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4518 | status = write16(state, QAM_SY_SYNC_HWM__A, 6); |
| 4519 | if (status < 0) |
| 4520 | goto error; |
| 4521 | status = write16(state, QAM_SY_SYNC_AWM__A, 5); |
| 4522 | if (status < 0) |
| 4523 | goto error; |
| 4524 | status = write16(state, QAM_SY_SYNC_LWM__A, 3); |
| 4525 | if (status < 0) |
| 4526 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4527 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4528 | /* QAM Slicer Settings */ |
| 4529 | |
| 4530 | status = write16(state, SCU_RAM_QAM_SL_SIG_POWER__A, DRXK_QAM_SL_SIG_POWER_QAM32); |
| 4531 | if (status < 0) |
| 4532 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4533 | |
| 4534 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4535 | /* QAM Loop Controller Coeficients */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4536 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4537 | status = write16(state, SCU_RAM_QAM_LC_CA_FINE__A, 15); |
| 4538 | if (status < 0) |
| 4539 | goto error; |
| 4540 | status = write16(state, SCU_RAM_QAM_LC_CA_COARSE__A, 40); |
| 4541 | if (status < 0) |
| 4542 | goto error; |
| 4543 | status = write16(state, SCU_RAM_QAM_LC_EP_FINE__A, 12); |
| 4544 | if (status < 0) |
| 4545 | goto error; |
| 4546 | status = write16(state, SCU_RAM_QAM_LC_EP_MEDIUM__A, 24); |
| 4547 | if (status < 0) |
| 4548 | goto error; |
| 4549 | status = write16(state, SCU_RAM_QAM_LC_EP_COARSE__A, 24); |
| 4550 | if (status < 0) |
| 4551 | goto error; |
| 4552 | status = write16(state, SCU_RAM_QAM_LC_EI_FINE__A, 12); |
| 4553 | if (status < 0) |
| 4554 | goto error; |
| 4555 | status = write16(state, SCU_RAM_QAM_LC_EI_MEDIUM__A, 16); |
| 4556 | if (status < 0) |
| 4557 | goto error; |
| 4558 | status = write16(state, SCU_RAM_QAM_LC_EI_COARSE__A, 16); |
| 4559 | if (status < 0) |
| 4560 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4561 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4562 | status = write16(state, SCU_RAM_QAM_LC_CP_FINE__A, 5); |
| 4563 | if (status < 0) |
| 4564 | goto error; |
| 4565 | status = write16(state, SCU_RAM_QAM_LC_CP_MEDIUM__A, 20); |
| 4566 | if (status < 0) |
| 4567 | goto error; |
| 4568 | status = write16(state, SCU_RAM_QAM_LC_CP_COARSE__A, 80); |
| 4569 | if (status < 0) |
| 4570 | goto error; |
| 4571 | status = write16(state, SCU_RAM_QAM_LC_CI_FINE__A, 5); |
| 4572 | if (status < 0) |
| 4573 | goto error; |
| 4574 | status = write16(state, SCU_RAM_QAM_LC_CI_MEDIUM__A, 20); |
| 4575 | if (status < 0) |
| 4576 | goto error; |
| 4577 | status = write16(state, SCU_RAM_QAM_LC_CI_COARSE__A, 50); |
| 4578 | if (status < 0) |
| 4579 | goto error; |
| 4580 | status = write16(state, SCU_RAM_QAM_LC_CF_FINE__A, 16); |
| 4581 | if (status < 0) |
| 4582 | goto error; |
| 4583 | status = write16(state, SCU_RAM_QAM_LC_CF_MEDIUM__A, 16); |
| 4584 | if (status < 0) |
| 4585 | goto error; |
| 4586 | status = write16(state, SCU_RAM_QAM_LC_CF_COARSE__A, 16); |
| 4587 | if (status < 0) |
| 4588 | goto error; |
| 4589 | status = write16(state, SCU_RAM_QAM_LC_CF1_FINE__A, 5); |
| 4590 | if (status < 0) |
| 4591 | goto error; |
| 4592 | status = write16(state, SCU_RAM_QAM_LC_CF1_MEDIUM__A, 10); |
| 4593 | if (status < 0) |
| 4594 | goto error; |
| 4595 | status = write16(state, SCU_RAM_QAM_LC_CF1_COARSE__A, 0); |
| 4596 | if (status < 0) |
| 4597 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4598 | |
| 4599 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4600 | /* QAM State Machine (FSM) Thresholds */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4601 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4602 | status = write16(state, SCU_RAM_QAM_FSM_RTH__A, 90); |
| 4603 | if (status < 0) |
| 4604 | goto error; |
| 4605 | status = write16(state, SCU_RAM_QAM_FSM_FTH__A, 50); |
| 4606 | if (status < 0) |
| 4607 | goto error; |
| 4608 | status = write16(state, SCU_RAM_QAM_FSM_CTH__A, 80); |
| 4609 | if (status < 0) |
| 4610 | goto error; |
| 4611 | status = write16(state, SCU_RAM_QAM_FSM_PTH__A, 100); |
| 4612 | if (status < 0) |
| 4613 | goto error; |
| 4614 | status = write16(state, SCU_RAM_QAM_FSM_QTH__A, 170); |
| 4615 | if (status < 0) |
| 4616 | goto error; |
| 4617 | status = write16(state, SCU_RAM_QAM_FSM_MTH__A, 100); |
| 4618 | if (status < 0) |
| 4619 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4620 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4621 | status = write16(state, SCU_RAM_QAM_FSM_RATE_LIM__A, 40); |
| 4622 | if (status < 0) |
| 4623 | goto error; |
| 4624 | status = write16(state, SCU_RAM_QAM_FSM_COUNT_LIM__A, 4); |
| 4625 | if (status < 0) |
| 4626 | goto error; |
| 4627 | status = write16(state, SCU_RAM_QAM_FSM_FREQ_LIM__A, 10); |
| 4628 | if (status < 0) |
| 4629 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4630 | |
| 4631 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4632 | /* QAM FSM Tracking Parameters */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4633 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4634 | status = write16(state, SCU_RAM_QAM_FSM_MEDIAN_AV_MULT__A, (u16) 12); |
| 4635 | if (status < 0) |
| 4636 | goto error; |
| 4637 | status = write16(state, SCU_RAM_QAM_FSM_RADIUS_AV_LIMIT__A, (u16) 140); |
| 4638 | if (status < 0) |
| 4639 | goto error; |
| 4640 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET1__A, (u16) -8); |
| 4641 | if (status < 0) |
| 4642 | goto error; |
| 4643 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET2__A, (u16) -16); |
| 4644 | if (status < 0) |
| 4645 | goto error; |
| 4646 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET3__A, (u16) -26); |
| 4647 | if (status < 0) |
| 4648 | goto error; |
| 4649 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET4__A, (u16) -56); |
| 4650 | if (status < 0) |
| 4651 | goto error; |
| 4652 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET5__A, (u16) -86); |
| 4653 | error: |
| 4654 | if (status < 0) |
| 4655 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4656 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4657 | } |
| 4658 | |
| 4659 | /*============================================================================*/ |
| 4660 | |
| 4661 | /** |
| 4662 | * \brief QAM64 specific setup |
| 4663 | * \param demod instance of demod. |
| 4664 | * \return DRXStatus_t. |
| 4665 | */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4666 | static int SetQAM64(struct drxk_state *state) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4667 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4668 | int status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4669 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4670 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4671 | /* QAM Equalizer Setup */ |
| 4672 | /* Equalizer */ |
| 4673 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD0__A, 13336); |
| 4674 | if (status < 0) |
| 4675 | goto error; |
| 4676 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD1__A, 12618); |
| 4677 | if (status < 0) |
| 4678 | goto error; |
| 4679 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD2__A, 11988); |
| 4680 | if (status < 0) |
| 4681 | goto error; |
| 4682 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD3__A, 13809); |
| 4683 | if (status < 0) |
| 4684 | goto error; |
| 4685 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD4__A, 13809); |
| 4686 | if (status < 0) |
| 4687 | goto error; |
| 4688 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD5__A, 15609); |
| 4689 | if (status < 0) |
| 4690 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4691 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4692 | /* Decision Feedback Equalizer */ |
| 4693 | status = write16(state, QAM_DQ_QUAL_FUN0__A, 4); |
| 4694 | if (status < 0) |
| 4695 | goto error; |
| 4696 | status = write16(state, QAM_DQ_QUAL_FUN1__A, 4); |
| 4697 | if (status < 0) |
| 4698 | goto error; |
| 4699 | status = write16(state, QAM_DQ_QUAL_FUN2__A, 4); |
| 4700 | if (status < 0) |
| 4701 | goto error; |
| 4702 | status = write16(state, QAM_DQ_QUAL_FUN3__A, 4); |
| 4703 | if (status < 0) |
| 4704 | goto error; |
| 4705 | status = write16(state, QAM_DQ_QUAL_FUN4__A, 3); |
| 4706 | if (status < 0) |
| 4707 | goto error; |
| 4708 | status = write16(state, QAM_DQ_QUAL_FUN5__A, 0); |
| 4709 | if (status < 0) |
| 4710 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4711 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4712 | status = write16(state, QAM_SY_SYNC_HWM__A, 5); |
| 4713 | if (status < 0) |
| 4714 | goto error; |
| 4715 | status = write16(state, QAM_SY_SYNC_AWM__A, 4); |
| 4716 | if (status < 0) |
| 4717 | goto error; |
| 4718 | status = write16(state, QAM_SY_SYNC_LWM__A, 3); |
| 4719 | if (status < 0) |
| 4720 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4721 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4722 | /* QAM Slicer Settings */ |
| 4723 | status = write16(state, SCU_RAM_QAM_SL_SIG_POWER__A, DRXK_QAM_SL_SIG_POWER_QAM64); |
| 4724 | if (status < 0) |
| 4725 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4726 | |
| 4727 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4728 | /* QAM Loop Controller Coeficients */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4729 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4730 | status = write16(state, SCU_RAM_QAM_LC_CA_FINE__A, 15); |
| 4731 | if (status < 0) |
| 4732 | goto error; |
| 4733 | status = write16(state, SCU_RAM_QAM_LC_CA_COARSE__A, 40); |
| 4734 | if (status < 0) |
| 4735 | goto error; |
| 4736 | status = write16(state, SCU_RAM_QAM_LC_EP_FINE__A, 12); |
| 4737 | if (status < 0) |
| 4738 | goto error; |
| 4739 | status = write16(state, SCU_RAM_QAM_LC_EP_MEDIUM__A, 24); |
| 4740 | if (status < 0) |
| 4741 | goto error; |
| 4742 | status = write16(state, SCU_RAM_QAM_LC_EP_COARSE__A, 24); |
| 4743 | if (status < 0) |
| 4744 | goto error; |
| 4745 | status = write16(state, SCU_RAM_QAM_LC_EI_FINE__A, 12); |
| 4746 | if (status < 0) |
| 4747 | goto error; |
| 4748 | status = write16(state, SCU_RAM_QAM_LC_EI_MEDIUM__A, 16); |
| 4749 | if (status < 0) |
| 4750 | goto error; |
| 4751 | status = write16(state, SCU_RAM_QAM_LC_EI_COARSE__A, 16); |
| 4752 | if (status < 0) |
| 4753 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4754 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4755 | status = write16(state, SCU_RAM_QAM_LC_CP_FINE__A, 5); |
| 4756 | if (status < 0) |
| 4757 | goto error; |
| 4758 | status = write16(state, SCU_RAM_QAM_LC_CP_MEDIUM__A, 30); |
| 4759 | if (status < 0) |
| 4760 | goto error; |
| 4761 | status = write16(state, SCU_RAM_QAM_LC_CP_COARSE__A, 100); |
| 4762 | if (status < 0) |
| 4763 | goto error; |
| 4764 | status = write16(state, SCU_RAM_QAM_LC_CI_FINE__A, 5); |
| 4765 | if (status < 0) |
| 4766 | goto error; |
| 4767 | status = write16(state, SCU_RAM_QAM_LC_CI_MEDIUM__A, 30); |
| 4768 | if (status < 0) |
| 4769 | goto error; |
| 4770 | status = write16(state, SCU_RAM_QAM_LC_CI_COARSE__A, 50); |
| 4771 | if (status < 0) |
| 4772 | goto error; |
| 4773 | status = write16(state, SCU_RAM_QAM_LC_CF_FINE__A, 16); |
| 4774 | if (status < 0) |
| 4775 | goto error; |
| 4776 | status = write16(state, SCU_RAM_QAM_LC_CF_MEDIUM__A, 25); |
| 4777 | if (status < 0) |
| 4778 | goto error; |
| 4779 | status = write16(state, SCU_RAM_QAM_LC_CF_COARSE__A, 48); |
| 4780 | if (status < 0) |
| 4781 | goto error; |
| 4782 | status = write16(state, SCU_RAM_QAM_LC_CF1_FINE__A, 5); |
| 4783 | if (status < 0) |
| 4784 | goto error; |
| 4785 | status = write16(state, SCU_RAM_QAM_LC_CF1_MEDIUM__A, 10); |
| 4786 | if (status < 0) |
| 4787 | goto error; |
| 4788 | status = write16(state, SCU_RAM_QAM_LC_CF1_COARSE__A, 10); |
| 4789 | if (status < 0) |
| 4790 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4791 | |
| 4792 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4793 | /* QAM State Machine (FSM) Thresholds */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4794 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4795 | status = write16(state, SCU_RAM_QAM_FSM_RTH__A, 100); |
| 4796 | if (status < 0) |
| 4797 | goto error; |
| 4798 | status = write16(state, SCU_RAM_QAM_FSM_FTH__A, 60); |
| 4799 | if (status < 0) |
| 4800 | goto error; |
| 4801 | status = write16(state, SCU_RAM_QAM_FSM_CTH__A, 80); |
| 4802 | if (status < 0) |
| 4803 | goto error; |
| 4804 | status = write16(state, SCU_RAM_QAM_FSM_PTH__A, 110); |
| 4805 | if (status < 0) |
| 4806 | goto error; |
| 4807 | status = write16(state, SCU_RAM_QAM_FSM_QTH__A, 200); |
| 4808 | if (status < 0) |
| 4809 | goto error; |
| 4810 | status = write16(state, SCU_RAM_QAM_FSM_MTH__A, 95); |
| 4811 | if (status < 0) |
| 4812 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4813 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4814 | status = write16(state, SCU_RAM_QAM_FSM_RATE_LIM__A, 40); |
| 4815 | if (status < 0) |
| 4816 | goto error; |
| 4817 | status = write16(state, SCU_RAM_QAM_FSM_COUNT_LIM__A, 4); |
| 4818 | if (status < 0) |
| 4819 | goto error; |
| 4820 | status = write16(state, SCU_RAM_QAM_FSM_FREQ_LIM__A, 15); |
| 4821 | if (status < 0) |
| 4822 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4823 | |
| 4824 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4825 | /* QAM FSM Tracking Parameters */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4826 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4827 | status = write16(state, SCU_RAM_QAM_FSM_MEDIAN_AV_MULT__A, (u16) 12); |
| 4828 | if (status < 0) |
| 4829 | goto error; |
| 4830 | status = write16(state, SCU_RAM_QAM_FSM_RADIUS_AV_LIMIT__A, (u16) 141); |
| 4831 | if (status < 0) |
| 4832 | goto error; |
| 4833 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET1__A, (u16) 7); |
| 4834 | if (status < 0) |
| 4835 | goto error; |
| 4836 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET2__A, (u16) 0); |
| 4837 | if (status < 0) |
| 4838 | goto error; |
| 4839 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET3__A, (u16) -15); |
| 4840 | if (status < 0) |
| 4841 | goto error; |
| 4842 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET4__A, (u16) -45); |
| 4843 | if (status < 0) |
| 4844 | goto error; |
| 4845 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET5__A, (u16) -80); |
| 4846 | error: |
| 4847 | if (status < 0) |
| 4848 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4849 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4850 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4851 | } |
| 4852 | |
| 4853 | /*============================================================================*/ |
| 4854 | |
| 4855 | /** |
| 4856 | * \brief QAM128 specific setup |
| 4857 | * \param demod: instance of demod. |
| 4858 | * \return DRXStatus_t. |
| 4859 | */ |
| 4860 | static int SetQAM128(struct drxk_state *state) |
| 4861 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4862 | int status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4863 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 4864 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4865 | /* QAM Equalizer Setup */ |
| 4866 | /* Equalizer */ |
| 4867 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD0__A, 6564); |
| 4868 | if (status < 0) |
| 4869 | goto error; |
| 4870 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD1__A, 6598); |
| 4871 | if (status < 0) |
| 4872 | goto error; |
| 4873 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD2__A, 6394); |
| 4874 | if (status < 0) |
| 4875 | goto error; |
| 4876 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD3__A, 6409); |
| 4877 | if (status < 0) |
| 4878 | goto error; |
| 4879 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD4__A, 6656); |
| 4880 | if (status < 0) |
| 4881 | goto error; |
| 4882 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD5__A, 7238); |
| 4883 | if (status < 0) |
| 4884 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4885 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4886 | /* Decision Feedback Equalizer */ |
| 4887 | status = write16(state, QAM_DQ_QUAL_FUN0__A, 6); |
| 4888 | if (status < 0) |
| 4889 | goto error; |
| 4890 | status = write16(state, QAM_DQ_QUAL_FUN1__A, 6); |
| 4891 | if (status < 0) |
| 4892 | goto error; |
| 4893 | status = write16(state, QAM_DQ_QUAL_FUN2__A, 6); |
| 4894 | if (status < 0) |
| 4895 | goto error; |
| 4896 | status = write16(state, QAM_DQ_QUAL_FUN3__A, 6); |
| 4897 | if (status < 0) |
| 4898 | goto error; |
| 4899 | status = write16(state, QAM_DQ_QUAL_FUN4__A, 5); |
| 4900 | if (status < 0) |
| 4901 | goto error; |
| 4902 | status = write16(state, QAM_DQ_QUAL_FUN5__A, 0); |
| 4903 | if (status < 0) |
| 4904 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 4905 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4906 | status = write16(state, QAM_SY_SYNC_HWM__A, 6); |
| 4907 | if (status < 0) |
| 4908 | goto error; |
| 4909 | status = write16(state, QAM_SY_SYNC_AWM__A, 5); |
| 4910 | if (status < 0) |
| 4911 | goto error; |
| 4912 | status = write16(state, QAM_SY_SYNC_LWM__A, 3); |
| 4913 | if (status < 0) |
| 4914 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4915 | |
| 4916 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4917 | /* QAM Slicer Settings */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4918 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4919 | status = write16(state, SCU_RAM_QAM_SL_SIG_POWER__A, DRXK_QAM_SL_SIG_POWER_QAM128); |
| 4920 | if (status < 0) |
| 4921 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4922 | |
| 4923 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4924 | /* QAM Loop Controller Coeficients */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4925 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4926 | status = write16(state, SCU_RAM_QAM_LC_CA_FINE__A, 15); |
| 4927 | if (status < 0) |
| 4928 | goto error; |
| 4929 | status = write16(state, SCU_RAM_QAM_LC_CA_COARSE__A, 40); |
| 4930 | if (status < 0) |
| 4931 | goto error; |
| 4932 | status = write16(state, SCU_RAM_QAM_LC_EP_FINE__A, 12); |
| 4933 | if (status < 0) |
| 4934 | goto error; |
| 4935 | status = write16(state, SCU_RAM_QAM_LC_EP_MEDIUM__A, 24); |
| 4936 | if (status < 0) |
| 4937 | goto error; |
| 4938 | status = write16(state, SCU_RAM_QAM_LC_EP_COARSE__A, 24); |
| 4939 | if (status < 0) |
| 4940 | goto error; |
| 4941 | status = write16(state, SCU_RAM_QAM_LC_EI_FINE__A, 12); |
| 4942 | if (status < 0) |
| 4943 | goto error; |
| 4944 | status = write16(state, SCU_RAM_QAM_LC_EI_MEDIUM__A, 16); |
| 4945 | if (status < 0) |
| 4946 | goto error; |
| 4947 | status = write16(state, SCU_RAM_QAM_LC_EI_COARSE__A, 16); |
| 4948 | if (status < 0) |
| 4949 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4950 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4951 | status = write16(state, SCU_RAM_QAM_LC_CP_FINE__A, 5); |
| 4952 | if (status < 0) |
| 4953 | goto error; |
| 4954 | status = write16(state, SCU_RAM_QAM_LC_CP_MEDIUM__A, 40); |
| 4955 | if (status < 0) |
| 4956 | goto error; |
| 4957 | status = write16(state, SCU_RAM_QAM_LC_CP_COARSE__A, 120); |
| 4958 | if (status < 0) |
| 4959 | goto error; |
| 4960 | status = write16(state, SCU_RAM_QAM_LC_CI_FINE__A, 5); |
| 4961 | if (status < 0) |
| 4962 | goto error; |
| 4963 | status = write16(state, SCU_RAM_QAM_LC_CI_MEDIUM__A, 40); |
| 4964 | if (status < 0) |
| 4965 | goto error; |
| 4966 | status = write16(state, SCU_RAM_QAM_LC_CI_COARSE__A, 60); |
| 4967 | if (status < 0) |
| 4968 | goto error; |
| 4969 | status = write16(state, SCU_RAM_QAM_LC_CF_FINE__A, 16); |
| 4970 | if (status < 0) |
| 4971 | goto error; |
| 4972 | status = write16(state, SCU_RAM_QAM_LC_CF_MEDIUM__A, 25); |
| 4973 | if (status < 0) |
| 4974 | goto error; |
| 4975 | status = write16(state, SCU_RAM_QAM_LC_CF_COARSE__A, 64); |
| 4976 | if (status < 0) |
| 4977 | goto error; |
| 4978 | status = write16(state, SCU_RAM_QAM_LC_CF1_FINE__A, 5); |
| 4979 | if (status < 0) |
| 4980 | goto error; |
| 4981 | status = write16(state, SCU_RAM_QAM_LC_CF1_MEDIUM__A, 10); |
| 4982 | if (status < 0) |
| 4983 | goto error; |
| 4984 | status = write16(state, SCU_RAM_QAM_LC_CF1_COARSE__A, 0); |
| 4985 | if (status < 0) |
| 4986 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4987 | |
| 4988 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4989 | /* QAM State Machine (FSM) Thresholds */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 4990 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 4991 | status = write16(state, SCU_RAM_QAM_FSM_RTH__A, 50); |
| 4992 | if (status < 0) |
| 4993 | goto error; |
| 4994 | status = write16(state, SCU_RAM_QAM_FSM_FTH__A, 60); |
| 4995 | if (status < 0) |
| 4996 | goto error; |
| 4997 | status = write16(state, SCU_RAM_QAM_FSM_CTH__A, 80); |
| 4998 | if (status < 0) |
| 4999 | goto error; |
| 5000 | status = write16(state, SCU_RAM_QAM_FSM_PTH__A, 100); |
| 5001 | if (status < 0) |
| 5002 | goto error; |
| 5003 | status = write16(state, SCU_RAM_QAM_FSM_QTH__A, 140); |
| 5004 | if (status < 0) |
| 5005 | goto error; |
| 5006 | status = write16(state, SCU_RAM_QAM_FSM_MTH__A, 100); |
| 5007 | if (status < 0) |
| 5008 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5009 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5010 | status = write16(state, SCU_RAM_QAM_FSM_RATE_LIM__A, 40); |
| 5011 | if (status < 0) |
| 5012 | goto error; |
| 5013 | status = write16(state, SCU_RAM_QAM_FSM_COUNT_LIM__A, 5); |
| 5014 | if (status < 0) |
| 5015 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5016 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5017 | status = write16(state, SCU_RAM_QAM_FSM_FREQ_LIM__A, 12); |
| 5018 | if (status < 0) |
| 5019 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5020 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5021 | /* QAM FSM Tracking Parameters */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5022 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5023 | status = write16(state, SCU_RAM_QAM_FSM_MEDIAN_AV_MULT__A, (u16) 8); |
| 5024 | if (status < 0) |
| 5025 | goto error; |
| 5026 | status = write16(state, SCU_RAM_QAM_FSM_RADIUS_AV_LIMIT__A, (u16) 65); |
| 5027 | if (status < 0) |
| 5028 | goto error; |
| 5029 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET1__A, (u16) 5); |
| 5030 | if (status < 0) |
| 5031 | goto error; |
| 5032 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET2__A, (u16) 3); |
| 5033 | if (status < 0) |
| 5034 | goto error; |
| 5035 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET3__A, (u16) -1); |
| 5036 | if (status < 0) |
| 5037 | goto error; |
| 5038 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET4__A, (u16) -12); |
| 5039 | if (status < 0) |
| 5040 | goto error; |
| 5041 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET5__A, (u16) -23); |
| 5042 | error: |
| 5043 | if (status < 0) |
| 5044 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5045 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5046 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5047 | } |
| 5048 | |
| 5049 | /*============================================================================*/ |
| 5050 | |
| 5051 | /** |
| 5052 | * \brief QAM256 specific setup |
| 5053 | * \param demod: instance of demod. |
| 5054 | * \return DRXStatus_t. |
| 5055 | */ |
| 5056 | static int SetQAM256(struct drxk_state *state) |
| 5057 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5058 | int status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5059 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5060 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5061 | /* QAM Equalizer Setup */ |
| 5062 | /* Equalizer */ |
| 5063 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD0__A, 11502); |
| 5064 | if (status < 0) |
| 5065 | goto error; |
| 5066 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD1__A, 12084); |
| 5067 | if (status < 0) |
| 5068 | goto error; |
| 5069 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD2__A, 12543); |
| 5070 | if (status < 0) |
| 5071 | goto error; |
| 5072 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD3__A, 12931); |
| 5073 | if (status < 0) |
| 5074 | goto error; |
| 5075 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD4__A, 13629); |
| 5076 | if (status < 0) |
| 5077 | goto error; |
| 5078 | status = write16(state, SCU_RAM_QAM_EQ_CMA_RAD5__A, 15385); |
| 5079 | if (status < 0) |
| 5080 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5081 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5082 | /* Decision Feedback Equalizer */ |
| 5083 | status = write16(state, QAM_DQ_QUAL_FUN0__A, 8); |
| 5084 | if (status < 0) |
| 5085 | goto error; |
| 5086 | status = write16(state, QAM_DQ_QUAL_FUN1__A, 8); |
| 5087 | if (status < 0) |
| 5088 | goto error; |
| 5089 | status = write16(state, QAM_DQ_QUAL_FUN2__A, 8); |
| 5090 | if (status < 0) |
| 5091 | goto error; |
| 5092 | status = write16(state, QAM_DQ_QUAL_FUN3__A, 8); |
| 5093 | if (status < 0) |
| 5094 | goto error; |
| 5095 | status = write16(state, QAM_DQ_QUAL_FUN4__A, 6); |
| 5096 | if (status < 0) |
| 5097 | goto error; |
| 5098 | status = write16(state, QAM_DQ_QUAL_FUN5__A, 0); |
| 5099 | if (status < 0) |
| 5100 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5101 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5102 | status = write16(state, QAM_SY_SYNC_HWM__A, 5); |
| 5103 | if (status < 0) |
| 5104 | goto error; |
| 5105 | status = write16(state, QAM_SY_SYNC_AWM__A, 4); |
| 5106 | if (status < 0) |
| 5107 | goto error; |
| 5108 | status = write16(state, QAM_SY_SYNC_LWM__A, 3); |
| 5109 | if (status < 0) |
| 5110 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5111 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5112 | /* QAM Slicer Settings */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5113 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5114 | status = write16(state, SCU_RAM_QAM_SL_SIG_POWER__A, DRXK_QAM_SL_SIG_POWER_QAM256); |
| 5115 | if (status < 0) |
| 5116 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5117 | |
| 5118 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5119 | /* QAM Loop Controller Coeficients */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5120 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5121 | status = write16(state, SCU_RAM_QAM_LC_CA_FINE__A, 15); |
| 5122 | if (status < 0) |
| 5123 | goto error; |
| 5124 | status = write16(state, SCU_RAM_QAM_LC_CA_COARSE__A, 40); |
| 5125 | if (status < 0) |
| 5126 | goto error; |
| 5127 | status = write16(state, SCU_RAM_QAM_LC_EP_FINE__A, 12); |
| 5128 | if (status < 0) |
| 5129 | goto error; |
| 5130 | status = write16(state, SCU_RAM_QAM_LC_EP_MEDIUM__A, 24); |
| 5131 | if (status < 0) |
| 5132 | goto error; |
| 5133 | status = write16(state, SCU_RAM_QAM_LC_EP_COARSE__A, 24); |
| 5134 | if (status < 0) |
| 5135 | goto error; |
| 5136 | status = write16(state, SCU_RAM_QAM_LC_EI_FINE__A, 12); |
| 5137 | if (status < 0) |
| 5138 | goto error; |
| 5139 | status = write16(state, SCU_RAM_QAM_LC_EI_MEDIUM__A, 16); |
| 5140 | if (status < 0) |
| 5141 | goto error; |
| 5142 | status = write16(state, SCU_RAM_QAM_LC_EI_COARSE__A, 16); |
| 5143 | if (status < 0) |
| 5144 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5145 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5146 | status = write16(state, SCU_RAM_QAM_LC_CP_FINE__A, 5); |
| 5147 | if (status < 0) |
| 5148 | goto error; |
| 5149 | status = write16(state, SCU_RAM_QAM_LC_CP_MEDIUM__A, 50); |
| 5150 | if (status < 0) |
| 5151 | goto error; |
| 5152 | status = write16(state, SCU_RAM_QAM_LC_CP_COARSE__A, 250); |
| 5153 | if (status < 0) |
| 5154 | goto error; |
| 5155 | status = write16(state, SCU_RAM_QAM_LC_CI_FINE__A, 5); |
| 5156 | if (status < 0) |
| 5157 | goto error; |
| 5158 | status = write16(state, SCU_RAM_QAM_LC_CI_MEDIUM__A, 50); |
| 5159 | if (status < 0) |
| 5160 | goto error; |
| 5161 | status = write16(state, SCU_RAM_QAM_LC_CI_COARSE__A, 125); |
| 5162 | if (status < 0) |
| 5163 | goto error; |
| 5164 | status = write16(state, SCU_RAM_QAM_LC_CF_FINE__A, 16); |
| 5165 | if (status < 0) |
| 5166 | goto error; |
| 5167 | status = write16(state, SCU_RAM_QAM_LC_CF_MEDIUM__A, 25); |
| 5168 | if (status < 0) |
| 5169 | goto error; |
| 5170 | status = write16(state, SCU_RAM_QAM_LC_CF_COARSE__A, 48); |
| 5171 | if (status < 0) |
| 5172 | goto error; |
| 5173 | status = write16(state, SCU_RAM_QAM_LC_CF1_FINE__A, 5); |
| 5174 | if (status < 0) |
| 5175 | goto error; |
| 5176 | status = write16(state, SCU_RAM_QAM_LC_CF1_MEDIUM__A, 10); |
| 5177 | if (status < 0) |
| 5178 | goto error; |
| 5179 | status = write16(state, SCU_RAM_QAM_LC_CF1_COARSE__A, 10); |
| 5180 | if (status < 0) |
| 5181 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5182 | |
| 5183 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5184 | /* QAM State Machine (FSM) Thresholds */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5185 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5186 | status = write16(state, SCU_RAM_QAM_FSM_RTH__A, 50); |
| 5187 | if (status < 0) |
| 5188 | goto error; |
| 5189 | status = write16(state, SCU_RAM_QAM_FSM_FTH__A, 60); |
| 5190 | if (status < 0) |
| 5191 | goto error; |
| 5192 | status = write16(state, SCU_RAM_QAM_FSM_CTH__A, 80); |
| 5193 | if (status < 0) |
| 5194 | goto error; |
| 5195 | status = write16(state, SCU_RAM_QAM_FSM_PTH__A, 100); |
| 5196 | if (status < 0) |
| 5197 | goto error; |
| 5198 | status = write16(state, SCU_RAM_QAM_FSM_QTH__A, 150); |
| 5199 | if (status < 0) |
| 5200 | goto error; |
| 5201 | status = write16(state, SCU_RAM_QAM_FSM_MTH__A, 110); |
| 5202 | if (status < 0) |
| 5203 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5204 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5205 | status = write16(state, SCU_RAM_QAM_FSM_RATE_LIM__A, 40); |
| 5206 | if (status < 0) |
| 5207 | goto error; |
| 5208 | status = write16(state, SCU_RAM_QAM_FSM_COUNT_LIM__A, 4); |
| 5209 | if (status < 0) |
| 5210 | goto error; |
| 5211 | status = write16(state, SCU_RAM_QAM_FSM_FREQ_LIM__A, 12); |
| 5212 | if (status < 0) |
| 5213 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5214 | |
| 5215 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5216 | /* QAM FSM Tracking Parameters */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5217 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5218 | status = write16(state, SCU_RAM_QAM_FSM_MEDIAN_AV_MULT__A, (u16) 8); |
| 5219 | if (status < 0) |
| 5220 | goto error; |
| 5221 | status = write16(state, SCU_RAM_QAM_FSM_RADIUS_AV_LIMIT__A, (u16) 74); |
| 5222 | if (status < 0) |
| 5223 | goto error; |
| 5224 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET1__A, (u16) 18); |
| 5225 | if (status < 0) |
| 5226 | goto error; |
| 5227 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET2__A, (u16) 13); |
| 5228 | if (status < 0) |
| 5229 | goto error; |
| 5230 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET3__A, (u16) 7); |
| 5231 | if (status < 0) |
| 5232 | goto error; |
| 5233 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET4__A, (u16) 0); |
| 5234 | if (status < 0) |
| 5235 | goto error; |
| 5236 | status = write16(state, SCU_RAM_QAM_FSM_LCAVG_OFFSET5__A, (u16) -8); |
| 5237 | error: |
| 5238 | if (status < 0) |
| 5239 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5240 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5241 | } |
| 5242 | |
| 5243 | |
| 5244 | /*============================================================================*/ |
| 5245 | /** |
| 5246 | * \brief Reset QAM block. |
| 5247 | * \param demod: instance of demod. |
| 5248 | * \param channel: pointer to channel data. |
| 5249 | * \return DRXStatus_t. |
| 5250 | */ |
| 5251 | static int QAMResetQAM(struct drxk_state *state) |
| 5252 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5253 | int status; |
| 5254 | u16 cmdResult; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5255 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5256 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5257 | /* Stop QAM comstate->m_exec */ |
| 5258 | status = write16(state, QAM_COMM_EXEC__A, QAM_COMM_EXEC_STOP); |
| 5259 | if (status < 0) |
| 5260 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5261 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5262 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_QAM | SCU_RAM_COMMAND_CMD_DEMOD_RESET, 0, NULL, 1, &cmdResult); |
| 5263 | error: |
| 5264 | if (status < 0) |
| 5265 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5266 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5267 | } |
| 5268 | |
| 5269 | /*============================================================================*/ |
| 5270 | |
| 5271 | /** |
| 5272 | * \brief Set QAM symbolrate. |
| 5273 | * \param demod: instance of demod. |
| 5274 | * \param channel: pointer to channel data. |
| 5275 | * \return DRXStatus_t. |
| 5276 | */ |
| 5277 | static int QAMSetSymbolrate(struct drxk_state *state) |
| 5278 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5279 | u32 adcFrequency = 0; |
| 5280 | u32 symbFreq = 0; |
| 5281 | u32 iqmRcRate = 0; |
| 5282 | u16 ratesel = 0; |
| 5283 | u32 lcSymbRate = 0; |
| 5284 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5285 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5286 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5287 | /* Select & calculate correct IQM rate */ |
| 5288 | adcFrequency = (state->m_sysClockFreq * 1000) / 3; |
| 5289 | ratesel = 0; |
| 5290 | /* printk(KERN_DEBUG "drxk: SR %d\n", state->param.u.qam.symbol_rate); */ |
| 5291 | if (state->param.u.qam.symbol_rate <= 1188750) |
| 5292 | ratesel = 3; |
| 5293 | else if (state->param.u.qam.symbol_rate <= 2377500) |
| 5294 | ratesel = 2; |
| 5295 | else if (state->param.u.qam.symbol_rate <= 4755000) |
| 5296 | ratesel = 1; |
| 5297 | status = write16(state, IQM_FD_RATESEL__A, ratesel); |
| 5298 | if (status < 0) |
| 5299 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5300 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5301 | /* |
| 5302 | IqmRcRate = ((Fadc / (symbolrate * (4<<ratesel))) - 1) * (1<<23) |
| 5303 | */ |
| 5304 | symbFreq = state->param.u.qam.symbol_rate * (1 << ratesel); |
| 5305 | if (symbFreq == 0) { |
| 5306 | /* Divide by zero */ |
| 5307 | status = -EINVAL; |
| 5308 | goto error; |
| 5309 | } |
| 5310 | iqmRcRate = (adcFrequency / symbFreq) * (1 << 21) + |
| 5311 | (Frac28a((adcFrequency % symbFreq), symbFreq) >> 7) - |
| 5312 | (1 << 23); |
| 5313 | status = write32(state, IQM_RC_RATE_OFS_LO__A, iqmRcRate); |
| 5314 | if (status < 0) |
| 5315 | goto error; |
| 5316 | state->m_iqmRcRate = iqmRcRate; |
| 5317 | /* |
| 5318 | LcSymbFreq = round (.125 * symbolrate / adcFreq * (1<<15)) |
| 5319 | */ |
| 5320 | symbFreq = state->param.u.qam.symbol_rate; |
| 5321 | if (adcFrequency == 0) { |
| 5322 | /* Divide by zero */ |
| 5323 | status = -EINVAL; |
| 5324 | goto error; |
| 5325 | } |
| 5326 | lcSymbRate = (symbFreq / adcFrequency) * (1 << 12) + |
| 5327 | (Frac28a((symbFreq % adcFrequency), adcFrequency) >> |
| 5328 | 16); |
| 5329 | if (lcSymbRate > 511) |
| 5330 | lcSymbRate = 511; |
| 5331 | status = write16(state, QAM_LC_SYMBOL_FREQ__A, (u16) lcSymbRate); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5332 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5333 | error: |
| 5334 | if (status < 0) |
| 5335 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5336 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5337 | } |
| 5338 | |
| 5339 | /*============================================================================*/ |
| 5340 | |
| 5341 | /** |
| 5342 | * \brief Get QAM lock status. |
| 5343 | * \param demod: instance of demod. |
| 5344 | * \param channel: pointer to channel data. |
| 5345 | * \return DRXStatus_t. |
| 5346 | */ |
| 5347 | |
| 5348 | static int GetQAMLockStatus(struct drxk_state *state, u32 *pLockStatus) |
| 5349 | { |
| 5350 | int status; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5351 | u16 Result[2] = { 0, 0 }; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5352 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5353 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5354 | *pLockStatus = NOT_LOCKED; |
| 5355 | status = scu_command(state, |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5356 | SCU_RAM_COMMAND_STANDARD_QAM | |
| 5357 | SCU_RAM_COMMAND_CMD_DEMOD_GET_LOCK, 0, NULL, 2, |
| 5358 | Result); |
| 5359 | if (status < 0) |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 5360 | printk(KERN_ERR "drxk: %s status = %08x\n", __func__, status); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5361 | |
| 5362 | if (Result[1] < SCU_RAM_QAM_LOCKED_LOCKED_DEMOD_LOCKED) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5363 | /* 0x0000 NOT LOCKED */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5364 | } else if (Result[1] < SCU_RAM_QAM_LOCKED_LOCKED_LOCKED) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5365 | /* 0x4000 DEMOD LOCKED */ |
| 5366 | *pLockStatus = DEMOD_LOCK; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5367 | } else if (Result[1] < SCU_RAM_QAM_LOCKED_LOCKED_NEVER_LOCK) { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5368 | /* 0x8000 DEMOD + FEC LOCKED (system lock) */ |
| 5369 | *pLockStatus = MPEG_LOCK; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5370 | } else { |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5371 | /* 0xC000 NEVER LOCKED */ |
| 5372 | /* (system will never be able to lock to the signal) */ |
| 5373 | /* TODO: check this, intermediate & standard specific lock states are not |
| 5374 | taken into account here */ |
| 5375 | *pLockStatus = NEVER_LOCK; |
| 5376 | } |
| 5377 | return status; |
| 5378 | } |
| 5379 | |
| 5380 | #define QAM_MIRROR__M 0x03 |
| 5381 | #define QAM_MIRROR_NORMAL 0x00 |
| 5382 | #define QAM_MIRRORED 0x01 |
| 5383 | #define QAM_MIRROR_AUTO_ON 0x02 |
| 5384 | #define QAM_LOCKRANGE__M 0x10 |
| 5385 | #define QAM_LOCKRANGE_NORMAL 0x10 |
| 5386 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5387 | static int SetQAM(struct drxk_state *state, u16 IntermediateFreqkHz, |
| 5388 | s32 tunerFreqOffset) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5389 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5390 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5391 | u8 parameterLen; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5392 | u16 setEnvParameters[5]; |
| 5393 | u16 setParamParameters[4] = { 0, 0, 0, 0 }; |
| 5394 | u16 cmdResult; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5395 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5396 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5397 | /* |
| 5398 | STEP 1: reset demodulator |
| 5399 | resets FEC DI and FEC RS |
| 5400 | resets QAM block |
| 5401 | resets SCU variables |
| 5402 | */ |
| 5403 | status = write16(state, FEC_DI_COMM_EXEC__A, FEC_DI_COMM_EXEC_STOP); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5404 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5405 | goto error; |
| 5406 | status = write16(state, FEC_RS_COMM_EXEC__A, FEC_RS_COMM_EXEC_STOP); |
| 5407 | if (status < 0) |
| 5408 | goto error; |
| 5409 | status = QAMResetQAM(state); |
| 5410 | if (status < 0) |
| 5411 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5412 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5413 | /* |
| 5414 | STEP 2: configure demodulator |
| 5415 | -set env |
| 5416 | -set params; resets IQM,QAM,FEC HW; initializes some SCU variables |
| 5417 | */ |
| 5418 | status = QAMSetSymbolrate(state); |
| 5419 | if (status < 0) |
| 5420 | goto error; |
| 5421 | |
| 5422 | /* Env parameters */ |
| 5423 | setEnvParameters[2] = QAM_TOP_ANNEX_A; /* Annex */ |
| 5424 | if (state->m_OperationMode == OM_QAM_ITU_C) |
| 5425 | setEnvParameters[2] = QAM_TOP_ANNEX_C; /* Annex */ |
| 5426 | setParamParameters[3] |= (QAM_MIRROR_AUTO_ON); |
| 5427 | /* check for LOCKRANGE Extented */ |
| 5428 | /* setParamParameters[3] |= QAM_LOCKRANGE_NORMAL; */ |
| 5429 | parameterLen = 4; |
| 5430 | |
| 5431 | /* Set params */ |
| 5432 | switch (state->param.u.qam.modulation) { |
| 5433 | case QAM_256: |
| 5434 | state->m_Constellation = DRX_CONSTELLATION_QAM256; |
| 5435 | break; |
| 5436 | case QAM_AUTO: |
| 5437 | case QAM_64: |
| 5438 | state->m_Constellation = DRX_CONSTELLATION_QAM64; |
| 5439 | break; |
| 5440 | case QAM_16: |
| 5441 | state->m_Constellation = DRX_CONSTELLATION_QAM16; |
| 5442 | break; |
| 5443 | case QAM_32: |
| 5444 | state->m_Constellation = DRX_CONSTELLATION_QAM32; |
| 5445 | break; |
| 5446 | case QAM_128: |
| 5447 | state->m_Constellation = DRX_CONSTELLATION_QAM128; |
| 5448 | break; |
| 5449 | default: |
| 5450 | status = -EINVAL; |
| 5451 | break; |
| 5452 | } |
| 5453 | if (status < 0) |
| 5454 | goto error; |
| 5455 | setParamParameters[0] = state->m_Constellation; /* constellation */ |
| 5456 | setParamParameters[1] = DRXK_QAM_I12_J17; /* interleave mode */ |
| 5457 | |
| 5458 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_QAM | SCU_RAM_COMMAND_CMD_DEMOD_SET_PARAM, 4, setParamParameters, 1, &cmdResult); |
| 5459 | if (status < 0) |
| 5460 | goto error; |
| 5461 | |
| 5462 | |
| 5463 | /* STEP 3: enable the system in a mode where the ADC provides valid signal |
| 5464 | setup constellation independent registers */ |
| 5465 | #if 0 |
| 5466 | status = SetFrequency(channel, tunerFreqOffset)); |
| 5467 | if (status < 0) |
| 5468 | goto error; |
| 5469 | #endif |
| 5470 | status = SetFrequencyShifter(state, IntermediateFreqkHz, tunerFreqOffset, true); |
| 5471 | if (status < 0) |
| 5472 | goto error; |
| 5473 | |
| 5474 | /* Setup BER measurement */ |
| 5475 | status = SetQAMMeasurement(state, state->m_Constellation, state->param.u. qam.symbol_rate); |
| 5476 | if (status < 0) |
| 5477 | goto error; |
| 5478 | |
| 5479 | /* Reset default values */ |
| 5480 | status = write16(state, IQM_CF_SCALE_SH__A, IQM_CF_SCALE_SH__PRE); |
| 5481 | if (status < 0) |
| 5482 | goto error; |
| 5483 | status = write16(state, QAM_SY_TIMEOUT__A, QAM_SY_TIMEOUT__PRE); |
| 5484 | if (status < 0) |
| 5485 | goto error; |
| 5486 | |
| 5487 | /* Reset default LC values */ |
| 5488 | status = write16(state, QAM_LC_RATE_LIMIT__A, 3); |
| 5489 | if (status < 0) |
| 5490 | goto error; |
| 5491 | status = write16(state, QAM_LC_LPF_FACTORP__A, 4); |
| 5492 | if (status < 0) |
| 5493 | goto error; |
| 5494 | status = write16(state, QAM_LC_LPF_FACTORI__A, 4); |
| 5495 | if (status < 0) |
| 5496 | goto error; |
| 5497 | status = write16(state, QAM_LC_MODE__A, 7); |
| 5498 | if (status < 0) |
| 5499 | goto error; |
| 5500 | |
| 5501 | status = write16(state, QAM_LC_QUAL_TAB0__A, 1); |
| 5502 | if (status < 0) |
| 5503 | goto error; |
| 5504 | status = write16(state, QAM_LC_QUAL_TAB1__A, 1); |
| 5505 | if (status < 0) |
| 5506 | goto error; |
| 5507 | status = write16(state, QAM_LC_QUAL_TAB2__A, 1); |
| 5508 | if (status < 0) |
| 5509 | goto error; |
| 5510 | status = write16(state, QAM_LC_QUAL_TAB3__A, 1); |
| 5511 | if (status < 0) |
| 5512 | goto error; |
| 5513 | status = write16(state, QAM_LC_QUAL_TAB4__A, 2); |
| 5514 | if (status < 0) |
| 5515 | goto error; |
| 5516 | status = write16(state, QAM_LC_QUAL_TAB5__A, 2); |
| 5517 | if (status < 0) |
| 5518 | goto error; |
| 5519 | status = write16(state, QAM_LC_QUAL_TAB6__A, 2); |
| 5520 | if (status < 0) |
| 5521 | goto error; |
| 5522 | status = write16(state, QAM_LC_QUAL_TAB8__A, 2); |
| 5523 | if (status < 0) |
| 5524 | goto error; |
| 5525 | status = write16(state, QAM_LC_QUAL_TAB9__A, 2); |
| 5526 | if (status < 0) |
| 5527 | goto error; |
| 5528 | status = write16(state, QAM_LC_QUAL_TAB10__A, 2); |
| 5529 | if (status < 0) |
| 5530 | goto error; |
| 5531 | status = write16(state, QAM_LC_QUAL_TAB12__A, 2); |
| 5532 | if (status < 0) |
| 5533 | goto error; |
| 5534 | status = write16(state, QAM_LC_QUAL_TAB15__A, 3); |
| 5535 | if (status < 0) |
| 5536 | goto error; |
| 5537 | status = write16(state, QAM_LC_QUAL_TAB16__A, 3); |
| 5538 | if (status < 0) |
| 5539 | goto error; |
| 5540 | status = write16(state, QAM_LC_QUAL_TAB20__A, 4); |
| 5541 | if (status < 0) |
| 5542 | goto error; |
| 5543 | status = write16(state, QAM_LC_QUAL_TAB25__A, 4); |
| 5544 | if (status < 0) |
| 5545 | goto error; |
| 5546 | |
| 5547 | /* Mirroring, QAM-block starting point not inverted */ |
| 5548 | status = write16(state, QAM_SY_SP_INV__A, QAM_SY_SP_INV_SPECTRUM_INV_DIS); |
| 5549 | if (status < 0) |
| 5550 | goto error; |
| 5551 | |
| 5552 | /* Halt SCU to enable safe non-atomic accesses */ |
| 5553 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_HOLD); |
| 5554 | if (status < 0) |
| 5555 | goto error; |
| 5556 | |
| 5557 | /* STEP 4: constellation specific setup */ |
| 5558 | switch (state->param.u.qam.modulation) { |
| 5559 | case QAM_16: |
| 5560 | status = SetQAM16(state); |
| 5561 | break; |
| 5562 | case QAM_32: |
| 5563 | status = SetQAM32(state); |
| 5564 | break; |
| 5565 | case QAM_AUTO: |
| 5566 | case QAM_64: |
| 5567 | status = SetQAM64(state); |
| 5568 | break; |
| 5569 | case QAM_128: |
| 5570 | status = SetQAM128(state); |
| 5571 | break; |
| 5572 | case QAM_256: |
| 5573 | status = SetQAM256(state); |
| 5574 | break; |
| 5575 | default: |
| 5576 | status = -EINVAL; |
| 5577 | break; |
| 5578 | } |
| 5579 | if (status < 0) |
| 5580 | goto error; |
| 5581 | |
| 5582 | /* Activate SCU to enable SCU commands */ |
| 5583 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_ACTIVE); |
| 5584 | if (status < 0) |
| 5585 | goto error; |
| 5586 | |
| 5587 | /* Re-configure MPEG output, requires knowledge of channel bitrate */ |
| 5588 | /* extAttr->currentChannel.constellation = channel->constellation; */ |
| 5589 | /* extAttr->currentChannel.symbolrate = channel->symbolrate; */ |
| 5590 | status = MPEGTSDtoSetup(state, state->m_OperationMode); |
| 5591 | if (status < 0) |
| 5592 | goto error; |
| 5593 | |
| 5594 | /* Start processes */ |
| 5595 | status = MPEGTSStart(state); |
| 5596 | if (status < 0) |
| 5597 | goto error; |
| 5598 | status = write16(state, FEC_COMM_EXEC__A, FEC_COMM_EXEC_ACTIVE); |
| 5599 | if (status < 0) |
| 5600 | goto error; |
| 5601 | status = write16(state, QAM_COMM_EXEC__A, QAM_COMM_EXEC_ACTIVE); |
| 5602 | if (status < 0) |
| 5603 | goto error; |
| 5604 | status = write16(state, IQM_COMM_EXEC__A, IQM_COMM_EXEC_B_ACTIVE); |
| 5605 | if (status < 0) |
| 5606 | goto error; |
| 5607 | |
| 5608 | /* STEP 5: start QAM demodulator (starts FEC, QAM and IQM HW) */ |
| 5609 | status = scu_command(state, SCU_RAM_COMMAND_STANDARD_QAM | SCU_RAM_COMMAND_CMD_DEMOD_START, 0, NULL, 1, &cmdResult); |
| 5610 | if (status < 0) |
| 5611 | goto error; |
| 5612 | |
| 5613 | /* update global DRXK data container */ |
| 5614 | /*? extAttr->qamInterleaveMode = DRXK_QAM_I12_J17; */ |
| 5615 | |
| 5616 | error: |
| 5617 | if (status < 0) |
| 5618 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5619 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5620 | } |
| 5621 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5622 | static int SetQAMStandard(struct drxk_state *state, |
| 5623 | enum OperationMode oMode) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5624 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5625 | int status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5626 | #ifdef DRXK_QAM_TAPS |
| 5627 | #define DRXK_QAMA_TAPS_SELECT |
| 5628 | #include "drxk_filters.h" |
| 5629 | #undef DRXK_QAMA_TAPS_SELECT |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5630 | #endif |
| 5631 | |
Mauro Carvalho Chehab | f1b8297 | 2011-07-10 13:08:44 -0300 | [diff] [blame] | 5632 | dprintk(1, "\n"); |
| 5633 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5634 | /* added antenna switch */ |
| 5635 | SwitchAntennaToQAM(state); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5636 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5637 | /* Ensure correct power-up mode */ |
| 5638 | status = PowerUpQAM(state); |
| 5639 | if (status < 0) |
| 5640 | goto error; |
| 5641 | /* Reset QAM block */ |
| 5642 | status = QAMResetQAM(state); |
| 5643 | if (status < 0) |
| 5644 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5645 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5646 | /* Setup IQM */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5647 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5648 | status = write16(state, IQM_COMM_EXEC__A, IQM_COMM_EXEC_B_STOP); |
| 5649 | if (status < 0) |
| 5650 | goto error; |
| 5651 | status = write16(state, IQM_AF_AMUX__A, IQM_AF_AMUX_SIGNAL2ADC); |
| 5652 | if (status < 0) |
| 5653 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5654 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5655 | /* Upload IQM Channel Filter settings by |
| 5656 | boot loader from ROM table */ |
| 5657 | switch (oMode) { |
| 5658 | case OM_QAM_ITU_A: |
| 5659 | status = BLChainCmd(state, DRXK_BL_ROM_OFFSET_TAPS_ITU_A, DRXK_BLCC_NR_ELEMENTS_TAPS, DRXK_BLC_TIMEOUT); |
| 5660 | break; |
| 5661 | case OM_QAM_ITU_C: |
| 5662 | status = BLDirectCmd(state, IQM_CF_TAP_RE0__A, DRXK_BL_ROM_OFFSET_TAPS_ITU_C, DRXK_BLDC_NR_ELEMENTS_TAPS, DRXK_BLC_TIMEOUT); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 5663 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5664 | goto error; |
| 5665 | status = BLDirectCmd(state, IQM_CF_TAP_IM0__A, DRXK_BL_ROM_OFFSET_TAPS_ITU_C, DRXK_BLDC_NR_ELEMENTS_TAPS, DRXK_BLC_TIMEOUT); |
| 5666 | break; |
| 5667 | default: |
| 5668 | status = -EINVAL; |
| 5669 | } |
| 5670 | if (status < 0) |
| 5671 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5672 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5673 | status = write16(state, IQM_CF_OUT_ENA__A, (1 << IQM_CF_OUT_ENA_QAM__B)); |
| 5674 | if (status < 0) |
| 5675 | goto error; |
| 5676 | status = write16(state, IQM_CF_SYMMETRIC__A, 0); |
| 5677 | if (status < 0) |
| 5678 | goto error; |
| 5679 | status = write16(state, IQM_CF_MIDTAP__A, ((1 << IQM_CF_MIDTAP_RE__B) | (1 << IQM_CF_MIDTAP_IM__B))); |
| 5680 | if (status < 0) |
| 5681 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5682 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5683 | status = write16(state, IQM_RC_STRETCH__A, 21); |
| 5684 | if (status < 0) |
| 5685 | goto error; |
| 5686 | status = write16(state, IQM_AF_CLP_LEN__A, 0); |
| 5687 | if (status < 0) |
| 5688 | goto error; |
| 5689 | status = write16(state, IQM_AF_CLP_TH__A, 448); |
| 5690 | if (status < 0) |
| 5691 | goto error; |
| 5692 | status = write16(state, IQM_AF_SNS_LEN__A, 0); |
| 5693 | if (status < 0) |
| 5694 | goto error; |
| 5695 | status = write16(state, IQM_CF_POW_MEAS_LEN__A, 0); |
| 5696 | if (status < 0) |
| 5697 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5698 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5699 | status = write16(state, IQM_FS_ADJ_SEL__A, 1); |
| 5700 | if (status < 0) |
| 5701 | goto error; |
| 5702 | status = write16(state, IQM_RC_ADJ_SEL__A, 1); |
| 5703 | if (status < 0) |
| 5704 | goto error; |
| 5705 | status = write16(state, IQM_CF_ADJ_SEL__A, 1); |
| 5706 | if (status < 0) |
| 5707 | goto error; |
| 5708 | status = write16(state, IQM_AF_UPD_SEL__A, 0); |
| 5709 | if (status < 0) |
| 5710 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5711 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5712 | /* IQM Impulse Noise Processing Unit */ |
| 5713 | status = write16(state, IQM_CF_CLP_VAL__A, 500); |
| 5714 | if (status < 0) |
| 5715 | goto error; |
| 5716 | status = write16(state, IQM_CF_DATATH__A, 1000); |
| 5717 | if (status < 0) |
| 5718 | goto error; |
| 5719 | status = write16(state, IQM_CF_BYPASSDET__A, 1); |
| 5720 | if (status < 0) |
| 5721 | goto error; |
| 5722 | status = write16(state, IQM_CF_DET_LCT__A, 0); |
| 5723 | if (status < 0) |
| 5724 | goto error; |
| 5725 | status = write16(state, IQM_CF_WND_LEN__A, 1); |
| 5726 | if (status < 0) |
| 5727 | goto error; |
| 5728 | status = write16(state, IQM_CF_PKDTH__A, 1); |
| 5729 | if (status < 0) |
| 5730 | goto error; |
| 5731 | status = write16(state, IQM_AF_INC_BYPASS__A, 1); |
| 5732 | if (status < 0) |
| 5733 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5734 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5735 | /* turn on IQMAF. Must be done before setAgc**() */ |
| 5736 | status = SetIqmAf(state, true); |
| 5737 | if (status < 0) |
| 5738 | goto error; |
| 5739 | status = write16(state, IQM_AF_START_LOCK__A, 0x01); |
| 5740 | if (status < 0) |
| 5741 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5742 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5743 | /* IQM will not be reset from here, sync ADC and update/init AGC */ |
| 5744 | status = ADCSynchronization(state); |
| 5745 | if (status < 0) |
| 5746 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5747 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5748 | /* Set the FSM step period */ |
| 5749 | status = write16(state, SCU_RAM_QAM_FSM_STEP_PERIOD__A, 2000); |
| 5750 | if (status < 0) |
| 5751 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5752 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5753 | /* Halt SCU to enable safe non-atomic accesses */ |
| 5754 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_HOLD); |
| 5755 | if (status < 0) |
| 5756 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5757 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5758 | /* No more resets of the IQM, current standard correctly set => |
| 5759 | now AGCs can be configured. */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5760 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5761 | status = InitAGC(state, true); |
| 5762 | if (status < 0) |
| 5763 | goto error; |
| 5764 | status = SetPreSaw(state, &(state->m_qamPreSawCfg)); |
| 5765 | if (status < 0) |
| 5766 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5767 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5768 | /* Configure AGC's */ |
| 5769 | status = SetAgcRf(state, &(state->m_qamRfAgcCfg), true); |
| 5770 | if (status < 0) |
| 5771 | goto error; |
| 5772 | status = SetAgcIf(state, &(state->m_qamIfAgcCfg), true); |
| 5773 | if (status < 0) |
| 5774 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5775 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5776 | /* Activate SCU to enable SCU commands */ |
| 5777 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_ACTIVE); |
| 5778 | error: |
| 5779 | if (status < 0) |
| 5780 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5781 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5782 | } |
| 5783 | |
| 5784 | static int WriteGPIO(struct drxk_state *state) |
| 5785 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5786 | int status; |
| 5787 | u16 value = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5788 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5789 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5790 | /* stop lock indicator process */ |
| 5791 | status = write16(state, SCU_RAM_GPIO__A, SCU_RAM_GPIO_HW_LOCK_IND_DISABLE); |
| 5792 | if (status < 0) |
| 5793 | goto error; |
| 5794 | |
| 5795 | /* Write magic word to enable pdr reg write */ |
| 5796 | status = write16(state, SIO_TOP_COMM_KEY__A, SIO_TOP_COMM_KEY_KEY); |
| 5797 | if (status < 0) |
| 5798 | goto error; |
| 5799 | |
| 5800 | if (state->m_hasSAWSW) { |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 5801 | if (state->UIO_mask & 0x0001) { /* UIO-1 */ |
| 5802 | /* write to io pad configuration register - output mode */ |
| 5803 | status = write16(state, SIO_PDR_SMA_TX_CFG__A, state->m_GPIOCfg); |
| 5804 | if (status < 0) |
| 5805 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5806 | |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 5807 | /* use corresponding bit in io data output registar */ |
| 5808 | status = read16(state, SIO_PDR_UIO_OUT_LO__A, &value); |
| 5809 | if (status < 0) |
| 5810 | goto error; |
| 5811 | if ((state->m_GPIO & 0x0001) == 0) |
| 5812 | value &= 0x7FFF; /* write zero to 15th bit - 1st UIO */ |
| 5813 | else |
| 5814 | value |= 0x8000; /* write one to 15th bit - 1st UIO */ |
| 5815 | /* write back to io data output register */ |
| 5816 | status = write16(state, SIO_PDR_UIO_OUT_LO__A, value); |
| 5817 | if (status < 0) |
| 5818 | goto error; |
| 5819 | } |
| 5820 | if (state->UIO_mask & 0x0002) { /* UIO-2 */ |
| 5821 | /* write to io pad configuration register - output mode */ |
| 5822 | status = write16(state, SIO_PDR_SMA_TX_CFG__A, state->m_GPIOCfg); |
| 5823 | if (status < 0) |
| 5824 | goto error; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5825 | |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 5826 | /* use corresponding bit in io data output registar */ |
| 5827 | status = read16(state, SIO_PDR_UIO_OUT_LO__A, &value); |
| 5828 | if (status < 0) |
| 5829 | goto error; |
| 5830 | if ((state->m_GPIO & 0x0002) == 0) |
| 5831 | value &= 0xBFFF; /* write zero to 14th bit - 2st UIO */ |
| 5832 | else |
| 5833 | value |= 0x4000; /* write one to 14th bit - 2st UIO */ |
| 5834 | /* write back to io data output register */ |
| 5835 | status = write16(state, SIO_PDR_UIO_OUT_LO__A, value); |
| 5836 | if (status < 0) |
| 5837 | goto error; |
| 5838 | } |
| 5839 | if (state->UIO_mask & 0x0004) { /* UIO-3 */ |
| 5840 | /* write to io pad configuration register - output mode */ |
| 5841 | status = write16(state, SIO_PDR_SMA_TX_CFG__A, state->m_GPIOCfg); |
| 5842 | if (status < 0) |
| 5843 | goto error; |
| 5844 | |
| 5845 | /* use corresponding bit in io data output registar */ |
| 5846 | status = read16(state, SIO_PDR_UIO_OUT_LO__A, &value); |
| 5847 | if (status < 0) |
| 5848 | goto error; |
| 5849 | if ((state->m_GPIO & 0x0004) == 0) |
| 5850 | value &= 0xFFFB; /* write zero to 2nd bit - 3rd UIO */ |
| 5851 | else |
| 5852 | value |= 0x0004; /* write one to 2nd bit - 3rd UIO */ |
| 5853 | /* write back to io data output register */ |
| 5854 | status = write16(state, SIO_PDR_UIO_OUT_LO__A, value); |
| 5855 | if (status < 0) |
| 5856 | goto error; |
| 5857 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5858 | } |
| 5859 | /* Write magic word to disable pdr reg write */ |
| 5860 | status = write16(state, SIO_TOP_COMM_KEY__A, 0x0000); |
| 5861 | error: |
| 5862 | if (status < 0) |
| 5863 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5864 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5865 | } |
| 5866 | |
| 5867 | static int SwitchAntennaToQAM(struct drxk_state *state) |
| 5868 | { |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 5869 | int status = 0; |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 5870 | bool gpio_state; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5871 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5872 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 5873 | |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 5874 | if (!state->antenna_gpio) |
| 5875 | return 0; |
| 5876 | |
| 5877 | gpio_state = state->m_GPIO & state->antenna_gpio; |
| 5878 | |
| 5879 | if (state->antenna_dvbt ^ gpio_state) { |
| 5880 | /* Antenna is on DVB-T mode. Switch */ |
| 5881 | if (state->antenna_dvbt) |
| 5882 | state->m_GPIO &= ~state->antenna_gpio; |
| 5883 | else |
| 5884 | state->m_GPIO |= state->antenna_gpio; |
| 5885 | status = WriteGPIO(state); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5886 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5887 | if (status < 0) |
| 5888 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5889 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5890 | } |
| 5891 | |
| 5892 | static int SwitchAntennaToDVBT(struct drxk_state *state) |
| 5893 | { |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 5894 | int status = 0; |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 5895 | bool gpio_state; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5896 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5897 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 5898 | |
| 5899 | if (!state->antenna_gpio) |
| 5900 | return 0; |
| 5901 | |
| 5902 | gpio_state = state->m_GPIO & state->antenna_gpio; |
| 5903 | |
| 5904 | if (!(state->antenna_dvbt ^ gpio_state)) { |
| 5905 | /* Antenna is on DVB-C mode. Switch */ |
| 5906 | if (state->antenna_dvbt) |
| 5907 | state->m_GPIO |= state->antenna_gpio; |
| 5908 | else |
| 5909 | state->m_GPIO &= ~state->antenna_gpio; |
| 5910 | status = WriteGPIO(state); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5911 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5912 | if (status < 0) |
| 5913 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5914 | return status; |
| 5915 | } |
| 5916 | |
| 5917 | |
| 5918 | static int PowerDownDevice(struct drxk_state *state) |
| 5919 | { |
| 5920 | /* Power down to requested mode */ |
| 5921 | /* Backup some register settings */ |
| 5922 | /* Set pins with possible pull-ups connected to them in input mode */ |
| 5923 | /* Analog power down */ |
| 5924 | /* ADC power down */ |
| 5925 | /* Power down device */ |
| 5926 | int status; |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5927 | |
| 5928 | dprintk(1, "\n"); |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5929 | if (state->m_bPDownOpenBridge) { |
| 5930 | /* Open I2C bridge before power down of DRXK */ |
| 5931 | status = ConfigureI2CBridge(state, true); |
Mauro Carvalho Chehab | ea90f01 | 2011-07-03 18:06:07 -0300 | [diff] [blame] | 5932 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5933 | goto error; |
| 5934 | } |
| 5935 | /* driver 0.9.0 */ |
| 5936 | status = DVBTEnableOFDMTokenRing(state, false); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5937 | if (status < 0) |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5938 | goto error; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5939 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5940 | status = write16(state, SIO_CC_PWD_MODE__A, SIO_CC_PWD_MODE_LEVEL_CLOCK); |
| 5941 | if (status < 0) |
| 5942 | goto error; |
| 5943 | status = write16(state, SIO_CC_UPDATE__A, SIO_CC_UPDATE_KEY); |
| 5944 | if (status < 0) |
| 5945 | goto error; |
| 5946 | state->m_HICfgCtrl |= SIO_HI_RA_RAM_PAR_5_CFG_SLEEP_ZZZ; |
| 5947 | status = HI_CfgCommand(state); |
| 5948 | error: |
| 5949 | if (status < 0) |
| 5950 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
| 5951 | |
| 5952 | return status; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5953 | } |
| 5954 | |
Mauro Carvalho Chehab | e4f4f87 | 2011-07-09 17:35:26 -0300 | [diff] [blame] | 5955 | static int load_microcode(struct drxk_state *state, const char *mc_name) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5956 | { |
| 5957 | const struct firmware *fw = NULL; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5958 | int err = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5959 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5960 | dprintk(1, "\n"); |
| 5961 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5962 | err = request_firmware(&fw, mc_name, state->i2c->dev.parent); |
| 5963 | if (err < 0) { |
| 5964 | printk(KERN_ERR |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 5965 | "drxk: Could not load firmware file %s.\n", mc_name); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5966 | printk(KERN_INFO |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 5967 | "drxk: Copy %s to your hotplug directory!\n", mc_name); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5968 | return err; |
| 5969 | } |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5970 | err = DownloadMicrocode(state, fw->data, fw->size); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5971 | release_firmware(fw); |
| 5972 | return err; |
| 5973 | } |
| 5974 | |
| 5975 | static int init_drxk(struct drxk_state *state) |
| 5976 | { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5977 | int status = 0; |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 5978 | enum DRXPowerMode powerMode = DRXK_POWER_DOWN_OFDM; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5979 | u16 driverVersion; |
| 5980 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 5981 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 5982 | if ((state->m_DrxkState == DRXK_UNINITIALIZED)) { |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 5983 | status = PowerUpDevice(state); |
| 5984 | if (status < 0) |
| 5985 | goto error; |
| 5986 | status = DRXX_Open(state); |
| 5987 | if (status < 0) |
| 5988 | goto error; |
| 5989 | /* Soft reset of OFDM-, sys- and osc-clockdomain */ |
| 5990 | status = write16(state, SIO_CC_SOFT_RST__A, SIO_CC_SOFT_RST_OFDM__M | SIO_CC_SOFT_RST_SYS__M | SIO_CC_SOFT_RST_OSC__M); |
| 5991 | if (status < 0) |
| 5992 | goto error; |
| 5993 | status = write16(state, SIO_CC_UPDATE__A, SIO_CC_UPDATE_KEY); |
| 5994 | if (status < 0) |
| 5995 | goto error; |
| 5996 | /* TODO is this needed, if yes how much delay in worst case scenario */ |
| 5997 | msleep(1); |
| 5998 | state->m_DRXK_A3_PATCH_CODE = true; |
| 5999 | status = GetDeviceCapabilities(state); |
| 6000 | if (status < 0) |
| 6001 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6002 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6003 | /* Bridge delay, uses oscilator clock */ |
| 6004 | /* Delay = (delay (nano seconds) * oscclk (kHz))/ 1000 */ |
| 6005 | /* SDA brdige delay */ |
| 6006 | state->m_HICfgBridgeDelay = |
| 6007 | (u16) ((state->m_oscClockFreq / 1000) * |
| 6008 | HI_I2C_BRIDGE_DELAY) / 1000; |
| 6009 | /* Clipping */ |
| 6010 | if (state->m_HICfgBridgeDelay > |
| 6011 | SIO_HI_RA_RAM_PAR_3_CFG_DBL_SDA__M) { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6012 | state->m_HICfgBridgeDelay = |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6013 | SIO_HI_RA_RAM_PAR_3_CFG_DBL_SDA__M; |
| 6014 | } |
| 6015 | /* SCL bridge delay, same as SDA for now */ |
| 6016 | state->m_HICfgBridgeDelay += |
| 6017 | state->m_HICfgBridgeDelay << |
| 6018 | SIO_HI_RA_RAM_PAR_3_CFG_DBL_SCL__B; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6019 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6020 | status = InitHI(state); |
| 6021 | if (status < 0) |
| 6022 | goto error; |
| 6023 | /* disable various processes */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6024 | #if NOA1ROM |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6025 | if (!(state->m_DRXK_A1_ROM_CODE) |
| 6026 | && !(state->m_DRXK_A2_ROM_CODE)) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6027 | #endif |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6028 | { |
| 6029 | status = write16(state, SCU_RAM_GPIO__A, SCU_RAM_GPIO_HW_LOCK_IND_DISABLE); |
| 6030 | if (status < 0) |
| 6031 | goto error; |
| 6032 | } |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6033 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6034 | /* disable MPEG port */ |
| 6035 | status = MPEGTSDisable(state); |
| 6036 | if (status < 0) |
| 6037 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6038 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6039 | /* Stop AUD and SCU */ |
| 6040 | status = write16(state, AUD_COMM_EXEC__A, AUD_COMM_EXEC_STOP); |
| 6041 | if (status < 0) |
| 6042 | goto error; |
| 6043 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_STOP); |
| 6044 | if (status < 0) |
| 6045 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6046 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6047 | /* enable token-ring bus through OFDM block for possible ucode upload */ |
| 6048 | status = write16(state, SIO_OFDM_SH_OFDM_RING_ENABLE__A, SIO_OFDM_SH_OFDM_RING_ENABLE_ON); |
| 6049 | if (status < 0) |
| 6050 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6051 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6052 | /* include boot loader section */ |
| 6053 | status = write16(state, SIO_BL_COMM_EXEC__A, SIO_BL_COMM_EXEC_ACTIVE); |
| 6054 | if (status < 0) |
| 6055 | goto error; |
| 6056 | status = BLChainCmd(state, 0, 6, 100); |
| 6057 | if (status < 0) |
| 6058 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6059 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6060 | if (!state->microcode_name) |
| 6061 | load_microcode(state, "drxk_a3.mc"); |
| 6062 | else |
| 6063 | load_microcode(state, state->microcode_name); |
Mauro Carvalho Chehab | e4f4f87 | 2011-07-09 17:35:26 -0300 | [diff] [blame] | 6064 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6065 | /* disable token-ring bus through OFDM block for possible ucode upload */ |
| 6066 | status = write16(state, SIO_OFDM_SH_OFDM_RING_ENABLE__A, SIO_OFDM_SH_OFDM_RING_ENABLE_OFF); |
| 6067 | if (status < 0) |
| 6068 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6069 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6070 | /* Run SCU for a little while to initialize microcode version numbers */ |
| 6071 | status = write16(state, SCU_COMM_EXEC__A, SCU_COMM_EXEC_ACTIVE); |
| 6072 | if (status < 0) |
| 6073 | goto error; |
| 6074 | status = DRXX_Open(state); |
| 6075 | if (status < 0) |
| 6076 | goto error; |
| 6077 | /* added for test */ |
| 6078 | msleep(30); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6079 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6080 | powerMode = DRXK_POWER_DOWN_OFDM; |
| 6081 | status = CtrlPowerMode(state, &powerMode); |
| 6082 | if (status < 0) |
| 6083 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6084 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6085 | /* Stamp driver version number in SCU data RAM in BCD code |
| 6086 | Done to enable field application engineers to retreive drxdriver version |
| 6087 | via I2C from SCU RAM. |
| 6088 | Not using SCU command interface for SCU register access since no |
| 6089 | microcode may be present. |
| 6090 | */ |
| 6091 | driverVersion = |
| 6092 | (((DRXK_VERSION_MAJOR / 100) % 10) << 12) + |
| 6093 | (((DRXK_VERSION_MAJOR / 10) % 10) << 8) + |
| 6094 | ((DRXK_VERSION_MAJOR % 10) << 4) + |
| 6095 | (DRXK_VERSION_MINOR % 10); |
| 6096 | status = write16(state, SCU_RAM_DRIVER_VER_HI__A, driverVersion); |
| 6097 | if (status < 0) |
| 6098 | goto error; |
| 6099 | driverVersion = |
| 6100 | (((DRXK_VERSION_PATCH / 1000) % 10) << 12) + |
| 6101 | (((DRXK_VERSION_PATCH / 100) % 10) << 8) + |
| 6102 | (((DRXK_VERSION_PATCH / 10) % 10) << 4) + |
| 6103 | (DRXK_VERSION_PATCH % 10); |
| 6104 | status = write16(state, SCU_RAM_DRIVER_VER_LO__A, driverVersion); |
| 6105 | if (status < 0) |
| 6106 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6107 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6108 | printk(KERN_INFO "DRXK driver version %d.%d.%d\n", |
| 6109 | DRXK_VERSION_MAJOR, DRXK_VERSION_MINOR, |
| 6110 | DRXK_VERSION_PATCH); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6111 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6112 | /* Dirty fix of default values for ROM/PATCH microcode |
| 6113 | Dirty because this fix makes it impossible to setup suitable values |
| 6114 | before calling DRX_Open. This solution requires changes to RF AGC speed |
| 6115 | to be done via the CTRL function after calling DRX_Open */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6116 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6117 | /* m_dvbtRfAgcCfg.speed = 3; */ |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6118 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6119 | /* Reset driver debug flags to 0 */ |
| 6120 | status = write16(state, SCU_RAM_DRIVER_DEBUG__A, 0); |
| 6121 | if (status < 0) |
| 6122 | goto error; |
| 6123 | /* driver 0.9.0 */ |
| 6124 | /* Setup FEC OC: |
| 6125 | NOTE: No more full FEC resets allowed afterwards!! */ |
| 6126 | status = write16(state, FEC_COMM_EXEC__A, FEC_COMM_EXEC_STOP); |
| 6127 | if (status < 0) |
| 6128 | goto error; |
| 6129 | /* MPEGTS functions are still the same */ |
| 6130 | status = MPEGTSDtoInit(state); |
| 6131 | if (status < 0) |
| 6132 | goto error; |
| 6133 | status = MPEGTSStop(state); |
| 6134 | if (status < 0) |
| 6135 | goto error; |
| 6136 | status = MPEGTSConfigurePolarity(state); |
| 6137 | if (status < 0) |
| 6138 | goto error; |
| 6139 | status = MPEGTSConfigurePins(state, state->m_enableMPEGOutput); |
| 6140 | if (status < 0) |
| 6141 | goto error; |
| 6142 | /* added: configure GPIO */ |
| 6143 | status = WriteGPIO(state); |
| 6144 | if (status < 0) |
| 6145 | goto error; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6146 | |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6147 | state->m_DrxkState = DRXK_STOPPED; |
| 6148 | |
| 6149 | if (state->m_bPowerDown) { |
| 6150 | status = PowerDownDevice(state); |
| 6151 | if (status < 0) |
| 6152 | goto error; |
| 6153 | state->m_DrxkState = DRXK_POWERED_DOWN; |
| 6154 | } else |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6155 | state->m_DrxkState = DRXK_STOPPED; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6156 | } |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6157 | error: |
| 6158 | if (status < 0) |
| 6159 | printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6160 | |
| 6161 | return 0; |
| 6162 | } |
| 6163 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6164 | static void drxk_c_release(struct dvb_frontend *fe) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6165 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6166 | struct drxk_state *state = fe->demodulator_priv; |
| 6167 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6168 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6169 | kfree(state); |
| 6170 | } |
| 6171 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6172 | static int drxk_c_init(struct dvb_frontend *fe) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6173 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6174 | struct drxk_state *state = fe->demodulator_priv; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6175 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6176 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6177 | if (mutex_trylock(&state->ctlock) == 0) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6178 | return -EBUSY; |
| 6179 | SetOperationMode(state, OM_QAM_ITU_A); |
| 6180 | return 0; |
| 6181 | } |
| 6182 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6183 | static int drxk_c_sleep(struct dvb_frontend *fe) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6184 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6185 | struct drxk_state *state = fe->demodulator_priv; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6186 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6187 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6188 | ShutDown(state); |
| 6189 | mutex_unlock(&state->ctlock); |
| 6190 | return 0; |
| 6191 | } |
| 6192 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6193 | static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6194 | { |
| 6195 | struct drxk_state *state = fe->demodulator_priv; |
| 6196 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6197 | dprintk(1, "%s\n", enable ? "enable" : "disable"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6198 | return ConfigureI2CBridge(state, enable ? true : false); |
| 6199 | } |
| 6200 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6201 | static int drxk_set_parameters(struct dvb_frontend *fe, |
| 6202 | struct dvb_frontend_parameters *p) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6203 | { |
| 6204 | struct drxk_state *state = fe->demodulator_priv; |
| 6205 | u32 IF; |
| 6206 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6207 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6208 | if (fe->ops.i2c_gate_ctrl) |
| 6209 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 6210 | if (fe->ops.tuner_ops.set_params) |
| 6211 | fe->ops.tuner_ops.set_params(fe, p); |
| 6212 | if (fe->ops.i2c_gate_ctrl) |
| 6213 | fe->ops.i2c_gate_ctrl(fe, 0); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6214 | state->param = *p; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6215 | fe->ops.tuner_ops.get_frequency(fe, &IF); |
| 6216 | Start(state, 0, IF); |
| 6217 | |
Mauro Carvalho Chehab | e0e6eca | 2011-07-04 08:27:47 -0300 | [diff] [blame] | 6218 | /* printk(KERN_DEBUG "drxk: %s IF=%d done\n", __func__, IF); */ |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6219 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6220 | return 0; |
| 6221 | } |
| 6222 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6223 | static int drxk_c_get_frontend(struct dvb_frontend *fe, |
| 6224 | struct dvb_frontend_parameters *p) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6225 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6226 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6227 | return 0; |
| 6228 | } |
| 6229 | |
| 6230 | static int drxk_read_status(struct dvb_frontend *fe, fe_status_t *status) |
| 6231 | { |
| 6232 | struct drxk_state *state = fe->demodulator_priv; |
| 6233 | u32 stat; |
| 6234 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6235 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6236 | *status = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6237 | GetLockStatus(state, &stat, 0); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6238 | if (stat == MPEG_LOCK) |
| 6239 | *status |= 0x1f; |
| 6240 | if (stat == FEC_LOCK) |
| 6241 | *status |= 0x0f; |
| 6242 | if (stat == DEMOD_LOCK) |
| 6243 | *status |= 0x07; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6244 | return 0; |
| 6245 | } |
| 6246 | |
| 6247 | static int drxk_read_ber(struct dvb_frontend *fe, u32 *ber) |
| 6248 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6249 | dprintk(1, "\n"); |
| 6250 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6251 | *ber = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6252 | return 0; |
| 6253 | } |
| 6254 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6255 | static int drxk_read_signal_strength(struct dvb_frontend *fe, |
| 6256 | u16 *strength) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6257 | { |
| 6258 | struct drxk_state *state = fe->demodulator_priv; |
Mauro Carvalho Chehab | be44eb2 | 2011-07-10 01:49:53 -0300 | [diff] [blame] | 6259 | u32 val = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6260 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6261 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6262 | ReadIFAgc(state, &val); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6263 | *strength = val & 0xffff; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6264 | return 0; |
| 6265 | } |
| 6266 | |
| 6267 | static int drxk_read_snr(struct dvb_frontend *fe, u16 *snr) |
| 6268 | { |
| 6269 | struct drxk_state *state = fe->demodulator_priv; |
| 6270 | s32 snr2; |
| 6271 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6272 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6273 | GetSignalToNoise(state, &snr2); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6274 | *snr = snr2 & 0xffff; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6275 | return 0; |
| 6276 | } |
| 6277 | |
| 6278 | static int drxk_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks) |
| 6279 | { |
| 6280 | struct drxk_state *state = fe->demodulator_priv; |
| 6281 | u16 err; |
| 6282 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6283 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6284 | DVBTQAMGetAccPktErr(state, &err); |
| 6285 | *ucblocks = (u32) err; |
| 6286 | return 0; |
| 6287 | } |
| 6288 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6289 | static int drxk_c_get_tune_settings(struct dvb_frontend *fe, struct dvb_frontend_tune_settings |
| 6290 | *sets) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6291 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6292 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6293 | sets->min_delay_ms = 3000; |
| 6294 | sets->max_drift = 0; |
| 6295 | sets->step_size = 0; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6296 | return 0; |
| 6297 | } |
| 6298 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6299 | static void drxk_t_release(struct dvb_frontend *fe) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6300 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6301 | #if 0 |
| 6302 | struct drxk_state *state = fe->demodulator_priv; |
| 6303 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6304 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6305 | kfree(state); |
| 6306 | #endif |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6307 | } |
| 6308 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6309 | static int drxk_t_init(struct dvb_frontend *fe) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6310 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6311 | struct drxk_state *state = fe->demodulator_priv; |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6312 | |
| 6313 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6314 | if (mutex_trylock(&state->ctlock) == 0) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6315 | return -EBUSY; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6316 | SetOperationMode(state, OM_DVBT); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6317 | return 0; |
| 6318 | } |
| 6319 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6320 | static int drxk_t_sleep(struct dvb_frontend *fe) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6321 | { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6322 | struct drxk_state *state = fe->demodulator_priv; |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6323 | |
| 6324 | dprintk(1, "\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6325 | mutex_unlock(&state->ctlock); |
| 6326 | return 0; |
| 6327 | } |
| 6328 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6329 | static int drxk_t_get_frontend(struct dvb_frontend *fe, |
| 6330 | struct dvb_frontend_parameters *p) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6331 | { |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6332 | dprintk(1, "\n"); |
| 6333 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6334 | return 0; |
| 6335 | } |
| 6336 | |
| 6337 | static struct dvb_frontend_ops drxk_c_ops = { |
| 6338 | .info = { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6339 | .name = "DRXK DVB-C", |
| 6340 | .type = FE_QAM, |
| 6341 | .frequency_stepsize = 62500, |
| 6342 | .frequency_min = 47000000, |
| 6343 | .frequency_max = 862000000, |
| 6344 | .symbol_rate_min = 870000, |
| 6345 | .symbol_rate_max = 11700000, |
| 6346 | .caps = FE_CAN_QAM_16 | FE_CAN_QAM_32 | FE_CAN_QAM_64 | |
| 6347 | FE_CAN_QAM_128 | FE_CAN_QAM_256 | FE_CAN_FEC_AUTO}, |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6348 | .release = drxk_c_release, |
| 6349 | .init = drxk_c_init, |
| 6350 | .sleep = drxk_c_sleep, |
| 6351 | .i2c_gate_ctrl = drxk_gate_ctrl, |
| 6352 | |
| 6353 | .set_frontend = drxk_set_parameters, |
| 6354 | .get_frontend = drxk_c_get_frontend, |
| 6355 | .get_tune_settings = drxk_c_get_tune_settings, |
| 6356 | |
| 6357 | .read_status = drxk_read_status, |
| 6358 | .read_ber = drxk_read_ber, |
| 6359 | .read_signal_strength = drxk_read_signal_strength, |
| 6360 | .read_snr = drxk_read_snr, |
| 6361 | .read_ucblocks = drxk_read_ucblocks, |
| 6362 | }; |
| 6363 | |
| 6364 | static struct dvb_frontend_ops drxk_t_ops = { |
| 6365 | .info = { |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6366 | .name = "DRXK DVB-T", |
| 6367 | .type = FE_OFDM, |
| 6368 | .frequency_min = 47125000, |
| 6369 | .frequency_max = 865000000, |
| 6370 | .frequency_stepsize = 166667, |
| 6371 | .frequency_tolerance = 0, |
| 6372 | .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | |
| 6373 | FE_CAN_FEC_3_4 | FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | |
| 6374 | FE_CAN_FEC_AUTO | |
| 6375 | FE_CAN_QAM_16 | FE_CAN_QAM_64 | |
| 6376 | FE_CAN_QAM_AUTO | |
| 6377 | FE_CAN_TRANSMISSION_MODE_AUTO | |
| 6378 | FE_CAN_GUARD_INTERVAL_AUTO | |
| 6379 | FE_CAN_HIERARCHY_AUTO | FE_CAN_RECOVER | FE_CAN_MUTE_TS}, |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6380 | .release = drxk_t_release, |
| 6381 | .init = drxk_t_init, |
| 6382 | .sleep = drxk_t_sleep, |
| 6383 | .i2c_gate_ctrl = drxk_gate_ctrl, |
| 6384 | |
| 6385 | .set_frontend = drxk_set_parameters, |
| 6386 | .get_frontend = drxk_t_get_frontend, |
| 6387 | |
| 6388 | .read_status = drxk_read_status, |
| 6389 | .read_ber = drxk_read_ber, |
| 6390 | .read_signal_strength = drxk_read_signal_strength, |
| 6391 | .read_snr = drxk_read_snr, |
| 6392 | .read_ucblocks = drxk_read_ucblocks, |
| 6393 | }; |
| 6394 | |
Mauro Carvalho Chehab | 0fc55e8 | 2011-07-09 12:36:58 -0300 | [diff] [blame] | 6395 | struct dvb_frontend *drxk_attach(const struct drxk_config *config, |
| 6396 | struct i2c_adapter *i2c, |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6397 | struct dvb_frontend **fe_t) |
| 6398 | { |
| 6399 | struct drxk_state *state = NULL; |
Mauro Carvalho Chehab | 0fc55e8 | 2011-07-09 12:36:58 -0300 | [diff] [blame] | 6400 | u8 adr = config->adr; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6401 | |
Mauro Carvalho Chehab | 2da6750 | 2011-07-04 17:39:21 -0300 | [diff] [blame] | 6402 | dprintk(1, "\n"); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6403 | state = kzalloc(sizeof(struct drxk_state), GFP_KERNEL); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6404 | if (!state) |
| 6405 | return NULL; |
| 6406 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6407 | state->i2c = i2c; |
| 6408 | state->demod_address = adr; |
Mauro Carvalho Chehab | e076c92 | 2011-07-09 13:06:12 -0300 | [diff] [blame] | 6409 | state->single_master = config->single_master; |
Mauro Carvalho Chehab | e4f4f87 | 2011-07-09 17:35:26 -0300 | [diff] [blame] | 6410 | state->microcode_name = config->microcode_name; |
Mauro Carvalho Chehab | f1fe1b7 | 2011-07-09 21:59:33 -0300 | [diff] [blame] | 6411 | state->no_i2c_bridge = config->no_i2c_bridge; |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 6412 | state->antenna_gpio = config->antenna_gpio; |
| 6413 | state->antenna_dvbt = config->antenna_dvbt; |
| 6414 | |
| 6415 | /* NOTE: as more UIO bits will be used, add them to the mask */ |
| 6416 | state->UIO_mask = config->antenna_gpio; |
| 6417 | |
| 6418 | /* Default gpio to DVB-C */ |
| 6419 | if (!state->antenna_dvbt && state->antenna_gpio) |
| 6420 | state->m_GPIO |= state->antenna_gpio; |
| 6421 | else |
| 6422 | state->m_GPIO &= ~state->antenna_gpio; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6423 | |
| 6424 | mutex_init(&state->mutex); |
| 6425 | mutex_init(&state->ctlock); |
| 6426 | |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6427 | memcpy(&state->c_frontend.ops, &drxk_c_ops, |
| 6428 | sizeof(struct dvb_frontend_ops)); |
| 6429 | memcpy(&state->t_frontend.ops, &drxk_t_ops, |
| 6430 | sizeof(struct dvb_frontend_ops)); |
| 6431 | state->c_frontend.demodulator_priv = state; |
| 6432 | state->t_frontend.demodulator_priv = state; |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6433 | |
| 6434 | init_state(state); |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6435 | if (init_drxk(state) < 0) |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6436 | goto error; |
| 6437 | *fe_t = &state->t_frontend; |
Mauro Carvalho Chehab | cf694b1 | 2011-07-10 10:26:06 -0300 | [diff] [blame] | 6438 | |
| 6439 | #ifdef CONFIG_MEDIA_ATTACH |
| 6440 | /* |
| 6441 | * HACK: As this function initializes both DVB-T and DVB-C fe symbols, |
| 6442 | * and calling it twice would create the state twice, leading into |
| 6443 | * memory leaks, the right way is to call it only once. However, dvb |
| 6444 | * release functions will call symbol_put twice. So, the solution is to |
| 6445 | * artificially increment the usage count, in order to allow the |
| 6446 | * driver to be released. |
| 6447 | */ |
| 6448 | symbol_get(drxk_attach); |
| 6449 | #endif |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6450 | return &state->c_frontend; |
| 6451 | |
| 6452 | error: |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6453 | printk(KERN_ERR "drxk: not found\n"); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6454 | kfree(state); |
| 6455 | return NULL; |
| 6456 | } |
Oliver Endriss | ebc7de2 | 2011-07-03 13:49:44 -0300 | [diff] [blame] | 6457 | EXPORT_SYMBOL(drxk_attach); |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 6458 | |
| 6459 | MODULE_DESCRIPTION("DRX-K driver"); |
| 6460 | MODULE_AUTHOR("Ralph Metzler"); |
| 6461 | MODULE_LICENSE("GPL"); |