2 * Driver for Microtune MT2060 "Single chip dual conversion broadband tuner"
4 * Copyright (c) 2006 Olivier DANET <odanet@caramail.com>
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
15 * GNU General Public License for more details.
21 // Uncomment the #define below to enable spurs checking. The results where quite unconvincing.
22 // #define MT2060_SPURCHECK
24 /* This driver is based on the information available in the datasheet of the
25 "Comtech SDVBT-3K6M" tuner ( K1000737843.pdf ) which features the MT2060 register map :
29 Reg.No | B7 | B6 | B5 | B4 | B3 | B2 | B1 | B0 | ( defaults )
30 --------------------------------------------------------------------------------
31 00 | [ PART ] | [ REV ] | R = 0x63
32 01 | [ LNABAND ] | [ NUM1(5:2) ] | RW = 0x3F
33 02 | [ DIV1 ] | RW = 0x74
34 03 | FM1CA | FM1SS | [ NUM1(1:0) ] | [ NUM2(3:0) ] | RW = 0x00
35 04 | NUM2(11:4) ] | RW = 0x08
36 05 | [ DIV2 ] |NUM2(12)| RW = 0x93
37 06 | L1LK | [ TAD1 ] | L2LK | [ TAD2 ] | R
39 08 | ? | FMCAL | ? | ? | ? | ? | ? | TEMP | R
40 09 | 0 | 0 | [ FMGC ] | 0 | GP02 | GP01 | 0 | RW = 0x20
42 0B | 0 | 0 | 1 | 1 | 0 | 0 | [ VGAG ] | RW = 0x30
43 0C | V1CSE | 1 | 1 | 1 | 1 | 1 | 1 | 1 | RW = 0xFF
44 0D | 1 | 0 | [ V1CS ] | RW = 0xB0
48 11 | [ LOTO ] | 0 | 0 | 1 | 0 | RW = 0x42
50 PART : Part code : 6 for MT2060
51 REV : Revision code : 3 for current revision
52 LNABAND : Input frequency range : ( See code for details )
53 NUM1 / DIV1 / NUM2 / DIV2 : Frequencies programming ( See code for details )
54 FM1CA : Calibration Start Bit
55 FM1SS : Calibration Single Step bit
56 L1LK : LO1 Lock Detect
57 TAD1 : Tune Line ADC ( ? )
58 L2LK : LO2 Lock Detect
59 TAD2 : Tune Line ADC ( ? )
60 FMF : Estimated first IF Center frequency Offset ( ? )
61 FM1CAL : Calibration done bit
62 TEMP : On chip temperature sensor
63 FMCG : Mixer 1 Cap Gain ( ? )
64 GP01 / GP02 : Programmable digital outputs. Unconnected pins ?
65 V1CSE : LO1 VCO Automatic Capacitor Select Enable ( ? )
66 V1CS : LO1 Capacitor Selection Value ( ? )
67 LOTO : LO Timeout ( ? )
68 VGAG : Tuner Output gain
71 #define I2C_ADDRESS 0x60
73 #define REG_PART_REV 0
79 #define REG_LO_STATUS 6
81 #define REG_MISC_STAT 8
82 #define REG_MISC_CTRL 9
83 #define REG_RESERVED_A 0x0A
85 #define REG_LO1B1 0x0C
86 #define REG_LO1B2 0x0D
89 #define PART_REV 0x63 // The current driver works only with PART=6 and REV=3 chips
92 struct mt2060_config
*cfg
;
93 struct i2c_adapter
*i2c
;
94 struct i2c_client
*client
;
95 struct mt2060_config config
;
103 * Use REG_MISC_CTRL register for sleep. That drops sleep power usage
104 * about 0.9W (huge!). Register bit meanings are unknown, so let it be
105 * disabled by default to avoid possible regression. Convert driver to
106 * i2c model in order to enable it.