blob: 96bf254da21edc35c1af7c807dd7d1501885d04b [file] [log] [blame]
Mac Michaelsd8667cb2005-07-07 17:58:29 -07001/*
Michael Krufky1963c902005-08-08 09:22:43 -07002 * Support for LGDT3302 and LGDT3303 - VSB/QAM
Mac Michaelsd8667cb2005-07-07 17:58:29 -07003 *
4 * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net>
5 *
Mac Michaelsd8667cb2005-07-07 17:58:29 -07006 * 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 Krufky1963c902005-08-08 09:22:43 -070025 * This Linux driver supports:
26 * DViCO FusionHDTV 3 Gold-Q
27 * DViCO FusionHDTV 3 Gold-T
28 * DViCO FusionHDTV 5 Gold
Michael Krufky3cff00d2005-11-08 21:35:12 -080029 * DViCO FusionHDTV 5 Lite
Michael Krufkyd8e6acf2006-01-09 15:32:42 -020030 * DViCO FusionHDTV 5 USB Gold
Michael Krufkyc0b11b92005-11-08 21:35:32 -080031 * Air2PC/AirStar 2 ATSC 3rd generation (HD5000)
Michael Krufky20fe4f652006-04-10 09:40:40 -030032 * pcHDTV HD5500
Mac Michaelsd8667cb2005-07-07 17:58:29 -070033 *
Mac Michaelsd8667cb2005-07-07 17:58:29 -070034 */
35
Mac Michaelsd8667cb2005-07-07 17:58:29 -070036#include <linux/kernel.h>
37#include <linux/module.h>
Mac Michaelsd8667cb2005-07-07 17:58:29 -070038#include <linux/init.h>
39#include <linux/delay.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080040#include <linux/string.h>
41#include <linux/slab.h>
Mac Michaelsd8667cb2005-07-07 17:58:29 -070042#include <asm/byteorder.h>
43
44#include "dvb_frontend.h"
Trent Piepho19be6852006-10-29 13:35:39 -030045#include "dvb_math.h"
Michael Krufky6ddcc912005-07-27 11:46:00 -070046#include "lgdt330x_priv.h"
47#include "lgdt330x.h"
Mac Michaelsd8667cb2005-07-07 17:58:29 -070048
Trent Piepho19be6852006-10-29 13:35:39 -030049/* Use Equalizer Mean Squared Error instead of Phaser Tracker MSE */
50/* #define USE_EQMSE */
51
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030052static int debug;
Mac Michaelsd8667cb2005-07-07 17:58:29 -070053module_param(debug, int, 0644);
Michael Krufky6ddcc912005-07-27 11:46:00 -070054MODULE_PARM_DESC(debug,"Turn on/off lgdt330x frontend debugging (default:off).");
Mac Michaelsd8667cb2005-07-07 17:58:29 -070055#define dprintk(args...) \
56do { \
Michael Krufky6ddcc912005-07-27 11:46:00 -070057if (debug) printk(KERN_DEBUG "lgdt330x: " args); \
Mac Michaelsd8667cb2005-07-07 17:58:29 -070058} while (0)
59
Michael Krufky6ddcc912005-07-27 11:46:00 -070060struct lgdt330x_state
Mac Michaelsd8667cb2005-07-07 17:58:29 -070061{
62 struct i2c_adapter* i2c;
Mac Michaelsd8667cb2005-07-07 17:58:29 -070063
64 /* Configuration settings */
Michael Krufky6ddcc912005-07-27 11:46:00 -070065 const struct lgdt330x_config* config;
Mac Michaelsd8667cb2005-07-07 17:58:29 -070066
67 struct dvb_frontend frontend;
68
69 /* Demodulator private data */
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -030070 enum fe_modulation current_modulation;
Trent Piepho19be6852006-10-29 13:35:39 -030071 u32 snr; /* Result of last SNR calculation */
Mac Michaelsd8667cb2005-07-07 17:58:29 -070072
73 /* Tuner private data */
74 u32 current_frequency;
75};
76
Michael Krufky1963c902005-08-08 09:22:43 -070077static int i2c_write_demod_bytes (struct lgdt330x_state* state,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -070078 u8 *buf, /* data bytes to send */
79 int len /* number of bytes to send */ )
Mac Michaelsd8667cb2005-07-07 17:58:29 -070080{
Michael Krufkyb6aef072005-07-27 11:45:54 -070081 struct i2c_msg msg =
Michael Krufky1963c902005-08-08 09:22:43 -070082 { .addr = state->config->demod_address,
83 .flags = 0,
84 .buf = buf,
85 .len = 2 };
Michael Krufkyb6aef072005-07-27 11:45:54 -070086 int i;
Michael Krufky1963c902005-08-08 09:22:43 -070087 int err;
Mac Michaelsd8667cb2005-07-07 17:58:29 -070088
Michael Krufky1963c902005-08-08 09:22:43 -070089 for (i=0; i<len-1; i+=2){
Mac Michaelsd8667cb2005-07-07 17:58:29 -070090 if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) {
Harvey Harrison271ddbf2008-04-08 23:20:00 -030091 printk(KERN_WARNING "lgdt330x: %s error (addr %02x <- %02x, err = %i)\n", __func__, msg.buf[0], msg.buf[1], err);
Michael Krufky58ba0062005-07-12 13:58:37 -070092 if (err < 0)
93 return err;
94 else
95 return -EREMOTEIO;
Mac Michaelsd8667cb2005-07-07 17:58:29 -070096 }
Michael Krufky1963c902005-08-08 09:22:43 -070097 msg.buf += 2;
Mac Michaelsd8667cb2005-07-07 17:58:29 -070098 }
99 return 0;
100}
Michael Krufkyb6aef072005-07-27 11:45:54 -0700101
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700102/*
103 * This routine writes the register (reg) to the demod bus
104 * then reads the data returned for (len) bytes.
105 */
106
Xi Wang34817172012-02-14 14:32:41 -0300107static int i2c_read_demod_bytes(struct lgdt330x_state *state,
108 enum I2C_REG reg, u8 *buf, int len)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700109{
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) {
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300120 printk(KERN_WARNING "lgdt330x: %s: addr 0x%02x select 0x%02x error (ret == %i)\n", __func__, state->config->demod_address, reg, ret);
Xi Wang34817172012-02-14 14:32:41 -0300121 if (ret >= 0)
122 ret = -EIO;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700123 } else {
124 ret = 0;
125 }
126 return ret;
127}
128
129/* Software reset */
Michael Krufky1963c902005-08-08 09:22:43 -0700130static int lgdt3302_SwReset(struct lgdt330x_state* state)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700131{
132 u8 ret;
133 u8 reset[] = {
134 IRQ_MASK,
135 0x00 /* bit 6 is active low software reset
136 * bits 5-0 are 1 to mask interrupts */
137 };
138
Michael Krufky1963c902005-08-08 09:22:43 -0700139 ret = i2c_write_demod_bytes(state,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700140 reset, sizeof(reset));
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700141 if (ret == 0) {
Michael Krufky1963c902005-08-08 09:22:43 -0700142
143 /* force reset high (inactive) and unmask interrupts */
144 reset[1] = 0x7f;
145 ret = i2c_write_demod_bytes(state,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700146 reset, sizeof(reset));
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700147 }
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700148 return ret;
149}
150
Michael Krufky1963c902005-08-08 09:22:43 -0700151static int lgdt3303_SwReset(struct lgdt330x_state* state)
152{
153 u8 ret;
154 u8 reset[] = {
155 0x02,
156 0x00 /* bit 0 is active low software reset */
157 };
158
159 ret = i2c_write_demod_bytes(state,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700160 reset, sizeof(reset));
Michael Krufky1963c902005-08-08 09:22:43 -0700161 if (ret == 0) {
162
163 /* force reset high (inactive) */
164 reset[1] = 0x01;
165 ret = i2c_write_demod_bytes(state,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700166 reset, sizeof(reset));
Michael Krufky1963c902005-08-08 09:22:43 -0700167 }
168 return ret;
169}
170
171static int lgdt330x_SwReset(struct lgdt330x_state* state)
172{
173 switch (state->config->demod_chip) {
174 case LGDT3302:
175 return lgdt3302_SwReset(state);
176 case LGDT3303:
177 return lgdt3303_SwReset(state);
178 default:
179 return -ENODEV;
180 }
181}
182
Michael Krufky6ddcc912005-07-27 11:46:00 -0700183static int lgdt330x_init(struct dvb_frontend* fe)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700184{
185 /* Hardware reset is done using gpio[0] of cx23880x chip.
186 * I'd like to do it here, but don't know how to find chip address.
187 * cx88-cards.c arranges for the reset bit to be inactive (high).
188 * Maybe there needs to be a callable function in cx88-core or
189 * the caller of this function needs to do it. */
190
Michael Krufky1963c902005-08-08 09:22:43 -0700191 /*
192 * Array of byte pairs <address, value>
193 * to initialize each different chip
194 */
195 static u8 lgdt3302_init_data[] = {
196 /* Use 50MHz parameter values from spec sheet since xtal is 50 */
197 /* Change the value of NCOCTFV[25:0] of carrier
198 recovery center frequency register */
199 VSB_CARRIER_FREQ0, 0x00,
200 VSB_CARRIER_FREQ1, 0x87,
201 VSB_CARRIER_FREQ2, 0x8e,
202 VSB_CARRIER_FREQ3, 0x01,
203 /* Change the TPCLK pin polarity
204 data is valid on falling clock */
205 DEMUX_CONTROL, 0xfb,
206 /* Change the value of IFBW[11:0] of
207 AGC IF/RF loop filter bandwidth register */
208 AGC_RF_BANDWIDTH0, 0x40,
209 AGC_RF_BANDWIDTH1, 0x93,
210 AGC_RF_BANDWIDTH2, 0x00,
211 /* Change the value of bit 6, 'nINAGCBY' and
212 'NSSEL[1:0] of ACG function control register 2 */
213 AGC_FUNC_CTRL2, 0xc6,
214 /* Change the value of bit 6 'RFFIX'
215 of AGC function control register 3 */
216 AGC_FUNC_CTRL3, 0x40,
217 /* Set the value of 'INLVTHD' register 0x2a/0x2c
218 to 0x7fe */
219 AGC_DELAY0, 0x07,
220 AGC_DELAY2, 0xfe,
221 /* Change the value of IAGCBW[15:8]
Adrian Bunk9aaeded2006-06-30 18:19:55 +0200222 of inner AGC loop filter bandwidth */
Michael Krufky1963c902005-08-08 09:22:43 -0700223 AGC_LOOP_BANDWIDTH0, 0x08,
224 AGC_LOOP_BANDWIDTH1, 0x9a
225 };
226
227 static u8 lgdt3303_init_data[] = {
228 0x4c, 0x14
229 };
230
Michael Krufkyc0f4c0a2008-06-28 02:06:50 -0300231 static u8 flip_1_lgdt3303_init_data[] = {
Michael Krufkyc0b11b92005-11-08 21:35:32 -0800232 0x4c, 0x14,
233 0x87, 0xf3
234 };
235
Michael Krufkyc0f4c0a2008-06-28 02:06:50 -0300236 static u8 flip_2_lgdt3303_init_data[] = {
237 0x4c, 0x14,
238 0x87, 0xda
239 };
240
Michael Krufky1963c902005-08-08 09:22:43 -0700241 struct lgdt330x_state* state = fe->demodulator_priv;
242 char *chip_name;
243 int err;
244
245 switch (state->config->demod_chip) {
246 case LGDT3302:
247 chip_name = "LGDT3302";
248 err = i2c_write_demod_bytes(state, lgdt3302_init_data,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700249 sizeof(lgdt3302_init_data));
250 break;
Michael Krufky1963c902005-08-08 09:22:43 -0700251 case LGDT3303:
252 chip_name = "LGDT3303";
Michael Krufkyc0f4c0a2008-06-28 02:06:50 -0300253 switch (state->config->clock_polarity_flip) {
254 case 2:
255 err = i2c_write_demod_bytes(state,
256 flip_2_lgdt3303_init_data,
257 sizeof(flip_2_lgdt3303_init_data));
258 break;
259 case 1:
260 err = i2c_write_demod_bytes(state,
261 flip_1_lgdt3303_init_data,
262 sizeof(flip_1_lgdt3303_init_data));
263 break;
264 case 0:
265 default:
Michael Krufkyc0b11b92005-11-08 21:35:32 -0800266 err = i2c_write_demod_bytes(state, lgdt3303_init_data,
267 sizeof(lgdt3303_init_data));
268 }
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700269 break;
Michael Krufky1963c902005-08-08 09:22:43 -0700270 default:
271 chip_name = "undefined";
272 printk (KERN_WARNING "Only LGDT3302 and LGDT3303 are supported chips.\n");
273 err = -ENODEV;
274 }
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300275 dprintk("%s entered as %s\n", __func__, chip_name);
Michael Krufky1963c902005-08-08 09:22:43 -0700276 if (err < 0)
277 return err;
278 return lgdt330x_SwReset(state);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700279}
280
Michael Krufky6ddcc912005-07-27 11:46:00 -0700281static int lgdt330x_read_ber(struct dvb_frontend* fe, u32* ber)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700282{
Michael Krufky1963c902005-08-08 09:22:43 -0700283 *ber = 0; /* Not supplied by the demod chips */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700284 return 0;
285}
286
Michael Krufky6ddcc912005-07-27 11:46:00 -0700287static int lgdt330x_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700288{
Michael Krufky1963c902005-08-08 09:22:43 -0700289 struct lgdt330x_state* state = fe->demodulator_priv;
290 int err;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700291 u8 buf[2];
292
Michael Krufky26110da2011-12-15 10:16:09 -0300293 *ucblocks = 0;
294
Michael Krufky1963c902005-08-08 09:22:43 -0700295 switch (state->config->demod_chip) {
296 case LGDT3302:
297 err = i2c_read_demod_bytes(state, LGDT3302_PACKET_ERR_COUNTER1,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700298 buf, sizeof(buf));
299 break;
Michael Krufky1963c902005-08-08 09:22:43 -0700300 case LGDT3303:
301 err = i2c_read_demod_bytes(state, LGDT3303_PACKET_ERR_COUNTER1,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700302 buf, sizeof(buf));
303 break;
Michael Krufky1963c902005-08-08 09:22:43 -0700304 default:
305 printk(KERN_WARNING
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700306 "Only LGDT3302 and LGDT3303 are supported chips.\n");
Michael Krufky1963c902005-08-08 09:22:43 -0700307 err = -ENODEV;
308 }
Michael Krufky26110da2011-12-15 10:16:09 -0300309 if (err < 0)
310 return err;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700311
312 *ucblocks = (buf[0] << 8) | buf[1];
313 return 0;
314}
315
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300316static int lgdt330x_set_parameters(struct dvb_frontend *fe)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700317{
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300318 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
Michael Krufky1963c902005-08-08 09:22:43 -0700319 /*
320 * Array of byte pairs <address, value>
321 * to initialize 8VSB for lgdt3303 chip 50 MHz IF
322 */
323 static u8 lgdt3303_8vsb_44_data[] = {
324 0x04, 0x00,
325 0x0d, 0x40,
Michael Krufky0b6389f2006-11-28 02:35:02 -0300326 0x0e, 0x87,
327 0x0f, 0x8e,
328 0x10, 0x01,
329 0x47, 0x8b };
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700330
Michael Krufky1963c902005-08-08 09:22:43 -0700331 /*
332 * Array of byte pairs <address, value>
333 * to initialize QAM for lgdt3303 chip
334 */
335 static u8 lgdt3303_qam_data[] = {
336 0x04, 0x00,
337 0x0d, 0x00,
338 0x0e, 0x00,
339 0x0f, 0x00,
340 0x10, 0x00,
341 0x51, 0x63,
342 0x47, 0x66,
343 0x48, 0x66,
344 0x4d, 0x1a,
345 0x49, 0x08,
346 0x4a, 0x9b };
347
348 struct lgdt330x_state* state = fe->demodulator_priv;
349
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700350 static u8 top_ctrl_cfg[] = { TOP_CONTROL, 0x03 };
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700351
Michael Krufky54828d12011-12-15 10:30:38 -0300352 int err = 0;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700353 /* Change only if we are actually changing the modulation */
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300354 if (state->current_modulation != p->modulation) {
355 switch (p->modulation) {
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700356 case VSB_8:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300357 dprintk("%s: VSB_8 MODE\n", __func__);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700358
Michael Krufky1963c902005-08-08 09:22:43 -0700359 /* Select VSB mode */
360 top_ctrl_cfg[1] = 0x03;
Michael Krufky0ccef6d2005-07-27 11:45:55 -0700361
362 /* Select ANT connector if supported by card */
363 if (state->config->pll_rf_set)
364 state->config->pll_rf_set(fe, 1);
Michael Krufky1963c902005-08-08 09:22:43 -0700365
366 if (state->config->demod_chip == LGDT3303) {
367 err = i2c_write_demod_bytes(state, lgdt3303_8vsb_44_data,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700368 sizeof(lgdt3303_8vsb_44_data));
Michael Krufky1963c902005-08-08 09:22:43 -0700369 }
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700370 break;
371
372 case QAM_64:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300373 dprintk("%s: QAM_64 MODE\n", __func__);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700374
Michael Krufky1963c902005-08-08 09:22:43 -0700375 /* Select QAM_64 mode */
376 top_ctrl_cfg[1] = 0x00;
Michael Krufky0ccef6d2005-07-27 11:45:55 -0700377
378 /* Select CABLE connector if supported by card */
379 if (state->config->pll_rf_set)
380 state->config->pll_rf_set(fe, 0);
Michael Krufky1963c902005-08-08 09:22:43 -0700381
382 if (state->config->demod_chip == LGDT3303) {
383 err = i2c_write_demod_bytes(state, lgdt3303_qam_data,
384 sizeof(lgdt3303_qam_data));
385 }
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700386 break;
387
388 case QAM_256:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300389 dprintk("%s: QAM_256 MODE\n", __func__);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700390
Michael Krufky1963c902005-08-08 09:22:43 -0700391 /* Select QAM_256 mode */
392 top_ctrl_cfg[1] = 0x01;
Michael Krufky0ccef6d2005-07-27 11:45:55 -0700393
394 /* Select CABLE connector if supported by card */
395 if (state->config->pll_rf_set)
396 state->config->pll_rf_set(fe, 0);
Michael Krufky1963c902005-08-08 09:22:43 -0700397
398 if (state->config->demod_chip == LGDT3303) {
399 err = i2c_write_demod_bytes(state, lgdt3303_qam_data,
400 sizeof(lgdt3303_qam_data));
401 }
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700402 break;
403 default:
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300404 printk(KERN_WARNING "lgdt330x: %s: Modulation type(%d) UNSUPPORTED\n", __func__, p->modulation);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700405 return -1;
406 }
Michael Krufky54828d12011-12-15 10:30:38 -0300407 if (err < 0)
408 printk(KERN_WARNING "lgdt330x: %s: error blasting "
409 "bytes to lgdt3303 for modulation type(%d)\n",
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300410 __func__, p->modulation);
Michael Krufky54828d12011-12-15 10:30:38 -0300411
Michael Krufky1963c902005-08-08 09:22:43 -0700412 /*
413 * select serial or parallel MPEG harware interface
414 * Serial: 0x04 for LGDT3302 or 0x40 for LGDT3303
415 * Parallel: 0x00
416 */
417 top_ctrl_cfg[1] |= state->config->serial_mpeg;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700418
419 /* Select the requested mode */
Michael Krufky1963c902005-08-08 09:22:43 -0700420 i2c_write_demod_bytes(state, top_ctrl_cfg,
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700421 sizeof(top_ctrl_cfg));
422 if (state->config->set_ts_params)
423 state->config->set_ts_params(fe, 0);
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300424 state->current_modulation = p->modulation;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700425 }
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700426
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700427 /* Tune to the specified frequency */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300428 if (fe->ops.tuner_ops.set_params) {
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300429 fe->ops.tuner_ops.set_params(fe);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300430 if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);
Andrew de Quincey02269f32006-04-18 17:47:11 -0300431 }
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700432
433 /* Keep track of the new frequency */
Mauro Carvalho Chehab4302c152006-01-09 15:25:22 -0200434 /* FIXME this is the wrong way to do this... */
435 /* The tuner is shared with the video4linux analog API */
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300436 state->current_frequency = p->frequency;
Michael Krufkydc9ca2a2005-09-06 15:19:40 -0700437
Michael Krufky6ddcc912005-07-27 11:46:00 -0700438 lgdt330x_SwReset(state);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700439 return 0;
440}
441
Mauro Carvalho Chehab7e3e68b2016-02-04 12:58:30 -0200442static int lgdt330x_get_frontend(struct dvb_frontend *fe,
443 struct dtv_frontend_properties *p)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700444{
Michael Krufky6ddcc912005-07-27 11:46:00 -0700445 struct lgdt330x_state *state = fe->demodulator_priv;
Mauro Carvalho Chehab7e3e68b2016-02-04 12:58:30 -0200446
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300447 p->frequency = state->current_frequency;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700448 return 0;
449}
450
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300451static int lgdt3302_read_status(struct dvb_frontend *fe,
452 enum fe_status *status)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700453{
Michael Krufky1963c902005-08-08 09:22:43 -0700454 struct lgdt330x_state* state = fe->demodulator_priv;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700455 u8 buf[3];
456
457 *status = 0; /* Reset status result */
458
Michael Krufky08d80522005-07-07 17:58:43 -0700459 /* AGC status register */
Michael Krufky1963c902005-08-08 09:22:43 -0700460 i2c_read_demod_bytes(state, AGC_STATUS, buf, 1);
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300461 dprintk("%s: AGC_STATUS = 0x%02x\n", __func__, buf[0]);
Michael Krufky08d80522005-07-07 17:58:43 -0700462 if ((buf[0] & 0x0c) == 0x8){
463 /* Test signal does not exist flag */
464 /* as well as the AGC lock flag. */
465 *status |= FE_HAS_SIGNAL;
Michael Krufky08d80522005-07-07 17:58:43 -0700466 }
467
Michael Krufky1963c902005-08-08 09:22:43 -0700468 /*
469 * You must set the Mask bits to 1 in the IRQ_MASK in order
470 * to see that status bit in the IRQ_STATUS register.
471 * This is done in SwReset();
472 */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700473 /* signal status */
Michael Krufky1963c902005-08-08 09:22:43 -0700474 i2c_read_demod_bytes(state, TOP_CONTROL, buf, sizeof(buf));
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300475 dprintk("%s: TOP_CONTROL = 0x%02x, IRO_MASK = 0x%02x, IRQ_STATUS = 0x%02x\n", __func__, buf[0], buf[1], buf[2]);
Michael Krufky08d80522005-07-07 17:58:43 -0700476
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700477
478 /* sync status */
479 if ((buf[2] & 0x03) == 0x01) {
480 *status |= FE_HAS_SYNC;
481 }
482
483 /* FEC error status */
484 if ((buf[2] & 0x0c) == 0x08) {
485 *status |= FE_HAS_LOCK;
486 *status |= FE_HAS_VITERBI;
487 }
488
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700489 /* Carrier Recovery Lock Status Register */
Michael Krufky1963c902005-08-08 09:22:43 -0700490 i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1);
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300491 dprintk("%s: CARRIER_LOCK = 0x%02x\n", __func__, buf[0]);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700492 switch (state->current_modulation) {
493 case QAM_256:
494 case QAM_64:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200495 /* Need to understand why there are 3 lock levels here */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700496 if ((buf[0] & 0x07) == 0x07)
497 *status |= FE_HAS_CARRIER;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700498 break;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700499 case VSB_8:
500 if ((buf[0] & 0x80) == 0x80)
501 *status |= FE_HAS_CARRIER;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700502 break;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700503 default:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300504 printk(KERN_WARNING "lgdt330x: %s: Modulation set to unsupported value\n", __func__);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700505 }
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700506
507 return 0;
508}
509
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300510static int lgdt3303_read_status(struct dvb_frontend *fe,
511 enum fe_status *status)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700512{
Michael Krufky1963c902005-08-08 09:22:43 -0700513 struct lgdt330x_state* state = fe->demodulator_priv;
514 int err;
515 u8 buf[3];
516
517 *status = 0; /* Reset status result */
518
519 /* lgdt3303 AGC status register */
520 err = i2c_read_demod_bytes(state, 0x58, buf, 1);
521 if (err < 0)
522 return err;
523
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300524 dprintk("%s: AGC_STATUS = 0x%02x\n", __func__, buf[0]);
Michael Krufky1963c902005-08-08 09:22:43 -0700525 if ((buf[0] & 0x21) == 0x01){
526 /* Test input signal does not exist flag */
527 /* as well as the AGC lock flag. */
528 *status |= FE_HAS_SIGNAL;
Michael Krufky1963c902005-08-08 09:22:43 -0700529 }
530
531 /* Carrier Recovery Lock Status Register */
532 i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1);
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300533 dprintk("%s: CARRIER_LOCK = 0x%02x\n", __func__, buf[0]);
Michael Krufky1963c902005-08-08 09:22:43 -0700534 switch (state->current_modulation) {
535 case QAM_256:
536 case QAM_64:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200537 /* Need to understand why there are 3 lock levels here */
Michael Krufky1963c902005-08-08 09:22:43 -0700538 if ((buf[0] & 0x07) == 0x07)
539 *status |= FE_HAS_CARRIER;
540 else
541 break;
542 i2c_read_demod_bytes(state, 0x8a, buf, 1);
543 if ((buf[0] & 0x04) == 0x04)
544 *status |= FE_HAS_SYNC;
545 if ((buf[0] & 0x01) == 0x01)
546 *status |= FE_HAS_LOCK;
547 if ((buf[0] & 0x08) == 0x08)
548 *status |= FE_HAS_VITERBI;
549 break;
550 case VSB_8:
551 if ((buf[0] & 0x80) == 0x80)
552 *status |= FE_HAS_CARRIER;
553 else
554 break;
555 i2c_read_demod_bytes(state, 0x38, buf, 1);
556 if ((buf[0] & 0x02) == 0x00)
557 *status |= FE_HAS_SYNC;
558 if ((buf[0] & 0x01) == 0x01) {
559 *status |= FE_HAS_LOCK;
560 *status |= FE_HAS_VITERBI;
561 }
562 break;
563 default:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300564 printk(KERN_WARNING "lgdt330x: %s: Modulation set to unsupported value\n", __func__);
Michael Krufky1963c902005-08-08 09:22:43 -0700565 }
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700566 return 0;
567}
568
Trent Piepho19be6852006-10-29 13:35:39 -0300569/* Calculate SNR estimation (scaled by 2^24)
570
571 8-VSB SNR equations from LGDT3302 and LGDT3303 datasheets, QAM
572 equations from LGDT3303 datasheet. VSB is the same between the '02
573 and '03, so maybe QAM is too? Perhaps someone with a newer datasheet
574 that has QAM information could verify?
575
576 For 8-VSB: (two ways, take your pick)
577 LGDT3302:
578 SNR_EQ = 10 * log10(25 * 24^2 / EQ_MSE)
579 LGDT3303:
580 SNR_EQ = 10 * log10(25 * 32^2 / EQ_MSE)
581 LGDT3302 & LGDT3303:
582 SNR_PT = 10 * log10(25 * 32^2 / PT_MSE) (we use this one)
583 For 64-QAM:
584 SNR = 10 * log10( 688128 / MSEQAM)
585 For 256-QAM:
586 SNR = 10 * log10( 696320 / MSEQAM)
587
588 We re-write the snr equation as:
589 SNR * 2^24 = 10*(c - intlog10(MSE))
590 Where for 256-QAM, c = log10(696320) * 2^24, and so on. */
591
592static u32 calculate_snr(u32 mse, u32 c)
Michael Krufky1963c902005-08-08 09:22:43 -0700593{
Trent Piepho19be6852006-10-29 13:35:39 -0300594 if (mse == 0) /* No signal */
595 return 0;
596
597 mse = intlog10(mse);
598 if (mse > c) {
599 /* Negative SNR, which is possible, but realisticly the
600 demod will lose lock before the signal gets this bad. The
601 API only allows for unsigned values, so just return 0 */
602 return 0;
603 }
604 return 10*(c - mse);
Michael Krufky1963c902005-08-08 09:22:43 -0700605}
606
607static int lgdt3302_read_snr(struct dvb_frontend* fe, u16* snr)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700608{
Michael Krufky6ddcc912005-07-27 11:46:00 -0700609 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
Trent Piepho19be6852006-10-29 13:35:39 -0300610 u8 buf[5]; /* read data buffer */
611 u32 noise; /* noise value */
612 u32 c; /* per-modulation SNR calculation constant */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700613
Trent Piepho19be6852006-10-29 13:35:39 -0300614 switch(state->current_modulation) {
615 case VSB_8:
616 i2c_read_demod_bytes(state, LGDT3302_EQPH_ERR0, buf, 5);
617#ifdef USE_EQMSE
618 /* Use Equalizer Mean-Square Error Register */
619 /* SNR for ranges from -15.61 to +41.58 */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700620 noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2];
Trent Piepho19be6852006-10-29 13:35:39 -0300621 c = 69765745; /* log10(25*24^2)*2^24 */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700622#else
Trent Piepho19be6852006-10-29 13:35:39 -0300623 /* Use Phase Tracker Mean-Square Error Register */
624 /* SNR for ranges from -13.11 to +44.08 */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700625 noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4];
Trent Piepho19be6852006-10-29 13:35:39 -0300626 c = 73957994; /* log10(25*32^2)*2^24 */
627#endif
628 break;
629 case QAM_64:
630 case QAM_256:
631 i2c_read_demod_bytes(state, CARRIER_MSEQAM1, buf, 2);
Michael Krufky1963c902005-08-08 09:22:43 -0700632 noise = ((buf[0] & 3) << 8) | buf[1];
Trent Piepho19be6852006-10-29 13:35:39 -0300633 c = state->current_modulation == QAM_64 ? 97939837 : 98026066;
634 /* log10(688128)*2^24 and log10(696320)*2^24 */
635 break;
636 default:
637 printk(KERN_ERR "lgdt330x: %s: Modulation set to unsupported value\n",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300638 __func__);
Trent Piepho19be6852006-10-29 13:35:39 -0300639 return -EREMOTEIO; /* return -EDRIVER_IS_GIBBERED; */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700640 }
641
Trent Piepho19be6852006-10-29 13:35:39 -0300642 state->snr = calculate_snr(noise, c);
643 *snr = (state->snr) >> 16; /* Convert from 8.24 fixed-point to 8.8 */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700644
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300645 dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__, noise,
Trent Piepho19be6852006-10-29 13:35:39 -0300646 state->snr >> 24, (((state->snr>>8) & 0xffff) * 100) >> 16);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700647
648 return 0;
649}
650
Michael Krufky1963c902005-08-08 09:22:43 -0700651static int lgdt3303_read_snr(struct dvb_frontend* fe, u16* snr)
652{
Michael Krufky1963c902005-08-08 09:22:43 -0700653 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
Trent Piepho19be6852006-10-29 13:35:39 -0300654 u8 buf[5]; /* read data buffer */
655 u32 noise; /* noise value */
656 u32 c; /* per-modulation SNR calculation constant */
Michael Krufky1963c902005-08-08 09:22:43 -0700657
Trent Piepho19be6852006-10-29 13:35:39 -0300658 switch(state->current_modulation) {
659 case VSB_8:
660 i2c_read_demod_bytes(state, LGDT3303_EQPH_ERR0, buf, 5);
661#ifdef USE_EQMSE
662 /* Use Equalizer Mean-Square Error Register */
663 /* SNR for ranges from -16.12 to +44.08 */
664 noise = ((buf[0] & 0x78) << 13) | (buf[1] << 8) | buf[2];
665 c = 73957994; /* log10(25*32^2)*2^24 */
666#else
667 /* Use Phase Tracker Mean-Square Error Register */
668 /* SNR for ranges from -13.11 to +44.08 */
Michael Krufky1963c902005-08-08 09:22:43 -0700669 noise = ((buf[0] & 7) << 16) | (buf[3] << 8) | buf[4];
Trent Piepho19be6852006-10-29 13:35:39 -0300670 c = 73957994; /* log10(25*32^2)*2^24 */
671#endif
672 break;
673 case QAM_64:
674 case QAM_256:
675 i2c_read_demod_bytes(state, CARRIER_MSEQAM1, buf, 2);
Michael Krufky1963c902005-08-08 09:22:43 -0700676 noise = (buf[0] << 8) | buf[1];
Trent Piepho19be6852006-10-29 13:35:39 -0300677 c = state->current_modulation == QAM_64 ? 97939837 : 98026066;
678 /* log10(688128)*2^24 and log10(696320)*2^24 */
679 break;
680 default:
681 printk(KERN_ERR "lgdt330x: %s: Modulation set to unsupported value\n",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300682 __func__);
Trent Piepho19be6852006-10-29 13:35:39 -0300683 return -EREMOTEIO; /* return -EDRIVER_IS_GIBBERED; */
Michael Krufky1963c902005-08-08 09:22:43 -0700684 }
685
Trent Piepho19be6852006-10-29 13:35:39 -0300686 state->snr = calculate_snr(noise, c);
687 *snr = (state->snr) >> 16; /* Convert from 8.24 fixed-point to 8.8 */
Michael Krufky1963c902005-08-08 09:22:43 -0700688
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300689 dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__, noise,
Trent Piepho19be6852006-10-29 13:35:39 -0300690 state->snr >> 24, (((state->snr >> 8) & 0xffff) * 100) >> 16);
691
692 return 0;
693}
694
695static int lgdt330x_read_signal_strength(struct dvb_frontend* fe, u16* strength)
696{
697 /* Calculate Strength from SNR up to 35dB */
698 /* Even though the SNR can go higher than 35dB, there is some comfort */
699 /* factor in having a range of strong signals that can show at 100% */
700 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
701 u16 snr;
702 int ret;
703
704 ret = fe->ops.read_snr(fe, &snr);
705 if (ret != 0)
706 return ret;
707 /* Rather than use the 8.8 value snr, use state->snr which is 8.24 */
708 /* scale the range 0 - 35*2^24 into 0 - 65535 */
709 if (state->snr >= 8960 * 0x10000)
710 *strength = 0xffff;
711 else
712 *strength = state->snr / 8960;
Michael Krufky1963c902005-08-08 09:22:43 -0700713
714 return 0;
715}
716
Michael Krufky6ddcc912005-07-27 11:46:00 -0700717static int lgdt330x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fe_tune_settings)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700718{
719 /* I have no idea about this - it may not be needed */
720 fe_tune_settings->min_delay_ms = 500;
721 fe_tune_settings->step_size = 0;
722 fe_tune_settings->max_drift = 0;
723 return 0;
724}
725
Michael Krufky6ddcc912005-07-27 11:46:00 -0700726static void lgdt330x_release(struct dvb_frontend* fe)
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700727{
Michael Krufky6ddcc912005-07-27 11:46:00 -0700728 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700729 kfree(state);
730}
731
Michael Krufky1963c902005-08-08 09:22:43 -0700732static struct dvb_frontend_ops lgdt3302_ops;
733static struct dvb_frontend_ops lgdt3303_ops;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700734
Michael Krufky6ddcc912005-07-27 11:46:00 -0700735struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config,
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700736 struct i2c_adapter* i2c)
737{
Michael Krufky6ddcc912005-07-27 11:46:00 -0700738 struct lgdt330x_state* state = NULL;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700739 u8 buf[1];
740
741 /* Allocate memory for the internal state */
Panagiotis Issaris74081872006-01-11 19:40:56 -0200742 state = kzalloc(sizeof(struct lgdt330x_state), GFP_KERNEL);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700743 if (state == NULL)
744 goto error;
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700745
746 /* Setup the state */
747 state->config = config;
748 state->i2c = i2c;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300749
750 /* Create dvb_frontend */
Michael Krufky1963c902005-08-08 09:22:43 -0700751 switch (config->demod_chip) {
752 case LGDT3302:
Patrick Boettcherdea74862006-05-14 05:01:31 -0300753 memcpy(&state->frontend.ops, &lgdt3302_ops, sizeof(struct dvb_frontend_ops));
Michael Krufky1963c902005-08-08 09:22:43 -0700754 break;
755 case LGDT3303:
Patrick Boettcherdea74862006-05-14 05:01:31 -0300756 memcpy(&state->frontend.ops, &lgdt3303_ops, sizeof(struct dvb_frontend_ops));
Michael Krufky1963c902005-08-08 09:22:43 -0700757 break;
758 default:
759 goto error;
760 }
Patrick Boettcherdea74862006-05-14 05:01:31 -0300761 state->frontend.demodulator_priv = state;
Michael Krufky1963c902005-08-08 09:22:43 -0700762
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700763 /* Verify communication with demod chip */
Michael Krufky1963c902005-08-08 09:22:43 -0700764 if (i2c_read_demod_bytes(state, 2, buf, 1))
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700765 goto error;
766
767 state->current_frequency = -1;
768 state->current_modulation = -1;
769
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700770 return &state->frontend;
771
772error:
Jesper Juhl2ea75332005-11-07 01:01:31 -0800773 kfree(state);
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300774 dprintk("%s: ERROR\n",__func__);
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700775 return NULL;
776}
777
Michael Krufky1963c902005-08-08 09:22:43 -0700778static struct dvb_frontend_ops lgdt3302_ops = {
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300779 .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B },
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700780 .info = {
Michael Krufkye179d8b2005-08-09 17:48:54 -0700781 .name= "LG Electronics LGDT3302 VSB/QAM Frontend",
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700782 .frequency_min= 54000000,
783 .frequency_max= 858000000,
784 .frequency_stepsize= 62500,
Michael Krufky66944e92005-11-08 21:35:55 -0800785 .symbol_rate_min = 5056941, /* QAM 64 */
786 .symbol_rate_max = 10762000, /* VSB 8 */
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700787 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
788 },
Michael Krufky6ddcc912005-07-27 11:46:00 -0700789 .init = lgdt330x_init,
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300790 .set_frontend = lgdt330x_set_parameters,
791 .get_frontend = lgdt330x_get_frontend,
Michael Krufky6ddcc912005-07-27 11:46:00 -0700792 .get_tune_settings = lgdt330x_get_tune_settings,
Michael Krufky1963c902005-08-08 09:22:43 -0700793 .read_status = lgdt3302_read_status,
Michael Krufky6ddcc912005-07-27 11:46:00 -0700794 .read_ber = lgdt330x_read_ber,
795 .read_signal_strength = lgdt330x_read_signal_strength,
Michael Krufky1963c902005-08-08 09:22:43 -0700796 .read_snr = lgdt3302_read_snr,
Michael Krufky6ddcc912005-07-27 11:46:00 -0700797 .read_ucblocks = lgdt330x_read_ucblocks,
798 .release = lgdt330x_release,
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700799};
800
Michael Krufky1963c902005-08-08 09:22:43 -0700801static struct dvb_frontend_ops lgdt3303_ops = {
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300802 .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B },
Michael Krufky1963c902005-08-08 09:22:43 -0700803 .info = {
804 .name= "LG Electronics LGDT3303 VSB/QAM Frontend",
Michael Krufky1963c902005-08-08 09:22:43 -0700805 .frequency_min= 54000000,
806 .frequency_max= 858000000,
807 .frequency_stepsize= 62500,
Michael Krufky66944e92005-11-08 21:35:55 -0800808 .symbol_rate_min = 5056941, /* QAM 64 */
809 .symbol_rate_max = 10762000, /* VSB 8 */
Michael Krufky1963c902005-08-08 09:22:43 -0700810 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
811 },
812 .init = lgdt330x_init,
Mauro Carvalho Chehabca7072d2011-12-26 11:25:21 -0300813 .set_frontend = lgdt330x_set_parameters,
814 .get_frontend = lgdt330x_get_frontend,
Michael Krufky1963c902005-08-08 09:22:43 -0700815 .get_tune_settings = lgdt330x_get_tune_settings,
816 .read_status = lgdt3303_read_status,
817 .read_ber = lgdt330x_read_ber,
818 .read_signal_strength = lgdt330x_read_signal_strength,
819 .read_snr = lgdt3303_read_snr,
820 .read_ucblocks = lgdt330x_read_ucblocks,
821 .release = lgdt330x_release,
822};
823
824MODULE_DESCRIPTION("LGDT330X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver");
Mac Michaelsd8667cb2005-07-07 17:58:29 -0700825MODULE_AUTHOR("Wilson Michaels");
826MODULE_LICENSE("GPL");
827
Michael Krufky6ddcc912005-07-27 11:46:00 -0700828EXPORT_SYMBOL(lgdt330x_attach);