Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 1 | /* |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 2 | * Support for LGDT3302 and LGDT3303 - VSB/QAM |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> |
| 5 | * |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | /* |
| 19 | * NOTES ABOUT THIS DRIVER |
| 20 | * |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 21 | * This Linux driver supports: |
| 22 | * DViCO FusionHDTV 3 Gold-Q |
| 23 | * DViCO FusionHDTV 3 Gold-T |
| 24 | * DViCO FusionHDTV 5 Gold |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 25 | * DViCO FusionHDTV 5 Lite |
Michael Krufky | d8e6acf | 2006-01-09 15:32:42 -0200 | [diff] [blame] | 26 | * DViCO FusionHDTV 5 USB Gold |
Michael Krufky | c0b11b9 | 2005-11-08 21:35:32 -0800 | [diff] [blame] | 27 | * Air2PC/AirStar 2 ATSC 3rd generation (HD5000) |
Michael Krufky | 20fe4f65 | 2006-04-10 09:40:40 -0300 | [diff] [blame] | 28 | * pcHDTV HD5500 |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 29 | * |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 30 | */ |
| 31 | |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 32 | #include <linux/kernel.h> |
| 33 | #include <linux/module.h> |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 34 | #include <linux/init.h> |
| 35 | #include <linux/delay.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 36 | #include <linux/string.h> |
| 37 | #include <linux/slab.h> |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 38 | #include <asm/byteorder.h> |
| 39 | |
| 40 | #include "dvb_frontend.h" |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 41 | #include "dvb_math.h" |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 42 | #include "lgdt330x_priv.h" |
| 43 | #include "lgdt330x.h" |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 44 | |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 45 | /* Use Equalizer Mean Squared Error instead of Phaser Tracker MSE */ |
| 46 | /* #define USE_EQMSE */ |
| 47 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 48 | static int debug; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 49 | module_param(debug, int, 0644); |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 50 | MODULE_PARM_DESC(debug,"Turn on/off lgdt330x frontend debugging (default:off)."); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 51 | #define dprintk(args...) \ |
| 52 | do { \ |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 53 | if (debug) printk(KERN_DEBUG "lgdt330x: " args); \ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 54 | } while (0) |
| 55 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 56 | struct lgdt330x_state |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 57 | { |
| 58 | struct i2c_adapter* i2c; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 59 | |
| 60 | /* Configuration settings */ |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 61 | const struct lgdt330x_config* config; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 62 | |
| 63 | struct dvb_frontend frontend; |
| 64 | |
| 65 | /* Demodulator private data */ |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 66 | enum fe_modulation current_modulation; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 67 | u32 snr; /* Result of last SNR calculation */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 68 | |
| 69 | /* Tuner private data */ |
| 70 | u32 current_frequency; |
| 71 | }; |
| 72 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 73 | static int i2c_write_demod_bytes (struct lgdt330x_state* state, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 74 | u8 *buf, /* data bytes to send */ |
| 75 | int len /* number of bytes to send */ ) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 76 | { |
Michael Krufky | b6aef07 | 2005-07-27 11:45:54 -0700 | [diff] [blame] | 77 | struct i2c_msg msg = |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 78 | { .addr = state->config->demod_address, |
| 79 | .flags = 0, |
| 80 | .buf = buf, |
| 81 | .len = 2 }; |
Michael Krufky | b6aef07 | 2005-07-27 11:45:54 -0700 | [diff] [blame] | 82 | int i; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 83 | int err; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 84 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 85 | for (i=0; i<len-1; i+=2){ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 86 | if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) { |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 87 | printk(KERN_WARNING "lgdt330x: %s error (addr %02x <- %02x, err = %i)\n", __func__, msg.buf[0], msg.buf[1], err); |
Michael Krufky | 58ba006 | 2005-07-12 13:58:37 -0700 | [diff] [blame] | 88 | if (err < 0) |
| 89 | return err; |
| 90 | else |
| 91 | return -EREMOTEIO; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 92 | } |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 93 | msg.buf += 2; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 94 | } |
| 95 | return 0; |
| 96 | } |
Michael Krufky | b6aef07 | 2005-07-27 11:45:54 -0700 | [diff] [blame] | 97 | |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 98 | /* |
| 99 | * This routine writes the register (reg) to the demod bus |
| 100 | * then reads the data returned for (len) bytes. |
| 101 | */ |
| 102 | |
Xi Wang | 3481717 | 2012-02-14 14:32:41 -0300 | [diff] [blame] | 103 | static int i2c_read_demod_bytes(struct lgdt330x_state *state, |
| 104 | enum I2C_REG reg, u8 *buf, int len) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 105 | { |
| 106 | u8 wr [] = { reg }; |
| 107 | struct i2c_msg msg [] = { |
| 108 | { .addr = state->config->demod_address, |
| 109 | .flags = 0, .buf = wr, .len = 1 }, |
| 110 | { .addr = state->config->demod_address, |
| 111 | .flags = I2C_M_RD, .buf = buf, .len = len }, |
| 112 | }; |
| 113 | int ret; |
| 114 | ret = i2c_transfer(state->i2c, msg, 2); |
| 115 | if (ret != 2) { |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 116 | printk(KERN_WARNING "lgdt330x: %s: addr 0x%02x select 0x%02x error (ret == %i)\n", __func__, state->config->demod_address, reg, ret); |
Xi Wang | 3481717 | 2012-02-14 14:32:41 -0300 | [diff] [blame] | 117 | if (ret >= 0) |
| 118 | ret = -EIO; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 119 | } else { |
| 120 | ret = 0; |
| 121 | } |
| 122 | return ret; |
| 123 | } |
| 124 | |
| 125 | /* Software reset */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 126 | static int lgdt3302_SwReset(struct lgdt330x_state* state) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 127 | { |
| 128 | u8 ret; |
| 129 | u8 reset[] = { |
| 130 | IRQ_MASK, |
| 131 | 0x00 /* bit 6 is active low software reset |
| 132 | * bits 5-0 are 1 to mask interrupts */ |
| 133 | }; |
| 134 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 135 | ret = i2c_write_demod_bytes(state, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 136 | reset, sizeof(reset)); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 137 | if (ret == 0) { |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 138 | |
| 139 | /* force reset high (inactive) and unmask interrupts */ |
| 140 | reset[1] = 0x7f; |
| 141 | ret = i2c_write_demod_bytes(state, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 142 | reset, sizeof(reset)); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 143 | } |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 144 | return ret; |
| 145 | } |
| 146 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 147 | static int lgdt3303_SwReset(struct lgdt330x_state* state) |
| 148 | { |
| 149 | u8 ret; |
| 150 | u8 reset[] = { |
| 151 | 0x02, |
| 152 | 0x00 /* bit 0 is active low software reset */ |
| 153 | }; |
| 154 | |
| 155 | ret = i2c_write_demod_bytes(state, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 156 | reset, sizeof(reset)); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 157 | if (ret == 0) { |
| 158 | |
| 159 | /* force reset high (inactive) */ |
| 160 | reset[1] = 0x01; |
| 161 | ret = i2c_write_demod_bytes(state, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 162 | reset, sizeof(reset)); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 163 | } |
| 164 | return ret; |
| 165 | } |
| 166 | |
| 167 | static int lgdt330x_SwReset(struct lgdt330x_state* state) |
| 168 | { |
| 169 | switch (state->config->demod_chip) { |
| 170 | case LGDT3302: |
| 171 | return lgdt3302_SwReset(state); |
| 172 | case LGDT3303: |
| 173 | return lgdt3303_SwReset(state); |
| 174 | default: |
| 175 | return -ENODEV; |
| 176 | } |
| 177 | } |
| 178 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 179 | static int lgdt330x_init(struct dvb_frontend* fe) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 180 | { |
| 181 | /* Hardware reset is done using gpio[0] of cx23880x chip. |
| 182 | * I'd like to do it here, but don't know how to find chip address. |
| 183 | * cx88-cards.c arranges for the reset bit to be inactive (high). |
| 184 | * Maybe there needs to be a callable function in cx88-core or |
| 185 | * the caller of this function needs to do it. */ |
| 186 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 187 | /* |
| 188 | * Array of byte pairs <address, value> |
| 189 | * to initialize each different chip |
| 190 | */ |
| 191 | static u8 lgdt3302_init_data[] = { |
| 192 | /* Use 50MHz parameter values from spec sheet since xtal is 50 */ |
| 193 | /* Change the value of NCOCTFV[25:0] of carrier |
| 194 | recovery center frequency register */ |
| 195 | VSB_CARRIER_FREQ0, 0x00, |
| 196 | VSB_CARRIER_FREQ1, 0x87, |
| 197 | VSB_CARRIER_FREQ2, 0x8e, |
| 198 | VSB_CARRIER_FREQ3, 0x01, |
| 199 | /* Change the TPCLK pin polarity |
| 200 | data is valid on falling clock */ |
| 201 | DEMUX_CONTROL, 0xfb, |
| 202 | /* Change the value of IFBW[11:0] of |
| 203 | AGC IF/RF loop filter bandwidth register */ |
| 204 | AGC_RF_BANDWIDTH0, 0x40, |
| 205 | AGC_RF_BANDWIDTH1, 0x93, |
| 206 | AGC_RF_BANDWIDTH2, 0x00, |
| 207 | /* Change the value of bit 6, 'nINAGCBY' and |
| 208 | 'NSSEL[1:0] of ACG function control register 2 */ |
| 209 | AGC_FUNC_CTRL2, 0xc6, |
| 210 | /* Change the value of bit 6 'RFFIX' |
| 211 | of AGC function control register 3 */ |
| 212 | AGC_FUNC_CTRL3, 0x40, |
| 213 | /* Set the value of 'INLVTHD' register 0x2a/0x2c |
| 214 | to 0x7fe */ |
| 215 | AGC_DELAY0, 0x07, |
| 216 | AGC_DELAY2, 0xfe, |
| 217 | /* Change the value of IAGCBW[15:8] |
Adrian Bunk | 9aaeded | 2006-06-30 18:19:55 +0200 | [diff] [blame] | 218 | of inner AGC loop filter bandwidth */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 219 | AGC_LOOP_BANDWIDTH0, 0x08, |
| 220 | AGC_LOOP_BANDWIDTH1, 0x9a |
| 221 | }; |
| 222 | |
| 223 | static u8 lgdt3303_init_data[] = { |
| 224 | 0x4c, 0x14 |
| 225 | }; |
| 226 | |
Michael Krufky | c0f4c0a | 2008-06-28 02:06:50 -0300 | [diff] [blame] | 227 | static u8 flip_1_lgdt3303_init_data[] = { |
Michael Krufky | c0b11b9 | 2005-11-08 21:35:32 -0800 | [diff] [blame] | 228 | 0x4c, 0x14, |
| 229 | 0x87, 0xf3 |
| 230 | }; |
| 231 | |
Michael Krufky | c0f4c0a | 2008-06-28 02:06:50 -0300 | [diff] [blame] | 232 | static u8 flip_2_lgdt3303_init_data[] = { |
| 233 | 0x4c, 0x14, |
| 234 | 0x87, 0xda |
| 235 | }; |
| 236 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 237 | struct lgdt330x_state* state = fe->demodulator_priv; |
| 238 | char *chip_name; |
| 239 | int err; |
| 240 | |
| 241 | switch (state->config->demod_chip) { |
| 242 | case LGDT3302: |
| 243 | chip_name = "LGDT3302"; |
| 244 | err = i2c_write_demod_bytes(state, lgdt3302_init_data, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 245 | sizeof(lgdt3302_init_data)); |
| 246 | break; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 247 | case LGDT3303: |
| 248 | chip_name = "LGDT3303"; |
Michael Krufky | c0f4c0a | 2008-06-28 02:06:50 -0300 | [diff] [blame] | 249 | switch (state->config->clock_polarity_flip) { |
| 250 | case 2: |
| 251 | err = i2c_write_demod_bytes(state, |
| 252 | flip_2_lgdt3303_init_data, |
| 253 | sizeof(flip_2_lgdt3303_init_data)); |
| 254 | break; |
| 255 | case 1: |
| 256 | err = i2c_write_demod_bytes(state, |
| 257 | flip_1_lgdt3303_init_data, |
| 258 | sizeof(flip_1_lgdt3303_init_data)); |
| 259 | break; |
| 260 | case 0: |
| 261 | default: |
Michael Krufky | c0b11b9 | 2005-11-08 21:35:32 -0800 | [diff] [blame] | 262 | err = i2c_write_demod_bytes(state, lgdt3303_init_data, |
| 263 | sizeof(lgdt3303_init_data)); |
| 264 | } |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 265 | break; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 266 | default: |
| 267 | chip_name = "undefined"; |
| 268 | printk (KERN_WARNING "Only LGDT3302 and LGDT3303 are supported chips.\n"); |
| 269 | err = -ENODEV; |
| 270 | } |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 271 | dprintk("%s entered as %s\n", __func__, chip_name); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 272 | if (err < 0) |
| 273 | return err; |
| 274 | return lgdt330x_SwReset(state); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 275 | } |
| 276 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 277 | static int lgdt330x_read_ber(struct dvb_frontend* fe, u32* ber) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 278 | { |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 279 | *ber = 0; /* Not supplied by the demod chips */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 280 | return 0; |
| 281 | } |
| 282 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 283 | static int lgdt330x_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 284 | { |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 285 | struct lgdt330x_state* state = fe->demodulator_priv; |
| 286 | int err; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 287 | u8 buf[2]; |
| 288 | |
Michael Krufky | 26110da | 2011-12-15 10:16:09 -0300 | [diff] [blame] | 289 | *ucblocks = 0; |
| 290 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 291 | switch (state->config->demod_chip) { |
| 292 | case LGDT3302: |
| 293 | err = i2c_read_demod_bytes(state, LGDT3302_PACKET_ERR_COUNTER1, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 294 | buf, sizeof(buf)); |
| 295 | break; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 296 | case LGDT3303: |
| 297 | err = i2c_read_demod_bytes(state, LGDT3303_PACKET_ERR_COUNTER1, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 298 | buf, sizeof(buf)); |
| 299 | break; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 300 | default: |
| 301 | printk(KERN_WARNING |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 302 | "Only LGDT3302 and LGDT3303 are supported chips.\n"); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 303 | err = -ENODEV; |
| 304 | } |
Michael Krufky | 26110da | 2011-12-15 10:16:09 -0300 | [diff] [blame] | 305 | if (err < 0) |
| 306 | return err; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 307 | |
| 308 | *ucblocks = (buf[0] << 8) | buf[1]; |
| 309 | return 0; |
| 310 | } |
| 311 | |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 312 | static int lgdt330x_set_parameters(struct dvb_frontend *fe) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 313 | { |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 314 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 315 | /* |
| 316 | * Array of byte pairs <address, value> |
| 317 | * to initialize 8VSB for lgdt3303 chip 50 MHz IF |
| 318 | */ |
| 319 | static u8 lgdt3303_8vsb_44_data[] = { |
| 320 | 0x04, 0x00, |
| 321 | 0x0d, 0x40, |
Michael Krufky | 0b6389f | 2006-11-28 02:35:02 -0300 | [diff] [blame] | 322 | 0x0e, 0x87, |
| 323 | 0x0f, 0x8e, |
| 324 | 0x10, 0x01, |
| 325 | 0x47, 0x8b }; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 326 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 327 | /* |
| 328 | * Array of byte pairs <address, value> |
| 329 | * to initialize QAM for lgdt3303 chip |
| 330 | */ |
| 331 | static u8 lgdt3303_qam_data[] = { |
| 332 | 0x04, 0x00, |
| 333 | 0x0d, 0x00, |
| 334 | 0x0e, 0x00, |
| 335 | 0x0f, 0x00, |
| 336 | 0x10, 0x00, |
| 337 | 0x51, 0x63, |
| 338 | 0x47, 0x66, |
| 339 | 0x48, 0x66, |
| 340 | 0x4d, 0x1a, |
| 341 | 0x49, 0x08, |
| 342 | 0x4a, 0x9b }; |
| 343 | |
| 344 | struct lgdt330x_state* state = fe->demodulator_priv; |
| 345 | |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 346 | static u8 top_ctrl_cfg[] = { TOP_CONTROL, 0x03 }; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 347 | |
Michael Krufky | 54828d1 | 2011-12-15 10:30:38 -0300 | [diff] [blame] | 348 | int err = 0; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 349 | /* Change only if we are actually changing the modulation */ |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 350 | if (state->current_modulation != p->modulation) { |
| 351 | switch (p->modulation) { |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 352 | case VSB_8: |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 353 | dprintk("%s: VSB_8 MODE\n", __func__); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 354 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 355 | /* Select VSB mode */ |
| 356 | top_ctrl_cfg[1] = 0x03; |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 357 | |
| 358 | /* Select ANT connector if supported by card */ |
| 359 | if (state->config->pll_rf_set) |
| 360 | state->config->pll_rf_set(fe, 1); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 361 | |
| 362 | if (state->config->demod_chip == LGDT3303) { |
| 363 | err = i2c_write_demod_bytes(state, lgdt3303_8vsb_44_data, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 364 | sizeof(lgdt3303_8vsb_44_data)); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 365 | } |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 366 | break; |
| 367 | |
| 368 | case QAM_64: |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 369 | dprintk("%s: QAM_64 MODE\n", __func__); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 370 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 371 | /* Select QAM_64 mode */ |
| 372 | top_ctrl_cfg[1] = 0x00; |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 373 | |
| 374 | /* Select CABLE connector if supported by card */ |
| 375 | if (state->config->pll_rf_set) |
| 376 | state->config->pll_rf_set(fe, 0); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 377 | |
| 378 | if (state->config->demod_chip == LGDT3303) { |
| 379 | err = i2c_write_demod_bytes(state, lgdt3303_qam_data, |
| 380 | sizeof(lgdt3303_qam_data)); |
| 381 | } |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 382 | break; |
| 383 | |
| 384 | case QAM_256: |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 385 | dprintk("%s: QAM_256 MODE\n", __func__); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 386 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 387 | /* Select QAM_256 mode */ |
| 388 | top_ctrl_cfg[1] = 0x01; |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 389 | |
| 390 | /* Select CABLE connector if supported by card */ |
| 391 | if (state->config->pll_rf_set) |
| 392 | state->config->pll_rf_set(fe, 0); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 393 | |
| 394 | if (state->config->demod_chip == LGDT3303) { |
| 395 | err = i2c_write_demod_bytes(state, lgdt3303_qam_data, |
| 396 | sizeof(lgdt3303_qam_data)); |
| 397 | } |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 398 | break; |
| 399 | default: |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 400 | printk(KERN_WARNING "lgdt330x: %s: Modulation type(%d) UNSUPPORTED\n", __func__, p->modulation); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 401 | return -1; |
| 402 | } |
Michael Krufky | 54828d1 | 2011-12-15 10:30:38 -0300 | [diff] [blame] | 403 | if (err < 0) |
Mauro Carvalho Chehab | 4bd69e7 | 2016-10-18 17:44:22 -0200 | [diff] [blame] | 404 | printk(KERN_WARNING "lgdt330x: %s: error blasting bytes to lgdt3303 for modulation type(%d)\n", |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 405 | __func__, p->modulation); |
Michael Krufky | 54828d1 | 2011-12-15 10:30:38 -0300 | [diff] [blame] | 406 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 407 | /* |
| 408 | * select serial or parallel MPEG harware interface |
| 409 | * Serial: 0x04 for LGDT3302 or 0x40 for LGDT3303 |
| 410 | * Parallel: 0x00 |
| 411 | */ |
| 412 | top_ctrl_cfg[1] |= state->config->serial_mpeg; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 413 | |
| 414 | /* Select the requested mode */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 415 | i2c_write_demod_bytes(state, top_ctrl_cfg, |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 416 | sizeof(top_ctrl_cfg)); |
| 417 | if (state->config->set_ts_params) |
| 418 | state->config->set_ts_params(fe, 0); |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 419 | state->current_modulation = p->modulation; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 420 | } |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 421 | |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 422 | /* Tune to the specified frequency */ |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 423 | if (fe->ops.tuner_ops.set_params) { |
Mauro Carvalho Chehab | 14d24d1 | 2011-12-24 12:24:33 -0300 | [diff] [blame] | 424 | fe->ops.tuner_ops.set_params(fe); |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 425 | if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0); |
Andrew de Quincey | 02269f3 | 2006-04-18 17:47:11 -0300 | [diff] [blame] | 426 | } |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 427 | |
| 428 | /* Keep track of the new frequency */ |
Mauro Carvalho Chehab | 4302c15 | 2006-01-09 15:25:22 -0200 | [diff] [blame] | 429 | /* FIXME this is the wrong way to do this... */ |
| 430 | /* The tuner is shared with the video4linux analog API */ |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 431 | state->current_frequency = p->frequency; |
Michael Krufky | dc9ca2a | 2005-09-06 15:19:40 -0700 | [diff] [blame] | 432 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 433 | lgdt330x_SwReset(state); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 434 | return 0; |
| 435 | } |
| 436 | |
Mauro Carvalho Chehab | 7e3e68b | 2016-02-04 12:58:30 -0200 | [diff] [blame] | 437 | static int lgdt330x_get_frontend(struct dvb_frontend *fe, |
| 438 | struct dtv_frontend_properties *p) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 439 | { |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 440 | struct lgdt330x_state *state = fe->demodulator_priv; |
Mauro Carvalho Chehab | 7e3e68b | 2016-02-04 12:58:30 -0200 | [diff] [blame] | 441 | |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 442 | p->frequency = state->current_frequency; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 443 | return 0; |
| 444 | } |
| 445 | |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 446 | static int lgdt3302_read_status(struct dvb_frontend *fe, |
| 447 | enum fe_status *status) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 448 | { |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 449 | struct lgdt330x_state* state = fe->demodulator_priv; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 450 | u8 buf[3]; |
| 451 | |
| 452 | *status = 0; /* Reset status result */ |
| 453 | |
Michael Krufky | 08d8052 | 2005-07-07 17:58:43 -0700 | [diff] [blame] | 454 | /* AGC status register */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 455 | i2c_read_demod_bytes(state, AGC_STATUS, buf, 1); |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 456 | dprintk("%s: AGC_STATUS = 0x%02x\n", __func__, buf[0]); |
Michael Krufky | 08d8052 | 2005-07-07 17:58:43 -0700 | [diff] [blame] | 457 | if ((buf[0] & 0x0c) == 0x8){ |
| 458 | /* Test signal does not exist flag */ |
| 459 | /* as well as the AGC lock flag. */ |
| 460 | *status |= FE_HAS_SIGNAL; |
Michael Krufky | 08d8052 | 2005-07-07 17:58:43 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 463 | /* |
| 464 | * You must set the Mask bits to 1 in the IRQ_MASK in order |
| 465 | * to see that status bit in the IRQ_STATUS register. |
| 466 | * This is done in SwReset(); |
| 467 | */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 468 | /* signal status */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 469 | i2c_read_demod_bytes(state, TOP_CONTROL, buf, sizeof(buf)); |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 470 | dprintk("%s: TOP_CONTROL = 0x%02x, IRO_MASK = 0x%02x, IRQ_STATUS = 0x%02x\n", __func__, buf[0], buf[1], buf[2]); |
Michael Krufky | 08d8052 | 2005-07-07 17:58:43 -0700 | [diff] [blame] | 471 | |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 472 | |
| 473 | /* sync status */ |
| 474 | if ((buf[2] & 0x03) == 0x01) { |
| 475 | *status |= FE_HAS_SYNC; |
| 476 | } |
| 477 | |
| 478 | /* FEC error status */ |
| 479 | if ((buf[2] & 0x0c) == 0x08) { |
| 480 | *status |= FE_HAS_LOCK; |
| 481 | *status |= FE_HAS_VITERBI; |
| 482 | } |
| 483 | |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 484 | /* Carrier Recovery Lock Status Register */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 485 | i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1); |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 486 | dprintk("%s: CARRIER_LOCK = 0x%02x\n", __func__, buf[0]); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 487 | switch (state->current_modulation) { |
| 488 | case QAM_256: |
| 489 | case QAM_64: |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 490 | /* Need to understand why there are 3 lock levels here */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 491 | if ((buf[0] & 0x07) == 0x07) |
| 492 | *status |= FE_HAS_CARRIER; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 493 | break; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 494 | case VSB_8: |
| 495 | if ((buf[0] & 0x80) == 0x80) |
| 496 | *status |= FE_HAS_CARRIER; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 497 | break; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 498 | default: |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 499 | printk(KERN_WARNING "lgdt330x: %s: Modulation set to unsupported value\n", __func__); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 500 | } |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 501 | |
| 502 | return 0; |
| 503 | } |
| 504 | |
Mauro Carvalho Chehab | 0df289a | 2015-06-07 14:53:52 -0300 | [diff] [blame] | 505 | static int lgdt3303_read_status(struct dvb_frontend *fe, |
| 506 | enum fe_status *status) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 507 | { |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 508 | struct lgdt330x_state* state = fe->demodulator_priv; |
| 509 | int err; |
| 510 | u8 buf[3]; |
| 511 | |
| 512 | *status = 0; /* Reset status result */ |
| 513 | |
| 514 | /* lgdt3303 AGC status register */ |
| 515 | err = i2c_read_demod_bytes(state, 0x58, buf, 1); |
| 516 | if (err < 0) |
| 517 | return err; |
| 518 | |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 519 | dprintk("%s: AGC_STATUS = 0x%02x\n", __func__, buf[0]); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 520 | if ((buf[0] & 0x21) == 0x01){ |
| 521 | /* Test input signal does not exist flag */ |
| 522 | /* as well as the AGC lock flag. */ |
| 523 | *status |= FE_HAS_SIGNAL; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | /* Carrier Recovery Lock Status Register */ |
| 527 | i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1); |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 528 | dprintk("%s: CARRIER_LOCK = 0x%02x\n", __func__, buf[0]); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 529 | switch (state->current_modulation) { |
| 530 | case QAM_256: |
| 531 | case QAM_64: |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 532 | /* Need to understand why there are 3 lock levels here */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 533 | if ((buf[0] & 0x07) == 0x07) |
| 534 | *status |= FE_HAS_CARRIER; |
| 535 | else |
| 536 | break; |
| 537 | i2c_read_demod_bytes(state, 0x8a, buf, 1); |
| 538 | if ((buf[0] & 0x04) == 0x04) |
| 539 | *status |= FE_HAS_SYNC; |
| 540 | if ((buf[0] & 0x01) == 0x01) |
| 541 | *status |= FE_HAS_LOCK; |
| 542 | if ((buf[0] & 0x08) == 0x08) |
| 543 | *status |= FE_HAS_VITERBI; |
| 544 | break; |
| 545 | case VSB_8: |
| 546 | if ((buf[0] & 0x80) == 0x80) |
| 547 | *status |= FE_HAS_CARRIER; |
| 548 | else |
| 549 | break; |
| 550 | i2c_read_demod_bytes(state, 0x38, buf, 1); |
| 551 | if ((buf[0] & 0x02) == 0x00) |
| 552 | *status |= FE_HAS_SYNC; |
| 553 | if ((buf[0] & 0x01) == 0x01) { |
| 554 | *status |= FE_HAS_LOCK; |
| 555 | *status |= FE_HAS_VITERBI; |
| 556 | } |
| 557 | break; |
| 558 | default: |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 559 | printk(KERN_WARNING "lgdt330x: %s: Modulation set to unsupported value\n", __func__); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 560 | } |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 561 | return 0; |
| 562 | } |
| 563 | |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 564 | /* Calculate SNR estimation (scaled by 2^24) |
| 565 | |
| 566 | 8-VSB SNR equations from LGDT3302 and LGDT3303 datasheets, QAM |
| 567 | equations from LGDT3303 datasheet. VSB is the same between the '02 |
| 568 | and '03, so maybe QAM is too? Perhaps someone with a newer datasheet |
| 569 | that has QAM information could verify? |
| 570 | |
| 571 | For 8-VSB: (two ways, take your pick) |
| 572 | LGDT3302: |
| 573 | SNR_EQ = 10 * log10(25 * 24^2 / EQ_MSE) |
| 574 | LGDT3303: |
| 575 | SNR_EQ = 10 * log10(25 * 32^2 / EQ_MSE) |
| 576 | LGDT3302 & LGDT3303: |
| 577 | SNR_PT = 10 * log10(25 * 32^2 / PT_MSE) (we use this one) |
| 578 | For 64-QAM: |
| 579 | SNR = 10 * log10( 688128 / MSEQAM) |
| 580 | For 256-QAM: |
| 581 | SNR = 10 * log10( 696320 / MSEQAM) |
| 582 | |
| 583 | We re-write the snr equation as: |
| 584 | SNR * 2^24 = 10*(c - intlog10(MSE)) |
| 585 | Where for 256-QAM, c = log10(696320) * 2^24, and so on. */ |
| 586 | |
| 587 | static u32 calculate_snr(u32 mse, u32 c) |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 588 | { |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 589 | if (mse == 0) /* No signal */ |
| 590 | return 0; |
| 591 | |
| 592 | mse = intlog10(mse); |
| 593 | if (mse > c) { |
| 594 | /* Negative SNR, which is possible, but realisticly the |
| 595 | demod will lose lock before the signal gets this bad. The |
| 596 | API only allows for unsigned values, so just return 0 */ |
| 597 | return 0; |
| 598 | } |
| 599 | return 10*(c - mse); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | static int lgdt3302_read_snr(struct dvb_frontend* fe, u16* snr) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 603 | { |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 604 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 605 | u8 buf[5]; /* read data buffer */ |
| 606 | u32 noise; /* noise value */ |
| 607 | u32 c; /* per-modulation SNR calculation constant */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 608 | |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 609 | switch(state->current_modulation) { |
| 610 | case VSB_8: |
| 611 | i2c_read_demod_bytes(state, LGDT3302_EQPH_ERR0, buf, 5); |
| 612 | #ifdef USE_EQMSE |
| 613 | /* Use Equalizer Mean-Square Error Register */ |
| 614 | /* SNR for ranges from -15.61 to +41.58 */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 615 | noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 616 | c = 69765745; /* log10(25*24^2)*2^24 */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 617 | #else |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 618 | /* Use Phase Tracker Mean-Square Error Register */ |
| 619 | /* SNR for ranges from -13.11 to +44.08 */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 620 | noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4]; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 621 | c = 73957994; /* log10(25*32^2)*2^24 */ |
| 622 | #endif |
| 623 | break; |
| 624 | case QAM_64: |
| 625 | case QAM_256: |
| 626 | i2c_read_demod_bytes(state, CARRIER_MSEQAM1, buf, 2); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 627 | noise = ((buf[0] & 3) << 8) | buf[1]; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 628 | c = state->current_modulation == QAM_64 ? 97939837 : 98026066; |
| 629 | /* log10(688128)*2^24 and log10(696320)*2^24 */ |
| 630 | break; |
| 631 | default: |
| 632 | printk(KERN_ERR "lgdt330x: %s: Modulation set to unsupported value\n", |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 633 | __func__); |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 634 | return -EREMOTEIO; /* return -EDRIVER_IS_GIBBERED; */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 635 | } |
| 636 | |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 637 | state->snr = calculate_snr(noise, c); |
| 638 | *snr = (state->snr) >> 16; /* Convert from 8.24 fixed-point to 8.8 */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 639 | |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 640 | dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__, noise, |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 641 | state->snr >> 24, (((state->snr>>8) & 0xffff) * 100) >> 16); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 642 | |
| 643 | return 0; |
| 644 | } |
| 645 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 646 | static int lgdt3303_read_snr(struct dvb_frontend* fe, u16* snr) |
| 647 | { |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 648 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 649 | u8 buf[5]; /* read data buffer */ |
| 650 | u32 noise; /* noise value */ |
| 651 | u32 c; /* per-modulation SNR calculation constant */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 652 | |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 653 | switch(state->current_modulation) { |
| 654 | case VSB_8: |
| 655 | i2c_read_demod_bytes(state, LGDT3303_EQPH_ERR0, buf, 5); |
| 656 | #ifdef USE_EQMSE |
| 657 | /* Use Equalizer Mean-Square Error Register */ |
| 658 | /* SNR for ranges from -16.12 to +44.08 */ |
| 659 | noise = ((buf[0] & 0x78) << 13) | (buf[1] << 8) | buf[2]; |
| 660 | c = 73957994; /* log10(25*32^2)*2^24 */ |
| 661 | #else |
| 662 | /* Use Phase Tracker Mean-Square Error Register */ |
| 663 | /* SNR for ranges from -13.11 to +44.08 */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 664 | noise = ((buf[0] & 7) << 16) | (buf[3] << 8) | buf[4]; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 665 | c = 73957994; /* log10(25*32^2)*2^24 */ |
| 666 | #endif |
| 667 | break; |
| 668 | case QAM_64: |
| 669 | case QAM_256: |
| 670 | i2c_read_demod_bytes(state, CARRIER_MSEQAM1, buf, 2); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 671 | noise = (buf[0] << 8) | buf[1]; |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 672 | c = state->current_modulation == QAM_64 ? 97939837 : 98026066; |
| 673 | /* log10(688128)*2^24 and log10(696320)*2^24 */ |
| 674 | break; |
| 675 | default: |
| 676 | printk(KERN_ERR "lgdt330x: %s: Modulation set to unsupported value\n", |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 677 | __func__); |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 678 | return -EREMOTEIO; /* return -EDRIVER_IS_GIBBERED; */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 679 | } |
| 680 | |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 681 | state->snr = calculate_snr(noise, c); |
| 682 | *snr = (state->snr) >> 16; /* Convert from 8.24 fixed-point to 8.8 */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 683 | |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 684 | dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__, noise, |
Trent Piepho | 19be685 | 2006-10-29 13:35:39 -0300 | [diff] [blame] | 685 | state->snr >> 24, (((state->snr >> 8) & 0xffff) * 100) >> 16); |
| 686 | |
| 687 | return 0; |
| 688 | } |
| 689 | |
| 690 | static int lgdt330x_read_signal_strength(struct dvb_frontend* fe, u16* strength) |
| 691 | { |
| 692 | /* Calculate Strength from SNR up to 35dB */ |
| 693 | /* Even though the SNR can go higher than 35dB, there is some comfort */ |
| 694 | /* factor in having a range of strong signals that can show at 100% */ |
| 695 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; |
| 696 | u16 snr; |
| 697 | int ret; |
| 698 | |
| 699 | ret = fe->ops.read_snr(fe, &snr); |
| 700 | if (ret != 0) |
| 701 | return ret; |
| 702 | /* Rather than use the 8.8 value snr, use state->snr which is 8.24 */ |
| 703 | /* scale the range 0 - 35*2^24 into 0 - 65535 */ |
| 704 | if (state->snr >= 8960 * 0x10000) |
| 705 | *strength = 0xffff; |
| 706 | else |
| 707 | *strength = state->snr / 8960; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 708 | |
| 709 | return 0; |
| 710 | } |
| 711 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 712 | static int lgdt330x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fe_tune_settings) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 713 | { |
| 714 | /* I have no idea about this - it may not be needed */ |
| 715 | fe_tune_settings->min_delay_ms = 500; |
| 716 | fe_tune_settings->step_size = 0; |
| 717 | fe_tune_settings->max_drift = 0; |
| 718 | return 0; |
| 719 | } |
| 720 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 721 | static void lgdt330x_release(struct dvb_frontend* fe) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 722 | { |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 723 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 724 | kfree(state); |
| 725 | } |
| 726 | |
Max Kellermann | bd336e6 | 2016-08-09 18:32:21 -0300 | [diff] [blame] | 727 | static const struct dvb_frontend_ops lgdt3302_ops; |
| 728 | static const struct dvb_frontend_ops lgdt3303_ops; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 729 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 730 | struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config, |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 731 | struct i2c_adapter* i2c) |
| 732 | { |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 733 | struct lgdt330x_state* state = NULL; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 734 | u8 buf[1]; |
| 735 | |
| 736 | /* Allocate memory for the internal state */ |
Panagiotis Issaris | 7408187 | 2006-01-11 19:40:56 -0200 | [diff] [blame] | 737 | state = kzalloc(sizeof(struct lgdt330x_state), GFP_KERNEL); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 738 | if (state == NULL) |
| 739 | goto error; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 740 | |
| 741 | /* Setup the state */ |
| 742 | state->config = config; |
| 743 | state->i2c = i2c; |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 744 | |
| 745 | /* Create dvb_frontend */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 746 | switch (config->demod_chip) { |
| 747 | case LGDT3302: |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 748 | memcpy(&state->frontend.ops, &lgdt3302_ops, sizeof(struct dvb_frontend_ops)); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 749 | break; |
| 750 | case LGDT3303: |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 751 | memcpy(&state->frontend.ops, &lgdt3303_ops, sizeof(struct dvb_frontend_ops)); |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 752 | break; |
| 753 | default: |
| 754 | goto error; |
| 755 | } |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 756 | state->frontend.demodulator_priv = state; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 757 | |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 758 | /* Verify communication with demod chip */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 759 | if (i2c_read_demod_bytes(state, 2, buf, 1)) |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 760 | goto error; |
| 761 | |
| 762 | state->current_frequency = -1; |
| 763 | state->current_modulation = -1; |
| 764 | |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 765 | return &state->frontend; |
| 766 | |
| 767 | error: |
Jesper Juhl | 2ea7533 | 2005-11-07 01:01:31 -0800 | [diff] [blame] | 768 | kfree(state); |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 769 | dprintk("%s: ERROR\n",__func__); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 770 | return NULL; |
| 771 | } |
| 772 | |
Max Kellermann | bd336e6 | 2016-08-09 18:32:21 -0300 | [diff] [blame] | 773 | static const struct dvb_frontend_ops lgdt3302_ops = { |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 774 | .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 775 | .info = { |
Michael Krufky | e179d8b | 2005-08-09 17:48:54 -0700 | [diff] [blame] | 776 | .name= "LG Electronics LGDT3302 VSB/QAM Frontend", |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 777 | .frequency_min= 54000000, |
| 778 | .frequency_max= 858000000, |
| 779 | .frequency_stepsize= 62500, |
Michael Krufky | 66944e9 | 2005-11-08 21:35:55 -0800 | [diff] [blame] | 780 | .symbol_rate_min = 5056941, /* QAM 64 */ |
| 781 | .symbol_rate_max = 10762000, /* VSB 8 */ |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 782 | .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB |
| 783 | }, |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 784 | .init = lgdt330x_init, |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 785 | .set_frontend = lgdt330x_set_parameters, |
| 786 | .get_frontend = lgdt330x_get_frontend, |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 787 | .get_tune_settings = lgdt330x_get_tune_settings, |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 788 | .read_status = lgdt3302_read_status, |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 789 | .read_ber = lgdt330x_read_ber, |
| 790 | .read_signal_strength = lgdt330x_read_signal_strength, |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 791 | .read_snr = lgdt3302_read_snr, |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 792 | .read_ucblocks = lgdt330x_read_ucblocks, |
| 793 | .release = lgdt330x_release, |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 794 | }; |
| 795 | |
Max Kellermann | bd336e6 | 2016-08-09 18:32:21 -0300 | [diff] [blame] | 796 | static const struct dvb_frontend_ops lgdt3303_ops = { |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 797 | .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 798 | .info = { |
| 799 | .name= "LG Electronics LGDT3303 VSB/QAM Frontend", |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 800 | .frequency_min= 54000000, |
| 801 | .frequency_max= 858000000, |
| 802 | .frequency_stepsize= 62500, |
Michael Krufky | 66944e9 | 2005-11-08 21:35:55 -0800 | [diff] [blame] | 803 | .symbol_rate_min = 5056941, /* QAM 64 */ |
| 804 | .symbol_rate_max = 10762000, /* VSB 8 */ |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 805 | .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB |
| 806 | }, |
| 807 | .init = lgdt330x_init, |
Mauro Carvalho Chehab | ca7072d | 2011-12-26 11:25:21 -0300 | [diff] [blame] | 808 | .set_frontend = lgdt330x_set_parameters, |
| 809 | .get_frontend = lgdt330x_get_frontend, |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 810 | .get_tune_settings = lgdt330x_get_tune_settings, |
| 811 | .read_status = lgdt3303_read_status, |
| 812 | .read_ber = lgdt330x_read_ber, |
| 813 | .read_signal_strength = lgdt330x_read_signal_strength, |
| 814 | .read_snr = lgdt3303_read_snr, |
| 815 | .read_ucblocks = lgdt330x_read_ucblocks, |
| 816 | .release = lgdt330x_release, |
| 817 | }; |
| 818 | |
| 819 | MODULE_DESCRIPTION("LGDT330X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver"); |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 820 | MODULE_AUTHOR("Wilson Michaels"); |
| 821 | MODULE_LICENSE("GPL"); |
| 822 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 823 | EXPORT_SYMBOL(lgdt330x_attach); |