2 * mxl5007t.c - driver for the MaxLinear MxL5007T silicon tuner
4 * Copyright (C) 2008, 2009 Michael Krufky <mkrufky@linuxtv.org>
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.
21 #include <linux/i2c.h>
22 #include <linux/types.h>
23 #include <linux/videodev2.h>
24 #include "tuner-i2c.h"
27 static DEFINE_MUTEX(mxl5007t_list_mutex
);
28 static LIST_HEAD(hybrid_tuner_instance_list
);
30 static int mxl5007t_debug
;
31 module_param_named(debug
, mxl5007t_debug
, int, 0644);
32 MODULE_PARM_DESC(debug
, "set debug level");
34 /* ------------------------------------------------------------------------- */
36 #define mxl_printk(kern, fmt, arg...) \
37 printk(kern "%s: " fmt "\n", __func__, ##arg)
39 #define mxl_err(fmt, arg...) \
40 mxl_printk(KERN_ERR, "%d: " fmt, __LINE__, ##arg)
42 #define mxl_warn(fmt, arg...) \
43 mxl_printk(KERN_WARNING, fmt, ##arg)
45 #define mxl_info(fmt, arg...) \
46 mxl_printk(KERN_INFO, fmt, ##arg)
48 #define mxl_debug(fmt, arg...) \
51 mxl_printk(KERN_DEBUG, fmt, ##arg); \
54 #define mxl_fail(ret) \
59 mxl_printk(KERN_ERR, "error %d on line %d", \
64 /* ------------------------------------------------------------------------- */
72 MxL_MODE_CABLE
= 0x10,
75 enum mxl5007t_chip_version
{
76 MxL_UNKNOWN_ID
= 0x00,
77 MxL_5007_V1_F1
= 0x11,
78 MxL_5007_V1_F2
= 0x12,
80 MxL_5007_V2_100_F1
= 0x21,
81 MxL_5007_V2_100_F2
= 0x22,
82 MxL_5007_V2_200_F1
= 0x23,
83 MxL_5007_V2_200_F2
= 0x24,
91 /* ------------------------------------------------------------------------- */
93 static struct reg_pair_t init_tab
[] = {
98 { 0x2e, 0x15 }, /* OVERRIDE */
99 { 0x30, 0x10 }, /* OVERRIDE */
100 { 0x45, 0x58 }, /* OVERRIDE */
101 { 0x48, 0x19 }, /* OVERRIDE */
102 { 0x52, 0x03 }, /* OVERRIDE */
103 { 0x53, 0x44 }, /* OVERRIDE */
104 { 0x6a, 0x4b }, /* OVERRIDE */
105 { 0x76, 0x00 }, /* OVERRIDE */
106 { 0x78, 0x18 }, /* OVERRIDE */
107 { 0x7a, 0x17 }, /* OVERRIDE */
108 { 0x85, 0x06 }, /* OVERRIDE */
109 { 0x01, 0x01 }, /* TOP_MASTER_ENABLE */
113 static struct reg_pair_t init_tab_cable
[] = {
121 { 0x2e, 0x15 }, /* OVERRIDE */
122 { 0x30, 0x10 }, /* OVERRIDE */
123 { 0x45, 0x58 }, /* OVERRIDE */
124 { 0x48, 0x19 }, /* OVERRIDE */
125 { 0x52, 0x03 }, /* OVERRIDE */
126 { 0x53, 0x44 }, /* OVERRIDE */
127 { 0x6a, 0x4b }, /* OVERRIDE */
128 { 0x76, 0x00 }, /* OVERRIDE */
129 { 0x78, 0x18 }, /* OVERRIDE */
130 { 0x7a, 0x17 }, /* OVERRIDE */
131 { 0x85, 0x06 }, /* OVERRIDE */
132 { 0x01, 0x01 }, /* TOP_MASTER_ENABLE */
136 /* ------------------------------------------------------------------------- */
138 static struct reg_pair_t reg_pair_rftune
[] = {
139 { 0x0f, 0x00 }, /* abort tune */
143 { 0x1f, 0x87 }, /* OVERRIDE */
144 { 0x20, 0x1f }, /* OVERRIDE */
145 { 0x21, 0x87 }, /* OVERRIDE */
146 { 0x22, 0x1f }, /* OVERRIDE */
147 { 0x80, 0x01 }, /* freq dependent */
148 { 0x0f, 0x01 }, /* start tune */
152 /* ------------------------------------------------------------------------- */
154 struct mxl5007t_state
{
155 struct list_head hybrid_tuner_instance_list
;
156 struct tuner_i2c_props i2c_props
;
160 struct mxl5007t_config
*config
;
162 enum mxl5007t_chip_version chip_id
;
164 struct reg_pair_t tab_init
[ARRAY_SIZE(init_tab
)];
165 struct reg_pair_t tab_init_cable
[ARRAY_SIZE(init_tab_cable
)];
166 struct reg_pair_t tab_rftune
[ARRAY_SIZE(reg_pair_rftune
)];
168 enum mxl5007t_if_freq if_freq
;
174 /* ------------------------------------------------------------------------- */
176 /* called by _init and _rftun to manipulate the register arrays */
178 static void set_reg_bits(struct reg_pair_t
*reg_pair
, u8 reg
, u8 mask
, u8 val
)
182 while (reg_pair
[i
].reg
|| reg_pair
[i
].val
) {
183 if (reg_pair
[i
].reg
== reg
) {
184 reg_pair
[i
].val
&= ~mask
;
185 reg_pair
[i
].val
|= val
;
193 static void copy_reg_bits(struct reg_pair_t
*reg_pair1
,
194 struct reg_pair_t
*reg_pair2
)
200 while (reg_pair1
[i
].reg
|| reg_pair1
[i
].val
) {
201 while (reg_pair2
[j
].reg
|| reg_pair2
[j
].val
) {
202 if (reg_pair1
[i
].reg
!= reg_pair2
[j
].reg
) {
206 reg_pair2
[j
].val
= reg_pair1
[i
].val
;
214 /* ------------------------------------------------------------------------- */
216 static void mxl5007t_set_mode_bits(struct mxl5007t_state
*state
,
217 enum mxl5007t_mode mode
,
218 s32 if_diff_out_level
)
222 set_reg_bits(state
->tab_init
, 0x06, 0x1f, 0x12);
225 set_reg_bits(state
->tab_init
, 0x06, 0x1f, 0x11);
228 set_reg_bits(state
->tab_init
, 0x06, 0x1f, 0x10);
231 set_reg_bits(state
->tab_init_cable
, 0x09, 0xff, 0xc1);
232 set_reg_bits(state
->tab_init_cable
, 0x0a, 0xff,
233 8 - if_diff_out_level
);
234 set_reg_bits(state
->tab_init_cable
, 0x0b, 0xff, 0x17);
242 static void mxl5007t_set_if_freq_bits(struct mxl5007t_state
*state
,
243 enum mxl5007t_if_freq if_freq
,
255 case MxL_IF_4_57_MHZ
:
261 case MxL_IF_5_38_MHZ
:
267 case MxL_IF_6_28_MHZ
:
270 case MxL_IF_9_1915_MHZ
:
273 case MxL_IF_35_25_MHZ
:
276 case MxL_IF_36_15_MHZ
:
286 set_reg_bits(state
->tab_init
, 0x02, 0x0f, val
);
288 /* set inverted IF or normal IF */
289 set_reg_bits(state
->tab_init
, 0x02, 0x10, invert_if
? 0x10 : 0x00);
291 state
->if_freq
= if_freq
;
296 static void mxl5007t_set_xtal_freq_bits(struct mxl5007t_state
*state
,
297 enum mxl5007t_xtal_freq xtal_freq
)
300 case MxL_XTAL_16_MHZ
:
301 /* select xtal freq & ref freq */
302 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x00);
303 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x00);
305 case MxL_XTAL_20_MHZ
:
306 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x10);
307 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x01);
309 case MxL_XTAL_20_25_MHZ
:
310 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x20);
311 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x02);
313 case MxL_XTAL_20_48_MHZ
:
314 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x30);
315 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x03);
317 case MxL_XTAL_24_MHZ
:
318 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x40);
319 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x04);
321 case MxL_XTAL_25_MHZ
:
322 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x50);
323 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x05);
325 case MxL_XTAL_25_14_MHZ
:
326 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x60);
327 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x06);
329 case MxL_XTAL_27_MHZ
:
330 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x70);
331 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x07);
333 case MxL_XTAL_28_8_MHZ
:
334 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x80);
335 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x08);
337 case MxL_XTAL_32_MHZ
:
338 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0x90);
339 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x09);
341 case MxL_XTAL_40_MHZ
:
342 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0xa0);
343 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x0a);
345 case MxL_XTAL_44_MHZ
:
346 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0xb0);
347 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x0b);
349 case MxL_XTAL_48_MHZ
:
350 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0xc0);
351 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x0c);
353 case MxL_XTAL_49_3811_MHZ
:
354 set_reg_bits(state
->tab_init
, 0x03, 0xf0, 0xd0);
355 set_reg_bits(state
->tab_init
, 0x05, 0x0f, 0x0d);
365 static struct reg_pair_t
*mxl5007t_calc_init_regs(struct mxl5007t_state
*state
,
366 enum mxl5007t_mode mode
)
368 struct mxl5007t_config
*cfg
= state
->config
;
370 memcpy(&state
->tab_init
, &init_tab
, sizeof(init_tab
));
371 memcpy(&state
->tab_init_cable
, &init_tab_cable
, sizeof(init_tab_cable
));
373 mxl5007t_set_mode_bits(state
, mode
, cfg
->if_diff_out_level
);
374 mxl5007t_set_if_freq_bits(state
, cfg
->if_freq_hz
, cfg
->invert_if
);
375 mxl5007t_set_xtal_freq_bits(state
, cfg
->xtal_freq_hz
);
377 set_reg_bits(state
->tab_init
, 0x03, 0x08, cfg
->clk_out_enable
<< 3);
378 set_reg_bits(state
->tab_init
, 0x03, 0x07, cfg
->clk_out_amp
);
380 if (mode
>= MxL_MODE_CABLE
) {
381 copy_reg_bits(state
->tab_init
, state
->tab_init_cable
);
382 return state
->tab_init_cable
;
384 return state
->tab_init
;
387 /* ------------------------------------------------------------------------- */
389 enum mxl5007t_bw_mhz
{
395 static void mxl5007t_set_bw_bits(struct mxl5007t_state
*state
,
396 enum mxl5007t_bw_mhz bw
)
402 val
= 0x15; /* set DIG_MODEINDEX, DIG_MODEINDEX_A,
403 * and DIG_MODEINDEX_CSF */
415 set_reg_bits(state
->tab_rftune
, 0x0c, 0x3f, val
);
421 reg_pair_t
*mxl5007t_calc_rf_tune_regs(struct mxl5007t_state
*state
,
422 u32 rf_freq
, enum mxl5007t_bw_mhz bw
)
426 u32 frac_divider
= 1000000;
429 memcpy(&state
->tab_rftune
, ®_pair_rftune
, sizeof(reg_pair_rftune
));
431 mxl5007t_set_bw_bits(state
, bw
);
433 /* Convert RF frequency into 16 bits =>
434 * 10 bit integer (MHz) + 6 bit fraction */
435 dig_rf_freq
= rf_freq
/ MHz
;
437 temp
= rf_freq
% MHz
;
439 for (i
= 0; i
< 6; i
++) {
442 if (temp
> frac_divider
) {
443 temp
-= frac_divider
;
448 /* add to have shift center point by 7.8124 kHz */
452 set_reg_bits(state
->tab_rftune
, 0x0d, 0xff, (u8
) dig_rf_freq
);
453 set_reg_bits(state
->tab_rftune
, 0x0e, 0xff, (u8
) (dig_rf_freq
>> 8));
455 if (rf_freq
>= 333000000)
456 set_reg_bits(state
->tab_rftune
, 0x80, 0x40, 0x40);
458 return state
->tab_rftune
;
461 /* ------------------------------------------------------------------------- */
463 static int mxl5007t_write_reg(struct mxl5007t_state
*state
, u8 reg
, u8 val
)
465 u8 buf
[] = { reg
, val
};
466 struct i2c_msg msg
= { .addr
= state
->i2c_props
.addr
, .flags
= 0,
467 .buf
= buf
, .len
= 2 };
470 ret
= i2c_transfer(state
->i2c_props
.adap
, &msg
, 1);
478 static int mxl5007t_write_regs(struct mxl5007t_state
*state
,
479 struct reg_pair_t
*reg_pair
)
484 while ((ret
== 0) && (reg_pair
[i
].reg
|| reg_pair
[i
].val
)) {
485 ret
= mxl5007t_write_reg(state
,
486 reg_pair
[i
].reg
, reg_pair
[i
].val
);
492 static int mxl5007t_read_reg(struct mxl5007t_state
*state
, u8 reg
, u8
*val
)
494 u8 buf
[2] = { 0xfb, reg
};
495 struct i2c_msg msg
[] = {
496 { .addr
= state
->i2c_props
.addr
, .flags
= 0,
497 .buf
= buf
, .len
= 2 },
498 { .addr
= state
->i2c_props
.addr
, .flags
= I2C_M_RD
,
499 .buf
= val
, .len
= 1 },
503 ret
= i2c_transfer(state
->i2c_props
.adap
, msg
, 2);
511 static int mxl5007t_soft_reset(struct mxl5007t_state
*state
)
514 struct i2c_msg msg
= {
515 .addr
= state
->i2c_props
.addr
, .flags
= 0,
518 int ret
= i2c_transfer(state
->i2c_props
.adap
, &msg
, 1);
527 static int mxl5007t_tuner_init(struct mxl5007t_state
*state
,
528 enum mxl5007t_mode mode
)
530 struct reg_pair_t
*init_regs
;
533 /* calculate initialization reg array */
534 init_regs
= mxl5007t_calc_init_regs(state
, mode
);
536 ret
= mxl5007t_write_regs(state
, init_regs
);
544 static int mxl5007t_tuner_rf_tune(struct mxl5007t_state
*state
, u32 rf_freq_hz
,
545 enum mxl5007t_bw_mhz bw
)
547 struct reg_pair_t
*rf_tune_regs
;
550 /* calculate channel change reg array */
551 rf_tune_regs
= mxl5007t_calc_rf_tune_regs(state
, rf_freq_hz
, bw
);
553 ret
= mxl5007t_write_regs(state
, rf_tune_regs
);
561 /* ------------------------------------------------------------------------- */
563 static int mxl5007t_synth_lock_status(struct mxl5007t_state
*state
,
564 int *rf_locked
, int *ref_locked
)
572 ret
= mxl5007t_read_reg(state
, 0xd8, &d
);
576 if ((d
& 0x0c) == 0x0c)
579 if ((d
& 0x03) == 0x03)
585 /* ------------------------------------------------------------------------- */
587 static int mxl5007t_get_status(struct dvb_frontend
*fe
, u32
*status
)
589 struct mxl5007t_state
*state
= fe
->tuner_priv
;
590 int rf_locked
, ref_locked
, ret
;
594 if (fe
->ops
.i2c_gate_ctrl
)
595 fe
->ops
.i2c_gate_ctrl(fe
, 1);
597 ret
= mxl5007t_synth_lock_status(state
, &rf_locked
, &ref_locked
);
600 mxl_debug("%s%s", rf_locked
? "rf locked " : "",
601 ref_locked
? "ref locked" : "");
603 if ((rf_locked
) || (ref_locked
))
604 *status
|= TUNER_STATUS_LOCKED
;
606 if (fe
->ops
.i2c_gate_ctrl
)
607 fe
->ops
.i2c_gate_ctrl(fe
, 0);
612 /* ------------------------------------------------------------------------- */
614 static int mxl5007t_set_params(struct dvb_frontend
*fe
)
616 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
617 u32 delsys
= c
->delivery_system
;
618 struct mxl5007t_state
*state
= fe
->tuner_priv
;
619 enum mxl5007t_bw_mhz bw
;
620 enum mxl5007t_mode mode
;
622 u32 freq
= c
->frequency
;
626 mode
= MxL_MODE_ATSC
;
629 case SYS_DVBC_ANNEX_B
:
630 mode
= MxL_MODE_CABLE
;
635 mode
= MxL_MODE_DVBT
;
636 switch (c
->bandwidth_hz
) {
651 mxl_err("modulation type not supported!");
655 if (fe
->ops
.i2c_gate_ctrl
)
656 fe
->ops
.i2c_gate_ctrl(fe
, 1);
658 mutex_lock(&state
->lock
);
660 ret
= mxl5007t_tuner_init(state
, mode
);
664 ret
= mxl5007t_tuner_rf_tune(state
, freq
, bw
);
668 state
->frequency
= freq
;
669 state
->bandwidth
= c
->bandwidth_hz
;
671 mutex_unlock(&state
->lock
);
673 if (fe
->ops
.i2c_gate_ctrl
)
674 fe
->ops
.i2c_gate_ctrl(fe
, 0);
679 /* ------------------------------------------------------------------------- */
681 static int mxl5007t_init(struct dvb_frontend
*fe
)
683 struct mxl5007t_state
*state
= fe
->tuner_priv
;
686 if (fe
->ops
.i2c_gate_ctrl
)
687 fe
->ops
.i2c_gate_ctrl(fe
, 1);
689 /* wake from standby */
690 ret
= mxl5007t_write_reg(state
, 0x01, 0x01);
693 if (fe
->ops
.i2c_gate_ctrl
)
694 fe
->ops
.i2c_gate_ctrl(fe
, 0);
699 static int mxl5007t_sleep(struct dvb_frontend
*fe
)
701 struct mxl5007t_state
*state
= fe
->tuner_priv
;
704 if (fe
->ops
.i2c_gate_ctrl
)
705 fe
->ops
.i2c_gate_ctrl(fe
, 1);
707 /* enter standby mode */
708 ret
= mxl5007t_write_reg(state
, 0x01, 0x00);
710 ret
= mxl5007t_write_reg(state
, 0x0f, 0x00);
713 if (fe
->ops
.i2c_gate_ctrl
)
714 fe
->ops
.i2c_gate_ctrl(fe
, 0);
719 /* ------------------------------------------------------------------------- */
721 static int mxl5007t_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
723 struct mxl5007t_state
*state
= fe
->tuner_priv
;
724 *frequency
= state
->frequency
;
728 static int mxl5007t_get_bandwidth(struct dvb_frontend
*fe
, u32
*bandwidth
)
730 struct mxl5007t_state
*state
= fe
->tuner_priv
;
731 *bandwidth
= state
->bandwidth
;
735 static int mxl5007t_get_if_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
737 struct mxl5007t_state
*state
= fe
->tuner_priv
;
741 switch (state
->if_freq
) {
743 *frequency
= 4000000;
746 *frequency
= 4500000;
748 case MxL_IF_4_57_MHZ
:
749 *frequency
= 4570000;
752 *frequency
= 5000000;
754 case MxL_IF_5_38_MHZ
:
755 *frequency
= 5380000;
758 *frequency
= 6000000;
760 case MxL_IF_6_28_MHZ
:
761 *frequency
= 6280000;
763 case MxL_IF_9_1915_MHZ
:
764 *frequency
= 9191500;
766 case MxL_IF_35_25_MHZ
:
767 *frequency
= 35250000;
769 case MxL_IF_36_15_MHZ
:
770 *frequency
= 36150000;
773 *frequency
= 44000000;
779 static int mxl5007t_release(struct dvb_frontend
*fe
)
781 struct mxl5007t_state
*state
= fe
->tuner_priv
;
783 mutex_lock(&mxl5007t_list_mutex
);
786 hybrid_tuner_release_state(state
);
788 mutex_unlock(&mxl5007t_list_mutex
);
790 fe
->tuner_priv
= NULL
;
795 /* ------------------------------------------------------------------------- */
797 static struct dvb_tuner_ops mxl5007t_tuner_ops
= {
799 .name
= "MaxLinear MxL5007T",
801 .init
= mxl5007t_init
,
802 .sleep
= mxl5007t_sleep
,
803 .set_params
= mxl5007t_set_params
,
804 .get_status
= mxl5007t_get_status
,
805 .get_frequency
= mxl5007t_get_frequency
,
806 .get_bandwidth
= mxl5007t_get_bandwidth
,
807 .release
= mxl5007t_release
,
808 .get_if_frequency
= mxl5007t_get_if_frequency
,
811 static int mxl5007t_get_chip_id(struct mxl5007t_state
*state
)
817 ret
= mxl5007t_read_reg(state
, 0xd9, &id
);
823 name
= "MxL5007.v1.f1";
826 name
= "MxL5007.v1.f2";
828 case MxL_5007_V2_100_F1
:
829 name
= "MxL5007.v2.100.f1";
831 case MxL_5007_V2_100_F2
:
832 name
= "MxL5007.v2.100.f2";
834 case MxL_5007_V2_200_F1
:
835 name
= "MxL5007.v2.200.f1";
837 case MxL_5007_V2_200_F2
:
838 name
= "MxL5007.v2.200.f2";
841 name
= "MxL5007T.v4";
845 printk(KERN_WARNING
"%s: unknown rev (%02x)\n", __func__
, id
);
849 mxl_info("%s detected @ %d-%04x", name
,
850 i2c_adapter_id(state
->i2c_props
.adap
),
851 state
->i2c_props
.addr
);
854 mxl_warn("unable to identify device @ %d-%04x",
855 i2c_adapter_id(state
->i2c_props
.adap
),
856 state
->i2c_props
.addr
);
858 state
->chip_id
= MxL_UNKNOWN_ID
;
862 struct dvb_frontend
*mxl5007t_attach(struct dvb_frontend
*fe
,
863 struct i2c_adapter
*i2c
, u8 addr
,
864 struct mxl5007t_config
*cfg
)
866 struct mxl5007t_state
*state
= NULL
;
869 mutex_lock(&mxl5007t_list_mutex
);
870 instance
= hybrid_tuner_request_state(struct mxl5007t_state
, state
,
871 hybrid_tuner_instance_list
,
872 i2c
, addr
, "mxl5007t");
877 /* new tuner instance */
880 mutex_init(&state
->lock
);
882 if (fe
->ops
.i2c_gate_ctrl
)
883 fe
->ops
.i2c_gate_ctrl(fe
, 1);
885 ret
= mxl5007t_get_chip_id(state
);
887 if (fe
->ops
.i2c_gate_ctrl
)
888 fe
->ops
.i2c_gate_ctrl(fe
, 0);
890 /* check return value of mxl5007t_get_chip_id */
895 /* existing tuner instance */
899 if (fe
->ops
.i2c_gate_ctrl
)
900 fe
->ops
.i2c_gate_ctrl(fe
, 1);
902 ret
= mxl5007t_soft_reset(state
);
904 if (fe
->ops
.i2c_gate_ctrl
)
905 fe
->ops
.i2c_gate_ctrl(fe
, 0);
910 if (fe
->ops
.i2c_gate_ctrl
)
911 fe
->ops
.i2c_gate_ctrl(fe
, 1);
913 ret
= mxl5007t_write_reg(state
, 0x04,
914 state
->config
->loop_thru_enable
);
916 if (fe
->ops
.i2c_gate_ctrl
)
917 fe
->ops
.i2c_gate_ctrl(fe
, 0);
922 fe
->tuner_priv
= state
;
924 mutex_unlock(&mxl5007t_list_mutex
);
926 memcpy(&fe
->ops
.tuner_ops
, &mxl5007t_tuner_ops
,
927 sizeof(struct dvb_tuner_ops
));
931 mutex_unlock(&mxl5007t_list_mutex
);
933 mxl5007t_release(fe
);
936 EXPORT_SYMBOL_GPL(mxl5007t_attach
);
937 MODULE_DESCRIPTION("MaxLinear MxL5007T Silicon IC tuner driver");
938 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
939 MODULE_LICENSE("GPL");
940 MODULE_VERSION("0.2");