2 * Support for LGDT3302 and LGDT3303 - VSB/QAM
4 * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net>
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.
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.
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.
23 * NOTES ABOUT THIS DRIVER
25 * This Linux driver supports:
26 * DViCO FusionHDTV 3 Gold-Q
27 * DViCO FusionHDTV 3 Gold-T
28 * DViCO FusionHDTV 5 Gold
29 * DViCO FusionHDTV 5 Lite
30 * DViCO FusionHDTV 5 USB Gold
31 * Air2PC/AirStar 2 ATSC 3rd generation (HD5000)
36 #include <linux/kernel.h>
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/delay.h>
40 #include <linux/string.h>
41 #include <linux/slab.h>
42 #include <asm/byteorder.h>
44 #include "dvb_frontend.h"
46 #include "lgdt330x_priv.h"
49 /* Use Equalizer Mean Squared Error instead of Phaser Tracker MSE */
50 /* #define USE_EQMSE */
53 module_param(debug, int, 0644);
54 MODULE_PARM_DESC(debug,"Turn on/off lgdt330x frontend debugging (default:off).");
55 #define dprintk(args...) \
57 if (debug) printk(KERN_DEBUG "lgdt330x: " args); \
62 struct i2c_adapter* i2c;
64 /* Configuration settings */
65 const struct lgdt330x_config* config;
67 struct dvb_frontend frontend;
69 /* Demodulator private data */
70 fe_modulation_t current_modulation;
71 u32 snr; /* Result of last SNR calculation */
73 /* Tuner private data */
74 u32 current_frequency;
77 static int i2c_write_demod_bytes (struct lgdt330x_state* state,
78 u8 *buf, /* data bytes to send */
79 int len /* number of bytes to send */ )
82 { .addr = state->config->demod_address,
89 for (i=0; i<len-1; i+=2){
90 if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) {
91 printk(KERN_WARNING "lgdt330x: %s error (addr %02x <- %02x, err = %i)\n", __func__, msg.buf[0], msg.buf[1], err);
103 * This routine writes the register (reg) to the demod bus
104 * then reads the data returned for (len) bytes.
107 static u8 i2c_read_demod_bytes (struct lgdt330x_state* state,
108 enum I2C_REG reg, u8* buf, int len)
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 },
118 ret = i2c_transfer(state->i2c, msg, 2);
120 printk(KERN_WARNING "lgdt330x: %s: addr 0x%02x select 0x%02x error (ret == %i)\n", __func__, state->config->demod_address, reg, ret);
128 static int lgdt3302_SwReset(struct lgdt330x_state* state)
133 0x00 /* bit 6 is active low software reset
134 * bits 5-0 are 1 to mask interrupts */
137 ret = i2c_write_demod_bytes(state,
138 reset, sizeof(reset));
141 /* force reset high (inactive) and unmask interrupts */
143 ret = i2c_write_demod_bytes(state,
144 reset, sizeof(reset));
149 static int lgdt3303_SwReset(struct lgdt330x_state* state)
154 0x00 /* bit 0 is active low software reset */
157 ret = i2c_write_demod_bytes(state,
158 reset, sizeof(reset));
161 /* force reset high (inactive) */
163 ret = i2c_write_demod_bytes(state,
164 reset, sizeof(reset));
169 static int lgdt330x_SwReset(struct lgdt330x_state* state)
171 switch (state->config->demod_chip) {
173 return lgdt3302_SwReset(state);
175 return lgdt3303_SwReset(state);
181 static int lgdt330x_init(struct dvb_frontend* fe)
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. */
190 * Array of byte pairs <address, value>
191 * to initialize each different chip
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 */
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
219 /* Change the value of IAGCBW[15:8]
220 of inner AGC loop filter bandwidth */
221 AGC_LOOP_BANDWIDTH0, 0x08,
222 AGC_LOOP_BANDWIDTH1, 0x9a
225 static u8 lgdt3303_init_data[] = {
229 static u8 flip_1_lgdt3303_init_data[] = {
234 static u8 flip_2_lgdt3303_init_data[] = {
239 struct lgdt330x_state* state = fe->demodulator_priv;
243 switch (state->config->demod_chip) {
245 chip_name = "LGDT3302";
246 err = i2c_write_demod_bytes(state, lgdt3302_init_data,
247 sizeof(lgdt3302_init_data));
250 chip_name = "LGDT3303";
251 switch (state->config->clock_polarity_flip) {
253 err = i2c_write_demod_bytes(state,
254 flip_2_lgdt3303_init_data,
255 sizeof(flip_2_lgdt3303_init_data));
258 err = i2c_write_demod_bytes(state,
259 flip_1_lgdt3303_init_data,
260 sizeof(flip_1_lgdt3303_init_data));
264 err = i2c_write_demod_bytes(state, lgdt3303_init_data,
265 sizeof(lgdt3303_init_data));
269 chip_name = "undefined";
270 printk (KERN_WARNING "Only LGDT3302 and LGDT3303 are supported chips.\n");
273 dprintk("%s entered as %s\n", __func__, chip_name);
276 return lgdt330x_SwReset(state);
279 static int lgdt330x_read_ber(struct dvb_frontend* fe, u32* ber)
281 *ber = 0; /* Not supplied by the demod chips */
285 static int lgdt330x_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
287 struct lgdt330x_state* state = fe->demodulator_priv;
291 switch (state->config->demod_chip) {
293 err = i2c_read_demod_bytes(state, LGDT3302_PACKET_ERR_COUNTER1,
297 err = i2c_read_demod_bytes(state, LGDT3303_PACKET_ERR_COUNTER1,
302 "Only LGDT3302 and LGDT3303 are supported chips.\n");
306 *ucblocks = (buf[0] << 8) | buf[1];
310 static int lgdt330x_set_parameters(struct dvb_frontend* fe,
311 struct dvb_frontend_parameters *param)
314 * Array of byte pairs <address, value>
315 * to initialize 8VSB for lgdt3303 chip 50 MHz IF
317 static u8 lgdt3303_8vsb_44_data[] = {
326 * Array of byte pairs <address, value>
327 * to initialize QAM for lgdt3303 chip
329 static u8 lgdt3303_qam_data[] = {
342 struct lgdt330x_state* state = fe->demodulator_priv;
344 static u8 top_ctrl_cfg[] = { TOP_CONTROL, 0x03 };
347 /* Change only if we are actually changing the modulation */
348 if (state->current_modulation != param->u.vsb.modulation) {
349 switch(param->u.vsb.modulation) {
351 dprintk("%s: VSB_8 MODE\n", __func__);
353 /* Select VSB mode */
354 top_ctrl_cfg[1] = 0x03;
356 /* Select ANT connector if supported by card */
357 if (state->config->pll_rf_set)
358 state->config->pll_rf_set(fe, 1);
360 if (state->config->demod_chip == LGDT3303) {
361 err = i2c_write_demod_bytes(state, lgdt3303_8vsb_44_data,
362 sizeof(lgdt3303_8vsb_44_data));
367 dprintk("%s: QAM_64 MODE\n", __func__);
369 /* Select QAM_64 mode */
370 top_ctrl_cfg[1] = 0x00;
372 /* Select CABLE connector if supported by card */
373 if (state->config->pll_rf_set)
374 state->config->pll_rf_set(fe, 0);
376 if (state->config->demod_chip == LGDT3303) {
377 err = i2c_write_demod_bytes(state, lgdt3303_qam_data,
378 sizeof(lgdt3303_qam_data));
383 dprintk("%s: QAM_256 MODE\n", __func__);
385 /* Select QAM_256 mode */
386 top_ctrl_cfg[1] = 0x01;
388 /* Select CABLE connector if supported by card */
389 if (state->config->pll_rf_set)
390 state->config->pll_rf_set(fe, 0);
392 if (state->config->demod_chip == LGDT3303) {
393 err = i2c_write_demod_bytes(state, lgdt3303_qam_data,
394 sizeof(lgdt3303_qam_data));
398 printk(KERN_WARNING "lgdt330x: %s: Modulation type(%d) UNSUPPORTED\n", __func__, param->u.vsb.modulation);
402 * select serial or parallel MPEG harware interface
403 * Serial: 0x04 for LGDT3302 or 0x40 for LGDT3303
406 top_ctrl_cfg[1] |= state->config->serial_mpeg;
408 /* Select the requested mode */
409 i2c_write_demod_bytes(state, top_ctrl_cfg,
410 sizeof(top_ctrl_cfg));
411 if (state->config->set_ts_params)
412 state->config->set_ts_params(fe, 0);
413 state->current_modulation = param->u.vsb.modulation;
416 /* Tune to the specified frequency */
417 if (fe->ops.tuner_ops.set_params) {
418 fe->ops.tuner_ops.set_params(fe, param);
419 if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);
422 /* Keep track of the new frequency */
423 /* FIXME this is the wrong way to do this... */
424 /* The tuner is shared with the video4linux analog API */
425 state->current_frequency = param->frequency;
427 lgdt330x_SwReset(state);
431 static int lgdt330x_get_frontend(struct dvb_frontend* fe,
432 struct dvb_frontend_parameters* param)
434 struct lgdt330x_state *state = fe->demodulator_priv;
435 param->frequency = state->current_frequency;
439 static int lgdt3302_read_status(struct dvb_frontend* fe, fe_status_t* status)
441 struct lgdt330x_state* state = fe->demodulator_priv;
444 *status = 0; /* Reset status result */
446 /* AGC status register */
447 i2c_read_demod_bytes(state, AGC_STATUS, buf, 1);
448 dprintk("%s: AGC_STATUS = 0x%02x\n", __func__, buf[0]);
449 if ((buf[0] & 0x0c) == 0x8){
450 /* Test signal does not exist flag */
451 /* as well as the AGC lock flag. */
452 *status |= FE_HAS_SIGNAL;
456 * You must set the Mask bits to 1 in the IRQ_MASK in order
457 * to see that status bit in the IRQ_STATUS register.
458 * This is done in SwReset();
461 i2c_read_demod_bytes(state, TOP_CONTROL, buf, sizeof(buf));
462 dprintk("%s: TOP_CONTROL = 0x%02x, IRO_MASK = 0x%02x, IRQ_STATUS = 0x%02x\n", __func__, buf[0], buf[1], buf[2]);
466 if ((buf[2] & 0x03) == 0x01) {
467 *status |= FE_HAS_SYNC;
470 /* FEC error status */
471 if ((buf[2] & 0x0c) == 0x08) {
472 *status |= FE_HAS_LOCK;
473 *status |= FE_HAS_VITERBI;
476 /* Carrier Recovery Lock Status Register */
477 i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1);
478 dprintk("%s: CARRIER_LOCK = 0x%02x\n", __func__, buf[0]);
479 switch (state->current_modulation) {
482 /* Need to undestand why there are 3 lock levels here */
483 if ((buf[0] & 0x07) == 0x07)
484 *status |= FE_HAS_CARRIER;
487 if ((buf[0] & 0x80) == 0x80)
488 *status |= FE_HAS_CARRIER;
491 printk(KERN_WARNING "lgdt330x: %s: Modulation set to unsupported value\n", __func__);
497 static int lgdt3303_read_status(struct dvb_frontend* fe, fe_status_t* status)
499 struct lgdt330x_state* state = fe->demodulator_priv;
503 *status = 0; /* Reset status result */
505 /* lgdt3303 AGC status register */
506 err = i2c_read_demod_bytes(state, 0x58, buf, 1);
510 dprintk("%s: AGC_STATUS = 0x%02x\n", __func__, buf[0]);
511 if ((buf[0] & 0x21) == 0x01){
512 /* Test input signal does not exist flag */
513 /* as well as the AGC lock flag. */
514 *status |= FE_HAS_SIGNAL;
517 /* Carrier Recovery Lock Status Register */
518 i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1);
519 dprintk("%s: CARRIER_LOCK = 0x%02x\n", __func__, buf[0]);
520 switch (state->current_modulation) {
523 /* Need to undestand why there are 3 lock levels here */
524 if ((buf[0] & 0x07) == 0x07)
525 *status |= FE_HAS_CARRIER;
528 i2c_read_demod_bytes(state, 0x8a, buf, 1);
529 if ((buf[0] & 0x04) == 0x04)
530 *status |= FE_HAS_SYNC;
531 if ((buf[0] & 0x01) == 0x01)
532 *status |= FE_HAS_LOCK;
533 if ((buf[0] & 0x08) == 0x08)
534 *status |= FE_HAS_VITERBI;
537 if ((buf[0] & 0x80) == 0x80)
538 *status |= FE_HAS_CARRIER;
541 i2c_read_demod_bytes(state, 0x38, buf, 1);
542 if ((buf[0] & 0x02) == 0x00)
543 *status |= FE_HAS_SYNC;
544 if ((buf[0] & 0x01) == 0x01) {
545 *status |= FE_HAS_LOCK;
546 *status |= FE_HAS_VITERBI;
550 printk(KERN_WARNING "lgdt330x: %s: Modulation set to unsupported value\n", __func__);
555 /* Calculate SNR estimation (scaled by 2^24)
557 8-VSB SNR equations from LGDT3302 and LGDT3303 datasheets, QAM
558 equations from LGDT3303 datasheet. VSB is the same between the '02
559 and '03, so maybe QAM is too? Perhaps someone with a newer datasheet
560 that has QAM information could verify?
562 For 8-VSB: (two ways, take your pick)
564 SNR_EQ = 10 * log10(25 * 24^2 / EQ_MSE)
566 SNR_EQ = 10 * log10(25 * 32^2 / EQ_MSE)
568 SNR_PT = 10 * log10(25 * 32^2 / PT_MSE) (we use this one)
570 SNR = 10 * log10( 688128 / MSEQAM)
572 SNR = 10 * log10( 696320 / MSEQAM)
574 We re-write the snr equation as:
575 SNR * 2^24 = 10*(c - intlog10(MSE))
576 Where for 256-QAM, c = log10(696320) * 2^24, and so on. */
578 static u32 calculate_snr(u32 mse, u32 c)
580 if (mse == 0) /* No signal */
585 /* Negative SNR, which is possible, but realisticly the
586 demod will lose lock before the signal gets this bad. The
587 API only allows for unsigned values, so just return 0 */
593 static int lgdt3302_read_snr(struct dvb_frontend* fe, u16* snr)
595 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
596 u8 buf[5]; /* read data buffer */
597 u32 noise; /* noise value */
598 u32 c; /* per-modulation SNR calculation constant */
600 switch(state->current_modulation) {
602 i2c_read_demod_bytes(state, LGDT3302_EQPH_ERR0, buf, 5);
604 /* Use Equalizer Mean-Square Error Register */
605 /* SNR for ranges from -15.61 to +41.58 */
606 noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2];
607 c = 69765745; /* log10(25*24^2)*2^24 */
609 /* Use Phase Tracker Mean-Square Error Register */
610 /* SNR for ranges from -13.11 to +44.08 */
611 noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4];
612 c = 73957994; /* log10(25*32^2)*2^24 */
617 i2c_read_demod_bytes(state, CARRIER_MSEQAM1, buf, 2);
618 noise = ((buf[0] & 3) << 8) | buf[1];
619 c = state->current_modulation == QAM_64 ? 97939837 : 98026066;
620 /* log10(688128)*2^24 and log10(696320)*2^24 */
623 printk(KERN_ERR "lgdt330x: %s: Modulation set to unsupported value\n",
625 return -EREMOTEIO; /* return -EDRIVER_IS_GIBBERED; */
628 state->snr = calculate_snr(noise, c);
629 *snr = (state->snr) >> 16; /* Convert from 8.24 fixed-point to 8.8 */
631 dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__, noise,
632 state->snr >> 24, (((state->snr>>8) & 0xffff) * 100) >> 16);
637 static int lgdt3303_read_snr(struct dvb_frontend* fe, u16* snr)
639 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
640 u8 buf[5]; /* read data buffer */
641 u32 noise; /* noise value */
642 u32 c; /* per-modulation SNR calculation constant */
644 switch(state->current_modulation) {
646 i2c_read_demod_bytes(state, LGDT3303_EQPH_ERR0, buf, 5);
648 /* Use Equalizer Mean-Square Error Register */
649 /* SNR for ranges from -16.12 to +44.08 */
650 noise = ((buf[0] & 0x78) << 13) | (buf[1] << 8) | buf[2];
651 c = 73957994; /* log10(25*32^2)*2^24 */
653 /* Use Phase Tracker Mean-Square Error Register */
654 /* SNR for ranges from -13.11 to +44.08 */
655 noise = ((buf[0] & 7) << 16) | (buf[3] << 8) | buf[4];
656 c = 73957994; /* log10(25*32^2)*2^24 */
661 i2c_read_demod_bytes(state, CARRIER_MSEQAM1, buf, 2);
662 noise = (buf[0] << 8) | buf[1];
663 c = state->current_modulation == QAM_64 ? 97939837 : 98026066;
664 /* log10(688128)*2^24 and log10(696320)*2^24 */
667 printk(KERN_ERR "lgdt330x: %s: Modulation set to unsupported value\n",
669 return -EREMOTEIO; /* return -EDRIVER_IS_GIBBERED; */
672 state->snr = calculate_snr(noise, c);
673 *snr = (state->snr) >> 16; /* Convert from 8.24 fixed-point to 8.8 */
675 dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__, noise,
676 state->snr >> 24, (((state->snr >> 8) & 0xffff) * 100) >> 16);
681 static int lgdt330x_read_signal_strength(struct dvb_frontend* fe, u16* strength)
683 /* Calculate Strength from SNR up to 35dB */
684 /* Even though the SNR can go higher than 35dB, there is some comfort */
685 /* factor in having a range of strong signals that can show at 100% */
686 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
690 ret = fe->ops.read_snr(fe, &snr);
693 /* Rather than use the 8.8 value snr, use state->snr which is 8.24 */
694 /* scale the range 0 - 35*2^24 into 0 - 65535 */
695 if (state->snr >= 8960 * 0x10000)
698 *strength = state->snr / 8960;
703 static int lgdt330x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fe_tune_settings)
705 /* I have no idea about this - it may not be needed */
706 fe_tune_settings->min_delay_ms = 500;
707 fe_tune_settings->step_size = 0;
708 fe_tune_settings->max_drift = 0;
712 static void lgdt330x_release(struct dvb_frontend* fe)
714 struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv;
718 static struct dvb_frontend_ops lgdt3302_ops;
719 static struct dvb_frontend_ops lgdt3303_ops;
721 struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config,
722 struct i2c_adapter* i2c)
724 struct lgdt330x_state* state = NULL;
727 /* Allocate memory for the internal state */
728 state = kzalloc(sizeof(struct lgdt330x_state), GFP_KERNEL);
732 /* Setup the state */
733 state->config = config;
736 /* Create dvb_frontend */
737 switch (config->demod_chip) {
739 memcpy(&state->frontend.ops, &lgdt3302_ops, sizeof(struct dvb_frontend_ops));
742 memcpy(&state->frontend.ops, &lgdt3303_ops, sizeof(struct dvb_frontend_ops));
747 state->frontend.demodulator_priv = state;
749 /* Verify communication with demod chip */
750 if (i2c_read_demod_bytes(state, 2, buf, 1))
753 state->current_frequency = -1;
754 state->current_modulation = -1;
756 return &state->frontend;
760 dprintk("%s: ERROR\n",__func__);
764 static struct dvb_frontend_ops lgdt3302_ops = {
766 .name= "LG Electronics LGDT3302 VSB/QAM Frontend",
768 .frequency_min= 54000000,
769 .frequency_max= 858000000,
770 .frequency_stepsize= 62500,
771 .symbol_rate_min = 5056941, /* QAM 64 */
772 .symbol_rate_max = 10762000, /* VSB 8 */
773 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
775 .init = lgdt330x_init,
776 .set_frontend = lgdt330x_set_parameters,
777 .get_frontend = lgdt330x_get_frontend,
778 .get_tune_settings = lgdt330x_get_tune_settings,
779 .read_status = lgdt3302_read_status,
780 .read_ber = lgdt330x_read_ber,
781 .read_signal_strength = lgdt330x_read_signal_strength,
782 .read_snr = lgdt3302_read_snr,
783 .read_ucblocks = lgdt330x_read_ucblocks,
784 .release = lgdt330x_release,
787 static struct dvb_frontend_ops lgdt3303_ops = {
789 .name= "LG Electronics LGDT3303 VSB/QAM Frontend",
791 .frequency_min= 54000000,
792 .frequency_max= 858000000,
793 .frequency_stepsize= 62500,
794 .symbol_rate_min = 5056941, /* QAM 64 */
795 .symbol_rate_max = 10762000, /* VSB 8 */
796 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
798 .init = lgdt330x_init,
799 .set_frontend = lgdt330x_set_parameters,
800 .get_frontend = lgdt330x_get_frontend,
801 .get_tune_settings = lgdt330x_get_tune_settings,
802 .read_status = lgdt3303_read_status,
803 .read_ber = lgdt330x_read_ber,
804 .read_signal_strength = lgdt330x_read_signal_strength,
805 .read_snr = lgdt3303_read_snr,
806 .read_ucblocks = lgdt330x_read_ucblocks,
807 .release = lgdt330x_release,
810 MODULE_DESCRIPTION("LGDT330X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver");
811 MODULE_AUTHOR("Wilson Michaels");
812 MODULE_LICENSE("GPL");
814 EXPORT_SYMBOL(lgdt330x_attach);