1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Support for LGDT3306A - 8VSB/QAM-B
5 * Copyright (C) 2013 Fred Richter <frichter@hauppauge.com>
6 * - driver structure based on lgdt3305.[ch] by Michael Krufky
7 * - code based on LG3306_V0.35 API by LG Electronics Inc.
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <asm/div64.h>
13 #include <linux/kernel.h>
14 #include <linux/dvb/frontend.h>
15 #include <media/dvb_math.h>
16 #include "lgdt3306a.h"
17 #include <linux/i2c-mux.h>
21 module_param(debug
, int, 0644);
22 MODULE_PARM_DESC(debug
, "set debug level (info=1, reg=2 (or-able))");
25 * Older drivers treated QAM64 and QAM256 the same; that is the HW always
26 * used "Auto" mode during detection. Setting "forced_manual"=1 allows
27 * the user to treat these modes as separate. For backwards compatibility,
28 * it's off by default. QAM_AUTO can now be specified to achive that
29 * effect even if "forced_manual"=1
31 static int forced_manual
;
32 module_param(forced_manual
, int, 0644);
33 MODULE_PARM_DESC(forced_manual
, "if set, QAM64 and QAM256 will only lock to modulation specified");
37 #define DBG_DUMP 4 /* FGR - comment out to remove dump code */
39 #define lg_debug(fmt, arg...) \
40 printk(KERN_DEBUG pr_fmt(fmt), ## arg)
42 #define dbg_info(fmt, arg...) \
44 if (debug & DBG_INFO) \
45 lg_debug(fmt, ## arg); \
48 #define dbg_reg(fmt, arg...) \
50 if (debug & DBG_REG) \
51 lg_debug(fmt, ## arg); \
54 #define lg_chkerr(ret) \
59 pr_err("error %d on line %d\n", ret, __LINE__); \
63 struct lgdt3306a_state
{
64 struct i2c_adapter
*i2c_adap
;
65 const struct lgdt3306a_config
*cfg
;
67 struct dvb_frontend frontend
;
69 enum fe_modulation current_modulation
;
70 u32 current_frequency
;
73 struct i2c_mux_core
*muxc
;
77 * LG3306A Register Usage
78 * (LG does not really name the registers, so this code does not either)
80 * 0000 -> 00FF Common control and status
81 * 1000 -> 10FF Synchronizer control and status
82 * 1F00 -> 1FFF Smart Antenna control and status
83 * 2100 -> 21FF VSB Equalizer control and status
84 * 2800 -> 28FF QAM Equalizer control and status
85 * 3000 -> 30FF FEC control and status
88 enum lgdt3306a_lock_status
{
91 LG3306_UNKNOWN_LOCK
= 0xff
94 enum lgdt3306a_neverlock_status
{
95 LG3306_NL_INIT
= 0x00,
96 LG3306_NL_PROCESS
= 0x01,
97 LG3306_NL_LOCK
= 0x02,
98 LG3306_NL_FAIL
= 0x03,
99 LG3306_NL_UNKNOWN
= 0xff
102 enum lgdt3306a_modulation
{
105 LG3306_QAM256
= 0x02,
106 LG3306_UNKNOWN_MODE
= 0xff
109 enum lgdt3306a_lock_check
{
118 static void lgdt3306a_DumpAllRegs(struct lgdt3306a_state
*state
);
119 static void lgdt3306a_DumpRegs(struct lgdt3306a_state
*state
);
123 static int lgdt3306a_write_reg(struct lgdt3306a_state
*state
, u16 reg
, u8 val
)
126 u8 buf
[] = { reg
>> 8, reg
& 0xff, val
};
127 struct i2c_msg msg
= {
128 .addr
= state
->cfg
->i2c_addr
, .flags
= 0,
129 .buf
= buf
, .len
= 3,
132 dbg_reg("reg: 0x%04x, val: 0x%02x\n", reg
, val
);
134 ret
= i2c_transfer(state
->i2c_adap
, &msg
, 1);
137 pr_err("error (addr %02x %02x <- %02x, err = %i)\n",
138 msg
.buf
[0], msg
.buf
[1], msg
.buf
[2], ret
);
147 static int lgdt3306a_read_reg(struct lgdt3306a_state
*state
, u16 reg
, u8
*val
)
150 u8 reg_buf
[] = { reg
>> 8, reg
& 0xff };
151 struct i2c_msg msg
[] = {
152 { .addr
= state
->cfg
->i2c_addr
,
153 .flags
= 0, .buf
= reg_buf
, .len
= 2 },
154 { .addr
= state
->cfg
->i2c_addr
,
155 .flags
= I2C_M_RD
, .buf
= val
, .len
= 1 },
158 ret
= i2c_transfer(state
->i2c_adap
, msg
, 2);
161 pr_err("error (addr %02x reg %04x error (ret == %i)\n",
162 state
->cfg
->i2c_addr
, reg
, ret
);
168 dbg_reg("reg: 0x%04x, val: 0x%02x\n", reg
, *val
);
173 #define read_reg(state, reg) \
176 int ret = lgdt3306a_read_reg(state, reg, &__val); \
177 if (lg_chkerr(ret)) \
182 static int lgdt3306a_set_reg_bit(struct lgdt3306a_state
*state
,
183 u16 reg
, int bit
, int onoff
)
188 dbg_reg("reg: 0x%04x, bit: %d, level: %d\n", reg
, bit
, onoff
);
190 ret
= lgdt3306a_read_reg(state
, reg
, &val
);
195 val
|= (onoff
& 1) << bit
;
197 ret
= lgdt3306a_write_reg(state
, reg
, val
);
203 /* ------------------------------------------------------------------------ */
205 static int lgdt3306a_soft_reset(struct lgdt3306a_state
*state
)
211 ret
= lgdt3306a_set_reg_bit(state
, 0x0000, 7, 0);
216 ret
= lgdt3306a_set_reg_bit(state
, 0x0000, 7, 1);
223 static int lgdt3306a_mpeg_mode(struct lgdt3306a_state
*state
,
224 enum lgdt3306a_mpeg_mode mode
)
229 dbg_info("(%d)\n", mode
);
230 /* transport packet format - TPSENB=0x80 */
231 ret
= lgdt3306a_set_reg_bit(state
, 0x0071, 7,
232 mode
== LGDT3306A_MPEG_PARALLEL
? 1 : 0);
237 * start of packet signal duration
238 * TPSSOPBITEN=0x40; 0=byte duration, 1=bit duration
240 ret
= lgdt3306a_set_reg_bit(state
, 0x0071, 6, 0);
244 ret
= lgdt3306a_read_reg(state
, 0x0070, &val
);
248 val
|= 0x10; /* TPCLKSUPB=0x10 */
250 if (mode
== LGDT3306A_MPEG_PARALLEL
)
253 ret
= lgdt3306a_write_reg(state
, 0x0070, val
);
260 static int lgdt3306a_mpeg_mode_polarity(struct lgdt3306a_state
*state
,
261 enum lgdt3306a_tp_clock_edge edge
,
262 enum lgdt3306a_tp_valid_polarity valid
)
267 dbg_info("edge=%d, valid=%d\n", edge
, valid
);
269 ret
= lgdt3306a_read_reg(state
, 0x0070, &val
);
273 val
&= ~0x06; /* TPCLKPOL=0x04, TPVALPOL=0x02 */
275 if (edge
== LGDT3306A_TPCLK_RISING_EDGE
)
277 if (valid
== LGDT3306A_TP_VALID_HIGH
)
280 ret
= lgdt3306a_write_reg(state
, 0x0070, val
);
287 static int lgdt3306a_mpeg_tristate(struct lgdt3306a_state
*state
,
293 dbg_info("(%d)\n", mode
);
296 ret
= lgdt3306a_read_reg(state
, 0x0070, &val
);
300 * Tristate bus; TPOUTEN=0x80, TPCLKOUTEN=0x20,
304 ret
= lgdt3306a_write_reg(state
, 0x0070, val
);
308 /* AGCIFOUTENB=0x40; 1=Disable IFAGC pin */
309 ret
= lgdt3306a_set_reg_bit(state
, 0x0003, 6, 1);
314 /* enable IFAGC pin */
315 ret
= lgdt3306a_set_reg_bit(state
, 0x0003, 6, 0);
319 ret
= lgdt3306a_read_reg(state
, 0x0070, &val
);
323 val
|= 0xa8; /* enable bus */
324 ret
= lgdt3306a_write_reg(state
, 0x0070, val
);
333 static int lgdt3306a_ts_bus_ctrl(struct dvb_frontend
*fe
, int acquire
)
335 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
337 dbg_info("acquire=%d\n", acquire
);
339 return lgdt3306a_mpeg_tristate(state
, acquire
? 0 : 1);
343 static int lgdt3306a_power(struct lgdt3306a_state
*state
,
348 dbg_info("(%d)\n", mode
);
352 ret
= lgdt3306a_set_reg_bit(state
, 0x0000, 7, 0);
357 ret
= lgdt3306a_set_reg_bit(state
, 0x0000, 0, 0);
363 ret
= lgdt3306a_set_reg_bit(state
, 0x0000, 7, 1);
368 ret
= lgdt3306a_set_reg_bit(state
, 0x0000, 0, 1);
374 lgdt3306a_DumpAllRegs(state
);
381 static int lgdt3306a_set_vsb(struct lgdt3306a_state
*state
)
388 /* 0. Spectrum inversion detection manual; spectrum inverted */
389 ret
= lgdt3306a_read_reg(state
, 0x0002, &val
);
390 val
&= 0xf7; /* SPECINVAUTO Off */
391 val
|= 0x04; /* SPECINV On */
392 ret
= lgdt3306a_write_reg(state
, 0x0002, val
);
396 /* 1. Selection of standard mode(0x08=QAM, 0x80=VSB) */
397 ret
= lgdt3306a_write_reg(state
, 0x0008, 0x80);
401 /* 2. Bandwidth mode for VSB(6MHz) */
402 ret
= lgdt3306a_read_reg(state
, 0x0009, &val
);
404 val
|= 0x0c; /* STDOPDETTMODE[2:0]=3 */
405 ret
= lgdt3306a_write_reg(state
, 0x0009, val
);
409 /* 3. QAM mode detection mode(None) */
410 ret
= lgdt3306a_read_reg(state
, 0x0009, &val
);
411 val
&= 0xfc; /* STDOPDETCMODE[1:0]=0 */
412 ret
= lgdt3306a_write_reg(state
, 0x0009, val
);
416 /* 4. ADC sampling frequency rate(2x sampling) */
417 ret
= lgdt3306a_read_reg(state
, 0x000d, &val
);
418 val
&= 0xbf; /* SAMPLING4XFEN=0 */
419 ret
= lgdt3306a_write_reg(state
, 0x000d, val
);
424 /* FGR - disable any AICC filtering, testing only */
426 ret
= lgdt3306a_write_reg(state
, 0x0024, 0x00);
430 /* AICCFIXFREQ0 NT N-1(Video rejection) */
431 ret
= lgdt3306a_write_reg(state
, 0x002e, 0x00);
432 ret
= lgdt3306a_write_reg(state
, 0x002f, 0x00);
433 ret
= lgdt3306a_write_reg(state
, 0x0030, 0x00);
435 /* AICCFIXFREQ1 NT N-1(Audio rejection) */
436 ret
= lgdt3306a_write_reg(state
, 0x002b, 0x00);
437 ret
= lgdt3306a_write_reg(state
, 0x002c, 0x00);
438 ret
= lgdt3306a_write_reg(state
, 0x002d, 0x00);
440 /* AICCFIXFREQ2 NT Co-Channel(Video rejection) */
441 ret
= lgdt3306a_write_reg(state
, 0x0028, 0x00);
442 ret
= lgdt3306a_write_reg(state
, 0x0029, 0x00);
443 ret
= lgdt3306a_write_reg(state
, 0x002a, 0x00);
445 /* AICCFIXFREQ3 NT Co-Channel(Audio rejection) */
446 ret
= lgdt3306a_write_reg(state
, 0x0025, 0x00);
447 ret
= lgdt3306a_write_reg(state
, 0x0026, 0x00);
448 ret
= lgdt3306a_write_reg(state
, 0x0027, 0x00);
451 /* FGR - this works well for HVR-1955,1975 */
453 /* 5. AICCOPMODE NT N-1 Adj. */
454 ret
= lgdt3306a_write_reg(state
, 0x0024, 0x5A);
458 /* AICCFIXFREQ0 NT N-1(Video rejection) */
459 ret
= lgdt3306a_write_reg(state
, 0x002e, 0x5A);
460 ret
= lgdt3306a_write_reg(state
, 0x002f, 0x00);
461 ret
= lgdt3306a_write_reg(state
, 0x0030, 0x00);
463 /* AICCFIXFREQ1 NT N-1(Audio rejection) */
464 ret
= lgdt3306a_write_reg(state
, 0x002b, 0x36);
465 ret
= lgdt3306a_write_reg(state
, 0x002c, 0x00);
466 ret
= lgdt3306a_write_reg(state
, 0x002d, 0x00);
468 /* AICCFIXFREQ2 NT Co-Channel(Video rejection) */
469 ret
= lgdt3306a_write_reg(state
, 0x0028, 0x2A);
470 ret
= lgdt3306a_write_reg(state
, 0x0029, 0x00);
471 ret
= lgdt3306a_write_reg(state
, 0x002a, 0x00);
473 /* AICCFIXFREQ3 NT Co-Channel(Audio rejection) */
474 ret
= lgdt3306a_write_reg(state
, 0x0025, 0x06);
475 ret
= lgdt3306a_write_reg(state
, 0x0026, 0x00);
476 ret
= lgdt3306a_write_reg(state
, 0x0027, 0x00);
479 ret
= lgdt3306a_read_reg(state
, 0x001e, &val
);
482 ret
= lgdt3306a_write_reg(state
, 0x001e, val
);
484 ret
= lgdt3306a_write_reg(state
, 0x0022, 0x08);
486 ret
= lgdt3306a_write_reg(state
, 0x0023, 0xFF);
488 ret
= lgdt3306a_read_reg(state
, 0x211f, &val
);
490 ret
= lgdt3306a_write_reg(state
, 0x211f, val
);
492 ret
= lgdt3306a_write_reg(state
, 0x2173, 0x01);
494 ret
= lgdt3306a_read_reg(state
, 0x1061, &val
);
497 ret
= lgdt3306a_write_reg(state
, 0x1061, val
);
499 ret
= lgdt3306a_read_reg(state
, 0x103d, &val
);
501 ret
= lgdt3306a_write_reg(state
, 0x103d, val
);
503 ret
= lgdt3306a_write_reg(state
, 0x2122, 0x40);
505 ret
= lgdt3306a_read_reg(state
, 0x2141, &val
);
507 ret
= lgdt3306a_write_reg(state
, 0x2141, val
);
509 ret
= lgdt3306a_read_reg(state
, 0x2135, &val
);
512 ret
= lgdt3306a_write_reg(state
, 0x2135, val
);
514 ret
= lgdt3306a_read_reg(state
, 0x0003, &val
);
516 ret
= lgdt3306a_write_reg(state
, 0x0003, val
);
518 ret
= lgdt3306a_read_reg(state
, 0x001c, &val
);
520 ret
= lgdt3306a_write_reg(state
, 0x001c, val
);
522 /* 6. EQ step size */
523 ret
= lgdt3306a_read_reg(state
, 0x2179, &val
);
525 ret
= lgdt3306a_write_reg(state
, 0x2179, val
);
527 ret
= lgdt3306a_read_reg(state
, 0x217a, &val
);
529 ret
= lgdt3306a_write_reg(state
, 0x217a, val
);
532 ret
= lgdt3306a_soft_reset(state
);
536 dbg_info("complete\n");
541 static int lgdt3306a_set_qam(struct lgdt3306a_state
*state
, int modulation
)
546 dbg_info("modulation=%d\n", modulation
);
548 /* 1. Selection of standard mode(0x08=QAM, 0x80=VSB) */
549 ret
= lgdt3306a_write_reg(state
, 0x0008, 0x08);
553 /* 1a. Spectrum inversion detection to Auto */
554 ret
= lgdt3306a_read_reg(state
, 0x0002, &val
);
555 val
&= 0xfb; /* SPECINV Off */
556 val
|= 0x08; /* SPECINVAUTO On */
557 ret
= lgdt3306a_write_reg(state
, 0x0002, val
);
561 /* 2. Bandwidth mode for QAM */
562 ret
= lgdt3306a_read_reg(state
, 0x0009, &val
);
563 val
&= 0xe3; /* STDOPDETTMODE[2:0]=0 VSB Off */
564 ret
= lgdt3306a_write_reg(state
, 0x0009, val
);
568 /* 3. : 64QAM/256QAM detection(manual, auto) */
569 ret
= lgdt3306a_read_reg(state
, 0x0009, &val
);
571 /* Check for forced Manual modulation modes; otherwise always "auto" */
572 if(forced_manual
&& (modulation
!= QAM_AUTO
)){
573 val
|= 0x01; /* STDOPDETCMODE[1:0]= 1=Manual */
575 val
|= 0x02; /* STDOPDETCMODE[1:0]= 2=Auto */
577 ret
= lgdt3306a_write_reg(state
, 0x0009, val
);
581 /* 3a. : 64QAM/256QAM selection for manual */
582 ret
= lgdt3306a_read_reg(state
, 0x101a, &val
);
584 if (modulation
== QAM_64
)
585 val
|= 0x02; /* QMDQMODE[2:0]=2=QAM64 */
587 val
|= 0x04; /* QMDQMODE[2:0]=4=QAM256 */
589 ret
= lgdt3306a_write_reg(state
, 0x101a, val
);
593 /* 4. ADC sampling frequency rate(4x sampling) */
594 ret
= lgdt3306a_read_reg(state
, 0x000d, &val
);
596 val
|= 0x40; /* SAMPLING4XFEN=1 */
597 ret
= lgdt3306a_write_reg(state
, 0x000d, val
);
601 /* 5. No AICC operation in QAM mode */
602 ret
= lgdt3306a_read_reg(state
, 0x0024, &val
);
604 ret
= lgdt3306a_write_reg(state
, 0x0024, val
);
608 /* 5.1 V0.36 SRDCHKALWAYS : For better QAM detection */
609 ret
= lgdt3306a_read_reg(state
, 0x000a, &val
);
612 ret
= lgdt3306a_write_reg(state
, 0x000a, val
);
616 /* 5.2 V0.36 Control of "no signal" detector function */
617 ret
= lgdt3306a_read_reg(state
, 0x2849, &val
);
619 ret
= lgdt3306a_write_reg(state
, 0x2849, val
);
623 /* 5.3 Fix for Blonder Tongue HDE-2H-QAM and AQM modulators */
624 ret
= lgdt3306a_read_reg(state
, 0x302b, &val
);
625 val
&= 0x7f; /* SELFSYNCFINDEN_CQS=0; disable auto reset */
626 ret
= lgdt3306a_write_reg(state
, 0x302b, val
);
631 ret
= lgdt3306a_soft_reset(state
);
635 dbg_info("complete\n");
640 static int lgdt3306a_set_modulation(struct lgdt3306a_state
*state
,
641 struct dtv_frontend_properties
*p
)
647 switch (p
->modulation
) {
649 ret
= lgdt3306a_set_vsb(state
);
654 ret
= lgdt3306a_set_qam(state
, p
->modulation
);
662 state
->current_modulation
= p
->modulation
;
668 /* ------------------------------------------------------------------------ */
670 static int lgdt3306a_agc_setup(struct lgdt3306a_state
*state
,
671 struct dtv_frontend_properties
*p
)
673 /* TODO: anything we want to do here??? */
676 switch (p
->modulation
) {
689 /* ------------------------------------------------------------------------ */
691 static int lgdt3306a_set_inversion(struct lgdt3306a_state
*state
,
696 dbg_info("(%d)\n", inversion
);
698 ret
= lgdt3306a_set_reg_bit(state
, 0x0002, 2, inversion
? 1 : 0);
702 static int lgdt3306a_set_inversion_auto(struct lgdt3306a_state
*state
,
707 dbg_info("(%d)\n", enabled
);
709 /* 0=Manual 1=Auto(QAM only) - SPECINVAUTO=0x04 */
710 ret
= lgdt3306a_set_reg_bit(state
, 0x0002, 3, enabled
);
714 static int lgdt3306a_spectral_inversion(struct lgdt3306a_state
*state
,
715 struct dtv_frontend_properties
*p
,
720 dbg_info("(%d)\n", inversion
);
723 * FGR - spectral_inversion defaults already set for VSB and QAM;
724 * can enable later if desired
727 ret
= lgdt3306a_set_inversion(state
, inversion
);
729 switch (p
->modulation
) {
731 /* Manual only for VSB */
732 ret
= lgdt3306a_set_inversion_auto(state
, 0);
737 /* Auto ok for QAM */
738 ret
= lgdt3306a_set_inversion_auto(state
, 1);
747 static int lgdt3306a_set_if(struct lgdt3306a_state
*state
,
748 struct dtv_frontend_properties
*p
)
754 switch (p
->modulation
) {
756 if_freq_khz
= state
->cfg
->vsb_if_khz
;
761 if_freq_khz
= state
->cfg
->qam_if_khz
;
767 switch (if_freq_khz
) {
769 pr_warn("IF=%d KHz is not supported, 3250 assumed\n",
772 case 3250: /* 3.25Mhz */
776 case 3500: /* 3.50Mhz */
780 case 4000: /* 4.00Mhz */
784 case 5000: /* 5.00Mhz */
788 case 5380: /* 5.38Mhz */
793 ret
= lgdt3306a_write_reg(state
, 0x0010, nco1
);
796 ret
= lgdt3306a_write_reg(state
, 0x0011, nco2
);
800 dbg_info("if_freq=%d KHz->[%04x]\n", if_freq_khz
, nco1
<<8 | nco2
);
805 /* ------------------------------------------------------------------------ */
807 static int lgdt3306a_i2c_gate_ctrl(struct dvb_frontend
*fe
, int enable
)
809 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
811 if (state
->cfg
->deny_i2c_rptr
) {
812 dbg_info("deny_i2c_rptr=%d\n", state
->cfg
->deny_i2c_rptr
);
815 dbg_info("(%d)\n", enable
);
818 return lgdt3306a_set_reg_bit(state
, 0x0002, 7, enable
? 0 : 1);
821 static int lgdt3306a_sleep(struct lgdt3306a_state
*state
)
826 state
->current_frequency
= -1; /* force re-tune, when we wake */
828 ret
= lgdt3306a_mpeg_tristate(state
, 1); /* disable data bus */
832 ret
= lgdt3306a_power(state
, 0); /* power down */
839 static int lgdt3306a_fe_sleep(struct dvb_frontend
*fe
)
841 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
843 return lgdt3306a_sleep(state
);
846 static int lgdt3306a_init(struct dvb_frontend
*fe
)
848 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
854 /* 1. Normal operation mode */
855 ret
= lgdt3306a_set_reg_bit(state
, 0x0001, 0, 1); /* SIMFASTENB=0x01 */
859 /* 2. Spectrum inversion auto detection (Not valid for VSB) */
860 ret
= lgdt3306a_set_inversion_auto(state
, 0);
864 /* 3. Spectrum inversion(According to the tuner configuration) */
865 ret
= lgdt3306a_set_inversion(state
, 1);
869 /* 4. Peak-to-peak voltage of ADC input signal */
871 /* ADCSEL1V=0x80=1Vpp; 0x00=2Vpp */
872 ret
= lgdt3306a_set_reg_bit(state
, 0x0004, 7, 1);
876 /* 5. ADC output data capture clock phase */
878 /* 0=same phase as ADC clock */
879 ret
= lgdt3306a_set_reg_bit(state
, 0x0004, 2, 0);
883 /* 5a. ADC sampling clock source */
885 /* ADCCLKPLLSEL=0x08; 0=use ext clock, not PLL */
886 ret
= lgdt3306a_set_reg_bit(state
, 0x0004, 3, 0);
890 /* 6. Automatic PLL set */
892 /* PLLSETAUTO=0x40; 0=off */
893 ret
= lgdt3306a_set_reg_bit(state
, 0x0005, 6, 0);
897 if (state
->cfg
->xtalMHz
== 24) { /* 24MHz */
898 /* 7. Frequency for PLL output(0x2564 for 192MHz for 24MHz) */
899 ret
= lgdt3306a_read_reg(state
, 0x0005, &val
);
904 ret
= lgdt3306a_write_reg(state
, 0x0005, val
);
907 ret
= lgdt3306a_write_reg(state
, 0x0006, 0x64);
911 /* 8. ADC sampling frequency(0x180000 for 24MHz sampling) */
912 ret
= lgdt3306a_read_reg(state
, 0x000d, &val
);
917 ret
= lgdt3306a_write_reg(state
, 0x000d, val
);
921 } else if (state
->cfg
->xtalMHz
== 25) { /* 25MHz */
922 /* 7. Frequency for PLL output */
923 ret
= lgdt3306a_read_reg(state
, 0x0005, &val
);
928 ret
= lgdt3306a_write_reg(state
, 0x0005, val
);
931 ret
= lgdt3306a_write_reg(state
, 0x0006, 0x64);
935 /* 8. ADC sampling frequency(0x190000 for 25MHz sampling) */
936 ret
= lgdt3306a_read_reg(state
, 0x000d, &val
);
941 ret
= lgdt3306a_write_reg(state
, 0x000d, val
);
945 pr_err("Bad xtalMHz=%d\n", state
->cfg
->xtalMHz
);
948 ret
= lgdt3306a_write_reg(state
, 0x000e, 0x00);
949 ret
= lgdt3306a_write_reg(state
, 0x000f, 0x00);
952 /* 9. Center frequency of input signal of ADC */
953 ret
= lgdt3306a_write_reg(state
, 0x0010, 0x34); /* 3.25MHz */
954 ret
= lgdt3306a_write_reg(state
, 0x0011, 0x00);
956 /* 10. Fixed gain error value */
957 ret
= lgdt3306a_write_reg(state
, 0x0014, 0); /* gain error=0 */
959 /* 10a. VSB TR BW gear shift initial step */
960 ret
= lgdt3306a_read_reg(state
, 0x103c, &val
);
962 val
|= 0x20; /* SAMGSAUTOSTL_V[3:0] = 2 */
963 ret
= lgdt3306a_write_reg(state
, 0x103c, val
);
965 /* 10b. Timing offset calibration in low temperature for VSB */
966 ret
= lgdt3306a_read_reg(state
, 0x103d, &val
);
969 ret
= lgdt3306a_write_reg(state
, 0x103d, val
);
971 /* 10c. Timing offset calibration in low temperature for QAM */
972 ret
= lgdt3306a_read_reg(state
, 0x1036, &val
);
975 ret
= lgdt3306a_write_reg(state
, 0x1036, val
);
977 /* 11. Using the imaginary part of CIR in CIR loading */
978 ret
= lgdt3306a_read_reg(state
, 0x211f, &val
);
979 val
&= 0xef; /* do not use imaginary of CIR */
980 ret
= lgdt3306a_write_reg(state
, 0x211f, val
);
982 /* 12. Control of no signal detector function */
983 ret
= lgdt3306a_read_reg(state
, 0x2849, &val
);
984 val
&= 0xef; /* NOUSENOSIGDET=0, enable no signal detector */
985 ret
= lgdt3306a_write_reg(state
, 0x2849, val
);
987 /* FGR - put demod in some known mode */
988 ret
= lgdt3306a_set_vsb(state
);
990 /* 13. TP stream format */
991 ret
= lgdt3306a_mpeg_mode(state
, state
->cfg
->mpeg_mode
);
993 /* 14. disable output buses */
994 ret
= lgdt3306a_mpeg_tristate(state
, 1);
996 /* 15. Sleep (in reset) */
997 ret
= lgdt3306a_sleep(state
);
1004 static int lgdt3306a_set_parameters(struct dvb_frontend
*fe
)
1006 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
1007 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1010 dbg_info("(%d, %d)\n", p
->frequency
, p
->modulation
);
1012 if (state
->current_frequency
== p
->frequency
&&
1013 state
->current_modulation
== p
->modulation
) {
1014 dbg_info(" (already set, skipping ...)\n");
1017 state
->current_frequency
= -1;
1018 state
->current_modulation
= -1;
1020 ret
= lgdt3306a_power(state
, 1); /* power up */
1024 if (fe
->ops
.tuner_ops
.set_params
) {
1025 ret
= fe
->ops
.tuner_ops
.set_params(fe
);
1026 if (fe
->ops
.i2c_gate_ctrl
)
1027 fe
->ops
.i2c_gate_ctrl(fe
, 0);
1031 state
->current_frequency
= p
->frequency
;
1035 ret
= lgdt3306a_set_modulation(state
, p
);
1039 ret
= lgdt3306a_agc_setup(state
, p
);
1043 ret
= lgdt3306a_set_if(state
, p
);
1047 ret
= lgdt3306a_spectral_inversion(state
, p
,
1048 state
->cfg
->spectral_inversion
? 1 : 0);
1052 ret
= lgdt3306a_mpeg_mode(state
, state
->cfg
->mpeg_mode
);
1056 ret
= lgdt3306a_mpeg_mode_polarity(state
,
1057 state
->cfg
->tpclk_edge
,
1058 state
->cfg
->tpvalid_polarity
);
1062 ret
= lgdt3306a_mpeg_tristate(state
, 0); /* enable data bus */
1066 ret
= lgdt3306a_soft_reset(state
);
1071 lgdt3306a_DumpAllRegs(state
);
1073 state
->current_frequency
= p
->frequency
;
1078 static int lgdt3306a_get_frontend(struct dvb_frontend
*fe
,
1079 struct dtv_frontend_properties
*p
)
1081 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1083 dbg_info("(%u, %d)\n",
1084 state
->current_frequency
, state
->current_modulation
);
1086 p
->modulation
= state
->current_modulation
;
1087 p
->frequency
= state
->current_frequency
;
1091 static enum dvbfe_algo
lgdt3306a_get_frontend_algo(struct dvb_frontend
*fe
)
1094 return DVBFE_ALGO_CUSTOM
;
1096 return DVBFE_ALGO_HW
;
1100 /* ------------------------------------------------------------------------ */
1101 static int lgdt3306a_monitor_vsb(struct lgdt3306a_state
*state
)
1105 u8 snrRef
, maxPowerMan
, nCombDet
;
1108 ret
= lgdt3306a_read_reg(state
, 0x21a1, &val
);
1111 snrRef
= val
& 0x3f;
1113 ret
= lgdt3306a_read_reg(state
, 0x2185, &maxPowerMan
);
1117 ret
= lgdt3306a_read_reg(state
, 0x2191, &val
);
1120 nCombDet
= (val
& 0x80) >> 7;
1122 ret
= lgdt3306a_read_reg(state
, 0x2180, &val
);
1125 fbDlyCir
= (val
& 0x03) << 8;
1127 ret
= lgdt3306a_read_reg(state
, 0x2181, &val
);
1132 dbg_info("snrRef=%d maxPowerMan=0x%x nCombDet=%d fbDlyCir=0x%x\n",
1133 snrRef
, maxPowerMan
, nCombDet
, fbDlyCir
);
1135 /* Carrier offset sub loop bandwidth */
1136 ret
= lgdt3306a_read_reg(state
, 0x1061, &val
);
1140 if ((snrRef
> 18) && (maxPowerMan
> 0x68)
1141 && (nCombDet
== 0x01)
1142 && ((fbDlyCir
== 0x03FF) || (fbDlyCir
< 0x6C))) {
1143 /* SNR is over 18dB and no ghosting */
1144 val
|= 0x00; /* final bandwidth = 0 */
1146 val
|= 0x04; /* final bandwidth = 4 */
1148 ret
= lgdt3306a_write_reg(state
, 0x1061, val
);
1152 /* Adjust Notch Filter */
1153 ret
= lgdt3306a_read_reg(state
, 0x0024, &val
);
1157 if (nCombDet
== 0) { /* Turn on the Notch Filter */
1160 ret
= lgdt3306a_write_reg(state
, 0x0024, val
);
1164 /* VSB Timing Recovery output normalization */
1165 ret
= lgdt3306a_read_reg(state
, 0x103d, &val
);
1170 ret
= lgdt3306a_write_reg(state
, 0x103d, val
);
1175 static enum lgdt3306a_modulation
1176 lgdt3306a_check_oper_mode(struct lgdt3306a_state
*state
)
1181 ret
= lgdt3306a_read_reg(state
, 0x0081, &val
);
1190 ret
= lgdt3306a_read_reg(state
, 0x00a6, &val
);
1195 dbg_info("QAM256\n");
1196 return LG3306_QAM256
;
1198 dbg_info("QAM64\n");
1199 return LG3306_QAM64
;
1202 pr_warn("UNKNOWN\n");
1203 return LG3306_UNKNOWN_MODE
;
1206 static enum lgdt3306a_lock_status
1207 lgdt3306a_check_lock_status(struct lgdt3306a_state
*state
,
1208 enum lgdt3306a_lock_check whatLock
)
1212 enum lgdt3306a_modulation modeOper
;
1213 enum lgdt3306a_lock_status lockStatus
;
1215 modeOper
= LG3306_UNKNOWN_MODE
;
1218 case LG3306_SYNC_LOCK
:
1220 ret
= lgdt3306a_read_reg(state
, 0x00a6, &val
);
1224 if ((val
& 0x80) == 0x80)
1225 lockStatus
= LG3306_LOCK
;
1227 lockStatus
= LG3306_UNLOCK
;
1229 dbg_info("SYNC_LOCK=%x\n", lockStatus
);
1232 case LG3306_AGC_LOCK
:
1234 ret
= lgdt3306a_read_reg(state
, 0x0080, &val
);
1238 if ((val
& 0x40) == 0x40)
1239 lockStatus
= LG3306_LOCK
;
1241 lockStatus
= LG3306_UNLOCK
;
1243 dbg_info("AGC_LOCK=%x\n", lockStatus
);
1246 case LG3306_TR_LOCK
:
1248 modeOper
= lgdt3306a_check_oper_mode(state
);
1249 if ((modeOper
== LG3306_QAM64
) || (modeOper
== LG3306_QAM256
)) {
1250 ret
= lgdt3306a_read_reg(state
, 0x1094, &val
);
1254 if ((val
& 0x80) == 0x80)
1255 lockStatus
= LG3306_LOCK
;
1257 lockStatus
= LG3306_UNLOCK
;
1259 lockStatus
= LG3306_UNKNOWN_LOCK
;
1261 dbg_info("TR_LOCK=%x\n", lockStatus
);
1264 case LG3306_FEC_LOCK
:
1266 modeOper
= lgdt3306a_check_oper_mode(state
);
1267 if ((modeOper
== LG3306_QAM64
) || (modeOper
== LG3306_QAM256
)) {
1268 ret
= lgdt3306a_read_reg(state
, 0x0080, &val
);
1272 if ((val
& 0x10) == 0x10)
1273 lockStatus
= LG3306_LOCK
;
1275 lockStatus
= LG3306_UNLOCK
;
1277 lockStatus
= LG3306_UNKNOWN_LOCK
;
1279 dbg_info("FEC_LOCK=%x\n", lockStatus
);
1284 lockStatus
= LG3306_UNKNOWN_LOCK
;
1285 pr_warn("UNKNOWN whatLock=%d\n", whatLock
);
1292 static enum lgdt3306a_neverlock_status
1293 lgdt3306a_check_neverlock_status(struct lgdt3306a_state
*state
)
1297 enum lgdt3306a_neverlock_status lockStatus
;
1299 ret
= lgdt3306a_read_reg(state
, 0x0080, &val
);
1302 lockStatus
= (enum lgdt3306a_neverlock_status
)(val
& 0x03);
1304 dbg_info("NeverLock=%d", lockStatus
);
1309 static int lgdt3306a_pre_monitoring(struct lgdt3306a_state
*state
)
1313 u8 currChDiffACQ
, snrRef
, mainStrong
, aiccrejStatus
;
1315 /* Channel variation */
1316 ret
= lgdt3306a_read_reg(state
, 0x21bc, &currChDiffACQ
);
1320 /* SNR of Frame sync */
1321 ret
= lgdt3306a_read_reg(state
, 0x21a1, &val
);
1324 snrRef
= val
& 0x3f;
1326 /* Strong Main CIR */
1327 ret
= lgdt3306a_read_reg(state
, 0x2199, &val
);
1330 mainStrong
= (val
& 0x40) >> 6;
1332 ret
= lgdt3306a_read_reg(state
, 0x0090, &val
);
1335 aiccrejStatus
= (val
& 0xf0) >> 4;
1337 dbg_info("snrRef=%d mainStrong=%d aiccrejStatus=%d currChDiffACQ=0x%x\n",
1338 snrRef
, mainStrong
, aiccrejStatus
, currChDiffACQ
);
1341 /* Dynamic ghost exists */
1342 if ((mainStrong
== 0) && (currChDiffACQ
> 0x70))
1344 if (mainStrong
== 0) {
1345 ret
= lgdt3306a_read_reg(state
, 0x2135, &val
);
1350 ret
= lgdt3306a_write_reg(state
, 0x2135, val
);
1354 ret
= lgdt3306a_read_reg(state
, 0x2141, &val
);
1359 ret
= lgdt3306a_write_reg(state
, 0x2141, val
);
1363 ret
= lgdt3306a_write_reg(state
, 0x2122, 0x70);
1366 } else { /* Weak ghost or static channel */
1367 ret
= lgdt3306a_read_reg(state
, 0x2135, &val
);
1372 ret
= lgdt3306a_write_reg(state
, 0x2135, val
);
1376 ret
= lgdt3306a_read_reg(state
, 0x2141, &val
);
1381 ret
= lgdt3306a_write_reg(state
, 0x2141, val
);
1385 ret
= lgdt3306a_write_reg(state
, 0x2122, 0x40);
1392 static enum lgdt3306a_lock_status
1393 lgdt3306a_sync_lock_poll(struct lgdt3306a_state
*state
)
1395 enum lgdt3306a_lock_status syncLockStatus
= LG3306_UNLOCK
;
1398 for (i
= 0; i
< 2; i
++) {
1401 syncLockStatus
= lgdt3306a_check_lock_status(state
,
1404 if (syncLockStatus
== LG3306_LOCK
) {
1405 dbg_info("locked(%d)\n", i
);
1409 dbg_info("not locked\n");
1410 return LG3306_UNLOCK
;
1413 static enum lgdt3306a_lock_status
1414 lgdt3306a_fec_lock_poll(struct lgdt3306a_state
*state
)
1416 enum lgdt3306a_lock_status FECLockStatus
= LG3306_UNLOCK
;
1419 for (i
= 0; i
< 2; i
++) {
1422 FECLockStatus
= lgdt3306a_check_lock_status(state
,
1425 if (FECLockStatus
== LG3306_LOCK
) {
1426 dbg_info("locked(%d)\n", i
);
1427 return FECLockStatus
;
1430 dbg_info("not locked\n");
1431 return FECLockStatus
;
1434 static enum lgdt3306a_neverlock_status
1435 lgdt3306a_neverlock_poll(struct lgdt3306a_state
*state
)
1437 enum lgdt3306a_neverlock_status NLLockStatus
= LG3306_NL_FAIL
;
1440 for (i
= 0; i
< 5; i
++) {
1443 NLLockStatus
= lgdt3306a_check_neverlock_status(state
);
1445 if (NLLockStatus
== LG3306_NL_LOCK
) {
1446 dbg_info("NL_LOCK(%d)\n", i
);
1447 return NLLockStatus
;
1450 dbg_info("NLLockStatus=%d\n", NLLockStatus
);
1451 return NLLockStatus
;
1454 static u8
lgdt3306a_get_packet_error(struct lgdt3306a_state
*state
)
1459 ret
= lgdt3306a_read_reg(state
, 0x00fa, &val
);
1466 static const u32 valx_x10
[] = {
1467 10, 11, 13, 15, 17, 20, 25, 33, 41, 50, 59, 73, 87, 100
1469 static const u32 log10x_x1000
[] = {
1470 0, 41, 114, 176, 230, 301, 398, 518, 613, 699, 771, 863, 939, 1000
1473 static u32
log10_x1000(u32 x
)
1475 u32 diff_val
, step_val
, step_log10
;
1480 return -1000000; /* signal error */
1483 return 0; /* log(1)=0 */
1490 } else { /* x > 10 */
1498 if (x
== 10) /* was our input an exact multiple of 10 */
1499 return log_val
; /* don't need to interpolate */
1501 /* find our place on the log curve */
1502 for (i
= 1; i
< ARRAY_SIZE(valx_x10
); i
++) {
1503 if (valx_x10
[i
] >= x
)
1506 if (i
== ARRAY_SIZE(valx_x10
))
1507 return log_val
+ log10x_x1000
[i
- 1];
1509 diff_val
= x
- valx_x10
[i
-1];
1510 step_val
= valx_x10
[i
] - valx_x10
[i
- 1];
1511 step_log10
= log10x_x1000
[i
] - log10x_x1000
[i
- 1];
1513 /* do a linear interpolation to get in-between values */
1514 return log_val
+ log10x_x1000
[i
- 1] +
1515 ((diff_val
*step_log10
) / step_val
);
1518 static u32
lgdt3306a_calculate_snr_x100(struct lgdt3306a_state
*state
)
1520 u32 mse
; /* Mean-Square Error */
1521 u32 pwr
; /* Constelation power */
1524 mse
= (read_reg(state
, 0x00ec) << 8) |
1525 (read_reg(state
, 0x00ed));
1526 pwr
= (read_reg(state
, 0x00e8) << 8) |
1527 (read_reg(state
, 0x00e9));
1529 if (mse
== 0) /* no signal */
1532 snr_x100
= log10_x1000((pwr
* 10000) / mse
) - 3000;
1533 dbg_info("mse=%u, pwr=%u, snr_x100=%d\n", mse
, pwr
, snr_x100
);
1538 static enum lgdt3306a_lock_status
1539 lgdt3306a_vsb_lock_poll(struct lgdt3306a_state
*state
)
1546 for (cnt
= 0; cnt
< 10; cnt
++) {
1547 if (lgdt3306a_sync_lock_poll(state
) == LG3306_UNLOCK
) {
1548 dbg_info("no sync lock!\n");
1549 return LG3306_UNLOCK
;
1553 ret
= lgdt3306a_pre_monitoring(state
);
1557 packet_error
= lgdt3306a_get_packet_error(state
);
1558 snr
= lgdt3306a_calculate_snr_x100(state
);
1559 dbg_info("cnt=%d errors=%d snr=%d\n", cnt
, packet_error
, snr
);
1561 if ((snr
>= 1500) && (packet_error
< 0xff))
1565 dbg_info("not locked!\n");
1566 return LG3306_UNLOCK
;
1569 static enum lgdt3306a_lock_status
1570 lgdt3306a_qam_lock_poll(struct lgdt3306a_state
*state
)
1576 for (cnt
= 0; cnt
< 10; cnt
++) {
1577 if (lgdt3306a_fec_lock_poll(state
) == LG3306_UNLOCK
) {
1578 dbg_info("no fec lock!\n");
1579 return LG3306_UNLOCK
;
1584 packet_error
= lgdt3306a_get_packet_error(state
);
1585 snr
= lgdt3306a_calculate_snr_x100(state
);
1586 dbg_info("cnt=%d errors=%d snr=%d\n", cnt
, packet_error
, snr
);
1588 if ((snr
>= 1500) && (packet_error
< 0xff))
1592 dbg_info("not locked!\n");
1593 return LG3306_UNLOCK
;
1596 static int lgdt3306a_read_status(struct dvb_frontend
*fe
,
1597 enum fe_status
*status
)
1599 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1603 if (fe
->ops
.tuner_ops
.get_rf_strength
) {
1604 ret
= fe
->ops
.tuner_ops
.get_rf_strength(fe
, &strength
);
1606 dbg_info("strength=%d\n", strength
);
1608 dbg_info("fe->ops.tuner_ops.get_rf_strength() failed\n");
1612 if (lgdt3306a_neverlock_poll(state
) == LG3306_NL_LOCK
) {
1613 *status
|= FE_HAS_SIGNAL
;
1614 *status
|= FE_HAS_CARRIER
;
1616 switch (state
->current_modulation
) {
1620 if (lgdt3306a_qam_lock_poll(state
) == LG3306_LOCK
) {
1621 *status
|= FE_HAS_VITERBI
;
1622 *status
|= FE_HAS_SYNC
;
1624 *status
|= FE_HAS_LOCK
;
1628 if (lgdt3306a_vsb_lock_poll(state
) == LG3306_LOCK
) {
1629 *status
|= FE_HAS_VITERBI
;
1630 *status
|= FE_HAS_SYNC
;
1632 *status
|= FE_HAS_LOCK
;
1634 ret
= lgdt3306a_monitor_vsb(state
);
1645 static int lgdt3306a_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
1647 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1649 state
->snr
= lgdt3306a_calculate_snr_x100(state
);
1650 /* report SNR in dB * 10 */
1651 *snr
= state
->snr
/10;
1656 static int lgdt3306a_read_signal_strength(struct dvb_frontend
*fe
,
1660 * Calculate some sort of "strength" from SNR
1662 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1664 u16 snr
; /* snr_x10 */
1666 u32 ref_snr
; /* snr*100 */
1671 switch (state
->current_modulation
) {
1673 ref_snr
= 1600; /* 16dB */
1678 /* need to know actual modulation to set proper SNR baseline */
1679 ret
= lgdt3306a_read_reg(state
, 0x00a6, &val
);
1684 ref_snr
= 2800; /* QAM-256 28dB */
1686 ref_snr
= 2200; /* QAM-64 22dB */
1692 ret
= fe
->ops
.read_snr(fe
, &snr
);
1696 if (state
->snr
<= (ref_snr
- 100))
1698 else if (state
->snr
<= ref_snr
)
1699 str
= (0xffff * 65) / 100; /* 65% */
1701 str
= state
->snr
- ref_snr
;
1703 str
+= 78; /* 78%-100% */
1706 str
= (0xffff * str
) / 100;
1708 *strength
= (u16
)str
;
1709 dbg_info("strength=%u\n", *strength
);
1715 /* ------------------------------------------------------------------------ */
1717 static int lgdt3306a_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
1719 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1724 /* FGR - FIXME - I don't know what value is expected by dvb_core
1725 * what is the scale of the value?? */
1726 tmp
= read_reg(state
, 0x00fc); /* NBERVALUE[24-31] */
1727 tmp
= (tmp
<< 8) | read_reg(state
, 0x00fd); /* NBERVALUE[16-23] */
1728 tmp
= (tmp
<< 8) | read_reg(state
, 0x00fe); /* NBERVALUE[8-15] */
1729 tmp
= (tmp
<< 8) | read_reg(state
, 0x00ff); /* NBERVALUE[0-7] */
1731 dbg_info("ber=%u\n", tmp
);
1736 static int lgdt3306a_read_ucblocks(struct dvb_frontend
*fe
, u32
*ucblocks
)
1738 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1742 /* FGR - FIXME - I don't know what value is expected by dvb_core
1743 * what happens when value wraps? */
1744 *ucblocks
= read_reg(state
, 0x00f4); /* TPIFTPERRCNT[0-7] */
1745 dbg_info("ucblocks=%u\n", *ucblocks
);
1751 static int lgdt3306a_tune(struct dvb_frontend
*fe
, bool re_tune
,
1752 unsigned int mode_flags
, unsigned int *delay
,
1753 enum fe_status
*status
)
1756 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1758 dbg_info("re_tune=%u\n", re_tune
);
1761 state
->current_frequency
= -1; /* force re-tune */
1762 ret
= lgdt3306a_set_parameters(fe
);
1767 ret
= lgdt3306a_read_status(fe
, status
);
1772 static int lgdt3306a_get_tune_settings(struct dvb_frontend
*fe
,
1773 struct dvb_frontend_tune_settings
1776 fe_tune_settings
->min_delay_ms
= 100;
1781 static enum dvbfe_search
lgdt3306a_search(struct dvb_frontend
*fe
)
1783 enum fe_status status
= 0;
1787 ret
= lgdt3306a_set_parameters(fe
);
1791 ret
= lgdt3306a_read_status(fe
, &status
);
1795 /* check if we have a valid signal */
1796 if (status
& FE_HAS_LOCK
)
1797 return DVBFE_ALGO_SEARCH_SUCCESS
;
1799 return DVBFE_ALGO_SEARCH_AGAIN
;
1802 dbg_info("failed (%d)\n", ret
);
1803 return DVBFE_ALGO_SEARCH_ERROR
;
1806 static void lgdt3306a_release(struct dvb_frontend
*fe
)
1808 struct lgdt3306a_state
*state
= fe
->demodulator_priv
;
1814 static const struct dvb_frontend_ops lgdt3306a_ops
;
1816 struct dvb_frontend
*lgdt3306a_attach(const struct lgdt3306a_config
*config
,
1817 struct i2c_adapter
*i2c_adap
)
1819 struct lgdt3306a_state
*state
= NULL
;
1823 dbg_info("(%d-%04x)\n",
1824 i2c_adap
? i2c_adapter_id(i2c_adap
) : 0,
1825 config
? config
->i2c_addr
: 0);
1827 state
= kzalloc(sizeof(struct lgdt3306a_state
), GFP_KERNEL
);
1831 state
->cfg
= config
;
1832 state
->i2c_adap
= i2c_adap
;
1834 memcpy(&state
->frontend
.ops
, &lgdt3306a_ops
,
1835 sizeof(struct dvb_frontend_ops
));
1836 state
->frontend
.demodulator_priv
= state
;
1838 /* verify that we're talking to a lg3306a */
1839 /* FGR - NOTE - there is no obvious ChipId to check; we check
1840 * some "known" bits after reset, but it's still just a guess */
1841 ret
= lgdt3306a_read_reg(state
, 0x0000, &val
);
1844 if ((val
& 0x74) != 0x74) {
1845 pr_warn("expected 0x74, got 0x%x\n", (val
& 0x74));
1847 /* FIXME - re-enable when we know this is right */
1851 ret
= lgdt3306a_read_reg(state
, 0x0001, &val
);
1854 if ((val
& 0xf6) != 0xc6) {
1855 pr_warn("expected 0xc6, got 0x%x\n", (val
& 0xf6));
1857 /* FIXME - re-enable when we know this is right */
1861 ret
= lgdt3306a_read_reg(state
, 0x0002, &val
);
1864 if ((val
& 0x73) != 0x03) {
1865 pr_warn("expected 0x03, got 0x%x\n", (val
& 0x73));
1867 /* FIXME - re-enable when we know this is right */
1872 state
->current_frequency
= -1;
1873 state
->current_modulation
= -1;
1875 lgdt3306a_sleep(state
);
1877 return &state
->frontend
;
1880 pr_warn("unable to detect LGDT3306A hardware\n");
1884 EXPORT_SYMBOL(lgdt3306a_attach
);
1888 static const short regtab
[] = {
1889 0x0000, /* SOFTRSTB 1'b1 1'b1 1'b1 ADCPDB 1'b1 PLLPDB GBBPDB 11111111 */
1890 0x0001, /* 1'b1 1'b1 1'b0 1'b0 AUTORPTRS */
1891 0x0002, /* NI2CRPTEN 1'b0 1'b0 1'b0 SPECINVAUT */
1892 0x0003, /* AGCRFOUT */
1893 0x0004, /* ADCSEL1V ADCCNT ADCCNF ADCCNS ADCCLKPLL */
1894 0x0005, /* PLLINDIVSE */
1895 0x0006, /* PLLCTRL[7:0] 11100001 */
1896 0x0007, /* SYSINITWAITTIME[7:0] (msec) 00001000 */
1897 0x0008, /* STDOPMODE[7:0] 10000000 */
1898 0x0009, /* 1'b0 1'b0 1'b0 STDOPDETTMODE[2:0] STDOPDETCMODE[1:0] 00011110 */
1899 0x000a, /* DAFTEN 1'b1 x x SCSYSLOCK */
1900 0x000b, /* SCSYSLOCKCHKTIME[7:0] (10msec) 01100100 */
1901 0x000d, /* x SAMPLING4 */
1902 0x000e, /* SAMFREQ[15:8] 00000000 */
1903 0x000f, /* SAMFREQ[7:0] 00000000 */
1904 0x0010, /* IFFREQ[15:8] 01100000 */
1905 0x0011, /* IFFREQ[7:0] 00000000 */
1906 0x0012, /* AGCEN AGCREFMO */
1907 0x0013, /* AGCRFFIXB AGCIFFIXB AGCLOCKDETRNGSEL[1:0] 1'b1 1'b0 1'b0 1'b0 11101000 */
1908 0x0014, /* AGCFIXVALUE[7:0] 01111111 */
1909 0x0015, /* AGCREF[15:8] 00001010 */
1910 0x0016, /* AGCREF[7:0] 11100100 */
1911 0x0017, /* AGCDELAY[7:0] 00100000 */
1912 0x0018, /* AGCRFBW[3:0] AGCIFBW[3:0] 10001000 */
1913 0x0019, /* AGCUDOUTMODE[1:0] AGCUDCTRLLEN[1:0] AGCUDCTRL */
1914 0x001c, /* 1'b1 PFEN MFEN AICCVSYNC */
1915 0x001d, /* 1'b0 1'b1 1'b0 1'b1 AICCVSYNC */
1916 0x001e, /* AICCALPHA[3:0] 1'b1 1'b0 1'b1 1'b0 01111010 */
1917 0x001f, /* AICCDETTH[19:16] AICCOFFTH[19:16] 00000000 */
1918 0x0020, /* AICCDETTH[15:8] 01111100 */
1919 0x0021, /* AICCDETTH[7:0] 00000000 */
1920 0x0022, /* AICCOFFTH[15:8] 00000101 */
1921 0x0023, /* AICCOFFTH[7:0] 11100000 */
1922 0x0024, /* AICCOPMODE3[1:0] AICCOPMODE2[1:0] AICCOPMODE1[1:0] AICCOPMODE0[1:0] 00000000 */
1923 0x0025, /* AICCFIXFREQ3[23:16] 00000000 */
1924 0x0026, /* AICCFIXFREQ3[15:8] 00000000 */
1925 0x0027, /* AICCFIXFREQ3[7:0] 00000000 */
1926 0x0028, /* AICCFIXFREQ2[23:16] 00000000 */
1927 0x0029, /* AICCFIXFREQ2[15:8] 00000000 */
1928 0x002a, /* AICCFIXFREQ2[7:0] 00000000 */
1929 0x002b, /* AICCFIXFREQ1[23:16] 00000000 */
1930 0x002c, /* AICCFIXFREQ1[15:8] 00000000 */
1931 0x002d, /* AICCFIXFREQ1[7:0] 00000000 */
1932 0x002e, /* AICCFIXFREQ0[23:16] 00000000 */
1933 0x002f, /* AICCFIXFREQ0[15:8] 00000000 */
1934 0x0030, /* AICCFIXFREQ0[7:0] 00000000 */
1935 0x0031, /* 1'b0 1'b1 1'b0 1'b0 x DAGC1STER */
1936 0x0032, /* DAGC1STEN DAGC1STER */
1937 0x0033, /* DAGC1STREF[15:8] 00001010 */
1938 0x0034, /* DAGC1STREF[7:0] 11100100 */
1939 0x0035, /* DAGC2NDE */
1940 0x0036, /* DAGC2NDREF[15:8] 00001010 */
1941 0x0037, /* DAGC2NDREF[7:0] 10000000 */
1942 0x0038, /* DAGC2NDLOCKDETRNGSEL[1:0] */
1943 0x003d, /* 1'b1 SAMGEARS */
1944 0x0040, /* SAMLFGMA */
1945 0x0041, /* SAMLFBWM */
1946 0x0044, /* 1'b1 CRGEARSHE */
1947 0x0045, /* CRLFGMAN */
1948 0x0046, /* CFLFBWMA */
1949 0x0047, /* CRLFGMAN */
1950 0x0048, /* x x x x CRLFGSTEP_VS[3:0] xxxx1001 */
1951 0x0049, /* CRLFBWMA */
1952 0x004a, /* CRLFBWMA */
1953 0x0050, /* 1'b0 1'b1 1'b1 1'b0 MSECALCDA */
1954 0x0070, /* TPOUTEN TPIFEN TPCLKOUTE */
1955 0x0071, /* TPSENB TPSSOPBITE */
1956 0x0073, /* TP47HINS x x CHBERINT PERMODE[1:0] PERINT[1:0] 1xx11100 */
1957 0x0075, /* x x x x x IQSWAPCTRL[2:0] xxxxx000 */
1958 0x0076, /* NBERCON NBERST NBERPOL NBERWSYN */
1959 0x0077, /* x NBERLOSTTH[2:0] NBERACQTH[3:0] x0000000 */
1960 0x0078, /* NBERPOLY[31:24] 00000000 */
1961 0x0079, /* NBERPOLY[23:16] 00000000 */
1962 0x007a, /* NBERPOLY[15:8] 00000000 */
1963 0x007b, /* NBERPOLY[7:0] 00000000 */
1964 0x007c, /* NBERPED[31:24] 00000000 */
1965 0x007d, /* NBERPED[23:16] 00000000 */
1966 0x007e, /* NBERPED[15:8] 00000000 */
1967 0x007f, /* NBERPED[7:0] 00000000 */
1968 0x0080, /* x AGCLOCK DAGCLOCK SYSLOCK x x NEVERLOCK[1:0] */
1969 0x0085, /* SPECINVST */
1970 0x0088, /* SYSLOCKTIME[15:8] */
1971 0x0089, /* SYSLOCKTIME[7:0] */
1972 0x008c, /* FECLOCKTIME[15:8] */
1973 0x008d, /* FECLOCKTIME[7:0] */
1974 0x008e, /* AGCACCOUT[15:8] */
1975 0x008f, /* AGCACCOUT[7:0] */
1976 0x0090, /* AICCREJSTATUS[3:0] AICCREJBUSY[3:0] */
1977 0x0091, /* AICCVSYNC */
1978 0x009c, /* CARRFREQOFFSET[15:8] */
1979 0x009d, /* CARRFREQOFFSET[7:0] */
1980 0x00a1, /* SAMFREQOFFSET[23:16] */
1981 0x00a2, /* SAMFREQOFFSET[15:8] */
1982 0x00a3, /* SAMFREQOFFSET[7:0] */
1983 0x00a6, /* SYNCLOCK SYNCLOCKH */
1984 #if 0 /* covered elsewhere */
1985 0x00e8, /* CONSTPWR[15:8] */
1986 0x00e9, /* CONSTPWR[7:0] */
1987 0x00ea, /* BMSE[15:8] */
1988 0x00eb, /* BMSE[7:0] */
1989 0x00ec, /* MSE[15:8] */
1990 0x00ed, /* MSE[7:0] */
1991 0x00ee, /* CONSTI[7:0] */
1992 0x00ef, /* CONSTQ[7:0] */
1994 0x00f4, /* TPIFTPERRCNT[7:0] */
1995 0x00f5, /* TPCORREC */
1996 0x00f6, /* VBBER[15:8] */
1997 0x00f7, /* VBBER[7:0] */
1998 0x00f8, /* VABER[15:8] */
1999 0x00f9, /* VABER[7:0] */
2000 0x00fa, /* TPERRCNT[7:0] */
2001 0x00fb, /* NBERLOCK x x x x x x x */
2002 0x00fc, /* NBERVALUE[31:24] */
2003 0x00fd, /* NBERVALUE[23:16] */
2004 0x00fe, /* NBERVALUE[15:8] */
2005 0x00ff, /* NBERVALUE[7:0] */
2006 0x1000, /* 1'b0 WODAGCOU */
2007 0x1005, /* x x 1'b1 1'b1 x SRD_Q_QM */
2008 0x1009, /* SRDWAITTIME[7:0] (10msec) 00100011 */
2009 0x100a, /* SRDWAITTIME_CQS[7:0] (msec) 01100100 */
2010 0x101a, /* x 1'b1 1'b0 1'b0 x QMDQAMMODE[2:0] x100x010 */
2011 0x1036, /* 1'b0 1'b1 1'b0 1'b0 SAMGSEND_CQS[3:0] 01001110 */
2012 0x103c, /* SAMGSAUTOSTL_V[3:0] SAMGSAUTOEDL_V[3:0] 01000110 */
2013 0x103d, /* 1'b1 1'b1 SAMCNORMBP_V[1:0] 1'b0 1'b0 SAMMODESEL_V[1:0] 11100001 */
2014 0x103f, /* SAMZTEDSE */
2015 0x105d, /* EQSTATUSE */
2016 0x105f, /* x PMAPG2_V[2:0] x DMAPG2_V[2:0] x001x011 */
2017 0x1060, /* 1'b1 EQSTATUSE */
2018 0x1061, /* CRMAPBWSTL_V[3:0] CRMAPBWEDL_V[3:0] 00000100 */
2019 0x1065, /* 1'b0 x CRMODE_V[1:0] 1'b1 x 1'b1 x 0x111x1x */
2020 0x1066, /* 1'b0 1'b0 1'b1 1'b0 1'b1 PNBOOSTSE */
2021 0x1068, /* CREPHNGAIN2_V[3:0] CREPHNPBW_V[3:0] 10010001 */
2022 0x106e, /* x x x x x CREPHNEN_ */
2023 0x106f, /* CREPHNTH_V[7:0] 00010101 */
2024 0x1072, /* CRSWEEPN */
2025 0x1073, /* CRPGAIN_V[3:0] x x 1'b1 1'b1 1001xx11 */
2026 0x1074, /* CRPBW_V[3:0] x x 1'b1 1'b1 0001xx11 */
2027 0x1080, /* DAFTSTATUS[1:0] x x x x x x */
2028 0x1081, /* SRDSTATUS[1:0] x x x x x SRDLOCK */
2029 0x10a9, /* EQSTATUS_CQS[1:0] x x x x x x */
2030 0x10b7, /* EQSTATUS_V[1:0] x x x x x x */
2031 #if 0 /* SMART_ANT */
2032 0x1f00, /* MODEDETE */
2033 0x1f01, /* x x x x x x x SFNRST xxxxxxx0 */
2034 0x1f03, /* NUMOFANT[7:0] 10000000 */
2035 0x1f04, /* x SELMASK[6:0] x0000000 */
2036 0x1f05, /* x SETMASK[6:0] x0000000 */
2037 0x1f06, /* x TXDATA[6:0] x0000000 */
2038 0x1f07, /* x CHNUMBER[6:0] x0000000 */
2039 0x1f09, /* AGCTIME[23:16] 10011000 */
2040 0x1f0a, /* AGCTIME[15:8] 10010110 */
2041 0x1f0b, /* AGCTIME[7:0] 10000000 */
2042 0x1f0c, /* ANTTIME[31:24] 00000000 */
2043 0x1f0d, /* ANTTIME[23:16] 00000011 */
2044 0x1f0e, /* ANTTIME[15:8] 10010000 */
2045 0x1f0f, /* ANTTIME[7:0] 10010000 */
2046 0x1f11, /* SYNCTIME[23:16] 10011000 */
2047 0x1f12, /* SYNCTIME[15:8] 10010110 */
2048 0x1f13, /* SYNCTIME[7:0] 10000000 */
2049 0x1f14, /* SNRTIME[31:24] 00000001 */
2050 0x1f15, /* SNRTIME[23:16] 01111101 */
2051 0x1f16, /* SNRTIME[15:8] 01111000 */
2052 0x1f17, /* SNRTIME[7:0] 01000000 */
2053 0x1f19, /* FECTIME[23:16] 00000000 */
2054 0x1f1a, /* FECTIME[15:8] 01110010 */
2055 0x1f1b, /* FECTIME[7:0] 01110000 */
2056 0x1f1d, /* FECTHD[7:0] 00000011 */
2057 0x1f1f, /* SNRTHD[23:16] 00001000 */
2058 0x1f20, /* SNRTHD[15:8] 01111111 */
2059 0x1f21, /* SNRTHD[7:0] 10000101 */
2060 0x1f80, /* IRQFLG x x SFSDRFLG MODEBFLG SAVEFLG SCANFLG TRACKFLG */
2061 0x1f81, /* x SYNCCON SNRCON FECCON x STDBUSY SYNCRST AGCFZCO */
2062 0x1f82, /* x x x SCANOPCD[4:0] */
2063 0x1f83, /* x x x x MAINOPCD[3:0] */
2064 0x1f84, /* x x RXDATA[13:8] */
2065 0x1f85, /* RXDATA[7:0] */
2066 0x1f86, /* x x SDTDATA[13:8] */
2067 0x1f87, /* SDTDATA[7:0] */
2068 0x1f89, /* ANTSNR[23:16] */
2069 0x1f8a, /* ANTSNR[15:8] */
2070 0x1f8b, /* ANTSNR[7:0] */
2071 0x1f8c, /* x x x x ANTFEC[13:8] */
2072 0x1f8d, /* ANTFEC[7:0] */
2073 0x1f8e, /* MAXCNT[7:0] */
2074 0x1f8f, /* SCANCNT[7:0] */
2075 0x1f91, /* MAXPW[23:16] */
2076 0x1f92, /* MAXPW[15:8] */
2077 0x1f93, /* MAXPW[7:0] */
2078 0x1f95, /* CURPWMSE[23:16] */
2079 0x1f96, /* CURPWMSE[15:8] */
2080 0x1f97, /* CURPWMSE[7:0] */
2081 #endif /* SMART_ANT */
2082 0x211f, /* 1'b1 1'b1 1'b1 CIRQEN x x 1'b0 1'b0 1111xx00 */
2083 0x212a, /* EQAUTOST */
2084 0x2122, /* CHFAST[7:0] 01100000 */
2085 0x212b, /* FFFSTEP_V[3:0] x FBFSTEP_V[2:0] 0001x001 */
2086 0x212c, /* PHDEROTBWSEL[3:0] 1'b1 1'b1 1'b1 1'b0 10001110 */
2087 0x212d, /* 1'b1 1'b1 1'b1 1'b1 x x TPIFLOCKS */
2088 0x2135, /* DYNTRACKFDEQ[3:0] x 1'b0 1'b0 1'b0 1010x000 */
2089 0x2141, /* TRMODE[1:0] 1'b1 1'b1 1'b0 1'b1 1'b1 1'b1 01110111 */
2090 0x2162, /* AICCCTRLE */
2091 0x2173, /* PHNCNFCNT[7:0] 00000100 */
2092 0x2179, /* 1'b0 1'b0 1'b0 1'b1 x BADSINGLEDYNTRACKFBF[2:0] 0001x001 */
2093 0x217a, /* 1'b0 1'b0 1'b0 1'b1 x BADSLOWSINGLEDYNTRACKFBF[2:0] 0001x001 */
2094 0x217e, /* CNFCNTTPIF[7:0] 00001000 */
2095 0x217f, /* TPERRCNTTPIF[7:0] 00000001 */
2096 0x2180, /* x x x x x x FBDLYCIR[9:8] */
2097 0x2181, /* FBDLYCIR[7:0] */
2098 0x2185, /* MAXPWRMAIN[7:0] */
2099 0x2191, /* NCOMBDET x x x x x x x */
2100 0x2199, /* x MAINSTRON */
2101 0x219a, /* FFFEQSTEPOUT_V[3:0] FBFSTEPOUT_V[2:0] */
2102 0x21a1, /* x x SNRREF[5:0] */
2103 0x2845, /* 1'b0 1'b1 x x FFFSTEP_CQS[1:0] FFFCENTERTAP[1:0] 01xx1110 */
2104 0x2846, /* 1'b0 x 1'b0 1'b1 FBFSTEP_CQS[1:0] 1'b1 1'b0 0x011110 */
2105 0x2847, /* ENNOSIGDE */
2106 0x2849, /* 1'b1 1'b1 NOUSENOSI */
2107 0x284a, /* EQINITWAITTIME[7:0] 01100100 */
2108 0x3000, /* 1'b1 1'b1 1'b1 x x x 1'b0 RPTRSTM */
2109 0x3001, /* RPTRSTWAITTIME[7:0] (100msec) 00110010 */
2110 0x3031, /* FRAMELOC */
2111 0x3032, /* 1'b1 1'b0 1'b0 1'b0 x x FRAMELOCKMODE_CQS[1:0] 1000xx11 */
2112 0x30a9, /* VDLOCK_Q FRAMELOCK */
2113 0x30aa, /* MPEGLOCK */
2116 #define numDumpRegs (ARRAY_SIZE(regtab))
2117 static u8 regval1
[numDumpRegs
] = {0, };
2118 static u8 regval2
[numDumpRegs
] = {0, };
2120 static void lgdt3306a_DumpAllRegs(struct lgdt3306a_state
*state
)
2122 memset(regval2
, 0xff, sizeof(regval2
));
2123 lgdt3306a_DumpRegs(state
);
2126 static void lgdt3306a_DumpRegs(struct lgdt3306a_state
*state
)
2129 int sav_debug
= debug
;
2131 if ((debug
& DBG_DUMP
) == 0)
2133 debug
&= ~DBG_REG
; /* suppress DBG_REG during reg dump */
2137 for (i
= 0; i
< numDumpRegs
; i
++) {
2138 lgdt3306a_read_reg(state
, regtab
[i
], ®val1
[i
]);
2139 if (regval1
[i
] != regval2
[i
]) {
2140 lg_debug(" %04X = %02X\n", regtab
[i
], regval1
[i
]);
2141 regval2
[i
] = regval1
[i
];
2146 #endif /* DBG_DUMP */
2150 static const struct dvb_frontend_ops lgdt3306a_ops
= {
2151 .delsys
= { SYS_ATSC
, SYS_DVBC_ANNEX_B
},
2153 .name
= "LG Electronics LGDT3306A VSB/QAM Frontend",
2154 .frequency_min_hz
= 54 * MHz
,
2155 .frequency_max_hz
= 858 * MHz
,
2156 .frequency_stepsize_hz
= 62500,
2157 .caps
= FE_CAN_QAM_AUTO
| FE_CAN_QAM_64
| FE_CAN_QAM_256
| FE_CAN_8VSB
2159 .i2c_gate_ctrl
= lgdt3306a_i2c_gate_ctrl
,
2160 .init
= lgdt3306a_init
,
2161 .sleep
= lgdt3306a_fe_sleep
,
2162 /* if this is set, it overrides the default swzigzag */
2163 .tune
= lgdt3306a_tune
,
2164 .set_frontend
= lgdt3306a_set_parameters
,
2165 .get_frontend
= lgdt3306a_get_frontend
,
2166 .get_frontend_algo
= lgdt3306a_get_frontend_algo
,
2167 .get_tune_settings
= lgdt3306a_get_tune_settings
,
2168 .read_status
= lgdt3306a_read_status
,
2169 .read_ber
= lgdt3306a_read_ber
,
2170 .read_signal_strength
= lgdt3306a_read_signal_strength
,
2171 .read_snr
= lgdt3306a_read_snr
,
2172 .read_ucblocks
= lgdt3306a_read_ucblocks
,
2173 .release
= lgdt3306a_release
,
2174 .ts_bus_ctrl
= lgdt3306a_ts_bus_ctrl
,
2175 .search
= lgdt3306a_search
,
2178 static int lgdt3306a_select(struct i2c_mux_core
*muxc
, u32 chan
)
2180 struct i2c_client
*client
= i2c_mux_priv(muxc
);
2181 struct lgdt3306a_state
*state
= i2c_get_clientdata(client
);
2183 return lgdt3306a_i2c_gate_ctrl(&state
->frontend
, 1);
2186 static int lgdt3306a_deselect(struct i2c_mux_core
*muxc
, u32 chan
)
2188 struct i2c_client
*client
= i2c_mux_priv(muxc
);
2189 struct lgdt3306a_state
*state
= i2c_get_clientdata(client
);
2191 return lgdt3306a_i2c_gate_ctrl(&state
->frontend
, 0);
2194 static int lgdt3306a_probe(struct i2c_client
*client
,
2195 const struct i2c_device_id
*id
)
2197 struct lgdt3306a_config
*config
;
2198 struct lgdt3306a_state
*state
;
2199 struct dvb_frontend
*fe
;
2202 config
= kmemdup(client
->dev
.platform_data
,
2203 sizeof(struct lgdt3306a_config
), GFP_KERNEL
);
2204 if (config
== NULL
) {
2209 config
->i2c_addr
= client
->addr
;
2210 fe
= lgdt3306a_attach(config
, client
->adapter
);
2216 i2c_set_clientdata(client
, fe
->demodulator_priv
);
2217 state
= fe
->demodulator_priv
;
2218 state
->frontend
.ops
.release
= NULL
;
2220 /* create mux i2c adapter for tuner */
2221 state
->muxc
= i2c_mux_alloc(client
->adapter
, &client
->dev
,
2222 1, 0, I2C_MUX_LOCKED
,
2223 lgdt3306a_select
, lgdt3306a_deselect
);
2228 state
->muxc
->priv
= client
;
2229 ret
= i2c_mux_add_adapter(state
->muxc
, 0, 0, 0);
2233 /* create dvb_frontend */
2234 fe
->ops
.i2c_gate_ctrl
= NULL
;
2235 *config
->i2c_adapter
= state
->muxc
->adapter
[0];
2238 dev_info(&client
->dev
, "LG Electronics LGDT3306A successfully identified\n");
2247 dev_warn(&client
->dev
, "probe failed = %d\n", ret
);
2251 static int lgdt3306a_remove(struct i2c_client
*client
)
2253 struct lgdt3306a_state
*state
= i2c_get_clientdata(client
);
2255 i2c_mux_del_adapters(state
->muxc
);
2257 state
->frontend
.ops
.release
= NULL
;
2258 state
->frontend
.demodulator_priv
= NULL
;
2266 static const struct i2c_device_id lgdt3306a_id_table
[] = {
2270 MODULE_DEVICE_TABLE(i2c
, lgdt3306a_id_table
);
2272 static struct i2c_driver lgdt3306a_driver
= {
2274 .name
= "lgdt3306a",
2275 .suppress_bind_attrs
= true,
2277 .probe
= lgdt3306a_probe
,
2278 .remove
= lgdt3306a_remove
,
2279 .id_table
= lgdt3306a_id_table
,
2282 module_i2c_driver(lgdt3306a_driver
);
2284 MODULE_DESCRIPTION("LG Electronics LGDT3306A ATSC/QAM-B Demodulator Driver");
2285 MODULE_AUTHOR("Fred Richter <frichter@hauppauge.com>");
2286 MODULE_LICENSE("GPL");
2287 MODULE_VERSION("0.2");