blob: d9cab1ff6dff0ace50dcfecf393c9257a78d2245 [file] [log] [blame]
Steven Tothf47623a2007-07-28 19:17:39 -03001/*
2 * Driver for Microtune MT2131 "QAM/8VSB single chip tuner"
3 *
Steven Toth6d897612008-09-03 17:12:12 -03004 * Copyright (c) 2006 Steven Toth <stoth@linuxtv.org>
Steven Tothf47623a2007-07-28 19:17:39 -03005 *
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.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/module.h>
Steven Tothf47623a2007-07-28 19:17:39 -030023#include <linux/delay.h>
24#include <linux/dvb/frontend.h>
25#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Steven Tothf47623a2007-07-28 19:17:39 -030027
28#include "dvb_frontend.h"
29
30#include "mt2131.h"
31#include "mt2131_priv.h"
32
33static int debug;
34module_param(debug, int, 0644);
35MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off).");
36
37#define dprintk(level,fmt, arg...) if (debug >= level) \
38 printk(KERN_INFO "%s: " fmt, "mt2131", ## arg)
39
40static u8 mt2131_config1[] = {
41 0x01,
42 0x50, 0x00, 0x50, 0x80, 0x00, 0x49, 0xfa, 0x88,
43 0x08, 0x77, 0x41, 0x04, 0x00, 0x00, 0x00, 0x32,
44 0x7f, 0xda, 0x4c, 0x00, 0x10, 0xaa, 0x78, 0x80,
45 0xff, 0x68, 0xa0, 0xff, 0xdd, 0x00, 0x00
46};
47
48static u8 mt2131_config2[] = {
49 0x10,
50 0x7f, 0xc8, 0x0a, 0x5f, 0x00, 0x04
51};
52
53static int mt2131_readreg(struct mt2131_priv *priv, u8 reg, u8 *val)
54{
55 struct i2c_msg msg[2] = {
Michael Krufky3873dd02007-07-28 20:02:55 -030056 { .addr = priv->cfg->i2c_address, .flags = 0,
57 .buf = &reg, .len = 1 },
58 { .addr = priv->cfg->i2c_address, .flags = I2C_M_RD,
59 .buf = val, .len = 1 },
Steven Tothf47623a2007-07-28 19:17:39 -030060 };
61
62 if (i2c_transfer(priv->i2c, msg, 2) != 2) {
63 printk(KERN_WARNING "mt2131 I2C read failed\n");
64 return -EREMOTEIO;
65 }
66 return 0;
67}
68
69static int mt2131_writereg(struct mt2131_priv *priv, u8 reg, u8 val)
70{
71 u8 buf[2] = { reg, val };
Michael Krufky3873dd02007-07-28 20:02:55 -030072 struct i2c_msg msg = { .addr = priv->cfg->i2c_address, .flags = 0,
73 .buf = buf, .len = 2 };
Steven Tothf47623a2007-07-28 19:17:39 -030074
75 if (i2c_transfer(priv->i2c, &msg, 1) != 1) {
76 printk(KERN_WARNING "mt2131 I2C write failed\n");
77 return -EREMOTEIO;
78 }
79 return 0;
80}
81
82static int mt2131_writeregs(struct mt2131_priv *priv,u8 *buf, u8 len)
83{
Michael Krufky3873dd02007-07-28 20:02:55 -030084 struct i2c_msg msg = { .addr = priv->cfg->i2c_address,
85 .flags = 0, .buf = buf, .len = len };
Steven Tothf47623a2007-07-28 19:17:39 -030086
87 if (i2c_transfer(priv->i2c, &msg, 1) != 1) {
Michael Krufky3873dd02007-07-28 20:02:55 -030088 printk(KERN_WARNING "mt2131 I2C write failed (len=%i)\n",
89 (int)len);
Steven Tothf47623a2007-07-28 19:17:39 -030090 return -EREMOTEIO;
91 }
92 return 0;
93}
94
Michael Krufky3873dd02007-07-28 20:02:55 -030095static int mt2131_set_params(struct dvb_frontend *fe,
96 struct dvb_frontend_parameters *params)
Steven Tothf47623a2007-07-28 19:17:39 -030097{
Mauro Carvalho Chehab01ce5a72011-12-20 21:26:01 -030098 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Steven Tothf47623a2007-07-28 19:17:39 -030099 struct mt2131_priv *priv;
100 int ret=0, i;
101 u32 freq;
102 u8 if_band_center;
Michael Krufky3873dd02007-07-28 20:02:55 -0300103 u32 f_lo1, f_lo2;
104 u32 div1, num1, div2, num2;
Steven Tothf47623a2007-07-28 19:17:39 -0300105 u8 b[8];
106 u8 lockval = 0;
107
108 priv = fe->tuner_priv;
Steven Tothf47623a2007-07-28 19:17:39 -0300109
Mauro Carvalho Chehab01ce5a72011-12-20 21:26:01 -0300110 freq = c->frequency / 1000; /* Hz -> kHz */
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300111 dprintk(1, "%s() freq=%d\n", __func__, freq);
Steven Tothf47623a2007-07-28 19:17:39 -0300112
113 f_lo1 = freq + MT2131_IF1 * 1000;
114 f_lo1 = (f_lo1 / 250) * 250;
115 f_lo2 = f_lo1 - freq - MT2131_IF2;
116
Steven Toth195ccf62007-10-24 23:12:58 -0300117 priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000;
Steven Tothf47623a2007-07-28 19:17:39 -0300118
119 /* Frequency LO1 = 16MHz * (DIV1 + NUM1/8192 ) */
120 num1 = f_lo1 * 64 / (MT2131_FREF / 128);
121 div1 = num1 / 8192;
122 num1 &= 0x1fff;
123
124 /* Frequency LO2 = 16MHz * (DIV2 + NUM2/8192 ) */
125 num2 = f_lo2 * 64 / (MT2131_FREF / 128);
126 div2 = num2 / 8192;
127 num2 &= 0x1fff;
128
129 if (freq <= 82500) if_band_center = 0x00; else
130 if (freq <= 137500) if_band_center = 0x01; else
131 if (freq <= 192500) if_band_center = 0x02; else
132 if (freq <= 247500) if_band_center = 0x03; else
133 if (freq <= 302500) if_band_center = 0x04; else
134 if (freq <= 357500) if_band_center = 0x05; else
135 if (freq <= 412500) if_band_center = 0x06; else
136 if (freq <= 467500) if_band_center = 0x07; else
137 if (freq <= 522500) if_band_center = 0x08; else
138 if (freq <= 577500) if_band_center = 0x09; else
139 if (freq <= 632500) if_band_center = 0x0A; else
140 if (freq <= 687500) if_band_center = 0x0B; else
141 if (freq <= 742500) if_band_center = 0x0C; else
142 if (freq <= 797500) if_band_center = 0x0D; else
143 if (freq <= 852500) if_band_center = 0x0E; else
144 if (freq <= 907500) if_band_center = 0x0F; else
145 if (freq <= 962500) if_band_center = 0x10; else
146 if (freq <= 1017500) if_band_center = 0x11; else
147 if (freq <= 1072500) if_band_center = 0x12; else if_band_center = 0x13;
148
149 b[0] = 1;
150 b[1] = (num1 >> 5) & 0xFF;
151 b[2] = (num1 & 0x1F);
152 b[3] = div1;
153 b[4] = (num2 >> 5) & 0xFF;
154 b[5] = num2 & 0x1F;
155 b[6] = div2;
156
157 dprintk(1, "IF1: %dMHz IF2: %dMHz\n", MT2131_IF1, MT2131_IF2);
158 dprintk(1, "PLL freq=%dkHz band=%d\n", (int)freq, (int)if_band_center);
159 dprintk(1, "PLL f_lo1=%dkHz f_lo2=%dkHz\n", (int)f_lo1, (int)f_lo2);
160 dprintk(1, "PLL div1=%d num1=%d div2=%d num2=%d\n",
161 (int)div1, (int)num1, (int)div2, (int)num2);
162 dprintk(1, "PLL [1..6]: %2x %2x %2x %2x %2x %2x\n",
163 (int)b[1], (int)b[2], (int)b[3], (int)b[4], (int)b[5],
164 (int)b[6]);
165
166 ret = mt2131_writeregs(priv,b,7);
167 if (ret < 0)
168 return ret;
169
170 mt2131_writereg(priv, 0x0b, if_band_center);
171
172 /* Wait for lock */
173 i = 0;
174 do {
175 mt2131_readreg(priv, 0x08, &lockval);
176 if ((lockval & 0x88) == 0x88)
177 break;
178 msleep(4);
179 i++;
180 } while (i < 10);
181
182 return ret;
183}
184
185static int mt2131_get_frequency(struct dvb_frontend *fe, u32 *frequency)
186{
187 struct mt2131_priv *priv = fe->tuner_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300188 dprintk(1, "%s()\n", __func__);
Steven Tothf47623a2007-07-28 19:17:39 -0300189 *frequency = priv->frequency;
190 return 0;
191}
192
Steven Tothf47623a2007-07-28 19:17:39 -0300193static int mt2131_get_status(struct dvb_frontend *fe, u32 *status)
194{
195 struct mt2131_priv *priv = fe->tuner_priv;
196 u8 lock_status = 0;
197 u8 afc_status = 0;
198
199 *status = 0;
200
201 mt2131_readreg(priv, 0x08, &lock_status);
202 if ((lock_status & 0x88) == 0x88)
203 *status = TUNER_STATUS_LOCKED;
204
205 mt2131_readreg(priv, 0x09, &afc_status);
206 dprintk(1, "%s() - LO Status = 0x%x, AFC Status = 0x%x\n",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300207 __func__, lock_status, afc_status);
Steven Tothf47623a2007-07-28 19:17:39 -0300208
209 return 0;
210}
211
212static int mt2131_init(struct dvb_frontend *fe)
213{
214 struct mt2131_priv *priv = fe->tuner_priv;
215 int ret;
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300216 dprintk(1, "%s()\n", __func__);
Steven Tothf47623a2007-07-28 19:17:39 -0300217
Michael Krufky3873dd02007-07-28 20:02:55 -0300218 if ((ret = mt2131_writeregs(priv, mt2131_config1,
219 sizeof(mt2131_config1))) < 0)
Steven Tothf47623a2007-07-28 19:17:39 -0300220 return ret;
221
222 mt2131_writereg(priv, 0x0b, 0x09);
223 mt2131_writereg(priv, 0x15, 0x47);
224 mt2131_writereg(priv, 0x07, 0xf2);
225 mt2131_writereg(priv, 0x0b, 0x01);
226
Michael Krufky3873dd02007-07-28 20:02:55 -0300227 if ((ret = mt2131_writeregs(priv, mt2131_config2,
228 sizeof(mt2131_config2))) < 0)
Steven Tothf47623a2007-07-28 19:17:39 -0300229 return ret;
230
231 return ret;
232}
233
234static int mt2131_release(struct dvb_frontend *fe)
235{
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300236 dprintk(1, "%s()\n", __func__);
Steven Tothf47623a2007-07-28 19:17:39 -0300237 kfree(fe->tuner_priv);
238 fe->tuner_priv = NULL;
239 return 0;
240}
241
242static const struct dvb_tuner_ops mt2131_tuner_ops = {
243 .info = {
244 .name = "Microtune MT2131",
245 .frequency_min = 48000000,
246 .frequency_max = 860000000,
247 .frequency_step = 50000,
248 },
249
250 .release = mt2131_release,
251 .init = mt2131_init,
252
253 .set_params = mt2131_set_params,
254 .get_frequency = mt2131_get_frequency,
Steven Tothf47623a2007-07-28 19:17:39 -0300255 .get_status = mt2131_get_status
256};
257
Michael Krufky3873dd02007-07-28 20:02:55 -0300258struct dvb_frontend * mt2131_attach(struct dvb_frontend *fe,
259 struct i2c_adapter *i2c,
260 struct mt2131_config *cfg, u16 if1)
Steven Tothf47623a2007-07-28 19:17:39 -0300261{
262 struct mt2131_priv *priv = NULL;
263 u8 id = 0;
264
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300265 dprintk(1, "%s()\n", __func__);
Steven Tothf47623a2007-07-28 19:17:39 -0300266
267 priv = kzalloc(sizeof(struct mt2131_priv), GFP_KERNEL);
268 if (priv == NULL)
269 return NULL;
270
271 priv->cfg = cfg;
Steven Tothf47623a2007-07-28 19:17:39 -0300272 priv->i2c = i2c;
273
274 if (mt2131_readreg(priv, 0, &id) != 0) {
275 kfree(priv);
276 return NULL;
277 }
278 if ( (id != 0x3E) && (id != 0x3F) ) {
Michael Krufky3873dd02007-07-28 20:02:55 -0300279 printk(KERN_ERR "MT2131: Device not found at addr 0x%02x\n",
280 cfg->i2c_address);
Steven Tothf47623a2007-07-28 19:17:39 -0300281 kfree(priv);
282 return NULL;
283 }
284
Michael Krufky3873dd02007-07-28 20:02:55 -0300285 printk(KERN_INFO "MT2131: successfully identified at address 0x%02x\n",
286 cfg->i2c_address);
287 memcpy(&fe->ops.tuner_ops, &mt2131_tuner_ops,
288 sizeof(struct dvb_tuner_ops));
Steven Tothf47623a2007-07-28 19:17:39 -0300289
290 fe->tuner_priv = priv;
291 return fe;
292}
293EXPORT_SYMBOL(mt2131_attach);
294
295MODULE_AUTHOR("Steven Toth");
296MODULE_DESCRIPTION("Microtune MT2131 silicon tuner driver");
297MODULE_LICENSE("GPL");
Michael Krufky3873dd02007-07-28 20:02:55 -0300298
299/*
300 * Local variables:
301 * c-basic-offset: 8
302 */