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