Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1 | /* |
| 2 | * stv0367.c |
| 3 | * |
| 4 | * Driver for ST STV0367 DVB-T & DVB-C demodulator IC. |
| 5 | * |
| 6 | * Copyright (C) ST Microelectronics. |
| 7 | * Copyright (C) 2010,2011 NetUP Inc. |
| 8 | * Copyright (C) 2010,2011 Igor M. Liplianin <liplianin@netup.ru> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * |
| 19 | * GNU General Public License for more details. |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/string.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/i2c.h> |
| 27 | |
Daniel Scheller | d394ad1 | 2017-06-25 08:26:44 -0300 | [diff] [blame] | 28 | #include "dvb_math.h" |
| 29 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 30 | #include "stv0367.h" |
Daniel Scheller | 8881ceb | 2017-03-29 13:43:04 -0300 | [diff] [blame] | 31 | #include "stv0367_defs.h" |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 32 | #include "stv0367_regs.h" |
| 33 | #include "stv0367_priv.h" |
| 34 | |
Mauro Carvalho Chehab | 9aca4fb | 2013-11-02 05:17:01 -0300 | [diff] [blame] | 35 | /* Max transfer size done by I2C transfer functions */ |
| 36 | #define MAX_XFER_SIZE 64 |
| 37 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 38 | static int stvdebug; |
| 39 | module_param_named(debug, stvdebug, int, 0644); |
| 40 | |
| 41 | static int i2cdebug; |
| 42 | module_param_named(i2c_debug, i2cdebug, int, 0644); |
| 43 | |
| 44 | #define dprintk(args...) \ |
| 45 | do { \ |
| 46 | if (stvdebug) \ |
| 47 | printk(KERN_DEBUG args); \ |
| 48 | } while (0) |
| 49 | /* DVB-C */ |
| 50 | |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 51 | enum active_demod_state { demod_none, demod_ter, demod_cab }; |
| 52 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 53 | struct stv0367cab_state { |
| 54 | enum stv0367_cab_signal_type state; |
| 55 | u32 mclk; |
| 56 | u32 adc_clk; |
| 57 | s32 search_range; |
| 58 | s32 derot_offset; |
| 59 | /* results */ |
| 60 | int locked; /* channel found */ |
| 61 | u32 freq_khz; /* found frequency (in kHz) */ |
| 62 | u32 symbol_rate; /* found symbol rate (in Bds) */ |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 63 | enum fe_spectral_inversion spect_inv; /* Spectrum Inversion */ |
Daniel Scheller | cae7a90 | 2017-03-29 13:43:08 -0300 | [diff] [blame] | 64 | u32 qamfec_status_reg; /* status reg to poll for FEC Lock */ |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | struct stv0367ter_state { |
| 68 | /* DVB-T */ |
| 69 | enum stv0367_ter_signal_type state; |
| 70 | enum stv0367_ter_if_iq_mode if_iq_mode; |
| 71 | enum stv0367_ter_mode mode;/* mode 2K or 8K */ |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 72 | enum fe_guard_interval guard; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 73 | enum stv0367_ter_hierarchy hierarchy; |
| 74 | u32 frequency; |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 75 | enum fe_spectral_inversion sense; /* current search spectrum */ |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 76 | u8 force; /* force mode/guard */ |
| 77 | u8 bw; /* channel width 6, 7 or 8 in MHz */ |
| 78 | u8 pBW; /* channel width used during previous lock */ |
| 79 | u32 pBER; |
| 80 | u32 pPER; |
| 81 | u32 ucblocks; |
| 82 | s8 echo_pos; /* echo position */ |
| 83 | u8 first_lock; |
| 84 | u8 unlock_counter; |
| 85 | u32 agc_val; |
| 86 | }; |
| 87 | |
| 88 | struct stv0367_state { |
| 89 | struct dvb_frontend fe; |
| 90 | struct i2c_adapter *i2c; |
| 91 | /* config settings */ |
| 92 | const struct stv0367_config *config; |
| 93 | u8 chip_id; |
| 94 | /* DVB-C */ |
| 95 | struct stv0367cab_state *cab_state; |
| 96 | /* DVB-T */ |
| 97 | struct stv0367ter_state *ter_state; |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 98 | /* flags for operation control */ |
| 99 | u8 use_i2c_gatectrl; |
Daniel Scheller | 8881ceb | 2017-03-29 13:43:04 -0300 | [diff] [blame] | 100 | u8 deftabs; |
Daniel Scheller | 7718dcf | 2017-03-29 13:43:06 -0300 | [diff] [blame] | 101 | u8 reinit_on_setfrontend; |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 102 | u8 auto_if_khz; |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 103 | enum active_demod_state activedemod; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | #define RF_LOOKUP_TABLE_SIZE 31 |
| 107 | #define RF_LOOKUP_TABLE2_SIZE 16 |
| 108 | /* RF Level (for RF AGC->AGC1) Lookup Table, depends on the board and tuner.*/ |
Hans Verkuil | 817d2fd | 2014-08-20 19:30:33 -0300 | [diff] [blame] | 109 | static const s32 stv0367cab_RF_LookUp1[RF_LOOKUP_TABLE_SIZE][RF_LOOKUP_TABLE_SIZE] = { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 110 | {/*AGC1*/ |
| 111 | 48, 50, 51, 53, 54, 56, 57, 58, 60, 61, 62, 63, |
| 112 | 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, |
| 113 | 76, 77, 78, 80, 83, 85, 88, |
| 114 | }, {/*RF(dbm)*/ |
| 115 | 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, |
| 116 | 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 46, 47, |
| 117 | 49, 50, 52, 53, 54, 55, 56, |
| 118 | } |
| 119 | }; |
| 120 | /* RF Level (for IF AGC->AGC2) Lookup Table, depends on the board and tuner.*/ |
Hans Verkuil | 817d2fd | 2014-08-20 19:30:33 -0300 | [diff] [blame] | 121 | static const s32 stv0367cab_RF_LookUp2[RF_LOOKUP_TABLE2_SIZE][RF_LOOKUP_TABLE2_SIZE] = { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 122 | {/*AGC2*/ |
| 123 | 28, 29, 31, 32, 34, 35, 36, 37, |
| 124 | 38, 39, 40, 41, 42, 43, 44, 45, |
| 125 | }, {/*RF(dbm)*/ |
| 126 | 57, 58, 59, 60, 61, 62, 63, 64, |
| 127 | 65, 66, 67, 68, 69, 70, 71, 72, |
| 128 | } |
| 129 | }; |
| 130 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 131 | static |
| 132 | int stv0367_writeregs(struct stv0367_state *state, u16 reg, u8 *data, int len) |
| 133 | { |
Mauro Carvalho Chehab | 9aca4fb | 2013-11-02 05:17:01 -0300 | [diff] [blame] | 134 | u8 buf[MAX_XFER_SIZE]; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 135 | struct i2c_msg msg = { |
| 136 | .addr = state->config->demod_address, |
| 137 | .flags = 0, |
| 138 | .buf = buf, |
| 139 | .len = len + 2 |
| 140 | }; |
| 141 | int ret; |
| 142 | |
Mauro Carvalho Chehab | 9aca4fb | 2013-11-02 05:17:01 -0300 | [diff] [blame] | 143 | if (2 + len > sizeof(buf)) { |
| 144 | printk(KERN_WARNING |
| 145 | "%s: i2c wr reg=%04x: len=%d is too big!\n", |
| 146 | KBUILD_MODNAME, reg, len); |
| 147 | return -EINVAL; |
| 148 | } |
| 149 | |
| 150 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 151 | buf[0] = MSB(reg); |
| 152 | buf[1] = LSB(reg); |
| 153 | memcpy(buf + 2, data, len); |
| 154 | |
| 155 | if (i2cdebug) |
Peter Griffin | 86a1028 | 2015-07-30 14:08:51 -0300 | [diff] [blame] | 156 | printk(KERN_DEBUG "%s: [%02x] %02x: %02x\n", __func__, |
| 157 | state->config->demod_address, reg, buf[2]); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 158 | |
| 159 | ret = i2c_transfer(state->i2c, &msg, 1); |
| 160 | if (ret != 1) |
Peter Griffin | 86a1028 | 2015-07-30 14:08:51 -0300 | [diff] [blame] | 161 | printk(KERN_ERR "%s: i2c write error! ([%02x] %02x: %02x)\n", |
| 162 | __func__, state->config->demod_address, reg, buf[2]); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 163 | |
| 164 | return (ret != 1) ? -EREMOTEIO : 0; |
| 165 | } |
| 166 | |
| 167 | static int stv0367_writereg(struct stv0367_state *state, u16 reg, u8 data) |
| 168 | { |
| 169 | return stv0367_writeregs(state, reg, &data, 1); |
| 170 | } |
| 171 | |
| 172 | static u8 stv0367_readreg(struct stv0367_state *state, u16 reg) |
| 173 | { |
| 174 | u8 b0[] = { 0, 0 }; |
| 175 | u8 b1[] = { 0 }; |
| 176 | struct i2c_msg msg[] = { |
| 177 | { |
| 178 | .addr = state->config->demod_address, |
| 179 | .flags = 0, |
| 180 | .buf = b0, |
| 181 | .len = 2 |
| 182 | }, { |
| 183 | .addr = state->config->demod_address, |
| 184 | .flags = I2C_M_RD, |
| 185 | .buf = b1, |
| 186 | .len = 1 |
| 187 | } |
| 188 | }; |
| 189 | int ret; |
| 190 | |
| 191 | b0[0] = MSB(reg); |
| 192 | b0[1] = LSB(reg); |
| 193 | |
| 194 | ret = i2c_transfer(state->i2c, msg, 2); |
| 195 | if (ret != 2) |
Peter Griffin | 86a1028 | 2015-07-30 14:08:51 -0300 | [diff] [blame] | 196 | printk(KERN_ERR "%s: i2c read error ([%02x] %02x: %02x)\n", |
| 197 | __func__, state->config->demod_address, reg, b1[0]); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 198 | |
| 199 | if (i2cdebug) |
Peter Griffin | 86a1028 | 2015-07-30 14:08:51 -0300 | [diff] [blame] | 200 | printk(KERN_DEBUG "%s: [%02x] %02x: %02x\n", __func__, |
| 201 | state->config->demod_address, reg, b1[0]); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 202 | |
| 203 | return b1[0]; |
| 204 | } |
| 205 | |
| 206 | static void extract_mask_pos(u32 label, u8 *mask, u8 *pos) |
| 207 | { |
| 208 | u8 position = 0, i = 0; |
| 209 | |
| 210 | (*mask) = label & 0xff; |
| 211 | |
| 212 | while ((position == 0) && (i < 8)) { |
| 213 | position = ((*mask) >> i) & 0x01; |
| 214 | i++; |
| 215 | } |
| 216 | |
| 217 | (*pos) = (i - 1); |
| 218 | } |
| 219 | |
| 220 | static void stv0367_writebits(struct stv0367_state *state, u32 label, u8 val) |
| 221 | { |
| 222 | u8 reg, mask, pos; |
| 223 | |
| 224 | reg = stv0367_readreg(state, (label >> 16) & 0xffff); |
| 225 | extract_mask_pos(label, &mask, &pos); |
| 226 | |
| 227 | val = mask & (val << pos); |
| 228 | |
| 229 | reg = (reg & (~mask)) | val; |
| 230 | stv0367_writereg(state, (label >> 16) & 0xffff, reg); |
| 231 | |
| 232 | } |
| 233 | |
| 234 | static void stv0367_setbits(u8 *reg, u32 label, u8 val) |
| 235 | { |
| 236 | u8 mask, pos; |
| 237 | |
| 238 | extract_mask_pos(label, &mask, &pos); |
| 239 | |
| 240 | val = mask & (val << pos); |
| 241 | |
| 242 | (*reg) = ((*reg) & (~mask)) | val; |
| 243 | } |
| 244 | |
| 245 | static u8 stv0367_readbits(struct stv0367_state *state, u32 label) |
| 246 | { |
| 247 | u8 val = 0xff; |
| 248 | u8 mask, pos; |
| 249 | |
| 250 | extract_mask_pos(label, &mask, &pos); |
| 251 | |
| 252 | val = stv0367_readreg(state, label >> 16); |
| 253 | val = (val & mask) >> pos; |
| 254 | |
| 255 | return val; |
| 256 | } |
| 257 | |
Mauro Carvalho Chehab | 8c8ca1c | 2012-10-27 11:26:42 -0300 | [diff] [blame] | 258 | #if 0 /* Currently, unused */ |
| 259 | static u8 stv0367_getbits(u8 reg, u32 label) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 260 | { |
| 261 | u8 mask, pos; |
| 262 | |
| 263 | extract_mask_pos(label, &mask, &pos); |
| 264 | |
| 265 | return (reg & mask) >> pos; |
| 266 | } |
Mauro Carvalho Chehab | 8c8ca1c | 2012-10-27 11:26:42 -0300 | [diff] [blame] | 267 | #endif |
Daniel Scheller | 41727cb | 2017-03-29 13:43:03 -0300 | [diff] [blame] | 268 | |
| 269 | static void stv0367_write_table(struct stv0367_state *state, |
| 270 | const struct st_register *deftab) |
| 271 | { |
| 272 | int i = 0; |
| 273 | |
| 274 | while (1) { |
| 275 | if (!deftab[i].addr) |
| 276 | break; |
| 277 | stv0367_writereg(state, deftab[i].addr, deftab[i].value); |
| 278 | i++; |
| 279 | } |
| 280 | } |
| 281 | |
Daniel Scheller | 8a9c073 | 2017-03-29 13:43:05 -0300 | [diff] [blame] | 282 | static void stv0367_pll_setup(struct stv0367_state *state, |
| 283 | u32 icspeed, u32 xtal) |
| 284 | { |
| 285 | /* note on regs: R367TER_* and R367CAB_* defines each point to |
| 286 | * 0xf0d8, so just use R367TER_ for both cases |
| 287 | */ |
| 288 | |
| 289 | switch (icspeed) { |
| 290 | case STV0367_ICSPEED_58000: |
| 291 | switch (xtal) { |
| 292 | default: |
| 293 | case 27000000: |
| 294 | dprintk("STV0367 SetCLKgen for 58MHz IC and 27Mhz crystal\n"); |
| 295 | /* PLLMDIV: 27, PLLNDIV: 232 */ |
| 296 | stv0367_writereg(state, R367TER_PLLMDIV, 0x1b); |
| 297 | stv0367_writereg(state, R367TER_PLLNDIV, 0xe8); |
| 298 | break; |
| 299 | } |
| 300 | break; |
| 301 | default: |
| 302 | case STV0367_ICSPEED_53125: |
| 303 | switch (xtal) { |
| 304 | /* set internal freq to 53.125MHz */ |
| 305 | case 16000000: |
| 306 | stv0367_writereg(state, R367TER_PLLMDIV, 0x2); |
| 307 | stv0367_writereg(state, R367TER_PLLNDIV, 0x1b); |
| 308 | break; |
| 309 | case 25000000: |
| 310 | stv0367_writereg(state, R367TER_PLLMDIV, 0xa); |
| 311 | stv0367_writereg(state, R367TER_PLLNDIV, 0x55); |
| 312 | break; |
| 313 | default: |
| 314 | case 27000000: |
| 315 | dprintk("FE_STV0367TER_SetCLKgen for 27Mhz\n"); |
| 316 | stv0367_writereg(state, R367TER_PLLMDIV, 0x1); |
| 317 | stv0367_writereg(state, R367TER_PLLNDIV, 0x8); |
| 318 | break; |
| 319 | case 30000000: |
| 320 | stv0367_writereg(state, R367TER_PLLMDIV, 0xc); |
| 321 | stv0367_writereg(state, R367TER_PLLNDIV, 0x55); |
| 322 | break; |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | stv0367_writereg(state, R367TER_PLLSETUP, 0x18); |
| 327 | } |
| 328 | |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 329 | static int stv0367_get_if_khz(struct stv0367_state *state, u32 *ifkhz) |
| 330 | { |
| 331 | if (state->auto_if_khz && state->fe.ops.tuner_ops.get_if_frequency) { |
| 332 | state->fe.ops.tuner_ops.get_if_frequency(&state->fe, ifkhz); |
| 333 | *ifkhz = *ifkhz / 1000; /* hz -> khz */ |
| 334 | } else |
| 335 | *ifkhz = state->config->if_khz; |
| 336 | |
| 337 | return 0; |
| 338 | } |
| 339 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 340 | static int stv0367ter_gate_ctrl(struct dvb_frontend *fe, int enable) |
| 341 | { |
| 342 | struct stv0367_state *state = fe->demodulator_priv; |
| 343 | u8 tmp = stv0367_readreg(state, R367TER_I2CRPT); |
| 344 | |
| 345 | dprintk("%s:\n", __func__); |
| 346 | |
| 347 | if (enable) { |
| 348 | stv0367_setbits(&tmp, F367TER_STOP_ENABLE, 0); |
| 349 | stv0367_setbits(&tmp, F367TER_I2CT_ON, 1); |
| 350 | } else { |
| 351 | stv0367_setbits(&tmp, F367TER_STOP_ENABLE, 1); |
| 352 | stv0367_setbits(&tmp, F367TER_I2CT_ON, 0); |
| 353 | } |
| 354 | |
| 355 | stv0367_writereg(state, R367TER_I2CRPT, tmp); |
| 356 | |
| 357 | return 0; |
| 358 | } |
| 359 | |
| 360 | static u32 stv0367_get_tuner_freq(struct dvb_frontend *fe) |
| 361 | { |
Emil Goode | 2072118 | 2014-06-24 18:42:27 -0300 | [diff] [blame] | 362 | struct dvb_frontend_ops *frontend_ops = &fe->ops; |
| 363 | struct dvb_tuner_ops *tuner_ops = &frontend_ops->tuner_ops; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 364 | u32 freq = 0; |
Dan Carpenter | bf512b2 | 2011-03-06 10:40:11 -0300 | [diff] [blame] | 365 | int err = 0; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 366 | |
| 367 | dprintk("%s:\n", __func__); |
| 368 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 369 | if (tuner_ops->get_frequency) { |
| 370 | err = tuner_ops->get_frequency(fe, &freq); |
| 371 | if (err < 0) { |
| 372 | printk(KERN_ERR "%s: Invalid parameter\n", __func__); |
| 373 | return err; |
| 374 | } |
| 375 | |
| 376 | dprintk("%s: frequency=%d\n", __func__, freq); |
| 377 | |
| 378 | } else |
| 379 | return -1; |
| 380 | |
| 381 | return freq; |
| 382 | } |
| 383 | |
| 384 | static u16 CellsCoeffs_8MHz_367cofdm[3][6][5] = { |
| 385 | { |
| 386 | {0x10EF, 0xE205, 0x10EF, 0xCE49, 0x6DA7}, /* CELL 1 COEFFS 27M*/ |
| 387 | {0x2151, 0xc557, 0x2151, 0xc705, 0x6f93}, /* CELL 2 COEFFS */ |
| 388 | {0x2503, 0xc000, 0x2503, 0xc375, 0x7194}, /* CELL 3 COEFFS */ |
| 389 | {0x20E9, 0xca94, 0x20e9, 0xc153, 0x7194}, /* CELL 4 COEFFS */ |
| 390 | {0x06EF, 0xF852, 0x06EF, 0xC057, 0x7207}, /* CELL 5 COEFFS */ |
| 391 | {0x0000, 0x0ECC, 0x0ECC, 0x0000, 0x3647} /* CELL 6 COEFFS */ |
| 392 | }, { |
| 393 | {0x10A0, 0xE2AF, 0x10A1, 0xCE76, 0x6D6D}, /* CELL 1 COEFFS 25M*/ |
| 394 | {0x20DC, 0xC676, 0x20D9, 0xC80A, 0x6F29}, |
| 395 | {0x2532, 0xC000, 0x251D, 0xC391, 0x706F}, |
| 396 | {0x1F7A, 0xCD2B, 0x2032, 0xC15E, 0x711F}, |
| 397 | {0x0698, 0xFA5E, 0x0568, 0xC059, 0x7193}, |
| 398 | {0x0000, 0x0918, 0x149C, 0x0000, 0x3642} /* CELL 6 COEFFS */ |
| 399 | }, { |
| 400 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, /* 30M */ |
| 401 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 402 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 403 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 404 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 405 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000} |
| 406 | } |
| 407 | }; |
| 408 | |
| 409 | static u16 CellsCoeffs_7MHz_367cofdm[3][6][5] = { |
| 410 | { |
| 411 | {0x12CA, 0xDDAF, 0x12CA, 0xCCEB, 0x6FB1}, /* CELL 1 COEFFS 27M*/ |
| 412 | {0x2329, 0xC000, 0x2329, 0xC6B0, 0x725F}, /* CELL 2 COEFFS */ |
| 413 | {0x2394, 0xC000, 0x2394, 0xC2C7, 0x7410}, /* CELL 3 COEFFS */ |
| 414 | {0x251C, 0xC000, 0x251C, 0xC103, 0x74D9}, /* CELL 4 COEFFS */ |
| 415 | {0x0804, 0xF546, 0x0804, 0xC040, 0x7544}, /* CELL 5 COEFFS */ |
| 416 | {0x0000, 0x0CD9, 0x0CD9, 0x0000, 0x370A} /* CELL 6 COEFFS */ |
| 417 | }, { |
| 418 | {0x1285, 0xDE47, 0x1285, 0xCD17, 0x6F76}, /*25M*/ |
| 419 | {0x234C, 0xC000, 0x2348, 0xC6DA, 0x7206}, |
| 420 | {0x23B4, 0xC000, 0x23AC, 0xC2DB, 0x73B3}, |
| 421 | {0x253D, 0xC000, 0x25B6, 0xC10B, 0x747F}, |
| 422 | {0x0721, 0xF79C, 0x065F, 0xC041, 0x74EB}, |
| 423 | {0x0000, 0x08FA, 0x1162, 0x0000, 0x36FF} |
| 424 | }, { |
| 425 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, /* 30M */ |
| 426 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 427 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 428 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 429 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 430 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000} |
| 431 | } |
| 432 | }; |
| 433 | |
| 434 | static u16 CellsCoeffs_6MHz_367cofdm[3][6][5] = { |
| 435 | { |
| 436 | {0x1699, 0xD5B8, 0x1699, 0xCBC3, 0x713B}, /* CELL 1 COEFFS 27M*/ |
| 437 | {0x2245, 0xC000, 0x2245, 0xC568, 0x74D5}, /* CELL 2 COEFFS */ |
| 438 | {0x227F, 0xC000, 0x227F, 0xC1FC, 0x76C6}, /* CELL 3 COEFFS */ |
| 439 | {0x235E, 0xC000, 0x235E, 0xC0A7, 0x778A}, /* CELL 4 COEFFS */ |
| 440 | {0x0ECB, 0xEA0B, 0x0ECB, 0xC027, 0x77DD}, /* CELL 5 COEFFS */ |
| 441 | {0x0000, 0x0B68, 0x0B68, 0x0000, 0xC89A}, /* CELL 6 COEFFS */ |
| 442 | }, { |
| 443 | {0x1655, 0xD64E, 0x1658, 0xCBEF, 0x70FE}, /*25M*/ |
| 444 | {0x225E, 0xC000, 0x2256, 0xC589, 0x7489}, |
| 445 | {0x2293, 0xC000, 0x2295, 0xC209, 0x767E}, |
| 446 | {0x2377, 0xC000, 0x23AA, 0xC0AB, 0x7746}, |
| 447 | {0x0DC7, 0xEBC8, 0x0D07, 0xC027, 0x7799}, |
| 448 | {0x0000, 0x0888, 0x0E9C, 0x0000, 0x3757} |
| 449 | |
| 450 | }, { |
| 451 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, /* 30M */ |
| 452 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 453 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 454 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 455 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000}, |
| 456 | {0x0000, 0x0000, 0x0000, 0x0000, 0x0000} |
| 457 | } |
| 458 | }; |
| 459 | |
| 460 | static u32 stv0367ter_get_mclk(struct stv0367_state *state, u32 ExtClk_Hz) |
| 461 | { |
| 462 | u32 mclk_Hz = 0; /* master clock frequency (Hz) */ |
| 463 | u32 m, n, p; |
| 464 | |
| 465 | dprintk("%s:\n", __func__); |
| 466 | |
| 467 | if (stv0367_readbits(state, F367TER_BYPASS_PLLXN) == 0) { |
| 468 | n = (u32)stv0367_readbits(state, F367TER_PLL_NDIV); |
| 469 | if (n == 0) |
| 470 | n = n + 1; |
| 471 | |
| 472 | m = (u32)stv0367_readbits(state, F367TER_PLL_MDIV); |
| 473 | if (m == 0) |
| 474 | m = m + 1; |
| 475 | |
| 476 | p = (u32)stv0367_readbits(state, F367TER_PLL_PDIV); |
| 477 | if (p > 5) |
| 478 | p = 5; |
| 479 | |
| 480 | mclk_Hz = ((ExtClk_Hz / 2) * n) / (m * (1 << p)); |
| 481 | |
| 482 | dprintk("N=%d M=%d P=%d mclk_Hz=%d ExtClk_Hz=%d\n", |
| 483 | n, m, p, mclk_Hz, ExtClk_Hz); |
| 484 | } else |
| 485 | mclk_Hz = ExtClk_Hz; |
| 486 | |
| 487 | dprintk("%s: mclk_Hz=%d\n", __func__, mclk_Hz); |
| 488 | |
| 489 | return mclk_Hz; |
| 490 | } |
| 491 | |
| 492 | static int stv0367ter_filt_coeff_init(struct stv0367_state *state, |
Dan Carpenter | bc4b18c | 2011-03-06 10:41:23 -0300 | [diff] [blame] | 493 | u16 CellsCoeffs[3][6][5], u32 DemodXtal) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 494 | { |
| 495 | int i, j, k, freq; |
| 496 | |
| 497 | dprintk("%s:\n", __func__); |
| 498 | |
| 499 | freq = stv0367ter_get_mclk(state, DemodXtal); |
| 500 | |
| 501 | if (freq == 53125000) |
| 502 | k = 1; /* equivalent to Xtal 25M on 362*/ |
| 503 | else if (freq == 54000000) |
| 504 | k = 0; /* equivalent to Xtal 27M on 362*/ |
| 505 | else if (freq == 52500000) |
| 506 | k = 2; /* equivalent to Xtal 30M on 362*/ |
| 507 | else |
| 508 | return 0; |
| 509 | |
| 510 | for (i = 1; i <= 6; i++) { |
| 511 | stv0367_writebits(state, F367TER_IIR_CELL_NB, i - 1); |
| 512 | |
| 513 | for (j = 1; j <= 5; j++) { |
| 514 | stv0367_writereg(state, |
| 515 | (R367TER_IIRCX_COEFF1_MSB + 2 * (j - 1)), |
| 516 | MSB(CellsCoeffs[k][i-1][j-1])); |
| 517 | stv0367_writereg(state, |
| 518 | (R367TER_IIRCX_COEFF1_LSB + 2 * (j - 1)), |
| 519 | LSB(CellsCoeffs[k][i-1][j-1])); |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | return 1; |
| 524 | |
| 525 | } |
| 526 | |
| 527 | static void stv0367ter_agc_iir_lock_detect_set(struct stv0367_state *state) |
| 528 | { |
| 529 | dprintk("%s:\n", __func__); |
| 530 | |
| 531 | stv0367_writebits(state, F367TER_LOCK_DETECT_LSB, 0x00); |
| 532 | |
| 533 | /* Lock detect 1 */ |
| 534 | stv0367_writebits(state, F367TER_LOCK_DETECT_CHOICE, 0x00); |
| 535 | stv0367_writebits(state, F367TER_LOCK_DETECT_MSB, 0x06); |
| 536 | stv0367_writebits(state, F367TER_AUT_AGC_TARGET_LSB, 0x04); |
| 537 | |
| 538 | /* Lock detect 2 */ |
| 539 | stv0367_writebits(state, F367TER_LOCK_DETECT_CHOICE, 0x01); |
| 540 | stv0367_writebits(state, F367TER_LOCK_DETECT_MSB, 0x06); |
| 541 | stv0367_writebits(state, F367TER_AUT_AGC_TARGET_LSB, 0x04); |
| 542 | |
| 543 | /* Lock detect 3 */ |
| 544 | stv0367_writebits(state, F367TER_LOCK_DETECT_CHOICE, 0x02); |
| 545 | stv0367_writebits(state, F367TER_LOCK_DETECT_MSB, 0x01); |
| 546 | stv0367_writebits(state, F367TER_AUT_AGC_TARGET_LSB, 0x00); |
| 547 | |
| 548 | /* Lock detect 4 */ |
| 549 | stv0367_writebits(state, F367TER_LOCK_DETECT_CHOICE, 0x03); |
| 550 | stv0367_writebits(state, F367TER_LOCK_DETECT_MSB, 0x01); |
| 551 | stv0367_writebits(state, F367TER_AUT_AGC_TARGET_LSB, 0x00); |
| 552 | |
| 553 | } |
| 554 | |
| 555 | static int stv0367_iir_filt_init(struct stv0367_state *state, u8 Bandwidth, |
| 556 | u32 DemodXtalValue) |
| 557 | { |
| 558 | dprintk("%s:\n", __func__); |
| 559 | |
| 560 | stv0367_writebits(state, F367TER_NRST_IIR, 0); |
| 561 | |
| 562 | switch (Bandwidth) { |
| 563 | case 6: |
| 564 | if (!stv0367ter_filt_coeff_init(state, |
| 565 | CellsCoeffs_6MHz_367cofdm, |
| 566 | DemodXtalValue)) |
| 567 | return 0; |
| 568 | break; |
| 569 | case 7: |
| 570 | if (!stv0367ter_filt_coeff_init(state, |
| 571 | CellsCoeffs_7MHz_367cofdm, |
| 572 | DemodXtalValue)) |
| 573 | return 0; |
| 574 | break; |
| 575 | case 8: |
| 576 | if (!stv0367ter_filt_coeff_init(state, |
| 577 | CellsCoeffs_8MHz_367cofdm, |
| 578 | DemodXtalValue)) |
| 579 | return 0; |
| 580 | break; |
| 581 | default: |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | stv0367_writebits(state, F367TER_NRST_IIR, 1); |
| 586 | |
| 587 | return 1; |
| 588 | } |
| 589 | |
| 590 | static void stv0367ter_agc_iir_rst(struct stv0367_state *state) |
| 591 | { |
| 592 | |
| 593 | u8 com_n; |
| 594 | |
| 595 | dprintk("%s:\n", __func__); |
| 596 | |
| 597 | com_n = stv0367_readbits(state, F367TER_COM_N); |
| 598 | |
| 599 | stv0367_writebits(state, F367TER_COM_N, 0x07); |
| 600 | |
| 601 | stv0367_writebits(state, F367TER_COM_SOFT_RSTN, 0x00); |
| 602 | stv0367_writebits(state, F367TER_COM_AGC_ON, 0x00); |
| 603 | |
| 604 | stv0367_writebits(state, F367TER_COM_SOFT_RSTN, 0x01); |
| 605 | stv0367_writebits(state, F367TER_COM_AGC_ON, 0x01); |
| 606 | |
| 607 | stv0367_writebits(state, F367TER_COM_N, com_n); |
| 608 | |
| 609 | } |
| 610 | |
| 611 | static int stv0367ter_duration(s32 mode, int tempo1, int tempo2, int tempo3) |
| 612 | { |
| 613 | int local_tempo = 0; |
| 614 | switch (mode) { |
| 615 | case 0: |
| 616 | local_tempo = tempo1; |
| 617 | break; |
| 618 | case 1: |
| 619 | local_tempo = tempo2; |
| 620 | break ; |
| 621 | |
| 622 | case 2: |
| 623 | local_tempo = tempo3; |
| 624 | break; |
| 625 | |
| 626 | default: |
| 627 | break; |
| 628 | } |
| 629 | /* msleep(local_tempo); */ |
| 630 | return local_tempo; |
| 631 | } |
| 632 | |
| 633 | static enum |
| 634 | stv0367_ter_signal_type stv0367ter_check_syr(struct stv0367_state *state) |
| 635 | { |
| 636 | int wd = 100; |
| 637 | unsigned short int SYR_var; |
| 638 | s32 SYRStatus; |
| 639 | |
| 640 | dprintk("%s:\n", __func__); |
| 641 | |
| 642 | SYR_var = stv0367_readbits(state, F367TER_SYR_LOCK); |
| 643 | |
| 644 | while ((!SYR_var) && (wd > 0)) { |
| 645 | usleep_range(2000, 3000); |
| 646 | wd -= 2; |
| 647 | SYR_var = stv0367_readbits(state, F367TER_SYR_LOCK); |
| 648 | } |
| 649 | |
| 650 | if (!SYR_var) |
| 651 | SYRStatus = FE_TER_NOSYMBOL; |
| 652 | else |
| 653 | SYRStatus = FE_TER_SYMBOLOK; |
| 654 | |
| 655 | dprintk("stv0367ter_check_syr SYRStatus %s\n", |
| 656 | SYR_var == 0 ? "No Symbol" : "OK"); |
| 657 | |
| 658 | return SYRStatus; |
| 659 | } |
| 660 | |
| 661 | static enum |
| 662 | stv0367_ter_signal_type stv0367ter_check_cpamp(struct stv0367_state *state, |
| 663 | s32 FFTmode) |
| 664 | { |
| 665 | |
| 666 | s32 CPAMPvalue = 0, CPAMPStatus, CPAMPMin; |
| 667 | int wd = 0; |
| 668 | |
| 669 | dprintk("%s:\n", __func__); |
| 670 | |
| 671 | switch (FFTmode) { |
| 672 | case 0: /*2k mode*/ |
| 673 | CPAMPMin = 20; |
| 674 | wd = 10; |
| 675 | break; |
| 676 | case 1: /*8k mode*/ |
| 677 | CPAMPMin = 80; |
| 678 | wd = 55; |
| 679 | break; |
| 680 | case 2: /*4k mode*/ |
| 681 | CPAMPMin = 40; |
| 682 | wd = 30; |
| 683 | break; |
| 684 | default: |
| 685 | CPAMPMin = 0xffff; /*drives to NOCPAMP */ |
| 686 | break; |
| 687 | } |
| 688 | |
| 689 | dprintk("%s: CPAMPMin=%d wd=%d\n", __func__, CPAMPMin, wd); |
| 690 | |
| 691 | CPAMPvalue = stv0367_readbits(state, F367TER_PPM_CPAMP_DIRECT); |
| 692 | while ((CPAMPvalue < CPAMPMin) && (wd > 0)) { |
| 693 | usleep_range(1000, 2000); |
| 694 | wd -= 1; |
| 695 | CPAMPvalue = stv0367_readbits(state, F367TER_PPM_CPAMP_DIRECT); |
| 696 | /*dprintk("CPAMPvalue= %d at wd=%d\n",CPAMPvalue,wd); */ |
| 697 | } |
| 698 | dprintk("******last CPAMPvalue= %d at wd=%d\n", CPAMPvalue, wd); |
| 699 | if (CPAMPvalue < CPAMPMin) { |
| 700 | CPAMPStatus = FE_TER_NOCPAMP; |
Daniel Scheller | df5a38e | 2017-03-29 13:43:02 -0300 | [diff] [blame] | 701 | dprintk("%s: CPAMP failed\n", __func__); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 702 | } else { |
Daniel Scheller | df5a38e | 2017-03-29 13:43:02 -0300 | [diff] [blame] | 703 | dprintk("%s: CPAMP OK !\n", __func__); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 704 | CPAMPStatus = FE_TER_CPAMPOK; |
| 705 | } |
| 706 | |
| 707 | return CPAMPStatus; |
| 708 | } |
| 709 | |
Mauro Carvalho Chehab | 8c8ca1c | 2012-10-27 11:26:42 -0300 | [diff] [blame] | 710 | static enum stv0367_ter_signal_type |
| 711 | stv0367ter_lock_algo(struct stv0367_state *state) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 712 | { |
| 713 | enum stv0367_ter_signal_type ret_flag; |
| 714 | short int wd, tempo; |
| 715 | u8 try, u_var1 = 0, u_var2 = 0, u_var3 = 0, u_var4 = 0, mode, guard; |
| 716 | u8 tmp, tmp2; |
| 717 | |
| 718 | dprintk("%s:\n", __func__); |
| 719 | |
| 720 | if (state == NULL) |
| 721 | return FE_TER_SWNOK; |
| 722 | |
| 723 | try = 0; |
| 724 | do { |
| 725 | ret_flag = FE_TER_LOCKOK; |
| 726 | |
| 727 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 0); |
| 728 | |
| 729 | if (state->config->if_iq_mode != 0) |
| 730 | stv0367_writebits(state, F367TER_COM_N, 0x07); |
| 731 | |
| 732 | stv0367_writebits(state, F367TER_GUARD, 3);/* suggest 2k 1/4 */ |
| 733 | stv0367_writebits(state, F367TER_MODE, 0); |
| 734 | stv0367_writebits(state, F367TER_SYR_TR_DIS, 0); |
| 735 | usleep_range(5000, 10000); |
| 736 | |
| 737 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 1); |
| 738 | |
| 739 | |
| 740 | if (stv0367ter_check_syr(state) == FE_TER_NOSYMBOL) |
| 741 | return FE_TER_NOSYMBOL; |
| 742 | else { /* |
| 743 | if chip locked on wrong mode first try, |
| 744 | it must lock correctly second try */ |
| 745 | mode = stv0367_readbits(state, F367TER_SYR_MODE); |
| 746 | if (stv0367ter_check_cpamp(state, mode) == |
| 747 | FE_TER_NOCPAMP) { |
| 748 | if (try == 0) |
| 749 | ret_flag = FE_TER_NOCPAMP; |
| 750 | |
| 751 | } |
| 752 | } |
| 753 | |
| 754 | try++; |
| 755 | } while ((try < 10) && (ret_flag != FE_TER_LOCKOK)); |
| 756 | |
| 757 | tmp = stv0367_readreg(state, R367TER_SYR_STAT); |
| 758 | tmp2 = stv0367_readreg(state, R367TER_STATUS); |
Hans Verkuil | fb661a7 | 2011-03-06 09:26:24 -0300 | [diff] [blame] | 759 | dprintk("state=%p\n", state); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 760 | dprintk("LOCK OK! mode=%d SYR_STAT=0x%x R367TER_STATUS=0x%x\n", |
| 761 | mode, tmp, tmp2); |
| 762 | |
| 763 | tmp = stv0367_readreg(state, R367TER_PRVIT); |
| 764 | tmp2 = stv0367_readreg(state, R367TER_I2CRPT); |
| 765 | dprintk("PRVIT=0x%x I2CRPT=0x%x\n", tmp, tmp2); |
| 766 | |
| 767 | tmp = stv0367_readreg(state, R367TER_GAIN_SRC1); |
| 768 | dprintk("GAIN_SRC1=0x%x\n", tmp); |
| 769 | |
| 770 | if ((mode != 0) && (mode != 1) && (mode != 2)) |
| 771 | return FE_TER_SWNOK; |
| 772 | |
| 773 | /*guard=stv0367_readbits(state,F367TER_SYR_GUARD); */ |
| 774 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 775 | /*suppress EPQ auto for SYR_GARD 1/16 or 1/32 |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 776 | and set channel predictor in automatic */ |
| 777 | #if 0 |
| 778 | switch (guard) { |
| 779 | |
| 780 | case 0: |
| 781 | case 1: |
| 782 | stv0367_writebits(state, F367TER_AUTO_LE_EN, 0); |
| 783 | stv0367_writereg(state, R367TER_CHC_CTL, 0x01); |
| 784 | break; |
| 785 | case 2: |
| 786 | case 3: |
| 787 | stv0367_writebits(state, F367TER_AUTO_LE_EN, 1); |
| 788 | stv0367_writereg(state, R367TER_CHC_CTL, 0x11); |
| 789 | break; |
| 790 | |
| 791 | default: |
| 792 | return FE_TER_SWNOK; |
| 793 | } |
| 794 | #endif |
| 795 | |
| 796 | /*reset fec an reedsolo FOR 367 only*/ |
| 797 | stv0367_writebits(state, F367TER_RST_SFEC, 1); |
| 798 | stv0367_writebits(state, F367TER_RST_REEDSOLO, 1); |
| 799 | usleep_range(1000, 2000); |
| 800 | stv0367_writebits(state, F367TER_RST_SFEC, 0); |
| 801 | stv0367_writebits(state, F367TER_RST_REEDSOLO, 0); |
| 802 | |
| 803 | u_var1 = stv0367_readbits(state, F367TER_LK); |
| 804 | u_var2 = stv0367_readbits(state, F367TER_PRF); |
| 805 | u_var3 = stv0367_readbits(state, F367TER_TPS_LOCK); |
| 806 | /* u_var4=stv0367_readbits(state,F367TER_TSFIFO_LINEOK); */ |
| 807 | |
| 808 | wd = stv0367ter_duration(mode, 125, 500, 250); |
| 809 | tempo = stv0367ter_duration(mode, 4, 16, 8); |
| 810 | |
| 811 | /*while ( ((!u_var1)||(!u_var2)||(!u_var3)||(!u_var4)) && (wd>=0)) */ |
| 812 | while (((!u_var1) || (!u_var2) || (!u_var3)) && (wd >= 0)) { |
| 813 | usleep_range(1000 * tempo, 1000 * (tempo + 1)); |
| 814 | wd -= tempo; |
| 815 | u_var1 = stv0367_readbits(state, F367TER_LK); |
| 816 | u_var2 = stv0367_readbits(state, F367TER_PRF); |
| 817 | u_var3 = stv0367_readbits(state, F367TER_TPS_LOCK); |
| 818 | /*u_var4=stv0367_readbits(state, F367TER_TSFIFO_LINEOK); */ |
| 819 | } |
| 820 | |
| 821 | if (!u_var1) |
| 822 | return FE_TER_NOLOCK; |
| 823 | |
| 824 | |
| 825 | if (!u_var2) |
| 826 | return FE_TER_NOPRFOUND; |
| 827 | |
| 828 | if (!u_var3) |
| 829 | return FE_TER_NOTPS; |
| 830 | |
| 831 | guard = stv0367_readbits(state, F367TER_SYR_GUARD); |
| 832 | stv0367_writereg(state, R367TER_CHC_CTL, 0x11); |
| 833 | switch (guard) { |
| 834 | case 0: |
| 835 | case 1: |
| 836 | stv0367_writebits(state, F367TER_AUTO_LE_EN, 0); |
| 837 | /*stv0367_writereg(state,R367TER_CHC_CTL, 0x1);*/ |
| 838 | stv0367_writebits(state, F367TER_SYR_FILTER, 0); |
| 839 | break; |
| 840 | case 2: |
| 841 | case 3: |
| 842 | stv0367_writebits(state, F367TER_AUTO_LE_EN, 1); |
| 843 | /*stv0367_writereg(state,R367TER_CHC_CTL, 0x11);*/ |
| 844 | stv0367_writebits(state, F367TER_SYR_FILTER, 1); |
| 845 | break; |
| 846 | |
| 847 | default: |
| 848 | return FE_TER_SWNOK; |
| 849 | } |
| 850 | |
| 851 | /* apply Sfec workaround if 8K 64QAM CR!=1/2*/ |
| 852 | if ((stv0367_readbits(state, F367TER_TPS_CONST) == 2) && |
| 853 | (mode == 1) && |
| 854 | (stv0367_readbits(state, F367TER_TPS_HPCODE) != 0)) { |
| 855 | stv0367_writereg(state, R367TER_SFDLYSETH, 0xc0); |
| 856 | stv0367_writereg(state, R367TER_SFDLYSETM, 0x60); |
| 857 | stv0367_writereg(state, R367TER_SFDLYSETL, 0x0); |
| 858 | } else |
| 859 | stv0367_writereg(state, R367TER_SFDLYSETH, 0x0); |
| 860 | |
| 861 | wd = stv0367ter_duration(mode, 125, 500, 250); |
| 862 | u_var4 = stv0367_readbits(state, F367TER_TSFIFO_LINEOK); |
| 863 | |
| 864 | while ((!u_var4) && (wd >= 0)) { |
| 865 | usleep_range(1000 * tempo, 1000 * (tempo + 1)); |
| 866 | wd -= tempo; |
| 867 | u_var4 = stv0367_readbits(state, F367TER_TSFIFO_LINEOK); |
| 868 | } |
| 869 | |
| 870 | if (!u_var4) |
| 871 | return FE_TER_NOLOCK; |
| 872 | |
| 873 | /* for 367 leave COM_N at 0x7 for IQ_mode*/ |
| 874 | /*if(ter_state->if_iq_mode!=FE_TER_NORMAL_IF_TUNER) { |
| 875 | tempo=0; |
| 876 | while ((stv0367_readbits(state,F367TER_COM_USEGAINTRK)!=1) && |
| 877 | (stv0367_readbits(state,F367TER_COM_AGCLOCK)!=1)&&(tempo<100)) { |
| 878 | ChipWaitOrAbort(state,1); |
| 879 | tempo+=1; |
| 880 | } |
| 881 | |
| 882 | stv0367_writebits(state,F367TER_COM_N,0x17); |
| 883 | } */ |
| 884 | |
| 885 | stv0367_writebits(state, F367TER_SYR_TR_DIS, 1); |
| 886 | |
| 887 | dprintk("FE_TER_LOCKOK !!!\n"); |
| 888 | |
| 889 | return FE_TER_LOCKOK; |
| 890 | |
| 891 | } |
| 892 | |
| 893 | static void stv0367ter_set_ts_mode(struct stv0367_state *state, |
| 894 | enum stv0367_ts_mode PathTS) |
| 895 | { |
| 896 | |
| 897 | dprintk("%s:\n", __func__); |
| 898 | |
| 899 | if (state == NULL) |
| 900 | return; |
| 901 | |
| 902 | stv0367_writebits(state, F367TER_TS_DIS, 0); |
| 903 | switch (PathTS) { |
| 904 | default: |
| 905 | /*for removing warning :default we can assume in parallel mode*/ |
| 906 | case STV0367_PARALLEL_PUNCT_CLOCK: |
| 907 | stv0367_writebits(state, F367TER_TSFIFO_SERIAL, 0); |
| 908 | stv0367_writebits(state, F367TER_TSFIFO_DVBCI, 0); |
| 909 | break; |
| 910 | case STV0367_SERIAL_PUNCT_CLOCK: |
| 911 | stv0367_writebits(state, F367TER_TSFIFO_SERIAL, 1); |
| 912 | stv0367_writebits(state, F367TER_TSFIFO_DVBCI, 1); |
| 913 | break; |
| 914 | } |
| 915 | } |
| 916 | |
| 917 | static void stv0367ter_set_clk_pol(struct stv0367_state *state, |
| 918 | enum stv0367_clk_pol clock) |
| 919 | { |
| 920 | |
| 921 | dprintk("%s:\n", __func__); |
| 922 | |
| 923 | if (state == NULL) |
| 924 | return; |
| 925 | |
| 926 | switch (clock) { |
| 927 | case STV0367_RISINGEDGE_CLOCK: |
| 928 | stv0367_writebits(state, F367TER_TS_BYTE_CLK_INV, 1); |
| 929 | break; |
| 930 | case STV0367_FALLINGEDGE_CLOCK: |
| 931 | stv0367_writebits(state, F367TER_TS_BYTE_CLK_INV, 0); |
| 932 | break; |
| 933 | /*case FE_TER_CLOCK_POLARITY_DEFAULT:*/ |
| 934 | default: |
| 935 | stv0367_writebits(state, F367TER_TS_BYTE_CLK_INV, 0); |
| 936 | break; |
| 937 | } |
| 938 | } |
| 939 | |
| 940 | #if 0 |
| 941 | static void stv0367ter_core_sw(struct stv0367_state *state) |
| 942 | { |
| 943 | |
| 944 | dprintk("%s:\n", __func__); |
| 945 | |
| 946 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 0); |
| 947 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 1); |
| 948 | msleep(350); |
| 949 | } |
| 950 | #endif |
| 951 | static int stv0367ter_standby(struct dvb_frontend *fe, u8 standby_on) |
| 952 | { |
| 953 | struct stv0367_state *state = fe->demodulator_priv; |
| 954 | |
| 955 | dprintk("%s:\n", __func__); |
| 956 | |
| 957 | if (standby_on) { |
| 958 | stv0367_writebits(state, F367TER_STDBY, 1); |
| 959 | stv0367_writebits(state, F367TER_STDBY_FEC, 1); |
| 960 | stv0367_writebits(state, F367TER_STDBY_CORE, 1); |
| 961 | } else { |
| 962 | stv0367_writebits(state, F367TER_STDBY, 0); |
| 963 | stv0367_writebits(state, F367TER_STDBY_FEC, 0); |
| 964 | stv0367_writebits(state, F367TER_STDBY_CORE, 0); |
| 965 | } |
| 966 | |
| 967 | return 0; |
| 968 | } |
| 969 | |
| 970 | static int stv0367ter_sleep(struct dvb_frontend *fe) |
| 971 | { |
| 972 | return stv0367ter_standby(fe, 1); |
| 973 | } |
| 974 | |
Mauro Carvalho Chehab | 8c8ca1c | 2012-10-27 11:26:42 -0300 | [diff] [blame] | 975 | static int stv0367ter_init(struct dvb_frontend *fe) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 976 | { |
| 977 | struct stv0367_state *state = fe->demodulator_priv; |
| 978 | struct stv0367ter_state *ter_state = state->ter_state; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 979 | |
| 980 | dprintk("%s:\n", __func__); |
| 981 | |
| 982 | ter_state->pBER = 0; |
| 983 | |
Daniel Scheller | 8881ceb | 2017-03-29 13:43:04 -0300 | [diff] [blame] | 984 | stv0367_write_table(state, |
| 985 | stv0367_deftabs[state->deftabs][STV0367_TAB_TER]); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 986 | |
Daniel Scheller | 8a9c073 | 2017-03-29 13:43:05 -0300 | [diff] [blame] | 987 | stv0367_pll_setup(state, STV0367_ICSPEED_53125, state->config->xtal); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 988 | |
| 989 | stv0367_writereg(state, R367TER_I2CRPT, 0xa0); |
| 990 | stv0367_writereg(state, R367TER_ANACTRL, 0x00); |
| 991 | |
| 992 | /*Set TS1 and TS2 to serial or parallel mode */ |
| 993 | stv0367ter_set_ts_mode(state, state->config->ts_mode); |
| 994 | stv0367ter_set_clk_pol(state, state->config->clk_pol); |
| 995 | |
| 996 | state->chip_id = stv0367_readreg(state, R367TER_ID); |
| 997 | ter_state->first_lock = 0; |
| 998 | ter_state->unlock_counter = 2; |
| 999 | |
| 1000 | return 0; |
| 1001 | } |
| 1002 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1003 | static int stv0367ter_algo(struct dvb_frontend *fe) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1004 | { |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1005 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1006 | struct stv0367_state *state = fe->demodulator_priv; |
| 1007 | struct stv0367ter_state *ter_state = state->ter_state; |
| 1008 | int offset = 0, tempo = 0; |
| 1009 | u8 u_var; |
Peter Senna Tschudin | df1ec02 | 2012-06-14 13:58:14 -0300 | [diff] [blame] | 1010 | u8 /*constell,*/ counter; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1011 | s8 step; |
| 1012 | s32 timing_offset = 0; |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 1013 | u32 trl_nomrate = 0, InternalFreq = 0, temp = 0, ifkhz = 0; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1014 | |
| 1015 | dprintk("%s:\n", __func__); |
| 1016 | |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 1017 | stv0367_get_if_khz(state, &ifkhz); |
| 1018 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1019 | ter_state->frequency = p->frequency; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1020 | ter_state->force = FE_TER_FORCENONE |
| 1021 | + stv0367_readbits(state, F367TER_FORCE) * 2; |
| 1022 | ter_state->if_iq_mode = state->config->if_iq_mode; |
| 1023 | switch (state->config->if_iq_mode) { |
| 1024 | case FE_TER_NORMAL_IF_TUNER: /* Normal IF mode */ |
| 1025 | dprintk("ALGO: FE_TER_NORMAL_IF_TUNER selected\n"); |
| 1026 | stv0367_writebits(state, F367TER_TUNER_BB, 0); |
| 1027 | stv0367_writebits(state, F367TER_LONGPATH_IF, 0); |
| 1028 | stv0367_writebits(state, F367TER_DEMUX_SWAP, 0); |
| 1029 | break; |
| 1030 | case FE_TER_LONGPATH_IF_TUNER: /* Long IF mode */ |
| 1031 | dprintk("ALGO: FE_TER_LONGPATH_IF_TUNER selected\n"); |
| 1032 | stv0367_writebits(state, F367TER_TUNER_BB, 0); |
| 1033 | stv0367_writebits(state, F367TER_LONGPATH_IF, 1); |
| 1034 | stv0367_writebits(state, F367TER_DEMUX_SWAP, 1); |
| 1035 | break; |
| 1036 | case FE_TER_IQ_TUNER: /* IQ mode */ |
| 1037 | dprintk("ALGO: FE_TER_IQ_TUNER selected\n"); |
| 1038 | stv0367_writebits(state, F367TER_TUNER_BB, 1); |
| 1039 | stv0367_writebits(state, F367TER_PPM_INVSEL, 0); |
| 1040 | break; |
| 1041 | default: |
| 1042 | printk(KERN_ERR "ALGO: wrong TUNER type selected\n"); |
| 1043 | return -EINVAL; |
| 1044 | } |
| 1045 | |
| 1046 | usleep_range(5000, 7000); |
| 1047 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1048 | switch (p->inversion) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1049 | case INVERSION_AUTO: |
| 1050 | default: |
| 1051 | dprintk("%s: inversion AUTO\n", __func__); |
| 1052 | if (ter_state->if_iq_mode == FE_TER_IQ_TUNER) |
| 1053 | stv0367_writebits(state, F367TER_IQ_INVERT, |
| 1054 | ter_state->sense); |
| 1055 | else |
| 1056 | stv0367_writebits(state, F367TER_INV_SPECTR, |
| 1057 | ter_state->sense); |
| 1058 | |
| 1059 | break; |
| 1060 | case INVERSION_ON: |
| 1061 | case INVERSION_OFF: |
| 1062 | if (ter_state->if_iq_mode == FE_TER_IQ_TUNER) |
| 1063 | stv0367_writebits(state, F367TER_IQ_INVERT, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1064 | p->inversion); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1065 | else |
| 1066 | stv0367_writebits(state, F367TER_INV_SPECTR, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1067 | p->inversion); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1068 | |
| 1069 | break; |
| 1070 | } |
| 1071 | |
| 1072 | if ((ter_state->if_iq_mode != FE_TER_NORMAL_IF_TUNER) && |
| 1073 | (ter_state->pBW != ter_state->bw)) { |
| 1074 | stv0367ter_agc_iir_lock_detect_set(state); |
| 1075 | |
| 1076 | /*set fine agc target to 180 for LPIF or IQ mode*/ |
| 1077 | /* set Q_AGCTarget */ |
| 1078 | stv0367_writebits(state, F367TER_SEL_IQNTAR, 1); |
| 1079 | stv0367_writebits(state, F367TER_AUT_AGC_TARGET_MSB, 0xB); |
| 1080 | /*stv0367_writebits(state,AUT_AGC_TARGET_LSB,0x04); */ |
| 1081 | |
| 1082 | /* set Q_AGCTarget */ |
| 1083 | stv0367_writebits(state, F367TER_SEL_IQNTAR, 0); |
| 1084 | stv0367_writebits(state, F367TER_AUT_AGC_TARGET_MSB, 0xB); |
| 1085 | /*stv0367_writebits(state,AUT_AGC_TARGET_LSB,0x04); */ |
| 1086 | |
| 1087 | if (!stv0367_iir_filt_init(state, ter_state->bw, |
| 1088 | state->config->xtal)) |
| 1089 | return -EINVAL; |
| 1090 | /*set IIR filter once for 6,7 or 8MHz BW*/ |
| 1091 | ter_state->pBW = ter_state->bw; |
| 1092 | |
| 1093 | stv0367ter_agc_iir_rst(state); |
| 1094 | } |
| 1095 | |
| 1096 | if (ter_state->hierarchy == FE_TER_HIER_LOW_PRIO) |
| 1097 | stv0367_writebits(state, F367TER_BDI_LPSEL, 0x01); |
| 1098 | else |
| 1099 | stv0367_writebits(state, F367TER_BDI_LPSEL, 0x00); |
| 1100 | |
| 1101 | InternalFreq = stv0367ter_get_mclk(state, state->config->xtal) / 1000; |
| 1102 | temp = (int) |
| 1103 | ((((ter_state->bw * 64 * (1 << 15) * 100) |
| 1104 | / (InternalFreq)) * 10) / 7); |
| 1105 | |
| 1106 | stv0367_writebits(state, F367TER_TRL_NOMRATE_LSB, temp % 2); |
| 1107 | temp = temp / 2; |
| 1108 | stv0367_writebits(state, F367TER_TRL_NOMRATE_HI, temp / 256); |
| 1109 | stv0367_writebits(state, F367TER_TRL_NOMRATE_LO, temp % 256); |
| 1110 | |
| 1111 | temp = stv0367_readbits(state, F367TER_TRL_NOMRATE_HI) * 512 + |
| 1112 | stv0367_readbits(state, F367TER_TRL_NOMRATE_LO) * 2 + |
| 1113 | stv0367_readbits(state, F367TER_TRL_NOMRATE_LSB); |
| 1114 | temp = (int)(((1 << 17) * ter_state->bw * 1000) / (7 * (InternalFreq))); |
| 1115 | stv0367_writebits(state, F367TER_GAIN_SRC_HI, temp / 256); |
| 1116 | stv0367_writebits(state, F367TER_GAIN_SRC_LO, temp % 256); |
| 1117 | temp = stv0367_readbits(state, F367TER_GAIN_SRC_HI) * 256 + |
| 1118 | stv0367_readbits(state, F367TER_GAIN_SRC_LO); |
| 1119 | |
| 1120 | temp = (int) |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 1121 | ((InternalFreq - ifkhz) * (1 << 16) / (InternalFreq)); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1122 | |
| 1123 | dprintk("DEROT temp=0x%x\n", temp); |
| 1124 | stv0367_writebits(state, F367TER_INC_DEROT_HI, temp / 256); |
| 1125 | stv0367_writebits(state, F367TER_INC_DEROT_LO, temp % 256); |
| 1126 | |
| 1127 | ter_state->echo_pos = 0; |
| 1128 | ter_state->ucblocks = 0; /* liplianin */ |
| 1129 | ter_state->pBER = 0; /* liplianin */ |
| 1130 | stv0367_writebits(state, F367TER_LONG_ECHO, ter_state->echo_pos); |
| 1131 | |
| 1132 | if (stv0367ter_lock_algo(state) != FE_TER_LOCKOK) |
| 1133 | return 0; |
| 1134 | |
| 1135 | ter_state->state = FE_TER_LOCKOK; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1136 | |
| 1137 | ter_state->mode = stv0367_readbits(state, F367TER_SYR_MODE); |
| 1138 | ter_state->guard = stv0367_readbits(state, F367TER_SYR_GUARD); |
| 1139 | |
| 1140 | ter_state->first_lock = 1; /* we know sense now :) */ |
| 1141 | |
| 1142 | ter_state->agc_val = |
| 1143 | (stv0367_readbits(state, F367TER_AGC1_VAL_LO) << 16) + |
| 1144 | (stv0367_readbits(state, F367TER_AGC1_VAL_HI) << 24) + |
| 1145 | stv0367_readbits(state, F367TER_AGC2_VAL_LO) + |
| 1146 | (stv0367_readbits(state, F367TER_AGC2_VAL_HI) << 8); |
| 1147 | |
| 1148 | /* Carrier offset calculation */ |
| 1149 | stv0367_writebits(state, F367TER_FREEZE, 1); |
| 1150 | offset = (stv0367_readbits(state, F367TER_CRL_FOFFSET_VHI) << 16) ; |
| 1151 | offset += (stv0367_readbits(state, F367TER_CRL_FOFFSET_HI) << 8); |
| 1152 | offset += (stv0367_readbits(state, F367TER_CRL_FOFFSET_LO)); |
| 1153 | stv0367_writebits(state, F367TER_FREEZE, 0); |
| 1154 | if (offset > 8388607) |
| 1155 | offset -= 16777216; |
| 1156 | |
| 1157 | offset = offset * 2 / 16384; |
| 1158 | |
| 1159 | if (ter_state->mode == FE_TER_MODE_2K) |
| 1160 | offset = (offset * 4464) / 1000;/*** 1 FFT BIN=4.464khz***/ |
| 1161 | else if (ter_state->mode == FE_TER_MODE_4K) |
| 1162 | offset = (offset * 223) / 100;/*** 1 FFT BIN=2.23khz***/ |
| 1163 | else if (ter_state->mode == FE_TER_MODE_8K) |
| 1164 | offset = (offset * 111) / 100;/*** 1 FFT BIN=1.1khz***/ |
| 1165 | |
| 1166 | if (stv0367_readbits(state, F367TER_PPM_INVSEL) == 1) { |
| 1167 | if ((stv0367_readbits(state, F367TER_INV_SPECTR) == |
| 1168 | (stv0367_readbits(state, |
| 1169 | F367TER_STATUS_INV_SPECRUM) == 1))) |
| 1170 | offset = offset * -1; |
| 1171 | } |
| 1172 | |
| 1173 | if (ter_state->bw == 6) |
| 1174 | offset = (offset * 6) / 8; |
| 1175 | else if (ter_state->bw == 7) |
| 1176 | offset = (offset * 7) / 8; |
| 1177 | |
| 1178 | ter_state->frequency += offset; |
| 1179 | |
| 1180 | tempo = 10; /* exit even if timing_offset stays null */ |
| 1181 | while ((timing_offset == 0) && (tempo > 0)) { |
| 1182 | usleep_range(10000, 20000); /*was 20ms */ |
| 1183 | /* fine tuning of timing offset if required */ |
| 1184 | timing_offset = stv0367_readbits(state, F367TER_TRL_TOFFSET_LO) |
| 1185 | + 256 * stv0367_readbits(state, |
| 1186 | F367TER_TRL_TOFFSET_HI); |
| 1187 | if (timing_offset >= 32768) |
| 1188 | timing_offset -= 65536; |
| 1189 | trl_nomrate = (512 * stv0367_readbits(state, |
| 1190 | F367TER_TRL_NOMRATE_HI) |
| 1191 | + stv0367_readbits(state, F367TER_TRL_NOMRATE_LO) * 2 |
| 1192 | + stv0367_readbits(state, F367TER_TRL_NOMRATE_LSB)); |
| 1193 | |
| 1194 | timing_offset = ((signed)(1000000 / trl_nomrate) * |
| 1195 | timing_offset) / 2048; |
| 1196 | tempo--; |
| 1197 | } |
| 1198 | |
| 1199 | if (timing_offset <= 0) { |
| 1200 | timing_offset = (timing_offset - 11) / 22; |
| 1201 | step = -1; |
| 1202 | } else { |
| 1203 | timing_offset = (timing_offset + 11) / 22; |
| 1204 | step = 1; |
| 1205 | } |
| 1206 | |
| 1207 | for (counter = 0; counter < abs(timing_offset); counter++) { |
| 1208 | trl_nomrate += step; |
| 1209 | stv0367_writebits(state, F367TER_TRL_NOMRATE_LSB, |
| 1210 | trl_nomrate % 2); |
| 1211 | stv0367_writebits(state, F367TER_TRL_NOMRATE_LO, |
| 1212 | trl_nomrate / 2); |
| 1213 | usleep_range(1000, 2000); |
| 1214 | } |
| 1215 | |
| 1216 | usleep_range(5000, 6000); |
| 1217 | /* unlocks could happen in case of trl centring big step, |
| 1218 | then a core off/on restarts demod */ |
| 1219 | u_var = stv0367_readbits(state, F367TER_LK); |
| 1220 | |
| 1221 | if (!u_var) { |
| 1222 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 0); |
| 1223 | msleep(20); |
| 1224 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 1); |
| 1225 | } |
| 1226 | |
| 1227 | return 0; |
| 1228 | } |
| 1229 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1230 | static int stv0367ter_set_frontend(struct dvb_frontend *fe) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1231 | { |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1232 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1233 | struct stv0367_state *state = fe->demodulator_priv; |
| 1234 | struct stv0367ter_state *ter_state = state->ter_state; |
| 1235 | |
| 1236 | /*u8 trials[2]; */ |
| 1237 | s8 num_trials, index; |
| 1238 | u8 SenseTrials[] = { INVERSION_ON, INVERSION_OFF }; |
| 1239 | |
Daniel Scheller | 7718dcf | 2017-03-29 13:43:06 -0300 | [diff] [blame] | 1240 | if (state->reinit_on_setfrontend) |
| 1241 | stv0367ter_init(fe); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1242 | |
| 1243 | if (fe->ops.tuner_ops.set_params) { |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 1244 | if (state->use_i2c_gatectrl && fe->ops.i2c_gate_ctrl) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1245 | fe->ops.i2c_gate_ctrl(fe, 1); |
Mauro Carvalho Chehab | 14d24d1 | 2011-12-24 12:24:33 -0300 | [diff] [blame] | 1246 | fe->ops.tuner_ops.set_params(fe); |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 1247 | if (state->use_i2c_gatectrl && fe->ops.i2c_gate_ctrl) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1248 | fe->ops.i2c_gate_ctrl(fe, 0); |
| 1249 | } |
| 1250 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1251 | switch (p->transmission_mode) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1252 | default: |
| 1253 | case TRANSMISSION_MODE_AUTO: |
| 1254 | case TRANSMISSION_MODE_2K: |
| 1255 | ter_state->mode = FE_TER_MODE_2K; |
| 1256 | break; |
| 1257 | /* case TRANSMISSION_MODE_4K: |
| 1258 | pLook.mode = FE_TER_MODE_4K; |
| 1259 | break;*/ |
| 1260 | case TRANSMISSION_MODE_8K: |
| 1261 | ter_state->mode = FE_TER_MODE_8K; |
| 1262 | break; |
| 1263 | } |
| 1264 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1265 | switch (p->guard_interval) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1266 | default: |
| 1267 | case GUARD_INTERVAL_1_32: |
| 1268 | case GUARD_INTERVAL_1_16: |
| 1269 | case GUARD_INTERVAL_1_8: |
| 1270 | case GUARD_INTERVAL_1_4: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1271 | ter_state->guard = p->guard_interval; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1272 | break; |
| 1273 | case GUARD_INTERVAL_AUTO: |
| 1274 | ter_state->guard = GUARD_INTERVAL_1_32; |
| 1275 | break; |
| 1276 | } |
| 1277 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1278 | switch (p->bandwidth_hz) { |
| 1279 | case 6000000: |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1280 | ter_state->bw = FE_TER_CHAN_BW_6M; |
| 1281 | break; |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1282 | case 7000000: |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1283 | ter_state->bw = FE_TER_CHAN_BW_7M; |
| 1284 | break; |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1285 | case 8000000: |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1286 | default: |
| 1287 | ter_state->bw = FE_TER_CHAN_BW_8M; |
| 1288 | } |
| 1289 | |
| 1290 | ter_state->hierarchy = FE_TER_HIER_NONE; |
| 1291 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1292 | switch (p->inversion) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1293 | case INVERSION_OFF: |
| 1294 | case INVERSION_ON: |
| 1295 | num_trials = 1; |
| 1296 | break; |
| 1297 | default: |
| 1298 | num_trials = 2; |
| 1299 | if (ter_state->first_lock) |
| 1300 | num_trials = 1; |
| 1301 | break; |
| 1302 | } |
| 1303 | |
| 1304 | ter_state->state = FE_TER_NOLOCK; |
| 1305 | index = 0; |
| 1306 | |
| 1307 | while (((index) < num_trials) && (ter_state->state != FE_TER_LOCKOK)) { |
| 1308 | if (!ter_state->first_lock) { |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1309 | if (p->inversion == INVERSION_AUTO) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1310 | ter_state->sense = SenseTrials[index]; |
| 1311 | |
| 1312 | } |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1313 | stv0367ter_algo(fe); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1314 | |
| 1315 | if ((ter_state->state == FE_TER_LOCKOK) && |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1316 | (p->inversion == INVERSION_AUTO) && |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1317 | (index == 1)) { |
| 1318 | /* invert spectrum sense */ |
| 1319 | SenseTrials[index] = SenseTrials[0]; |
| 1320 | SenseTrials[(index + 1) % 2] = (SenseTrials[1] + 1) % 2; |
| 1321 | } |
| 1322 | |
| 1323 | index++; |
| 1324 | } |
| 1325 | |
| 1326 | return 0; |
| 1327 | } |
| 1328 | |
| 1329 | static int stv0367ter_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks) |
| 1330 | { |
| 1331 | struct stv0367_state *state = fe->demodulator_priv; |
| 1332 | struct stv0367ter_state *ter_state = state->ter_state; |
| 1333 | u32 errs = 0; |
| 1334 | |
| 1335 | /*wait for counting completion*/ |
| 1336 | if (stv0367_readbits(state, F367TER_SFERRC_OLDVALUE) == 0) { |
| 1337 | errs = |
| 1338 | ((u32)stv0367_readbits(state, F367TER_ERR_CNT1) |
| 1339 | * (1 << 16)) |
| 1340 | + ((u32)stv0367_readbits(state, F367TER_ERR_CNT1_HI) |
| 1341 | * (1 << 8)) |
| 1342 | + ((u32)stv0367_readbits(state, F367TER_ERR_CNT1_LO)); |
| 1343 | ter_state->ucblocks = errs; |
| 1344 | } |
| 1345 | |
| 1346 | (*ucblocks) = ter_state->ucblocks; |
| 1347 | |
| 1348 | return 0; |
| 1349 | } |
| 1350 | |
Mauro Carvalho Chehab | 7e3e68b | 2016-02-04 12:58:30 -0200 | [diff] [blame] | 1351 | static int stv0367ter_get_frontend(struct dvb_frontend *fe, |
| 1352 | struct dtv_frontend_properties *p) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1353 | { |
| 1354 | struct stv0367_state *state = fe->demodulator_priv; |
| 1355 | struct stv0367ter_state *ter_state = state->ter_state; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1356 | enum stv0367_ter_mode mode; |
| 1357 | int constell = 0,/* snr = 0,*/ Data = 0; |
| 1358 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1359 | p->frequency = stv0367_get_tuner_freq(fe); |
| 1360 | if ((int)p->frequency < 0) |
| 1361 | p->frequency = -p->frequency; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1362 | |
| 1363 | constell = stv0367_readbits(state, F367TER_TPS_CONST); |
| 1364 | if (constell == 0) |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1365 | p->modulation = QPSK; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1366 | else if (constell == 1) |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1367 | p->modulation = QAM_16; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1368 | else |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1369 | p->modulation = QAM_64; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1370 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1371 | p->inversion = stv0367_readbits(state, F367TER_INV_SPECTR); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1372 | |
| 1373 | /* Get the Hierarchical mode */ |
| 1374 | Data = stv0367_readbits(state, F367TER_TPS_HIERMODE); |
| 1375 | |
| 1376 | switch (Data) { |
| 1377 | case 0: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1378 | p->hierarchy = HIERARCHY_NONE; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1379 | break; |
| 1380 | case 1: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1381 | p->hierarchy = HIERARCHY_1; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1382 | break; |
| 1383 | case 2: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1384 | p->hierarchy = HIERARCHY_2; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1385 | break; |
| 1386 | case 3: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1387 | p->hierarchy = HIERARCHY_4; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1388 | break; |
| 1389 | default: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1390 | p->hierarchy = HIERARCHY_AUTO; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1391 | break; /* error */ |
| 1392 | } |
| 1393 | |
| 1394 | /* Get the FEC Rate */ |
| 1395 | if (ter_state->hierarchy == FE_TER_HIER_LOW_PRIO) |
| 1396 | Data = stv0367_readbits(state, F367TER_TPS_LPCODE); |
| 1397 | else |
| 1398 | Data = stv0367_readbits(state, F367TER_TPS_HPCODE); |
| 1399 | |
| 1400 | switch (Data) { |
| 1401 | case 0: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1402 | p->code_rate_HP = FEC_1_2; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1403 | break; |
| 1404 | case 1: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1405 | p->code_rate_HP = FEC_2_3; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1406 | break; |
| 1407 | case 2: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1408 | p->code_rate_HP = FEC_3_4; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1409 | break; |
| 1410 | case 3: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1411 | p->code_rate_HP = FEC_5_6; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1412 | break; |
| 1413 | case 4: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1414 | p->code_rate_HP = FEC_7_8; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1415 | break; |
| 1416 | default: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1417 | p->code_rate_HP = FEC_AUTO; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1418 | break; /* error */ |
| 1419 | } |
| 1420 | |
| 1421 | mode = stv0367_readbits(state, F367TER_SYR_MODE); |
| 1422 | |
| 1423 | switch (mode) { |
| 1424 | case FE_TER_MODE_2K: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1425 | p->transmission_mode = TRANSMISSION_MODE_2K; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1426 | break; |
| 1427 | /* case FE_TER_MODE_4K: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1428 | p->transmission_mode = TRANSMISSION_MODE_4K; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1429 | break;*/ |
| 1430 | case FE_TER_MODE_8K: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1431 | p->transmission_mode = TRANSMISSION_MODE_8K; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1432 | break; |
| 1433 | default: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1434 | p->transmission_mode = TRANSMISSION_MODE_AUTO; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1435 | } |
| 1436 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1437 | p->guard_interval = stv0367_readbits(state, F367TER_SYR_GUARD); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1438 | |
Mauro Carvalho Chehab | 7c99507 | 2014-09-03 15:10:25 -0300 | [diff] [blame] | 1439 | return 0; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1440 | } |
| 1441 | |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 1442 | static u32 stv0367ter_snr_readreg(struct dvb_frontend *fe) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1443 | { |
| 1444 | struct stv0367_state *state = fe->demodulator_priv; |
| 1445 | u32 snru32 = 0; |
| 1446 | int cpt = 0; |
| 1447 | u8 cut = stv0367_readbits(state, F367TER_IDENTIFICATIONREG); |
| 1448 | |
| 1449 | while (cpt < 10) { |
| 1450 | usleep_range(2000, 3000); |
| 1451 | if (cut == 0x50) /*cut 1.0 cut 1.1*/ |
| 1452 | snru32 += stv0367_readbits(state, F367TER_CHCSNR) / 4; |
| 1453 | else /*cu2.0*/ |
| 1454 | snru32 += 125 * stv0367_readbits(state, F367TER_CHCSNR); |
| 1455 | |
| 1456 | cpt++; |
| 1457 | } |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1458 | snru32 /= 10;/*average on 10 values*/ |
| 1459 | |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 1460 | return snru32; |
| 1461 | } |
| 1462 | |
| 1463 | static int stv0367ter_read_snr(struct dvb_frontend *fe, u16 *snr) |
| 1464 | { |
| 1465 | u32 snrval = stv0367ter_snr_readreg(fe); |
| 1466 | |
| 1467 | *snr = snrval / 1000; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1468 | |
| 1469 | return 0; |
| 1470 | } |
| 1471 | |
| 1472 | #if 0 |
| 1473 | static int stv0367ter_status(struct dvb_frontend *fe) |
| 1474 | { |
| 1475 | |
| 1476 | struct stv0367_state *state = fe->demodulator_priv; |
| 1477 | struct stv0367ter_state *ter_state = state->ter_state; |
| 1478 | int locked = FALSE; |
| 1479 | |
| 1480 | locked = (stv0367_readbits(state, F367TER_LK)); |
| 1481 | if (!locked) |
| 1482 | ter_state->unlock_counter += 1; |
| 1483 | else |
| 1484 | ter_state->unlock_counter = 0; |
| 1485 | |
| 1486 | if (ter_state->unlock_counter > 2) { |
| 1487 | if (!stv0367_readbits(state, F367TER_TPS_LOCK) || |
| 1488 | (!stv0367_readbits(state, F367TER_LK))) { |
| 1489 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 0); |
| 1490 | usleep_range(2000, 3000); |
| 1491 | stv0367_writebits(state, F367TER_CORE_ACTIVE, 1); |
| 1492 | msleep(350); |
| 1493 | locked = (stv0367_readbits(state, F367TER_TPS_LOCK)) && |
| 1494 | (stv0367_readbits(state, F367TER_LK)); |
| 1495 | } |
| 1496 | |
| 1497 | } |
| 1498 | |
| 1499 | return locked; |
| 1500 | } |
| 1501 | #endif |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 1502 | static int stv0367ter_read_status(struct dvb_frontend *fe, |
| 1503 | enum fe_status *status) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1504 | { |
| 1505 | struct stv0367_state *state = fe->demodulator_priv; |
| 1506 | |
| 1507 | dprintk("%s:\n", __func__); |
| 1508 | |
| 1509 | *status = 0; |
| 1510 | |
| 1511 | if (stv0367_readbits(state, F367TER_LK)) { |
Mauro Carvalho Chehab | 430e29d | 2017-06-25 08:26:43 -0300 | [diff] [blame] | 1512 | *status = FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_VITERBI |
| 1513 | | FE_HAS_SYNC | FE_HAS_LOCK; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1514 | dprintk("%s: stv0367 has locked\n", __func__); |
| 1515 | } |
| 1516 | |
| 1517 | return 0; |
| 1518 | } |
| 1519 | |
| 1520 | static int stv0367ter_read_ber(struct dvb_frontend *fe, u32 *ber) |
| 1521 | { |
| 1522 | struct stv0367_state *state = fe->demodulator_priv; |
| 1523 | struct stv0367ter_state *ter_state = state->ter_state; |
| 1524 | u32 Errors = 0, tber = 0, temporary = 0; |
| 1525 | int abc = 0, def = 0; |
| 1526 | |
| 1527 | |
| 1528 | /*wait for counting completion*/ |
| 1529 | if (stv0367_readbits(state, F367TER_SFERRC_OLDVALUE) == 0) |
| 1530 | Errors = ((u32)stv0367_readbits(state, F367TER_SFEC_ERR_CNT) |
| 1531 | * (1 << 16)) |
| 1532 | + ((u32)stv0367_readbits(state, F367TER_SFEC_ERR_CNT_HI) |
| 1533 | * (1 << 8)) |
| 1534 | + ((u32)stv0367_readbits(state, |
| 1535 | F367TER_SFEC_ERR_CNT_LO)); |
| 1536 | /*measurement not completed, load previous value*/ |
| 1537 | else { |
| 1538 | tber = ter_state->pBER; |
| 1539 | return 0; |
| 1540 | } |
| 1541 | |
| 1542 | abc = stv0367_readbits(state, F367TER_SFEC_ERR_SOURCE); |
| 1543 | def = stv0367_readbits(state, F367TER_SFEC_NUM_EVENT); |
| 1544 | |
| 1545 | if (Errors == 0) { |
| 1546 | tber = 0; |
| 1547 | } else if (abc == 0x7) { |
| 1548 | if (Errors <= 4) { |
| 1549 | temporary = (Errors * 1000000000) / (8 * (1 << 14)); |
| 1550 | temporary = temporary; |
| 1551 | } else if (Errors <= 42) { |
| 1552 | temporary = (Errors * 100000000) / (8 * (1 << 14)); |
| 1553 | temporary = temporary * 10; |
| 1554 | } else if (Errors <= 429) { |
| 1555 | temporary = (Errors * 10000000) / (8 * (1 << 14)); |
| 1556 | temporary = temporary * 100; |
| 1557 | } else if (Errors <= 4294) { |
| 1558 | temporary = (Errors * 1000000) / (8 * (1 << 14)); |
| 1559 | temporary = temporary * 1000; |
| 1560 | } else if (Errors <= 42949) { |
| 1561 | temporary = (Errors * 100000) / (8 * (1 << 14)); |
| 1562 | temporary = temporary * 10000; |
| 1563 | } else if (Errors <= 429496) { |
| 1564 | temporary = (Errors * 10000) / (8 * (1 << 14)); |
| 1565 | temporary = temporary * 100000; |
| 1566 | } else { /*if (Errors<4294967) 2^22 max error*/ |
| 1567 | temporary = (Errors * 1000) / (8 * (1 << 14)); |
| 1568 | temporary = temporary * 100000; /* still to *10 */ |
| 1569 | } |
| 1570 | |
| 1571 | /* Byte error*/ |
| 1572 | if (def == 2) |
| 1573 | /*tber=Errors/(8*(1 <<14));*/ |
| 1574 | tber = temporary; |
| 1575 | else if (def == 3) |
| 1576 | /*tber=Errors/(8*(1 <<16));*/ |
| 1577 | tber = temporary / 4; |
| 1578 | else if (def == 4) |
| 1579 | /*tber=Errors/(8*(1 <<18));*/ |
| 1580 | tber = temporary / 16; |
| 1581 | else if (def == 5) |
| 1582 | /*tber=Errors/(8*(1 <<20));*/ |
| 1583 | tber = temporary / 64; |
| 1584 | else if (def == 6) |
| 1585 | /*tber=Errors/(8*(1 <<22));*/ |
| 1586 | tber = temporary / 256; |
| 1587 | else |
| 1588 | /* should not pass here*/ |
| 1589 | tber = 0; |
| 1590 | |
| 1591 | if ((Errors < 4294967) && (Errors > 429496)) |
| 1592 | tber *= 10; |
| 1593 | |
| 1594 | } |
| 1595 | |
| 1596 | /* save actual value */ |
| 1597 | ter_state->pBER = tber; |
| 1598 | |
| 1599 | (*ber) = tber; |
| 1600 | |
| 1601 | return 0; |
| 1602 | } |
| 1603 | #if 0 |
| 1604 | static u32 stv0367ter_get_per(struct stv0367_state *state) |
| 1605 | { |
| 1606 | struct stv0367ter_state *ter_state = state->ter_state; |
| 1607 | u32 Errors = 0, Per = 0, temporary = 0; |
| 1608 | int abc = 0, def = 0, cpt = 0; |
| 1609 | |
| 1610 | while (((stv0367_readbits(state, F367TER_SFERRC_OLDVALUE) == 1) && |
| 1611 | (cpt < 400)) || ((Errors == 0) && (cpt < 400))) { |
| 1612 | usleep_range(1000, 2000); |
| 1613 | Errors = ((u32)stv0367_readbits(state, F367TER_ERR_CNT1) |
| 1614 | * (1 << 16)) |
| 1615 | + ((u32)stv0367_readbits(state, F367TER_ERR_CNT1_HI) |
| 1616 | * (1 << 8)) |
| 1617 | + ((u32)stv0367_readbits(state, F367TER_ERR_CNT1_LO)); |
| 1618 | cpt++; |
| 1619 | } |
| 1620 | abc = stv0367_readbits(state, F367TER_ERR_SRC1); |
| 1621 | def = stv0367_readbits(state, F367TER_NUM_EVT1); |
| 1622 | |
| 1623 | if (Errors == 0) |
| 1624 | Per = 0; |
| 1625 | else if (abc == 0x9) { |
| 1626 | if (Errors <= 4) { |
| 1627 | temporary = (Errors * 1000000000) / (8 * (1 << 8)); |
| 1628 | temporary = temporary; |
| 1629 | } else if (Errors <= 42) { |
| 1630 | temporary = (Errors * 100000000) / (8 * (1 << 8)); |
| 1631 | temporary = temporary * 10; |
| 1632 | } else if (Errors <= 429) { |
| 1633 | temporary = (Errors * 10000000) / (8 * (1 << 8)); |
| 1634 | temporary = temporary * 100; |
| 1635 | } else if (Errors <= 4294) { |
| 1636 | temporary = (Errors * 1000000) / (8 * (1 << 8)); |
| 1637 | temporary = temporary * 1000; |
| 1638 | } else if (Errors <= 42949) { |
| 1639 | temporary = (Errors * 100000) / (8 * (1 << 8)); |
| 1640 | temporary = temporary * 10000; |
| 1641 | } else { /*if(Errors<=429496) 2^16 errors max*/ |
| 1642 | temporary = (Errors * 10000) / (8 * (1 << 8)); |
| 1643 | temporary = temporary * 100000; |
| 1644 | } |
| 1645 | |
| 1646 | /* pkt error*/ |
| 1647 | if (def == 2) |
| 1648 | /*Per=Errors/(1 << 8);*/ |
| 1649 | Per = temporary; |
| 1650 | else if (def == 3) |
| 1651 | /*Per=Errors/(1 << 10);*/ |
| 1652 | Per = temporary / 4; |
| 1653 | else if (def == 4) |
| 1654 | /*Per=Errors/(1 << 12);*/ |
| 1655 | Per = temporary / 16; |
| 1656 | else if (def == 5) |
| 1657 | /*Per=Errors/(1 << 14);*/ |
| 1658 | Per = temporary / 64; |
| 1659 | else if (def == 6) |
| 1660 | /*Per=Errors/(1 << 16);*/ |
| 1661 | Per = temporary / 256; |
| 1662 | else |
| 1663 | Per = 0; |
| 1664 | |
| 1665 | } |
| 1666 | /* save actual value */ |
| 1667 | ter_state->pPER = Per; |
| 1668 | |
| 1669 | return Per; |
| 1670 | } |
| 1671 | #endif |
| 1672 | static int stv0367_get_tune_settings(struct dvb_frontend *fe, |
| 1673 | struct dvb_frontend_tune_settings |
| 1674 | *fe_tune_settings) |
| 1675 | { |
| 1676 | fe_tune_settings->min_delay_ms = 1000; |
| 1677 | fe_tune_settings->step_size = 0; |
| 1678 | fe_tune_settings->max_drift = 0; |
| 1679 | |
| 1680 | return 0; |
| 1681 | } |
| 1682 | |
| 1683 | static void stv0367_release(struct dvb_frontend *fe) |
| 1684 | { |
| 1685 | struct stv0367_state *state = fe->demodulator_priv; |
| 1686 | |
| 1687 | kfree(state->ter_state); |
| 1688 | kfree(state->cab_state); |
| 1689 | kfree(state); |
| 1690 | } |
| 1691 | |
Max Kellermann | bd336e6 | 2016-08-09 18:32:21 -0300 | [diff] [blame] | 1692 | static const struct dvb_frontend_ops stv0367ter_ops = { |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1693 | .delsys = { SYS_DVBT }, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1694 | .info = { |
| 1695 | .name = "ST STV0367 DVB-T", |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1696 | .frequency_min = 47000000, |
| 1697 | .frequency_max = 862000000, |
| 1698 | .frequency_stepsize = 15625, |
| 1699 | .frequency_tolerance = 0, |
| 1700 | .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | |
| 1701 | FE_CAN_FEC_3_4 | FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | |
| 1702 | FE_CAN_FEC_AUTO | |
| 1703 | FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 | |
| 1704 | FE_CAN_QAM_128 | FE_CAN_QAM_256 | FE_CAN_QAM_AUTO | |
| 1705 | FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_RECOVER | |
| 1706 | FE_CAN_INVERSION_AUTO | |
| 1707 | FE_CAN_MUTE_TS |
| 1708 | }, |
| 1709 | .release = stv0367_release, |
| 1710 | .init = stv0367ter_init, |
| 1711 | .sleep = stv0367ter_sleep, |
| 1712 | .i2c_gate_ctrl = stv0367ter_gate_ctrl, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 1713 | .set_frontend = stv0367ter_set_frontend, |
| 1714 | .get_frontend = stv0367ter_get_frontend, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1715 | .get_tune_settings = stv0367_get_tune_settings, |
| 1716 | .read_status = stv0367ter_read_status, |
| 1717 | .read_ber = stv0367ter_read_ber,/* too slow */ |
| 1718 | /* .read_signal_strength = stv0367_read_signal_strength,*/ |
| 1719 | .read_snr = stv0367ter_read_snr, |
| 1720 | .read_ucblocks = stv0367ter_read_ucblocks, |
| 1721 | }; |
| 1722 | |
| 1723 | struct dvb_frontend *stv0367ter_attach(const struct stv0367_config *config, |
| 1724 | struct i2c_adapter *i2c) |
| 1725 | { |
| 1726 | struct stv0367_state *state = NULL; |
| 1727 | struct stv0367ter_state *ter_state = NULL; |
| 1728 | |
| 1729 | /* allocate memory for the internal state */ |
| 1730 | state = kzalloc(sizeof(struct stv0367_state), GFP_KERNEL); |
| 1731 | if (state == NULL) |
| 1732 | goto error; |
| 1733 | ter_state = kzalloc(sizeof(struct stv0367ter_state), GFP_KERNEL); |
| 1734 | if (ter_state == NULL) |
| 1735 | goto error; |
| 1736 | |
| 1737 | /* setup the state */ |
| 1738 | state->i2c = i2c; |
| 1739 | state->config = config; |
| 1740 | state->ter_state = ter_state; |
| 1741 | state->fe.ops = stv0367ter_ops; |
| 1742 | state->fe.demodulator_priv = state; |
| 1743 | state->chip_id = stv0367_readreg(state, 0xf000); |
| 1744 | |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 1745 | /* demod operation options */ |
| 1746 | state->use_i2c_gatectrl = 1; |
Daniel Scheller | 8881ceb | 2017-03-29 13:43:04 -0300 | [diff] [blame] | 1747 | state->deftabs = STV0367_DEFTAB_GENERIC; |
Daniel Scheller | 7718dcf | 2017-03-29 13:43:06 -0300 | [diff] [blame] | 1748 | state->reinit_on_setfrontend = 1; |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 1749 | state->auto_if_khz = 0; |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 1750 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1751 | dprintk("%s: chip_id = 0x%x\n", __func__, state->chip_id); |
| 1752 | |
| 1753 | /* check if the demod is there */ |
| 1754 | if ((state->chip_id != 0x50) && (state->chip_id != 0x60)) |
| 1755 | goto error; |
| 1756 | |
| 1757 | return &state->fe; |
| 1758 | |
| 1759 | error: |
| 1760 | kfree(ter_state); |
| 1761 | kfree(state); |
| 1762 | return NULL; |
| 1763 | } |
| 1764 | EXPORT_SYMBOL(stv0367ter_attach); |
| 1765 | |
| 1766 | static int stv0367cab_gate_ctrl(struct dvb_frontend *fe, int enable) |
| 1767 | { |
| 1768 | struct stv0367_state *state = fe->demodulator_priv; |
| 1769 | |
| 1770 | dprintk("%s:\n", __func__); |
| 1771 | |
| 1772 | stv0367_writebits(state, F367CAB_I2CT_ON, (enable > 0) ? 1 : 0); |
| 1773 | |
| 1774 | return 0; |
| 1775 | } |
| 1776 | |
| 1777 | static u32 stv0367cab_get_mclk(struct dvb_frontend *fe, u32 ExtClk_Hz) |
| 1778 | { |
| 1779 | struct stv0367_state *state = fe->demodulator_priv; |
| 1780 | u32 mclk_Hz = 0;/* master clock frequency (Hz) */ |
| 1781 | u32 M, N, P; |
| 1782 | |
| 1783 | |
| 1784 | if (stv0367_readbits(state, F367CAB_BYPASS_PLLXN) == 0) { |
| 1785 | N = (u32)stv0367_readbits(state, F367CAB_PLL_NDIV); |
| 1786 | if (N == 0) |
| 1787 | N = N + 1; |
| 1788 | |
| 1789 | M = (u32)stv0367_readbits(state, F367CAB_PLL_MDIV); |
| 1790 | if (M == 0) |
| 1791 | M = M + 1; |
| 1792 | |
| 1793 | P = (u32)stv0367_readbits(state, F367CAB_PLL_PDIV); |
| 1794 | |
| 1795 | if (P > 5) |
| 1796 | P = 5; |
| 1797 | |
| 1798 | mclk_Hz = ((ExtClk_Hz / 2) * N) / (M * (1 << P)); |
| 1799 | dprintk("stv0367cab_get_mclk BYPASS_PLLXN mclk_Hz=%d\n", |
| 1800 | mclk_Hz); |
| 1801 | } else |
| 1802 | mclk_Hz = ExtClk_Hz; |
| 1803 | |
| 1804 | dprintk("stv0367cab_get_mclk final mclk_Hz=%d\n", mclk_Hz); |
| 1805 | |
| 1806 | return mclk_Hz; |
| 1807 | } |
| 1808 | |
| 1809 | static u32 stv0367cab_get_adc_freq(struct dvb_frontend *fe, u32 ExtClk_Hz) |
| 1810 | { |
| 1811 | u32 ADCClk_Hz = ExtClk_Hz; |
| 1812 | |
| 1813 | ADCClk_Hz = stv0367cab_get_mclk(fe, ExtClk_Hz); |
| 1814 | |
| 1815 | return ADCClk_Hz; |
| 1816 | } |
| 1817 | |
Mauro Carvalho Chehab | 8c8ca1c | 2012-10-27 11:26:42 -0300 | [diff] [blame] | 1818 | static enum stv0367cab_mod stv0367cab_SetQamSize(struct stv0367_state *state, |
| 1819 | u32 SymbolRate, |
| 1820 | enum stv0367cab_mod QAMSize) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1821 | { |
| 1822 | /* Set QAM size */ |
| 1823 | stv0367_writebits(state, F367CAB_QAM_MODE, QAMSize); |
| 1824 | |
| 1825 | /* Set Registers settings specific to the QAM size */ |
| 1826 | switch (QAMSize) { |
| 1827 | case FE_CAB_MOD_QAM4: |
| 1828 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x00); |
| 1829 | break; |
| 1830 | case FE_CAB_MOD_QAM16: |
| 1831 | stv0367_writereg(state, R367CAB_AGC_PWR_REF_L, 0x64); |
| 1832 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x00); |
| 1833 | stv0367_writereg(state, R367CAB_FSM_STATE, 0x90); |
| 1834 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xc1); |
| 1835 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xa7); |
| 1836 | stv0367_writereg(state, R367CAB_EQU_CRL_LD_SEN, 0x95); |
| 1837 | stv0367_writereg(state, R367CAB_EQU_CRL_LIMITER, 0x40); |
| 1838 | stv0367_writereg(state, R367CAB_EQU_PNT_GAIN, 0x8a); |
| 1839 | break; |
| 1840 | case FE_CAB_MOD_QAM32: |
| 1841 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x00); |
| 1842 | stv0367_writereg(state, R367CAB_AGC_PWR_REF_L, 0x6e); |
| 1843 | stv0367_writereg(state, R367CAB_FSM_STATE, 0xb0); |
| 1844 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xc1); |
| 1845 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xb7); |
| 1846 | stv0367_writereg(state, R367CAB_EQU_CRL_LD_SEN, 0x9d); |
| 1847 | stv0367_writereg(state, R367CAB_EQU_CRL_LIMITER, 0x7f); |
| 1848 | stv0367_writereg(state, R367CAB_EQU_PNT_GAIN, 0xa7); |
| 1849 | break; |
| 1850 | case FE_CAB_MOD_QAM64: |
| 1851 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x82); |
| 1852 | stv0367_writereg(state, R367CAB_AGC_PWR_REF_L, 0x5a); |
Daniel Scheller | 8b39f07 | 2017-03-29 13:43:09 -0300 | [diff] [blame] | 1853 | if (SymbolRate > 4500000) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1854 | stv0367_writereg(state, R367CAB_FSM_STATE, 0xb0); |
| 1855 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xc1); |
| 1856 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xa5); |
Daniel Scheller | 8b39f07 | 2017-03-29 13:43:09 -0300 | [diff] [blame] | 1857 | } else if (SymbolRate > 2500000) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1858 | stv0367_writereg(state, R367CAB_FSM_STATE, 0xa0); |
| 1859 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xc1); |
| 1860 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xa6); |
| 1861 | } else { |
| 1862 | stv0367_writereg(state, R367CAB_FSM_STATE, 0xa0); |
| 1863 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xd1); |
| 1864 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xa7); |
| 1865 | } |
| 1866 | stv0367_writereg(state, R367CAB_EQU_CRL_LD_SEN, 0x95); |
| 1867 | stv0367_writereg(state, R367CAB_EQU_CRL_LIMITER, 0x40); |
| 1868 | stv0367_writereg(state, R367CAB_EQU_PNT_GAIN, 0x99); |
| 1869 | break; |
| 1870 | case FE_CAB_MOD_QAM128: |
| 1871 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x00); |
| 1872 | stv0367_writereg(state, R367CAB_AGC_PWR_REF_L, 0x76); |
| 1873 | stv0367_writereg(state, R367CAB_FSM_STATE, 0x90); |
| 1874 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xb1); |
Daniel Scheller | 8b39f07 | 2017-03-29 13:43:09 -0300 | [diff] [blame] | 1875 | if (SymbolRate > 4500000) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1876 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xa7); |
Daniel Scheller | 8b39f07 | 2017-03-29 13:43:09 -0300 | [diff] [blame] | 1877 | else if (SymbolRate > 2500000) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1878 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xa6); |
| 1879 | else |
| 1880 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0x97); |
| 1881 | |
| 1882 | stv0367_writereg(state, R367CAB_EQU_CRL_LD_SEN, 0x8e); |
| 1883 | stv0367_writereg(state, R367CAB_EQU_CRL_LIMITER, 0x7f); |
| 1884 | stv0367_writereg(state, R367CAB_EQU_PNT_GAIN, 0xa7); |
| 1885 | break; |
| 1886 | case FE_CAB_MOD_QAM256: |
| 1887 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x94); |
| 1888 | stv0367_writereg(state, R367CAB_AGC_PWR_REF_L, 0x5a); |
| 1889 | stv0367_writereg(state, R367CAB_FSM_STATE, 0xa0); |
Daniel Scheller | 8b39f07 | 2017-03-29 13:43:09 -0300 | [diff] [blame] | 1890 | if (SymbolRate > 4500000) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1891 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xc1); |
Daniel Scheller | 8b39f07 | 2017-03-29 13:43:09 -0300 | [diff] [blame] | 1892 | else if (SymbolRate > 2500000) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 1893 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xc1); |
| 1894 | else |
| 1895 | stv0367_writereg(state, R367CAB_EQU_CTR_LPF_GAIN, 0xd1); |
| 1896 | |
| 1897 | stv0367_writereg(state, R367CAB_EQU_CRL_LPF_GAIN, 0xa7); |
| 1898 | stv0367_writereg(state, R367CAB_EQU_CRL_LD_SEN, 0x85); |
| 1899 | stv0367_writereg(state, R367CAB_EQU_CRL_LIMITER, 0x40); |
| 1900 | stv0367_writereg(state, R367CAB_EQU_PNT_GAIN, 0xa7); |
| 1901 | break; |
| 1902 | case FE_CAB_MOD_QAM512: |
| 1903 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x00); |
| 1904 | break; |
| 1905 | case FE_CAB_MOD_QAM1024: |
| 1906 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_AGC_REF, 0x00); |
| 1907 | break; |
| 1908 | default: |
| 1909 | break; |
| 1910 | } |
| 1911 | |
| 1912 | return QAMSize; |
| 1913 | } |
| 1914 | |
| 1915 | static u32 stv0367cab_set_derot_freq(struct stv0367_state *state, |
| 1916 | u32 adc_hz, s32 derot_hz) |
| 1917 | { |
| 1918 | u32 sampled_if = 0; |
| 1919 | u32 adc_khz; |
| 1920 | |
| 1921 | adc_khz = adc_hz / 1000; |
| 1922 | |
| 1923 | dprintk("%s: adc_hz=%d derot_hz=%d\n", __func__, adc_hz, derot_hz); |
| 1924 | |
| 1925 | if (adc_khz != 0) { |
| 1926 | if (derot_hz < 1000000) |
| 1927 | derot_hz = adc_hz / 4; /* ZIF operation */ |
| 1928 | if (derot_hz > adc_hz) |
| 1929 | derot_hz = derot_hz - adc_hz; |
| 1930 | sampled_if = (u32)derot_hz / 1000; |
| 1931 | sampled_if *= 32768; |
| 1932 | sampled_if /= adc_khz; |
| 1933 | sampled_if *= 256; |
| 1934 | } |
| 1935 | |
| 1936 | if (sampled_if > 8388607) |
| 1937 | sampled_if = 8388607; |
| 1938 | |
| 1939 | dprintk("%s: sampled_if=0x%x\n", __func__, sampled_if); |
| 1940 | |
| 1941 | stv0367_writereg(state, R367CAB_MIX_NCO_LL, sampled_if); |
| 1942 | stv0367_writereg(state, R367CAB_MIX_NCO_HL, (sampled_if >> 8)); |
| 1943 | stv0367_writebits(state, F367CAB_MIX_NCO_INC_HH, (sampled_if >> 16)); |
| 1944 | |
| 1945 | return derot_hz; |
| 1946 | } |
| 1947 | |
| 1948 | static u32 stv0367cab_get_derot_freq(struct stv0367_state *state, u32 adc_hz) |
| 1949 | { |
| 1950 | u32 sampled_if; |
| 1951 | |
| 1952 | sampled_if = stv0367_readbits(state, F367CAB_MIX_NCO_INC_LL) + |
| 1953 | (stv0367_readbits(state, F367CAB_MIX_NCO_INC_HL) << 8) + |
| 1954 | (stv0367_readbits(state, F367CAB_MIX_NCO_INC_HH) << 16); |
| 1955 | |
| 1956 | sampled_if /= 256; |
| 1957 | sampled_if *= (adc_hz / 1000); |
| 1958 | sampled_if += 1; |
| 1959 | sampled_if /= 32768; |
| 1960 | |
| 1961 | return sampled_if; |
| 1962 | } |
| 1963 | |
| 1964 | static u32 stv0367cab_set_srate(struct stv0367_state *state, u32 adc_hz, |
| 1965 | u32 mclk_hz, u32 SymbolRate, |
| 1966 | enum stv0367cab_mod QAMSize) |
| 1967 | { |
| 1968 | u32 QamSizeCorr = 0; |
| 1969 | u32 u32_tmp = 0, u32_tmp1 = 0; |
| 1970 | u32 adp_khz; |
| 1971 | |
| 1972 | dprintk("%s:\n", __func__); |
| 1973 | |
| 1974 | /* Set Correction factor of SRC gain */ |
| 1975 | switch (QAMSize) { |
| 1976 | case FE_CAB_MOD_QAM4: |
| 1977 | QamSizeCorr = 1110; |
| 1978 | break; |
| 1979 | case FE_CAB_MOD_QAM16: |
| 1980 | QamSizeCorr = 1032; |
| 1981 | break; |
| 1982 | case FE_CAB_MOD_QAM32: |
| 1983 | QamSizeCorr = 954; |
| 1984 | break; |
| 1985 | case FE_CAB_MOD_QAM64: |
| 1986 | QamSizeCorr = 983; |
| 1987 | break; |
| 1988 | case FE_CAB_MOD_QAM128: |
| 1989 | QamSizeCorr = 957; |
| 1990 | break; |
| 1991 | case FE_CAB_MOD_QAM256: |
| 1992 | QamSizeCorr = 948; |
| 1993 | break; |
| 1994 | case FE_CAB_MOD_QAM512: |
| 1995 | QamSizeCorr = 0; |
| 1996 | break; |
| 1997 | case FE_CAB_MOD_QAM1024: |
| 1998 | QamSizeCorr = 944; |
| 1999 | break; |
| 2000 | default: |
| 2001 | break; |
| 2002 | } |
| 2003 | |
| 2004 | /* Transfer ratio calculation */ |
| 2005 | if (adc_hz != 0) { |
| 2006 | u32_tmp = 256 * SymbolRate; |
| 2007 | u32_tmp = u32_tmp / adc_hz; |
| 2008 | } |
| 2009 | stv0367_writereg(state, R367CAB_EQU_CRL_TFR, (u8)u32_tmp); |
| 2010 | |
| 2011 | /* Symbol rate and SRC gain calculation */ |
| 2012 | adp_khz = (mclk_hz >> 1) / 1000;/* TRL works at half the system clock */ |
| 2013 | if (adp_khz != 0) { |
| 2014 | u32_tmp = SymbolRate; |
| 2015 | u32_tmp1 = SymbolRate; |
| 2016 | |
| 2017 | if (u32_tmp < 2097152) { /* 2097152 = 2^21 */ |
| 2018 | /* Symbol rate calculation */ |
| 2019 | u32_tmp *= 2048; /* 2048 = 2^11 */ |
| 2020 | u32_tmp = u32_tmp / adp_khz; |
| 2021 | u32_tmp = u32_tmp * 16384; /* 16384 = 2^14 */ |
| 2022 | u32_tmp /= 125 ; /* 125 = 1000/2^3 */ |
| 2023 | u32_tmp = u32_tmp * 8; /* 8 = 2^3 */ |
| 2024 | |
| 2025 | /* SRC Gain Calculation */ |
| 2026 | u32_tmp1 *= 2048; /* *2*2^10 */ |
| 2027 | u32_tmp1 /= 439; /* *2/878 */ |
| 2028 | u32_tmp1 *= 256; /* *2^8 */ |
| 2029 | u32_tmp1 = u32_tmp1 / adp_khz; /* /(AdpClk in kHz) */ |
| 2030 | u32_tmp1 *= QamSizeCorr * 9; /* *1000*corr factor */ |
| 2031 | u32_tmp1 = u32_tmp1 / 10000000; |
| 2032 | |
| 2033 | } else if (u32_tmp < 4194304) { /* 4194304 = 2**22 */ |
| 2034 | /* Symbol rate calculation */ |
| 2035 | u32_tmp *= 1024 ; /* 1024 = 2**10 */ |
| 2036 | u32_tmp = u32_tmp / adp_khz; |
| 2037 | u32_tmp = u32_tmp * 16384; /* 16384 = 2**14 */ |
| 2038 | u32_tmp /= 125 ; /* 125 = 1000/2**3 */ |
| 2039 | u32_tmp = u32_tmp * 16; /* 16 = 2**4 */ |
| 2040 | |
| 2041 | /* SRC Gain Calculation */ |
| 2042 | u32_tmp1 *= 1024; /* *2*2^9 */ |
| 2043 | u32_tmp1 /= 439; /* *2/878 */ |
| 2044 | u32_tmp1 *= 256; /* *2^8 */ |
| 2045 | u32_tmp1 = u32_tmp1 / adp_khz; /* /(AdpClk in kHz)*/ |
| 2046 | u32_tmp1 *= QamSizeCorr * 9; /* *1000*corr factor */ |
| 2047 | u32_tmp1 = u32_tmp1 / 5000000; |
| 2048 | } else if (u32_tmp < 8388607) { /* 8388607 = 2**23 */ |
| 2049 | /* Symbol rate calculation */ |
| 2050 | u32_tmp *= 512 ; /* 512 = 2**9 */ |
| 2051 | u32_tmp = u32_tmp / adp_khz; |
| 2052 | u32_tmp = u32_tmp * 16384; /* 16384 = 2**14 */ |
| 2053 | u32_tmp /= 125 ; /* 125 = 1000/2**3 */ |
| 2054 | u32_tmp = u32_tmp * 32; /* 32 = 2**5 */ |
| 2055 | |
| 2056 | /* SRC Gain Calculation */ |
| 2057 | u32_tmp1 *= 512; /* *2*2^8 */ |
| 2058 | u32_tmp1 /= 439; /* *2/878 */ |
| 2059 | u32_tmp1 *= 256; /* *2^8 */ |
| 2060 | u32_tmp1 = u32_tmp1 / adp_khz; /* /(AdpClk in kHz) */ |
| 2061 | u32_tmp1 *= QamSizeCorr * 9; /* *1000*corr factor */ |
| 2062 | u32_tmp1 = u32_tmp1 / 2500000; |
| 2063 | } else { |
| 2064 | /* Symbol rate calculation */ |
| 2065 | u32_tmp *= 256 ; /* 256 = 2**8 */ |
| 2066 | u32_tmp = u32_tmp / adp_khz; |
| 2067 | u32_tmp = u32_tmp * 16384; /* 16384 = 2**13 */ |
| 2068 | u32_tmp /= 125 ; /* 125 = 1000/2**3 */ |
| 2069 | u32_tmp = u32_tmp * 64; /* 64 = 2**6 */ |
| 2070 | |
| 2071 | /* SRC Gain Calculation */ |
| 2072 | u32_tmp1 *= 256; /* 2*2^7 */ |
| 2073 | u32_tmp1 /= 439; /* *2/878 */ |
| 2074 | u32_tmp1 *= 256; /* *2^8 */ |
| 2075 | u32_tmp1 = u32_tmp1 / adp_khz; /* /(AdpClk in kHz) */ |
| 2076 | u32_tmp1 *= QamSizeCorr * 9; /* *1000*corr factor */ |
| 2077 | u32_tmp1 = u32_tmp1 / 1250000; |
| 2078 | } |
| 2079 | } |
| 2080 | #if 0 |
| 2081 | /* Filters' coefficients are calculated and written |
| 2082 | into registers only if the filters are enabled */ |
| 2083 | if (stv0367_readbits(state, F367CAB_ADJ_EN)) { |
| 2084 | stv0367cab_SetIirAdjacentcoefficient(state, mclk_hz, |
| 2085 | SymbolRate); |
| 2086 | /* AllPass filter must be enabled |
| 2087 | when the adjacents filter is used */ |
| 2088 | stv0367_writebits(state, F367CAB_ALLPASSFILT_EN, 1); |
| 2089 | stv0367cab_SetAllPasscoefficient(state, mclk_hz, SymbolRate); |
| 2090 | } else |
| 2091 | /* AllPass filter must be disabled |
| 2092 | when the adjacents filter is not used */ |
| 2093 | #endif |
| 2094 | stv0367_writebits(state, F367CAB_ALLPASSFILT_EN, 0); |
| 2095 | |
| 2096 | stv0367_writereg(state, R367CAB_SRC_NCO_LL, u32_tmp); |
| 2097 | stv0367_writereg(state, R367CAB_SRC_NCO_LH, (u32_tmp >> 8)); |
| 2098 | stv0367_writereg(state, R367CAB_SRC_NCO_HL, (u32_tmp >> 16)); |
| 2099 | stv0367_writereg(state, R367CAB_SRC_NCO_HH, (u32_tmp >> 24)); |
| 2100 | |
| 2101 | stv0367_writereg(state, R367CAB_IQDEM_GAIN_SRC_L, u32_tmp1 & 0x00ff); |
| 2102 | stv0367_writebits(state, F367CAB_GAIN_SRC_HI, (u32_tmp1 >> 8) & 0x00ff); |
| 2103 | |
| 2104 | return SymbolRate ; |
| 2105 | } |
| 2106 | |
| 2107 | static u32 stv0367cab_GetSymbolRate(struct stv0367_state *state, u32 mclk_hz) |
| 2108 | { |
| 2109 | u32 regsym; |
| 2110 | u32 adp_khz; |
| 2111 | |
| 2112 | regsym = stv0367_readreg(state, R367CAB_SRC_NCO_LL) + |
| 2113 | (stv0367_readreg(state, R367CAB_SRC_NCO_LH) << 8) + |
| 2114 | (stv0367_readreg(state, R367CAB_SRC_NCO_HL) << 16) + |
| 2115 | (stv0367_readreg(state, R367CAB_SRC_NCO_HH) << 24); |
| 2116 | |
| 2117 | adp_khz = (mclk_hz >> 1) / 1000;/* TRL works at half the system clock */ |
| 2118 | |
| 2119 | if (regsym < 134217728) { /* 134217728L = 2**27*/ |
| 2120 | regsym = regsym * 32; /* 32 = 2**5 */ |
| 2121 | regsym = regsym / 32768; /* 32768L = 2**15 */ |
| 2122 | regsym = adp_khz * regsym; /* AdpClk in kHz */ |
| 2123 | regsym = regsym / 128; /* 128 = 2**7 */ |
| 2124 | regsym *= 125 ; /* 125 = 1000/2**3 */ |
| 2125 | regsym /= 2048 ; /* 2048 = 2**11 */ |
| 2126 | } else if (regsym < 268435456) { /* 268435456L = 2**28 */ |
| 2127 | regsym = regsym * 16; /* 16 = 2**4 */ |
| 2128 | regsym = regsym / 32768; /* 32768L = 2**15 */ |
| 2129 | regsym = adp_khz * regsym; /* AdpClk in kHz */ |
| 2130 | regsym = regsym / 128; /* 128 = 2**7 */ |
| 2131 | regsym *= 125 ; /* 125 = 1000/2**3*/ |
| 2132 | regsym /= 1024 ; /* 256 = 2**10*/ |
| 2133 | } else if (regsym < 536870912) { /* 536870912L = 2**29*/ |
| 2134 | regsym = regsym * 8; /* 8 = 2**3 */ |
| 2135 | regsym = regsym / 32768; /* 32768L = 2**15 */ |
| 2136 | regsym = adp_khz * regsym; /* AdpClk in kHz */ |
| 2137 | regsym = regsym / 128; /* 128 = 2**7 */ |
| 2138 | regsym *= 125 ; /* 125 = 1000/2**3 */ |
| 2139 | regsym /= 512 ; /* 128 = 2**9 */ |
| 2140 | } else { |
| 2141 | regsym = regsym * 4; /* 4 = 2**2 */ |
| 2142 | regsym = regsym / 32768; /* 32768L = 2**15 */ |
| 2143 | regsym = adp_khz * regsym; /* AdpClk in kHz */ |
| 2144 | regsym = regsym / 128; /* 128 = 2**7 */ |
| 2145 | regsym *= 125 ; /* 125 = 1000/2**3 */ |
| 2146 | regsym /= 256 ; /* 64 = 2**8 */ |
| 2147 | } |
| 2148 | |
| 2149 | return regsym; |
| 2150 | } |
| 2151 | |
Daniel Scheller | d105d08 | 2017-07-14 17:23:36 -0400 | [diff] [blame] | 2152 | static u32 stv0367cab_fsm_status(struct stv0367_state *state) |
| 2153 | { |
| 2154 | return stv0367_readbits(state, F367CAB_FSM_STATUS); |
| 2155 | } |
| 2156 | |
| 2157 | static u32 stv0367cab_qamfec_lock(struct stv0367_state *state) |
| 2158 | { |
| 2159 | return stv0367_readbits(state, |
| 2160 | (state->cab_state->qamfec_status_reg ? |
| 2161 | state->cab_state->qamfec_status_reg : |
| 2162 | F367CAB_QAMFEC_LOCK)); |
| 2163 | } |
| 2164 | |
| 2165 | static |
| 2166 | enum stv0367_cab_signal_type stv0367cab_fsm_signaltype(u32 qam_fsm_status) |
| 2167 | { |
| 2168 | enum stv0367_cab_signal_type signaltype = FE_CAB_NOAGC; |
| 2169 | |
| 2170 | switch (qam_fsm_status) { |
| 2171 | case 1: |
| 2172 | signaltype = FE_CAB_NOAGC; |
| 2173 | break; |
| 2174 | case 2: |
| 2175 | signaltype = FE_CAB_NOTIMING; |
| 2176 | break; |
| 2177 | case 3: |
| 2178 | signaltype = FE_CAB_TIMINGOK; |
| 2179 | break; |
| 2180 | case 4: |
| 2181 | signaltype = FE_CAB_NOCARRIER; |
| 2182 | break; |
| 2183 | case 5: |
| 2184 | signaltype = FE_CAB_CARRIEROK; |
| 2185 | break; |
| 2186 | case 7: |
| 2187 | signaltype = FE_CAB_NOBLIND; |
| 2188 | break; |
| 2189 | case 8: |
| 2190 | signaltype = FE_CAB_BLINDOK; |
| 2191 | break; |
| 2192 | case 10: |
| 2193 | signaltype = FE_CAB_NODEMOD; |
| 2194 | break; |
| 2195 | case 11: |
| 2196 | signaltype = FE_CAB_DEMODOK; |
| 2197 | break; |
| 2198 | case 12: |
| 2199 | signaltype = FE_CAB_DEMODOK; |
| 2200 | break; |
| 2201 | case 13: |
| 2202 | signaltype = FE_CAB_NODEMOD; |
| 2203 | break; |
| 2204 | case 14: |
| 2205 | signaltype = FE_CAB_NOBLIND; |
| 2206 | break; |
| 2207 | case 15: |
| 2208 | signaltype = FE_CAB_NOSIGNAL; |
| 2209 | break; |
| 2210 | default: |
| 2211 | break; |
| 2212 | } |
| 2213 | |
| 2214 | return signaltype; |
| 2215 | } |
| 2216 | |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 2217 | static int stv0367cab_read_status(struct dvb_frontend *fe, |
| 2218 | enum fe_status *status) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2219 | { |
| 2220 | struct stv0367_state *state = fe->demodulator_priv; |
| 2221 | |
| 2222 | dprintk("%s:\n", __func__); |
| 2223 | |
| 2224 | *status = 0; |
| 2225 | |
Daniel Scheller | d105d08 | 2017-07-14 17:23:36 -0400 | [diff] [blame] | 2226 | /* update cab_state->state from QAM_FSM_STATUS */ |
| 2227 | state->cab_state->state = stv0367cab_fsm_signaltype( |
| 2228 | stv0367cab_fsm_status(state)); |
Mauro Carvalho Chehab | 430e29d | 2017-06-25 08:26:43 -0300 | [diff] [blame] | 2229 | |
Daniel Scheller | d105d08 | 2017-07-14 17:23:36 -0400 | [diff] [blame] | 2230 | if (stv0367cab_qamfec_lock(state)) { |
| 2231 | *status = FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_VITERBI |
| 2232 | | FE_HAS_SYNC | FE_HAS_LOCK; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2233 | dprintk("%s: stv0367 has locked\n", __func__); |
Daniel Scheller | d105d08 | 2017-07-14 17:23:36 -0400 | [diff] [blame] | 2234 | } else { |
| 2235 | if (state->cab_state->state > FE_CAB_NOSIGNAL) |
| 2236 | *status |= FE_HAS_SIGNAL; |
| 2237 | |
| 2238 | if (state->cab_state->state > FE_CAB_NOCARRIER) |
| 2239 | *status |= FE_HAS_CARRIER; |
| 2240 | |
| 2241 | if (state->cab_state->state >= FE_CAB_DEMODOK) |
| 2242 | *status |= FE_HAS_VITERBI; |
| 2243 | |
| 2244 | if (state->cab_state->state >= FE_CAB_DATAOK) |
| 2245 | *status |= FE_HAS_SYNC; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2246 | } |
| 2247 | |
| 2248 | return 0; |
| 2249 | } |
| 2250 | |
| 2251 | static int stv0367cab_standby(struct dvb_frontend *fe, u8 standby_on) |
| 2252 | { |
| 2253 | struct stv0367_state *state = fe->demodulator_priv; |
| 2254 | |
| 2255 | dprintk("%s:\n", __func__); |
| 2256 | |
| 2257 | if (standby_on) { |
| 2258 | stv0367_writebits(state, F367CAB_BYPASS_PLLXN, 0x03); |
| 2259 | stv0367_writebits(state, F367CAB_STDBY_PLLXN, 0x01); |
| 2260 | stv0367_writebits(state, F367CAB_STDBY, 1); |
| 2261 | stv0367_writebits(state, F367CAB_STDBY_CORE, 1); |
| 2262 | stv0367_writebits(state, F367CAB_EN_BUFFER_I, 0); |
| 2263 | stv0367_writebits(state, F367CAB_EN_BUFFER_Q, 0); |
| 2264 | stv0367_writebits(state, F367CAB_POFFQ, 1); |
| 2265 | stv0367_writebits(state, F367CAB_POFFI, 1); |
| 2266 | } else { |
| 2267 | stv0367_writebits(state, F367CAB_STDBY_PLLXN, 0x00); |
| 2268 | stv0367_writebits(state, F367CAB_BYPASS_PLLXN, 0x00); |
| 2269 | stv0367_writebits(state, F367CAB_STDBY, 0); |
| 2270 | stv0367_writebits(state, F367CAB_STDBY_CORE, 0); |
| 2271 | stv0367_writebits(state, F367CAB_EN_BUFFER_I, 1); |
| 2272 | stv0367_writebits(state, F367CAB_EN_BUFFER_Q, 1); |
| 2273 | stv0367_writebits(state, F367CAB_POFFQ, 0); |
| 2274 | stv0367_writebits(state, F367CAB_POFFI, 0); |
| 2275 | } |
| 2276 | |
| 2277 | return 0; |
| 2278 | } |
| 2279 | |
| 2280 | static int stv0367cab_sleep(struct dvb_frontend *fe) |
| 2281 | { |
| 2282 | return stv0367cab_standby(fe, 1); |
| 2283 | } |
| 2284 | |
Mauro Carvalho Chehab | 8c8ca1c | 2012-10-27 11:26:42 -0300 | [diff] [blame] | 2285 | static int stv0367cab_init(struct dvb_frontend *fe) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2286 | { |
| 2287 | struct stv0367_state *state = fe->demodulator_priv; |
| 2288 | struct stv0367cab_state *cab_state = state->cab_state; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2289 | |
| 2290 | dprintk("%s:\n", __func__); |
| 2291 | |
Daniel Scheller | 8881ceb | 2017-03-29 13:43:04 -0300 | [diff] [blame] | 2292 | stv0367_write_table(state, |
| 2293 | stv0367_deftabs[state->deftabs][STV0367_TAB_CAB]); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2294 | |
| 2295 | switch (state->config->ts_mode) { |
| 2296 | case STV0367_DVBCI_CLOCK: |
| 2297 | dprintk("Setting TSMode = STV0367_DVBCI_CLOCK\n"); |
| 2298 | stv0367_writebits(state, F367CAB_OUTFORMAT, 0x03); |
| 2299 | break; |
| 2300 | case STV0367_SERIAL_PUNCT_CLOCK: |
| 2301 | case STV0367_SERIAL_CONT_CLOCK: |
| 2302 | stv0367_writebits(state, F367CAB_OUTFORMAT, 0x01); |
| 2303 | break; |
| 2304 | case STV0367_PARALLEL_PUNCT_CLOCK: |
| 2305 | case STV0367_OUTPUTMODE_DEFAULT: |
| 2306 | stv0367_writebits(state, F367CAB_OUTFORMAT, 0x00); |
| 2307 | break; |
| 2308 | } |
| 2309 | |
| 2310 | switch (state->config->clk_pol) { |
| 2311 | case STV0367_RISINGEDGE_CLOCK: |
| 2312 | stv0367_writebits(state, F367CAB_CLK_POLARITY, 0x00); |
| 2313 | break; |
| 2314 | case STV0367_FALLINGEDGE_CLOCK: |
| 2315 | case STV0367_CLOCKPOLARITY_DEFAULT: |
| 2316 | stv0367_writebits(state, F367CAB_CLK_POLARITY, 0x01); |
| 2317 | break; |
| 2318 | } |
| 2319 | |
| 2320 | stv0367_writebits(state, F367CAB_SYNC_STRIP, 0x00); |
| 2321 | |
| 2322 | stv0367_writebits(state, F367CAB_CT_NBST, 0x01); |
| 2323 | |
| 2324 | stv0367_writebits(state, F367CAB_TS_SWAP, 0x01); |
| 2325 | |
| 2326 | stv0367_writebits(state, F367CAB_FIFO_BYPASS, 0x00); |
| 2327 | |
| 2328 | stv0367_writereg(state, R367CAB_ANACTRL, 0x00);/*PLL enabled and used */ |
| 2329 | |
| 2330 | cab_state->mclk = stv0367cab_get_mclk(fe, state->config->xtal); |
| 2331 | cab_state->adc_clk = stv0367cab_get_adc_freq(fe, state->config->xtal); |
| 2332 | |
| 2333 | return 0; |
| 2334 | } |
| 2335 | static |
| 2336 | enum stv0367_cab_signal_type stv0367cab_algo(struct stv0367_state *state, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2337 | struct dtv_frontend_properties *p) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2338 | { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2339 | struct stv0367cab_state *cab_state = state->cab_state; |
| 2340 | enum stv0367_cab_signal_type signalType = FE_CAB_NOAGC; |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2341 | u32 QAMFEC_Lock, QAM_Lock, u32_tmp, ifkhz, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2342 | LockTime, TRLTimeOut, AGCTimeOut, CRLSymbols, |
| 2343 | CRLTimeOut, EQLTimeOut, DemodTimeOut, FECTimeOut; |
| 2344 | u8 TrackAGCAccum; |
| 2345 | s32 tmp; |
| 2346 | |
| 2347 | dprintk("%s:\n", __func__); |
| 2348 | |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2349 | stv0367_get_if_khz(state, &ifkhz); |
| 2350 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2351 | /* Timeouts calculation */ |
| 2352 | /* A max lock time of 25 ms is allowed for delayed AGC */ |
| 2353 | AGCTimeOut = 25; |
| 2354 | /* 100000 symbols needed by the TRL as a maximum value */ |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2355 | TRLTimeOut = 100000000 / p->symbol_rate; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2356 | /* CRLSymbols is the needed number of symbols to achieve a lock |
| 2357 | within [-4%, +4%] of the symbol rate. |
| 2358 | CRL timeout is calculated |
| 2359 | for a lock within [-search_range, +search_range]. |
| 2360 | EQL timeout can be changed depending on |
| 2361 | the micro-reflections we want to handle. |
| 2362 | A characterization must be performed |
| 2363 | with these echoes to get new timeout values. |
| 2364 | */ |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2365 | switch (p->modulation) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2366 | case QAM_16: |
| 2367 | CRLSymbols = 150000; |
| 2368 | EQLTimeOut = 100; |
| 2369 | break; |
| 2370 | case QAM_32: |
| 2371 | CRLSymbols = 250000; |
| 2372 | EQLTimeOut = 100; |
| 2373 | break; |
| 2374 | case QAM_64: |
| 2375 | CRLSymbols = 200000; |
| 2376 | EQLTimeOut = 100; |
| 2377 | break; |
| 2378 | case QAM_128: |
| 2379 | CRLSymbols = 250000; |
| 2380 | EQLTimeOut = 100; |
| 2381 | break; |
| 2382 | case QAM_256: |
| 2383 | CRLSymbols = 250000; |
| 2384 | EQLTimeOut = 100; |
| 2385 | break; |
| 2386 | default: |
| 2387 | CRLSymbols = 200000; |
| 2388 | EQLTimeOut = 100; |
| 2389 | break; |
| 2390 | } |
| 2391 | #if 0 |
| 2392 | if (pIntParams->search_range < 0) { |
| 2393 | CRLTimeOut = (25 * CRLSymbols * |
| 2394 | (-pIntParams->search_range / 1000)) / |
| 2395 | (pIntParams->symbol_rate / 1000); |
| 2396 | } else |
| 2397 | #endif |
| 2398 | CRLTimeOut = (25 * CRLSymbols * (cab_state->search_range / 1000)) / |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2399 | (p->symbol_rate / 1000); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2400 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2401 | CRLTimeOut = (1000 * CRLTimeOut) / p->symbol_rate; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2402 | /* Timeouts below 50ms are coerced */ |
| 2403 | if (CRLTimeOut < 50) |
| 2404 | CRLTimeOut = 50; |
| 2405 | /* A maximum of 100 TS packets is needed to get FEC lock even in case |
| 2406 | the spectrum inversion needs to be changed. |
| 2407 | This is equal to 20 ms in case of the lowest symbol rate of 0.87Msps |
| 2408 | */ |
| 2409 | FECTimeOut = 20; |
| 2410 | DemodTimeOut = AGCTimeOut + TRLTimeOut + CRLTimeOut + EQLTimeOut; |
| 2411 | |
| 2412 | dprintk("%s: DemodTimeOut=%d\n", __func__, DemodTimeOut); |
| 2413 | |
| 2414 | /* Reset the TRL to ensure nothing starts until the |
| 2415 | AGC is stable which ensures a better lock time |
| 2416 | */ |
| 2417 | stv0367_writereg(state, R367CAB_CTRL_1, 0x04); |
| 2418 | /* Set AGC accumulation time to minimum and lock threshold to maximum |
| 2419 | in order to speed up the AGC lock */ |
| 2420 | TrackAGCAccum = stv0367_readbits(state, F367CAB_AGC_ACCUMRSTSEL); |
| 2421 | stv0367_writebits(state, F367CAB_AGC_ACCUMRSTSEL, 0x0); |
| 2422 | /* Modulus Mapper is disabled */ |
| 2423 | stv0367_writebits(state, F367CAB_MODULUSMAP_EN, 0); |
| 2424 | /* Disable the sweep function */ |
| 2425 | stv0367_writebits(state, F367CAB_SWEEP_EN, 0); |
| 2426 | /* The sweep function is never used, Sweep rate must be set to 0 */ |
| 2427 | /* Set the derotator frequency in Hz */ |
| 2428 | stv0367cab_set_derot_freq(state, cab_state->adc_clk, |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2429 | (1000 * (s32)ifkhz + cab_state->derot_offset)); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2430 | /* Disable the Allpass Filter when the symbol rate is out of range */ |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2431 | if ((p->symbol_rate > 10800000) | (p->symbol_rate < 1800000)) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2432 | stv0367_writebits(state, F367CAB_ADJ_EN, 0); |
| 2433 | stv0367_writebits(state, F367CAB_ALLPASSFILT_EN, 0); |
| 2434 | } |
| 2435 | #if 0 |
| 2436 | /* Check if the tuner is locked */ |
| 2437 | tuner_lock = stv0367cab_tuner_get_status(fe); |
| 2438 | if (tuner_lock == 0) |
| 2439 | return FE_367CAB_NOTUNER; |
| 2440 | #endif |
Geert Uytterhoeven | 83a35e3 | 2013-06-28 11:27:31 +0200 | [diff] [blame] | 2441 | /* Release the TRL to start demodulator acquisition */ |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2442 | /* Wait for QAM lock */ |
| 2443 | LockTime = 0; |
| 2444 | stv0367_writereg(state, R367CAB_CTRL_1, 0x00); |
| 2445 | do { |
Daniel Scheller | d105d08 | 2017-07-14 17:23:36 -0400 | [diff] [blame] | 2446 | QAM_Lock = stv0367cab_fsm_status(state); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2447 | if ((LockTime >= (DemodTimeOut - EQLTimeOut)) && |
| 2448 | (QAM_Lock == 0x04)) |
| 2449 | /* |
| 2450 | * We don't wait longer, the frequency/phase offset |
| 2451 | * must be too big |
| 2452 | */ |
| 2453 | LockTime = DemodTimeOut; |
| 2454 | else if ((LockTime >= (AGCTimeOut + TRLTimeOut)) && |
| 2455 | (QAM_Lock == 0x02)) |
| 2456 | /* |
| 2457 | * We don't wait longer, either there is no signal or |
| 2458 | * it is not the right symbol rate or it is an analog |
| 2459 | * carrier |
| 2460 | */ |
| 2461 | { |
| 2462 | LockTime = DemodTimeOut; |
| 2463 | u32_tmp = stv0367_readbits(state, |
| 2464 | F367CAB_AGC_PWR_WORD_LO) + |
| 2465 | (stv0367_readbits(state, |
| 2466 | F367CAB_AGC_PWR_WORD_ME) << 8) + |
| 2467 | (stv0367_readbits(state, |
| 2468 | F367CAB_AGC_PWR_WORD_HI) << 16); |
| 2469 | if (u32_tmp >= 131072) |
| 2470 | u32_tmp = 262144 - u32_tmp; |
| 2471 | u32_tmp = u32_tmp / (1 << (11 - stv0367_readbits(state, |
| 2472 | F367CAB_AGC_IF_BWSEL))); |
| 2473 | |
| 2474 | if (u32_tmp < stv0367_readbits(state, |
| 2475 | F367CAB_AGC_PWRREF_LO) + |
| 2476 | 256 * stv0367_readbits(state, |
| 2477 | F367CAB_AGC_PWRREF_HI) - 10) |
| 2478 | QAM_Lock = 0x0f; |
| 2479 | } else { |
| 2480 | usleep_range(10000, 20000); |
| 2481 | LockTime += 10; |
| 2482 | } |
| 2483 | dprintk("QAM_Lock=0x%x LockTime=%d\n", QAM_Lock, LockTime); |
| 2484 | tmp = stv0367_readreg(state, R367CAB_IT_STATUS1); |
| 2485 | |
| 2486 | dprintk("R367CAB_IT_STATUS1=0x%x\n", tmp); |
| 2487 | |
| 2488 | } while (((QAM_Lock != 0x0c) && (QAM_Lock != 0x0b)) && |
| 2489 | (LockTime < DemodTimeOut)); |
| 2490 | |
| 2491 | dprintk("QAM_Lock=0x%x\n", QAM_Lock); |
| 2492 | |
| 2493 | tmp = stv0367_readreg(state, R367CAB_IT_STATUS1); |
| 2494 | dprintk("R367CAB_IT_STATUS1=0x%x\n", tmp); |
| 2495 | tmp = stv0367_readreg(state, R367CAB_IT_STATUS2); |
| 2496 | dprintk("R367CAB_IT_STATUS2=0x%x\n", tmp); |
| 2497 | |
| 2498 | tmp = stv0367cab_get_derot_freq(state, cab_state->adc_clk); |
| 2499 | dprintk("stv0367cab_get_derot_freq=0x%x\n", tmp); |
| 2500 | |
| 2501 | if ((QAM_Lock == 0x0c) || (QAM_Lock == 0x0b)) { |
| 2502 | /* Wait for FEC lock */ |
| 2503 | LockTime = 0; |
| 2504 | do { |
| 2505 | usleep_range(5000, 7000); |
| 2506 | LockTime += 5; |
Daniel Scheller | d105d08 | 2017-07-14 17:23:36 -0400 | [diff] [blame] | 2507 | QAMFEC_Lock = stv0367cab_qamfec_lock(state); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2508 | } while (!QAMFEC_Lock && (LockTime < FECTimeOut)); |
| 2509 | } else |
| 2510 | QAMFEC_Lock = 0; |
| 2511 | |
| 2512 | if (QAMFEC_Lock) { |
| 2513 | signalType = FE_CAB_DATAOK; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2514 | cab_state->spect_inv = stv0367_readbits(state, |
| 2515 | F367CAB_QUAD_INV); |
| 2516 | #if 0 |
| 2517 | /* not clear for me */ |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2518 | if (ifkhz != 0) { |
| 2519 | if (ifkhz > cab_state->adc_clk / 1000) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2520 | cab_state->freq_khz = |
| 2521 | FE_Cab_TunerGetFrequency(pIntParams->hTuner) |
| 2522 | - stv0367cab_get_derot_freq(state, cab_state->adc_clk) |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2523 | - cab_state->adc_clk / 1000 + ifkhz; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2524 | } else { |
| 2525 | cab_state->freq_khz = |
| 2526 | FE_Cab_TunerGetFrequency(pIntParams->hTuner) |
| 2527 | - stv0367cab_get_derot_freq(state, cab_state->adc_clk) |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2528 | + ifkhz; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2529 | } |
| 2530 | } else { |
| 2531 | cab_state->freq_khz = |
| 2532 | FE_Cab_TunerGetFrequency(pIntParams->hTuner) + |
| 2533 | stv0367cab_get_derot_freq(state, |
| 2534 | cab_state->adc_clk) - |
| 2535 | cab_state->adc_clk / 4000; |
| 2536 | } |
| 2537 | #endif |
| 2538 | cab_state->symbol_rate = stv0367cab_GetSymbolRate(state, |
| 2539 | cab_state->mclk); |
| 2540 | cab_state->locked = 1; |
| 2541 | |
| 2542 | /* stv0367_setbits(state, F367CAB_AGC_ACCUMRSTSEL,7);*/ |
Daniel Scheller | d105d08 | 2017-07-14 17:23:36 -0400 | [diff] [blame] | 2543 | } else |
| 2544 | signalType = stv0367cab_fsm_signaltype(QAM_Lock); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2545 | |
| 2546 | /* Set the AGC control values to tracking values */ |
| 2547 | stv0367_writebits(state, F367CAB_AGC_ACCUMRSTSEL, TrackAGCAccum); |
| 2548 | return signalType; |
| 2549 | } |
| 2550 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2551 | static int stv0367cab_set_frontend(struct dvb_frontend *fe) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2552 | { |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2553 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2554 | struct stv0367_state *state = fe->demodulator_priv; |
| 2555 | struct stv0367cab_state *cab_state = state->cab_state; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2556 | enum stv0367cab_mod QAMSize = 0; |
| 2557 | |
| 2558 | dprintk("%s: freq = %d, srate = %d\n", __func__, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2559 | p->frequency, p->symbol_rate); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2560 | |
| 2561 | cab_state->derot_offset = 0; |
| 2562 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2563 | switch (p->modulation) { |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2564 | case QAM_16: |
| 2565 | QAMSize = FE_CAB_MOD_QAM16; |
| 2566 | break; |
| 2567 | case QAM_32: |
| 2568 | QAMSize = FE_CAB_MOD_QAM32; |
| 2569 | break; |
| 2570 | case QAM_64: |
| 2571 | QAMSize = FE_CAB_MOD_QAM64; |
| 2572 | break; |
| 2573 | case QAM_128: |
| 2574 | QAMSize = FE_CAB_MOD_QAM128; |
| 2575 | break; |
| 2576 | case QAM_256: |
| 2577 | QAMSize = FE_CAB_MOD_QAM256; |
| 2578 | break; |
| 2579 | default: |
| 2580 | break; |
| 2581 | } |
| 2582 | |
Daniel Scheller | 7718dcf | 2017-03-29 13:43:06 -0300 | [diff] [blame] | 2583 | if (state->reinit_on_setfrontend) |
| 2584 | stv0367cab_init(fe); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2585 | |
| 2586 | /* Tuner Frequency Setting */ |
| 2587 | if (fe->ops.tuner_ops.set_params) { |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 2588 | if (state->use_i2c_gatectrl && fe->ops.i2c_gate_ctrl) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2589 | fe->ops.i2c_gate_ctrl(fe, 1); |
Mauro Carvalho Chehab | 14d24d1 | 2011-12-24 12:24:33 -0300 | [diff] [blame] | 2590 | fe->ops.tuner_ops.set_params(fe); |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 2591 | if (state->use_i2c_gatectrl && fe->ops.i2c_gate_ctrl) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2592 | fe->ops.i2c_gate_ctrl(fe, 0); |
| 2593 | } |
| 2594 | |
| 2595 | stv0367cab_SetQamSize( |
| 2596 | state, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2597 | p->symbol_rate, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2598 | QAMSize); |
| 2599 | |
| 2600 | stv0367cab_set_srate(state, |
| 2601 | cab_state->adc_clk, |
| 2602 | cab_state->mclk, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2603 | p->symbol_rate, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2604 | QAMSize); |
| 2605 | /* Search algorithm launch, [-1.1*RangeOffset, +1.1*RangeOffset] scan */ |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2606 | cab_state->state = stv0367cab_algo(state, p); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2607 | return 0; |
| 2608 | } |
| 2609 | |
Mauro Carvalho Chehab | 7e3e68b | 2016-02-04 12:58:30 -0200 | [diff] [blame] | 2610 | static int stv0367cab_get_frontend(struct dvb_frontend *fe, |
| 2611 | struct dtv_frontend_properties *p) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2612 | { |
| 2613 | struct stv0367_state *state = fe->demodulator_priv; |
| 2614 | struct stv0367cab_state *cab_state = state->cab_state; |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2615 | u32 ifkhz = 0; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2616 | |
| 2617 | enum stv0367cab_mod QAMSize; |
| 2618 | |
| 2619 | dprintk("%s:\n", __func__); |
| 2620 | |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2621 | stv0367_get_if_khz(state, &ifkhz); |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2622 | p->symbol_rate = stv0367cab_GetSymbolRate(state, cab_state->mclk); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2623 | |
| 2624 | QAMSize = stv0367_readbits(state, F367CAB_QAM_MODE); |
| 2625 | switch (QAMSize) { |
| 2626 | case FE_CAB_MOD_QAM16: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2627 | p->modulation = QAM_16; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2628 | break; |
| 2629 | case FE_CAB_MOD_QAM32: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2630 | p->modulation = QAM_32; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2631 | break; |
| 2632 | case FE_CAB_MOD_QAM64: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2633 | p->modulation = QAM_64; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2634 | break; |
| 2635 | case FE_CAB_MOD_QAM128: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2636 | p->modulation = QAM_128; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2637 | break; |
Maks Naumov | eafeda9 | 2014-08-15 16:23:20 -0300 | [diff] [blame] | 2638 | case FE_CAB_MOD_QAM256: |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2639 | p->modulation = QAM_256; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2640 | break; |
| 2641 | default: |
| 2642 | break; |
| 2643 | } |
| 2644 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2645 | p->frequency = stv0367_get_tuner_freq(fe); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2646 | |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2647 | dprintk("%s: tuner frequency = %d\n", __func__, p->frequency); |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2648 | |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2649 | if (ifkhz == 0) { |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2650 | p->frequency += |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2651 | (stv0367cab_get_derot_freq(state, cab_state->adc_clk) - |
| 2652 | cab_state->adc_clk / 4000); |
| 2653 | return 0; |
| 2654 | } |
| 2655 | |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2656 | if (ifkhz > cab_state->adc_clk / 1000) |
| 2657 | p->frequency += (ifkhz |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2658 | - stv0367cab_get_derot_freq(state, cab_state->adc_clk) |
| 2659 | - cab_state->adc_clk / 1000); |
| 2660 | else |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2661 | p->frequency += (ifkhz |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2662 | - stv0367cab_get_derot_freq(state, cab_state->adc_clk)); |
| 2663 | |
| 2664 | return 0; |
| 2665 | } |
| 2666 | |
| 2667 | #if 0 |
| 2668 | void stv0367cab_GetErrorCount(state, enum stv0367cab_mod QAMSize, |
| 2669 | u32 symbol_rate, FE_367qam_Monitor *Monitor_results) |
| 2670 | { |
| 2671 | stv0367cab_OptimiseNByteAndGetBER(state, QAMSize, symbol_rate, Monitor_results); |
| 2672 | stv0367cab_GetPacketsCount(state, Monitor_results); |
| 2673 | |
| 2674 | return; |
| 2675 | } |
| 2676 | |
| 2677 | static int stv0367cab_read_ber(struct dvb_frontend *fe, u32 *ber) |
| 2678 | { |
| 2679 | struct stv0367_state *state = fe->demodulator_priv; |
| 2680 | |
| 2681 | return 0; |
| 2682 | } |
| 2683 | #endif |
| 2684 | static s32 stv0367cab_get_rf_lvl(struct stv0367_state *state) |
| 2685 | { |
| 2686 | s32 rfLevel = 0; |
| 2687 | s32 RfAgcPwm = 0, IfAgcPwm = 0; |
| 2688 | u8 i; |
| 2689 | |
| 2690 | stv0367_writebits(state, F367CAB_STDBY_ADCGP, 0x0); |
| 2691 | |
| 2692 | RfAgcPwm = |
| 2693 | (stv0367_readbits(state, F367CAB_RF_AGC1_LEVEL_LO) & 0x03) + |
| 2694 | (stv0367_readbits(state, F367CAB_RF_AGC1_LEVEL_HI) << 2); |
| 2695 | RfAgcPwm = 100 * RfAgcPwm / 1023; |
| 2696 | |
| 2697 | IfAgcPwm = |
| 2698 | stv0367_readbits(state, F367CAB_AGC_IF_PWMCMD_LO) + |
| 2699 | (stv0367_readbits(state, F367CAB_AGC_IF_PWMCMD_HI) << 8); |
| 2700 | if (IfAgcPwm >= 2048) |
| 2701 | IfAgcPwm -= 2048; |
| 2702 | else |
| 2703 | IfAgcPwm += 2048; |
| 2704 | |
| 2705 | IfAgcPwm = 100 * IfAgcPwm / 4095; |
| 2706 | |
| 2707 | /* For DTT75467 on NIM */ |
| 2708 | if (RfAgcPwm < 90 && IfAgcPwm < 28) { |
| 2709 | for (i = 0; i < RF_LOOKUP_TABLE_SIZE; i++) { |
| 2710 | if (RfAgcPwm <= stv0367cab_RF_LookUp1[0][i]) { |
| 2711 | rfLevel = (-1) * stv0367cab_RF_LookUp1[1][i]; |
| 2712 | break; |
| 2713 | } |
| 2714 | } |
| 2715 | if (i == RF_LOOKUP_TABLE_SIZE) |
| 2716 | rfLevel = -56; |
| 2717 | } else { /*if IF AGC>10*/ |
| 2718 | for (i = 0; i < RF_LOOKUP_TABLE2_SIZE; i++) { |
| 2719 | if (IfAgcPwm <= stv0367cab_RF_LookUp2[0][i]) { |
| 2720 | rfLevel = (-1) * stv0367cab_RF_LookUp2[1][i]; |
| 2721 | break; |
| 2722 | } |
| 2723 | } |
| 2724 | if (i == RF_LOOKUP_TABLE2_SIZE) |
| 2725 | rfLevel = -72; |
| 2726 | } |
| 2727 | return rfLevel; |
| 2728 | } |
| 2729 | |
| 2730 | static int stv0367cab_read_strength(struct dvb_frontend *fe, u16 *strength) |
| 2731 | { |
| 2732 | struct stv0367_state *state = fe->demodulator_priv; |
| 2733 | |
| 2734 | s32 signal = stv0367cab_get_rf_lvl(state); |
| 2735 | |
| 2736 | dprintk("%s: signal=%d dBm\n", __func__, signal); |
| 2737 | |
| 2738 | if (signal <= -72) |
| 2739 | *strength = 65535; |
| 2740 | else |
| 2741 | *strength = (22 + signal) * (-1311); |
| 2742 | |
| 2743 | dprintk("%s: strength=%d\n", __func__, (*strength)); |
| 2744 | |
| 2745 | return 0; |
| 2746 | } |
| 2747 | |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2748 | static int stv0367cab_snr_power(struct dvb_frontend *fe) |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2749 | { |
| 2750 | struct stv0367_state *state = fe->demodulator_priv; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2751 | enum stv0367cab_mod QAMSize; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2752 | |
| 2753 | QAMSize = stv0367_readbits(state, F367CAB_QAM_MODE); |
| 2754 | switch (QAMSize) { |
| 2755 | case FE_CAB_MOD_QAM4: |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2756 | return 21904; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2757 | case FE_CAB_MOD_QAM16: |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2758 | return 20480; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2759 | case FE_CAB_MOD_QAM32: |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2760 | return 23040; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2761 | case FE_CAB_MOD_QAM64: |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2762 | return 21504; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2763 | case FE_CAB_MOD_QAM128: |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2764 | return 23616; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2765 | case FE_CAB_MOD_QAM256: |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2766 | return 21760; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2767 | case FE_CAB_MOD_QAM1024: |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2768 | return 21280; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2769 | default: |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2770 | break; |
| 2771 | } |
| 2772 | |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2773 | return 1; |
| 2774 | } |
| 2775 | |
| 2776 | static int stv0367cab_snr_readreg(struct dvb_frontend *fe, int avgdiv) |
| 2777 | { |
| 2778 | struct stv0367_state *state = fe->demodulator_priv; |
| 2779 | u32 regval = 0; |
| 2780 | int i; |
| 2781 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2782 | for (i = 0; i < 10; i++) { |
| 2783 | regval += (stv0367_readbits(state, F367CAB_SNR_LO) |
| 2784 | + 256 * stv0367_readbits(state, F367CAB_SNR_HI)); |
| 2785 | } |
| 2786 | |
Daniel Scheller | b138afd | 2017-06-21 16:45:42 -0300 | [diff] [blame] | 2787 | if (avgdiv) |
| 2788 | regval /= 10; |
| 2789 | |
| 2790 | return regval; |
| 2791 | } |
| 2792 | |
| 2793 | static int stv0367cab_read_snr(struct dvb_frontend *fe, u16 *snr) |
| 2794 | { |
| 2795 | struct stv0367_state *state = fe->demodulator_priv; |
| 2796 | u32 noisepercentage; |
| 2797 | u32 regval = 0, temp = 0; |
| 2798 | int power; |
| 2799 | |
| 2800 | power = stv0367cab_snr_power(fe); |
| 2801 | regval = stv0367cab_snr_readreg(fe, 1); |
| 2802 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2803 | if (regval != 0) { |
| 2804 | temp = power |
| 2805 | * (1 << (3 + stv0367_readbits(state, F367CAB_SNR_PER))); |
| 2806 | temp /= regval; |
| 2807 | } |
| 2808 | |
| 2809 | /* table values, not needed to calculate logarithms */ |
| 2810 | if (temp >= 5012) |
| 2811 | noisepercentage = 100; |
| 2812 | else if (temp >= 3981) |
| 2813 | noisepercentage = 93; |
| 2814 | else if (temp >= 3162) |
| 2815 | noisepercentage = 86; |
| 2816 | else if (temp >= 2512) |
| 2817 | noisepercentage = 79; |
| 2818 | else if (temp >= 1995) |
| 2819 | noisepercentage = 72; |
| 2820 | else if (temp >= 1585) |
| 2821 | noisepercentage = 65; |
| 2822 | else if (temp >= 1259) |
| 2823 | noisepercentage = 58; |
| 2824 | else if (temp >= 1000) |
| 2825 | noisepercentage = 50; |
| 2826 | else if (temp >= 794) |
| 2827 | noisepercentage = 43; |
| 2828 | else if (temp >= 501) |
| 2829 | noisepercentage = 36; |
| 2830 | else if (temp >= 316) |
| 2831 | noisepercentage = 29; |
| 2832 | else if (temp >= 200) |
| 2833 | noisepercentage = 22; |
| 2834 | else if (temp >= 158) |
| 2835 | noisepercentage = 14; |
| 2836 | else if (temp >= 126) |
| 2837 | noisepercentage = 7; |
| 2838 | else |
| 2839 | noisepercentage = 0; |
| 2840 | |
| 2841 | dprintk("%s: noisepercentage=%d\n", __func__, noisepercentage); |
| 2842 | |
| 2843 | *snr = (noisepercentage * 65535) / 100; |
| 2844 | |
| 2845 | return 0; |
| 2846 | } |
| 2847 | |
Abylay Ospan | 78db66e | 2011-01-02 09:12:00 -0300 | [diff] [blame] | 2848 | static int stv0367cab_read_ucblcks(struct dvb_frontend *fe, u32 *ucblocks) |
| 2849 | { |
| 2850 | struct stv0367_state *state = fe->demodulator_priv; |
| 2851 | int corrected, tscount; |
| 2852 | |
| 2853 | *ucblocks = (stv0367_readreg(state, R367CAB_RS_COUNTER_5) << 8) |
| 2854 | | stv0367_readreg(state, R367CAB_RS_COUNTER_4); |
| 2855 | corrected = (stv0367_readreg(state, R367CAB_RS_COUNTER_3) << 8) |
| 2856 | | stv0367_readreg(state, R367CAB_RS_COUNTER_2); |
| 2857 | tscount = (stv0367_readreg(state, R367CAB_RS_COUNTER_2) << 8) |
| 2858 | | stv0367_readreg(state, R367CAB_RS_COUNTER_1); |
| 2859 | |
| 2860 | dprintk("%s: uncorrected blocks=%d corrected blocks=%d tscount=%d\n", |
| 2861 | __func__, *ucblocks, corrected, tscount); |
| 2862 | |
| 2863 | return 0; |
| 2864 | }; |
| 2865 | |
Max Kellermann | bd336e6 | 2016-08-09 18:32:21 -0300 | [diff] [blame] | 2866 | static const struct dvb_frontend_ops stv0367cab_ops = { |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2867 | .delsys = { SYS_DVBC_ANNEX_A }, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2868 | .info = { |
| 2869 | .name = "ST STV0367 DVB-C", |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2870 | .frequency_min = 47000000, |
| 2871 | .frequency_max = 862000000, |
| 2872 | .frequency_stepsize = 62500, |
| 2873 | .symbol_rate_min = 870000, |
| 2874 | .symbol_rate_max = 11700000, |
| 2875 | .caps = 0x400 |/* FE_CAN_QAM_4 */ |
| 2876 | FE_CAN_QAM_16 | FE_CAN_QAM_32 | |
| 2877 | FE_CAN_QAM_64 | FE_CAN_QAM_128 | |
| 2878 | FE_CAN_QAM_256 | FE_CAN_FEC_AUTO |
| 2879 | }, |
| 2880 | .release = stv0367_release, |
| 2881 | .init = stv0367cab_init, |
| 2882 | .sleep = stv0367cab_sleep, |
| 2883 | .i2c_gate_ctrl = stv0367cab_gate_ctrl, |
Mauro Carvalho Chehab | 285d55a | 2011-12-26 13:03:00 -0300 | [diff] [blame] | 2884 | .set_frontend = stv0367cab_set_frontend, |
| 2885 | .get_frontend = stv0367cab_get_frontend, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2886 | .read_status = stv0367cab_read_status, |
| 2887 | /* .read_ber = stv0367cab_read_ber, */ |
| 2888 | .read_signal_strength = stv0367cab_read_strength, |
| 2889 | .read_snr = stv0367cab_read_snr, |
Abylay Ospan | 78db66e | 2011-01-02 09:12:00 -0300 | [diff] [blame] | 2890 | .read_ucblocks = stv0367cab_read_ucblcks, |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2891 | .get_tune_settings = stv0367_get_tune_settings, |
| 2892 | }; |
| 2893 | |
| 2894 | struct dvb_frontend *stv0367cab_attach(const struct stv0367_config *config, |
| 2895 | struct i2c_adapter *i2c) |
| 2896 | { |
| 2897 | struct stv0367_state *state = NULL; |
| 2898 | struct stv0367cab_state *cab_state = NULL; |
| 2899 | |
| 2900 | /* allocate memory for the internal state */ |
| 2901 | state = kzalloc(sizeof(struct stv0367_state), GFP_KERNEL); |
| 2902 | if (state == NULL) |
| 2903 | goto error; |
| 2904 | cab_state = kzalloc(sizeof(struct stv0367cab_state), GFP_KERNEL); |
| 2905 | if (cab_state == NULL) |
| 2906 | goto error; |
| 2907 | |
| 2908 | /* setup the state */ |
| 2909 | state->i2c = i2c; |
| 2910 | state->config = config; |
| 2911 | cab_state->search_range = 280000; |
Daniel Scheller | cae7a90 | 2017-03-29 13:43:08 -0300 | [diff] [blame] | 2912 | cab_state->qamfec_status_reg = F367CAB_QAMFEC_LOCK; |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2913 | state->cab_state = cab_state; |
| 2914 | state->fe.ops = stv0367cab_ops; |
| 2915 | state->fe.demodulator_priv = state; |
| 2916 | state->chip_id = stv0367_readreg(state, 0xf000); |
| 2917 | |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 2918 | /* demod operation options */ |
| 2919 | state->use_i2c_gatectrl = 1; |
Daniel Scheller | 8881ceb | 2017-03-29 13:43:04 -0300 | [diff] [blame] | 2920 | state->deftabs = STV0367_DEFTAB_GENERIC; |
Daniel Scheller | 7718dcf | 2017-03-29 13:43:06 -0300 | [diff] [blame] | 2921 | state->reinit_on_setfrontend = 1; |
Daniel Scheller | b16338e | 2017-03-29 13:43:07 -0300 | [diff] [blame] | 2922 | state->auto_if_khz = 0; |
Daniel Scheller | f61c299 | 2017-03-29 13:43:01 -0300 | [diff] [blame] | 2923 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 2924 | dprintk("%s: chip_id = 0x%x\n", __func__, state->chip_id); |
| 2925 | |
| 2926 | /* check if the demod is there */ |
| 2927 | if ((state->chip_id != 0x50) && (state->chip_id != 0x60)) |
| 2928 | goto error; |
| 2929 | |
| 2930 | return &state->fe; |
| 2931 | |
| 2932 | error: |
| 2933 | kfree(cab_state); |
| 2934 | kfree(state); |
| 2935 | return NULL; |
| 2936 | } |
| 2937 | EXPORT_SYMBOL(stv0367cab_attach); |
| 2938 | |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 2939 | /* |
| 2940 | * Functions for operation on Digital Devices hardware |
| 2941 | */ |
| 2942 | |
| 2943 | static void stv0367ddb_setup_ter(struct stv0367_state *state) |
| 2944 | { |
| 2945 | stv0367_writereg(state, R367TER_DEBUG_LT4, 0x00); |
| 2946 | stv0367_writereg(state, R367TER_DEBUG_LT5, 0x00); |
| 2947 | stv0367_writereg(state, R367TER_DEBUG_LT6, 0x00); /* R367CAB_CTRL_1 */ |
| 2948 | stv0367_writereg(state, R367TER_DEBUG_LT7, 0x00); /* R367CAB_CTRL_2 */ |
| 2949 | stv0367_writereg(state, R367TER_DEBUG_LT8, 0x00); |
| 2950 | stv0367_writereg(state, R367TER_DEBUG_LT9, 0x00); |
| 2951 | |
| 2952 | /* Tuner Setup */ |
| 2953 | /* Buffer Q disabled, I Enabled, unsigned ADC */ |
| 2954 | stv0367_writereg(state, R367TER_ANADIGCTRL, 0x89); |
| 2955 | stv0367_writereg(state, R367TER_DUAL_AD12, 0x04); /* ADCQ disabled */ |
| 2956 | |
| 2957 | /* Clock setup */ |
| 2958 | /* PLL bypassed and disabled */ |
| 2959 | stv0367_writereg(state, R367TER_ANACTRL, 0x0D); |
| 2960 | stv0367_writereg(state, R367TER_TOPCTRL, 0x00); /* Set OFDM */ |
| 2961 | |
| 2962 | /* IC runs at 54 MHz with a 27 MHz crystal */ |
| 2963 | stv0367_pll_setup(state, STV0367_ICSPEED_53125, state->config->xtal); |
| 2964 | |
| 2965 | msleep(50); |
| 2966 | /* PLL enabled and used */ |
| 2967 | stv0367_writereg(state, R367TER_ANACTRL, 0x00); |
| 2968 | |
| 2969 | state->activedemod = demod_ter; |
| 2970 | } |
| 2971 | |
| 2972 | static void stv0367ddb_setup_cab(struct stv0367_state *state) |
| 2973 | { |
| 2974 | stv0367_writereg(state, R367TER_DEBUG_LT4, 0x00); |
| 2975 | stv0367_writereg(state, R367TER_DEBUG_LT5, 0x01); |
| 2976 | stv0367_writereg(state, R367TER_DEBUG_LT6, 0x06); /* R367CAB_CTRL_1 */ |
| 2977 | stv0367_writereg(state, R367TER_DEBUG_LT7, 0x03); /* R367CAB_CTRL_2 */ |
| 2978 | stv0367_writereg(state, R367TER_DEBUG_LT8, 0x00); |
| 2979 | stv0367_writereg(state, R367TER_DEBUG_LT9, 0x00); |
| 2980 | |
| 2981 | /* Tuner Setup */ |
| 2982 | /* Buffer Q disabled, I Enabled, signed ADC */ |
| 2983 | stv0367_writereg(state, R367TER_ANADIGCTRL, 0x8B); |
| 2984 | /* ADCQ disabled */ |
| 2985 | stv0367_writereg(state, R367TER_DUAL_AD12, 0x04); |
| 2986 | |
| 2987 | /* Clock setup */ |
| 2988 | /* PLL bypassed and disabled */ |
| 2989 | stv0367_writereg(state, R367TER_ANACTRL, 0x0D); |
| 2990 | /* Set QAM */ |
| 2991 | stv0367_writereg(state, R367TER_TOPCTRL, 0x10); |
| 2992 | |
| 2993 | /* IC runs at 58 MHz with a 27 MHz crystal */ |
| 2994 | stv0367_pll_setup(state, STV0367_ICSPEED_58000, state->config->xtal); |
| 2995 | |
| 2996 | msleep(50); |
| 2997 | /* PLL enabled and used */ |
| 2998 | stv0367_writereg(state, R367TER_ANACTRL, 0x00); |
| 2999 | |
| 3000 | state->cab_state->mclk = stv0367cab_get_mclk(&state->fe, |
| 3001 | state->config->xtal); |
| 3002 | state->cab_state->adc_clk = stv0367cab_get_adc_freq(&state->fe, |
| 3003 | state->config->xtal); |
| 3004 | |
| 3005 | state->activedemod = demod_cab; |
| 3006 | } |
| 3007 | |
| 3008 | static int stv0367ddb_set_frontend(struct dvb_frontend *fe) |
| 3009 | { |
| 3010 | struct stv0367_state *state = fe->demodulator_priv; |
| 3011 | |
| 3012 | switch (fe->dtv_property_cache.delivery_system) { |
| 3013 | case SYS_DVBT: |
| 3014 | if (state->activedemod != demod_ter) |
| 3015 | stv0367ddb_setup_ter(state); |
| 3016 | |
| 3017 | return stv0367ter_set_frontend(fe); |
| 3018 | case SYS_DVBC_ANNEX_A: |
| 3019 | if (state->activedemod != demod_cab) |
| 3020 | stv0367ddb_setup_cab(state); |
| 3021 | |
| 3022 | /* protect against division error oopses */ |
| 3023 | if (fe->dtv_property_cache.symbol_rate == 0) { |
| 3024 | printk(KERN_ERR "Invalid symbol rate\n"); |
| 3025 | return -EINVAL; |
| 3026 | } |
| 3027 | |
| 3028 | return stv0367cab_set_frontend(fe); |
| 3029 | default: |
| 3030 | break; |
| 3031 | } |
| 3032 | |
| 3033 | return -EINVAL; |
| 3034 | } |
| 3035 | |
Daniel Scheller | 006fe8e | 2017-06-25 08:26:45 -0300 | [diff] [blame] | 3036 | static void stv0367ddb_read_signal_strength(struct dvb_frontend *fe) |
| 3037 | { |
| 3038 | struct stv0367_state *state = fe->demodulator_priv; |
| 3039 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
| 3040 | s32 signalstrength; |
| 3041 | |
| 3042 | switch (state->activedemod) { |
| 3043 | case demod_cab: |
| 3044 | signalstrength = stv0367cab_get_rf_lvl(state) * 1000; |
| 3045 | break; |
| 3046 | default: |
| 3047 | p->strength.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
| 3048 | return; |
| 3049 | } |
| 3050 | |
| 3051 | p->strength.stat[0].scale = FE_SCALE_DECIBEL; |
| 3052 | p->strength.stat[0].uvalue = signalstrength; |
| 3053 | } |
| 3054 | |
Daniel Scheller | d394ad1 | 2017-06-25 08:26:44 -0300 | [diff] [blame] | 3055 | static void stv0367ddb_read_snr(struct dvb_frontend *fe) |
| 3056 | { |
| 3057 | struct stv0367_state *state = fe->demodulator_priv; |
| 3058 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
| 3059 | int cab_pwr; |
| 3060 | u32 regval, tmpval, snrval = 0; |
| 3061 | |
| 3062 | switch (state->activedemod) { |
| 3063 | case demod_ter: |
| 3064 | snrval = stv0367ter_snr_readreg(fe); |
| 3065 | break; |
| 3066 | case demod_cab: |
| 3067 | cab_pwr = stv0367cab_snr_power(fe); |
| 3068 | regval = stv0367cab_snr_readreg(fe, 0); |
| 3069 | |
| 3070 | /* prevent division by zero */ |
Mauro Carvalho Chehab | f5a1ba8 | 2017-06-25 09:07:45 -0300 | [diff] [blame] | 3071 | if (!regval) { |
Daniel Scheller | d394ad1 | 2017-06-25 08:26:44 -0300 | [diff] [blame] | 3072 | snrval = 0; |
Mauro Carvalho Chehab | f5a1ba8 | 2017-06-25 09:07:45 -0300 | [diff] [blame] | 3073 | break; |
| 3074 | } |
Daniel Scheller | d394ad1 | 2017-06-25 08:26:44 -0300 | [diff] [blame] | 3075 | |
| 3076 | tmpval = (cab_pwr * 320) / regval; |
| 3077 | snrval = ((tmpval != 0) ? (intlog2(tmpval) / 5581) : 0); |
| 3078 | break; |
| 3079 | default: |
| 3080 | p->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
| 3081 | return; |
| 3082 | } |
| 3083 | |
| 3084 | p->cnr.stat[0].scale = FE_SCALE_DECIBEL; |
| 3085 | p->cnr.stat[0].uvalue = snrval; |
| 3086 | } |
| 3087 | |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3088 | static void stv0367ddb_read_ucblocks(struct dvb_frontend *fe) |
| 3089 | { |
| 3090 | struct stv0367_state *state = fe->demodulator_priv; |
| 3091 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
| 3092 | u32 ucblocks = 0; |
| 3093 | |
| 3094 | switch (state->activedemod) { |
| 3095 | case demod_ter: |
| 3096 | stv0367ter_read_ucblocks(fe, &ucblocks); |
| 3097 | break; |
| 3098 | case demod_cab: |
| 3099 | stv0367cab_read_ucblcks(fe, &ucblocks); |
| 3100 | break; |
| 3101 | default: |
| 3102 | p->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
| 3103 | return; |
| 3104 | } |
| 3105 | |
| 3106 | p->block_error.stat[0].scale = FE_SCALE_COUNTER; |
| 3107 | p->block_error.stat[0].uvalue = ucblocks; |
| 3108 | } |
| 3109 | |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3110 | static int stv0367ddb_read_status(struct dvb_frontend *fe, |
| 3111 | enum fe_status *status) |
| 3112 | { |
| 3113 | struct stv0367_state *state = fe->demodulator_priv; |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3114 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
Daniel Scheller | 3658ea3 | 2017-07-09 12:36:45 -0400 | [diff] [blame] | 3115 | int ret = 0; |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3116 | |
| 3117 | switch (state->activedemod) { |
| 3118 | case demod_ter: |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3119 | ret = stv0367ter_read_status(fe, status); |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3120 | break; |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3121 | case demod_cab: |
| 3122 | ret = stv0367cab_read_status(fe, status); |
| 3123 | break; |
| 3124 | default: |
Daniel Scheller | 3658ea3 | 2017-07-09 12:36:45 -0400 | [diff] [blame] | 3125 | break; |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3126 | } |
| 3127 | |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3128 | /* stop and report on *_read_status failure */ |
| 3129 | if (ret) |
| 3130 | return ret; |
| 3131 | |
Daniel Scheller | 006fe8e | 2017-06-25 08:26:45 -0300 | [diff] [blame] | 3132 | stv0367ddb_read_signal_strength(fe); |
| 3133 | |
Daniel Scheller | d394ad1 | 2017-06-25 08:26:44 -0300 | [diff] [blame] | 3134 | /* read carrier/noise when a carrier is detected */ |
| 3135 | if (*status & FE_HAS_CARRIER) |
| 3136 | stv0367ddb_read_snr(fe); |
| 3137 | else |
| 3138 | p->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
| 3139 | |
Daniel Scheller | 87b4671 | 2017-06-25 08:26:46 -0300 | [diff] [blame] | 3140 | /* read uncorrected blocks on FE_HAS_LOCK */ |
| 3141 | if (*status & FE_HAS_LOCK) |
| 3142 | stv0367ddb_read_ucblocks(fe); |
| 3143 | else |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3144 | p->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3145 | |
| 3146 | return 0; |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3147 | } |
| 3148 | |
| 3149 | static int stv0367ddb_get_frontend(struct dvb_frontend *fe, |
| 3150 | struct dtv_frontend_properties *p) |
| 3151 | { |
| 3152 | struct stv0367_state *state = fe->demodulator_priv; |
| 3153 | |
| 3154 | switch (state->activedemod) { |
| 3155 | case demod_ter: |
| 3156 | return stv0367ter_get_frontend(fe, p); |
| 3157 | case demod_cab: |
| 3158 | return stv0367cab_get_frontend(fe, p); |
| 3159 | default: |
| 3160 | break; |
| 3161 | } |
| 3162 | |
Daniel Scheller | 3658ea3 | 2017-07-09 12:36:45 -0400 | [diff] [blame] | 3163 | return 0; |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3164 | } |
| 3165 | |
| 3166 | static int stv0367ddb_sleep(struct dvb_frontend *fe) |
| 3167 | { |
| 3168 | struct stv0367_state *state = fe->demodulator_priv; |
| 3169 | |
| 3170 | switch (state->activedemod) { |
| 3171 | case demod_ter: |
| 3172 | state->activedemod = demod_none; |
| 3173 | return stv0367ter_sleep(fe); |
| 3174 | case demod_cab: |
| 3175 | state->activedemod = demod_none; |
| 3176 | return stv0367cab_sleep(fe); |
| 3177 | default: |
| 3178 | break; |
| 3179 | } |
| 3180 | |
| 3181 | return -EINVAL; |
| 3182 | } |
| 3183 | |
| 3184 | static int stv0367ddb_init(struct stv0367_state *state) |
| 3185 | { |
| 3186 | struct stv0367ter_state *ter_state = state->ter_state; |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3187 | struct dtv_frontend_properties *p = &state->fe.dtv_property_cache; |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3188 | |
| 3189 | stv0367_writereg(state, R367TER_TOPCTRL, 0x10); |
| 3190 | |
| 3191 | if (stv0367_deftabs[state->deftabs][STV0367_TAB_BASE]) |
| 3192 | stv0367_write_table(state, |
| 3193 | stv0367_deftabs[state->deftabs][STV0367_TAB_BASE]); |
| 3194 | |
| 3195 | stv0367_write_table(state, |
| 3196 | stv0367_deftabs[state->deftabs][STV0367_TAB_CAB]); |
| 3197 | |
| 3198 | stv0367_writereg(state, R367TER_TOPCTRL, 0x00); |
| 3199 | stv0367_write_table(state, |
| 3200 | stv0367_deftabs[state->deftabs][STV0367_TAB_TER]); |
| 3201 | |
| 3202 | stv0367_writereg(state, R367TER_GAIN_SRC1, 0x2A); |
| 3203 | stv0367_writereg(state, R367TER_GAIN_SRC2, 0xD6); |
| 3204 | stv0367_writereg(state, R367TER_INC_DEROT1, 0x55); |
| 3205 | stv0367_writereg(state, R367TER_INC_DEROT2, 0x55); |
| 3206 | stv0367_writereg(state, R367TER_TRL_CTL, 0x14); |
| 3207 | stv0367_writereg(state, R367TER_TRL_NOMRATE1, 0xAE); |
| 3208 | stv0367_writereg(state, R367TER_TRL_NOMRATE2, 0x56); |
| 3209 | stv0367_writereg(state, R367TER_FEPATH_CFG, 0x0); |
| 3210 | |
| 3211 | /* OFDM TS Setup */ |
| 3212 | |
| 3213 | stv0367_writereg(state, R367TER_TSCFGH, 0x70); |
| 3214 | stv0367_writereg(state, R367TER_TSCFGM, 0xC0); |
| 3215 | stv0367_writereg(state, R367TER_TSCFGL, 0x20); |
| 3216 | stv0367_writereg(state, R367TER_TSSPEED, 0x40); /* Fixed at 54 MHz */ |
| 3217 | |
| 3218 | stv0367_writereg(state, R367TER_TSCFGH, 0x71); |
| 3219 | stv0367_writereg(state, R367TER_TSCFGH, 0x70); |
| 3220 | |
| 3221 | stv0367_writereg(state, R367TER_TOPCTRL, 0x10); |
| 3222 | |
| 3223 | /* Also needed for QAM */ |
| 3224 | stv0367_writereg(state, R367TER_AGC12C, 0x01); /* AGC Pin setup */ |
| 3225 | |
| 3226 | stv0367_writereg(state, R367TER_AGCCTRL1, 0x8A); |
| 3227 | |
| 3228 | /* QAM TS setup, note exact format also depends on descrambler */ |
| 3229 | /* settings */ |
| 3230 | /* Inverted Clock, Swap, serial */ |
| 3231 | stv0367_writereg(state, R367CAB_OUTFORMAT_0, 0x85); |
| 3232 | |
| 3233 | /* Clock setup (PLL bypassed and disabled) */ |
| 3234 | stv0367_writereg(state, R367TER_ANACTRL, 0x0D); |
| 3235 | |
| 3236 | /* IC runs at 58 MHz with a 27 MHz crystal */ |
| 3237 | stv0367_pll_setup(state, STV0367_ICSPEED_58000, state->config->xtal); |
| 3238 | |
| 3239 | /* Tuner setup */ |
| 3240 | /* Buffer Q disabled, I Enabled, signed ADC */ |
| 3241 | stv0367_writereg(state, R367TER_ANADIGCTRL, 0x8b); |
| 3242 | stv0367_writereg(state, R367TER_DUAL_AD12, 0x04); /* ADCQ disabled */ |
| 3243 | |
| 3244 | /* Improves the C/N lock limit */ |
| 3245 | stv0367_writereg(state, R367CAB_FSM_SNR2_HTH, 0x23); |
| 3246 | /* ZIF/IF Automatic mode */ |
| 3247 | stv0367_writereg(state, R367CAB_IQ_QAM, 0x01); |
| 3248 | /* Improving burst noise performances */ |
| 3249 | stv0367_writereg(state, R367CAB_EQU_FFE_LEAKAGE, 0x83); |
| 3250 | /* Improving ACI performances */ |
| 3251 | stv0367_writereg(state, R367CAB_IQDEM_ADJ_EN, 0x05); |
| 3252 | |
| 3253 | /* PLL enabled and used */ |
| 3254 | stv0367_writereg(state, R367TER_ANACTRL, 0x00); |
| 3255 | |
| 3256 | stv0367_writereg(state, R367TER_I2CRPT, (0x08 | ((5 & 0x07) << 4))); |
| 3257 | |
| 3258 | ter_state->pBER = 0; |
| 3259 | ter_state->first_lock = 0; |
| 3260 | ter_state->unlock_counter = 2; |
| 3261 | |
Daniel Scheller | 4043eb2 | 2017-06-21 16:45:41 -0300 | [diff] [blame] | 3262 | p->strength.len = 1; |
| 3263 | p->strength.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
| 3264 | p->cnr.len = 1; |
| 3265 | p->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
| 3266 | p->block_error.len = 1; |
| 3267 | p->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE; |
| 3268 | |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3269 | return 0; |
| 3270 | } |
| 3271 | |
| 3272 | static const struct dvb_frontend_ops stv0367ddb_ops = { |
| 3273 | .delsys = { SYS_DVBC_ANNEX_A, SYS_DVBT }, |
| 3274 | .info = { |
| 3275 | .name = "ST STV0367 DDB DVB-C/T", |
| 3276 | .frequency_min = 47000000, |
| 3277 | .frequency_max = 865000000, |
| 3278 | .frequency_stepsize = 166667, |
| 3279 | .frequency_tolerance = 0, |
| 3280 | .symbol_rate_min = 870000, |
| 3281 | .symbol_rate_max = 11700000, |
| 3282 | .caps = /* DVB-C */ |
| 3283 | 0x400 |/* FE_CAN_QAM_4 */ |
| 3284 | FE_CAN_QAM_16 | FE_CAN_QAM_32 | |
| 3285 | FE_CAN_QAM_64 | FE_CAN_QAM_128 | |
Daniel Scheller | c672152 | 2017-08-14 13:39:37 -0400 | [diff] [blame] | 3286 | FE_CAN_QAM_256 | |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3287 | /* DVB-T */ |
Daniel Scheller | f9c1e25 | 2017-06-21 17:10:54 -0300 | [diff] [blame] | 3288 | FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 | |
| 3289 | FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO | |
| 3290 | FE_CAN_QPSK | FE_CAN_TRANSMISSION_MODE_AUTO | |
| 3291 | FE_CAN_RECOVER | FE_CAN_INVERSION_AUTO | |
Daniel Scheller | dbbac11 | 2017-03-29 13:43:11 -0300 | [diff] [blame] | 3292 | FE_CAN_MUTE_TS |
| 3293 | }, |
| 3294 | .release = stv0367_release, |
| 3295 | .sleep = stv0367ddb_sleep, |
| 3296 | .i2c_gate_ctrl = stv0367cab_gate_ctrl, /* valid for TER and CAB */ |
| 3297 | .set_frontend = stv0367ddb_set_frontend, |
| 3298 | .get_frontend = stv0367ddb_get_frontend, |
| 3299 | .get_tune_settings = stv0367_get_tune_settings, |
| 3300 | .read_status = stv0367ddb_read_status, |
| 3301 | }; |
| 3302 | |
| 3303 | struct dvb_frontend *stv0367ddb_attach(const struct stv0367_config *config, |
| 3304 | struct i2c_adapter *i2c) |
| 3305 | { |
| 3306 | struct stv0367_state *state = NULL; |
| 3307 | struct stv0367ter_state *ter_state = NULL; |
| 3308 | struct stv0367cab_state *cab_state = NULL; |
| 3309 | |
| 3310 | /* allocate memory for the internal state */ |
| 3311 | state = kzalloc(sizeof(struct stv0367_state), GFP_KERNEL); |
| 3312 | if (state == NULL) |
| 3313 | goto error; |
| 3314 | ter_state = kzalloc(sizeof(struct stv0367ter_state), GFP_KERNEL); |
| 3315 | if (ter_state == NULL) |
| 3316 | goto error; |
| 3317 | cab_state = kzalloc(sizeof(struct stv0367cab_state), GFP_KERNEL); |
| 3318 | if (cab_state == NULL) |
| 3319 | goto error; |
| 3320 | |
| 3321 | /* setup the state */ |
| 3322 | state->i2c = i2c; |
| 3323 | state->config = config; |
| 3324 | state->ter_state = ter_state; |
| 3325 | cab_state->search_range = 280000; |
| 3326 | cab_state->qamfec_status_reg = F367CAB_DESCR_SYNCSTATE; |
| 3327 | state->cab_state = cab_state; |
| 3328 | state->fe.ops = stv0367ddb_ops; |
| 3329 | state->fe.demodulator_priv = state; |
| 3330 | state->chip_id = stv0367_readreg(state, R367TER_ID); |
| 3331 | |
| 3332 | /* demod operation options */ |
| 3333 | state->use_i2c_gatectrl = 0; |
| 3334 | state->deftabs = STV0367_DEFTAB_DDB; |
| 3335 | state->reinit_on_setfrontend = 0; |
| 3336 | state->auto_if_khz = 1; |
| 3337 | state->activedemod = demod_none; |
| 3338 | |
| 3339 | dprintk("%s: chip_id = 0x%x\n", __func__, state->chip_id); |
| 3340 | |
| 3341 | /* check if the demod is there */ |
| 3342 | if ((state->chip_id != 0x50) && (state->chip_id != 0x60)) |
| 3343 | goto error; |
| 3344 | |
| 3345 | dev_info(&i2c->dev, "Found %s with ChipID %02X at adr %02X\n", |
| 3346 | state->fe.ops.info.name, state->chip_id, |
| 3347 | config->demod_address); |
| 3348 | |
| 3349 | stv0367ddb_init(state); |
| 3350 | |
| 3351 | return &state->fe; |
| 3352 | |
| 3353 | error: |
| 3354 | kfree(cab_state); |
| 3355 | kfree(ter_state); |
| 3356 | kfree(state); |
| 3357 | return NULL; |
| 3358 | } |
| 3359 | EXPORT_SYMBOL(stv0367ddb_attach); |
| 3360 | |
Igor M. Liplianin | 17cce93 | 2011-01-25 17:02:00 -0300 | [diff] [blame] | 3361 | MODULE_PARM_DESC(debug, "Set debug"); |
| 3362 | MODULE_PARM_DESC(i2c_debug, "Set i2c debug"); |
| 3363 | |
| 3364 | MODULE_AUTHOR("Igor M. Liplianin"); |
| 3365 | MODULE_DESCRIPTION("ST STV0367 DVB-C/T demodulator driver"); |
| 3366 | MODULE_LICENSE("GPL"); |