blob: 115ec169b6414a9ed5439037b7214f951a5dbba8 [file] [log] [blame]
Steve Tothb79cb652006-01-09 15:25:07 -02001/*
2 Conexant cx24123/cx24109 - DVB QPSK Satellite demod/tuner driver
3
4 Copyright (C) 2005 Steven Toth <stoth@hauppauge.com>
5
Vadim Catana1c956a32006-01-09 15:25:08 -02006 Support for KWorld DVB-S 100 by Vadim Catana <skystar@moldova.cc>
7
Steve Tothb79cb652006-01-09 15:25:07 -02008 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21*/
22
23#include <linux/slab.h>
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28
29#include "dvb_frontend.h"
30#include "cx24123.h"
31
Vadim Catanaa74b51f2006-04-13 10:19:52 -030032#define XTAL 10111000
33
Steve Tothb79cb652006-01-09 15:25:07 -020034static int debug;
35#define dprintk(args...) \
36 do { \
37 if (debug) printk (KERN_DEBUG "cx24123: " args); \
38 } while (0)
39
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020040struct cx24123_state
41{
Steve Tothb79cb652006-01-09 15:25:07 -020042 struct i2c_adapter* i2c;
43 struct dvb_frontend_ops ops;
44 const struct cx24123_config* config;
45
46 struct dvb_frontend frontend;
47
48 u32 lastber;
49 u16 snr;
50 u8 lnbreg;
51
52 /* Some PLL specifics for tuning */
53 u32 VCAarg;
54 u32 VGAarg;
55 u32 bandselectarg;
56 u32 pllarg;
Vadim Catanaa74b51f2006-04-13 10:19:52 -030057 u32 FILTune;
Steve Tothb79cb652006-01-09 15:25:07 -020058
59 /* The Demod/Tuner can't easily provide these, we cache them */
60 u32 currentfreq;
61 u32 currentsymbolrate;
62};
63
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020064/* Various tuner defaults need to be established for a given symbol rate Sps */
65static struct
66{
67 u32 symbolrate_low;
68 u32 symbolrate_high;
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020069 u32 VCAprogdata;
70 u32 VGAprogdata;
Vadim Catanaa74b51f2006-04-13 10:19:52 -030071 u32 FILTune;
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020072} cx24123_AGC_vals[] =
73{
74 {
75 .symbolrate_low = 1000000,
76 .symbolrate_high = 4999999,
Vadim Catanaa74b51f2006-04-13 10:19:52 -030077 /* the specs recommend other values for VGA offsets,
78 but tests show they are wrong */
79 .VGAprogdata = (2 << 18) | (0x180 << 9) | 0x1e0,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020080 .VCAprogdata = (4 << 18) | (0x07 << 9) | 0x07,
Vadim Catanaa74b51f2006-04-13 10:19:52 -030081 .FILTune = 0x280 /* 0.41 V */
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020082 },
83 {
84 .symbolrate_low = 5000000,
85 .symbolrate_high = 14999999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020086 .VGAprogdata = (2 << 18) | (0x180 << 9) | 0x1e0,
87 .VCAprogdata = (4 << 18) | (0x07 << 9) | 0x1f,
Vadim Catanaa74b51f2006-04-13 10:19:52 -030088 .FILTune = 0x317 /* 0.90 V */
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020089 },
90 {
91 .symbolrate_low = 15000000,
92 .symbolrate_high = 45000000,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020093 .VGAprogdata = (2 << 18) | (0x100 << 9) | 0x180,
94 .VCAprogdata = (4 << 18) | (0x07 << 9) | 0x3f,
Vadim Catanaa74b51f2006-04-13 10:19:52 -030095 .FILTune = 0x146 /* 2.70 V */
Johannes Stezenbache3b152b2006-01-09 15:25:08 -020096 },
97};
98
99/*
100 * Various tuner defaults need to be established for a given frequency kHz.
101 * fixme: The bounds on the bands do not match the doc in real life.
102 * fixme: Some of them have been moved, other might need adjustment.
103 */
104static struct
105{
106 u32 freq_low;
107 u32 freq_high;
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200108 u32 VCOdivider;
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200109 u32 progdata;
110} cx24123_bandselect_vals[] =
111{
112 {
113 .freq_low = 950000,
114 .freq_high = 1018999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200115 .VCOdivider = 4,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200116 .progdata = (0 << 18) | (0 << 9) | 0x40,
117 },
118 {
119 .freq_low = 1019000,
120 .freq_high = 1074999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200121 .VCOdivider = 4,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200122 .progdata = (0 << 18) | (0 << 9) | 0x80,
123 },
124 {
125 .freq_low = 1075000,
126 .freq_high = 1227999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200127 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200128 .progdata = (0 << 18) | (1 << 9) | 0x01,
129 },
130 {
131 .freq_low = 1228000,
132 .freq_high = 1349999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200133 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200134 .progdata = (0 << 18) | (1 << 9) | 0x02,
135 },
136 {
137 .freq_low = 1350000,
138 .freq_high = 1481999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200139 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200140 .progdata = (0 << 18) | (1 << 9) | 0x04,
141 },
142 {
143 .freq_low = 1482000,
144 .freq_high = 1595999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200145 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200146 .progdata = (0 << 18) | (1 << 9) | 0x08,
147 },
148 {
149 .freq_low = 1596000,
150 .freq_high = 1717999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200151 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200152 .progdata = (0 << 18) | (1 << 9) | 0x10,
153 },
154 {
155 .freq_low = 1718000,
156 .freq_high = 1855999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200157 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200158 .progdata = (0 << 18) | (1 << 9) | 0x20,
159 },
160 {
161 .freq_low = 1856000,
162 .freq_high = 2035999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200163 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200164 .progdata = (0 << 18) | (1 << 9) | 0x40,
165 },
166 {
167 .freq_low = 2036000,
168 .freq_high = 2149999,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200169 .VCOdivider = 2,
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200170 .progdata = (0 << 18) | (1 << 9) | 0x80,
171 },
172};
173
Steve Tothb79cb652006-01-09 15:25:07 -0200174static struct {
175 u8 reg;
176 u8 data;
177} cx24123_regdata[] =
178{
179 {0x00, 0x03}, /* Reset system */
180 {0x00, 0x00}, /* Clear reset */
Steve Tothb79cb652006-01-09 15:25:07 -0200181 {0x03, 0x07},
182 {0x04, 0x10},
183 {0x05, 0x04},
184 {0x06, 0x31},
185 {0x0d, 0x02},
186 {0x0e, 0x03},
187 {0x0f, 0xfe},
188 {0x10, 0x01},
189 {0x14, 0x01},
Steve Tothb79cb652006-01-09 15:25:07 -0200190 {0x16, 0x00},
191 {0x17, 0x01},
192 {0x1b, 0x05},
193 {0x1c, 0x80},
194 {0x1d, 0x00},
195 {0x1e, 0x00},
196 {0x20, 0x41},
197 {0x21, 0x15},
Steve Tothb79cb652006-01-09 15:25:07 -0200198 {0x29, 0x00},
199 {0x2a, 0xb0},
200 {0x2b, 0x73},
201 {0x2c, 0x00},
202 {0x2d, 0x00},
203 {0x2e, 0x00},
204 {0x2f, 0x00},
205 {0x30, 0x00},
206 {0x31, 0x00},
207 {0x32, 0x8c},
208 {0x33, 0x00},
209 {0x34, 0x00},
210 {0x35, 0x03},
211 {0x36, 0x02},
212 {0x37, 0x3a},
213 {0x3a, 0x00}, /* Enable AGC accumulator */
214 {0x44, 0x00},
215 {0x45, 0x00},
216 {0x46, 0x05},
217 {0x56, 0x41},
218 {0x57, 0xff},
219 {0x67, 0x83},
220};
221
222static int cx24123_writereg(struct cx24123_state* state, int reg, int data)
223{
224 u8 buf[] = { reg, data };
225 struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 };
226 int err;
227
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300228 if (debug>1)
229 printk("cx24123: %s: write reg 0x%02x, value 0x%02x\n",
230 __FUNCTION__,reg, data);
231
Steve Tothb79cb652006-01-09 15:25:07 -0200232 if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) {
233 printk("%s: writereg error(err == %i, reg == 0x%02x,"
234 " data == 0x%02x)\n", __FUNCTION__, err, reg, data);
235 return -EREMOTEIO;
236 }
237
238 return 0;
239}
240
241static int cx24123_writelnbreg(struct cx24123_state* state, int reg, int data)
242{
243 u8 buf[] = { reg, data };
244 /* fixme: put the intersil addr int the config */
245 struct i2c_msg msg = { .addr = 0x08, .flags = 0, .buf = buf, .len = 2 };
246 int err;
247
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300248 if (debug>1)
249 printk("cx24123: %s: writeln addr=0x08, reg 0x%02x, value 0x%02x\n",
250 __FUNCTION__,reg, data);
251
Steve Tothb79cb652006-01-09 15:25:07 -0200252 if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) {
253 printk("%s: writelnbreg error (err == %i, reg == 0x%02x,"
254 " data == 0x%02x)\n", __FUNCTION__, err, reg, data);
255 return -EREMOTEIO;
256 }
257
258 /* cache the write, no way to read back */
259 state->lnbreg = data;
260
261 return 0;
262}
263
264static int cx24123_readreg(struct cx24123_state* state, u8 reg)
265{
266 int ret;
267 u8 b0[] = { reg };
268 u8 b1[] = { 0 };
269 struct i2c_msg msg[] = {
270 { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 },
271 { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 }
272 };
273
274 ret = i2c_transfer(state->i2c, msg, 2);
275
276 if (ret != 2) {
277 printk("%s: reg=0x%x (error=%d)\n", __FUNCTION__, reg, ret);
278 return ret;
279 }
280
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300281 if (debug>1)
282 printk("cx24123: read reg 0x%02x, value 0x%02x\n",reg, ret);
283
Steve Tothb79cb652006-01-09 15:25:07 -0200284 return b1[0];
285}
286
287static int cx24123_readlnbreg(struct cx24123_state* state, u8 reg)
288{
289 return state->lnbreg;
290}
291
292static int cx24123_set_inversion(struct cx24123_state* state, fe_spectral_inversion_t inversion)
293{
294 switch (inversion) {
295 case INVERSION_OFF:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300296 dprintk("%s: inversion off\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200297 cx24123_writereg(state, 0x0e, cx24123_readreg(state, 0x0e) & 0x7f);
298 cx24123_writereg(state, 0x10, cx24123_readreg(state, 0x10) | 0x80);
299 break;
300 case INVERSION_ON:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300301 dprintk("%s: inversion on\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200302 cx24123_writereg(state, 0x0e, cx24123_readreg(state, 0x0e) | 0x80);
303 cx24123_writereg(state, 0x10, cx24123_readreg(state, 0x10) | 0x80);
304 break;
305 case INVERSION_AUTO:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300306 dprintk("%s: inversion auto\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200307 cx24123_writereg(state, 0x10, cx24123_readreg(state, 0x10) & 0x7f);
308 break;
309 default:
310 return -EINVAL;
311 }
312
313 return 0;
314}
315
316static int cx24123_get_inversion(struct cx24123_state* state, fe_spectral_inversion_t *inversion)
317{
318 u8 val;
319
320 val = cx24123_readreg(state, 0x1b) >> 7;
321
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300322 if (val == 0) {
323 dprintk("%s: read inversion off\n",__FUNCTION__);
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200324 *inversion = INVERSION_OFF;
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300325 } else {
326 dprintk("%s: read inversion on\n",__FUNCTION__);
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200327 *inversion = INVERSION_ON;
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300328 }
Steve Tothb79cb652006-01-09 15:25:07 -0200329
330 return 0;
331}
332
333static int cx24123_set_fec(struct cx24123_state* state, fe_code_rate_t fec)
334{
335 if ( (fec < FEC_NONE) || (fec > FEC_AUTO) )
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200336 fec = FEC_AUTO;
Steve Tothb79cb652006-01-09 15:25:07 -0200337
338 /* Hardware has 5/11 and 3/5 but are never unused */
339 switch (fec) {
340 case FEC_NONE:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300341 dprintk("%s: set FEC to none\n",__FUNCTION__);
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200342 return cx24123_writereg(state, 0x0f, 0x01);
Steve Tothb79cb652006-01-09 15:25:07 -0200343 case FEC_1_2:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300344 dprintk("%s: set FEC to 1/2\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200345 return cx24123_writereg(state, 0x0f, 0x02);
346 case FEC_2_3:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300347 dprintk("%s: set FEC to 2/3\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200348 return cx24123_writereg(state, 0x0f, 0x04);
349 case FEC_3_4:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300350 dprintk("%s: set FEC to 3/4\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200351 return cx24123_writereg(state, 0x0f, 0x08);
352 case FEC_5_6:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300353 dprintk("%s: set FEC to 4/5\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200354 return cx24123_writereg(state, 0x0f, 0x20);
355 case FEC_7_8:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300356 dprintk("%s: set FEC to 5/6\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200357 return cx24123_writereg(state, 0x0f, 0x80);
358 case FEC_AUTO:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300359 dprintk("%s: set FEC to auto\n",__FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200360 return cx24123_writereg(state, 0x0f, 0xae);
361 default:
362 return -EOPNOTSUPP;
363 }
364}
365
366static int cx24123_get_fec(struct cx24123_state* state, fe_code_rate_t *fec)
367{
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200368 int ret;
Steve Tothb79cb652006-01-09 15:25:07 -0200369
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200370 ret = cx24123_readreg (state, 0x1b);
371 if (ret < 0)
372 return ret;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300373 ret = ret & 0x07;
374
375 switch (ret) {
Steve Tothb79cb652006-01-09 15:25:07 -0200376 case 1:
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200377 *fec = FEC_1_2;
378 break;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300379 case 2:
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200380 *fec = FEC_2_3;
381 break;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300382 case 3:
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200383 *fec = FEC_3_4;
384 break;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300385 case 4:
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200386 *fec = FEC_4_5;
387 break;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300388 case 5:
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200389 *fec = FEC_5_6;
390 break;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300391 case 6:
392 *fec = FEC_6_7;
393 break;
Steve Tothb79cb652006-01-09 15:25:07 -0200394 case 7:
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200395 *fec = FEC_7_8;
396 break;
Steve Tothb79cb652006-01-09 15:25:07 -0200397 default:
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200398 *fec = FEC_NONE; // can't happen
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300399 printk("FEC_NONE ?\n");
Steve Tothb79cb652006-01-09 15:25:07 -0200400 }
401
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200402 return 0;
Steve Tothb79cb652006-01-09 15:25:07 -0200403}
404
Steve Tothb79cb652006-01-09 15:25:07 -0200405static int cx24123_set_symbolrate(struct cx24123_state* state, u32 srate)
406{
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300407 u32 tmp, sample_rate, ratio;
408 u8 pll_mult;
Steve Tothb79cb652006-01-09 15:25:07 -0200409
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300410 /* check if symbol rate is within limits */
411 if ((srate > state->ops.info.symbol_rate_max) ||
412 (srate < state->ops.info.symbol_rate_min))
413 return -EOPNOTSUPP;;
Steve Tothb79cb652006-01-09 15:25:07 -0200414
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300415 /* choose the sampling rate high enough for the required operation,
416 while optimizing the power consumed by the demodulator */
417 if (srate < (XTAL*2)/2)
418 pll_mult = 2;
419 else if (srate < (XTAL*3)/2)
420 pll_mult = 3;
421 else if (srate < (XTAL*4)/2)
422 pll_mult = 4;
423 else if (srate < (XTAL*5)/2)
424 pll_mult = 5;
425 else if (srate < (XTAL*6)/2)
426 pll_mult = 6;
427 else if (srate < (XTAL*7)/2)
428 pll_mult = 7;
429 else if (srate < (XTAL*8)/2)
430 pll_mult = 8;
431 else
432 pll_mult = 9;
Steve Tothb79cb652006-01-09 15:25:07 -0200433
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300434
435 sample_rate = pll_mult * XTAL;
436
437 /*
438 SYSSymbolRate[21:0] = (srate << 23) / sample_rate
439
440 We have to use 32 bit unsigned arithmetic without precision loss.
441 The maximum srate is 45000000 or 0x02AEA540. This number has
442 only 6 clear bits on top, hence we can shift it left only 6 bits
443 at a time. Borrowed from cx24110.c
444 */
445
446 tmp = srate << 6;
447 ratio = tmp / sample_rate;
448
449 tmp = (tmp % sample_rate) << 6;
450 ratio = (ratio << 6) + (tmp / sample_rate);
451
452 tmp = (tmp % sample_rate) << 6;
453 ratio = (ratio << 6) + (tmp / sample_rate);
454
455 tmp = (tmp % sample_rate) << 5;
456 ratio = (ratio << 5) + (tmp / sample_rate);
457
458
459 cx24123_writereg(state, 0x01, pll_mult * 6);
460
461 cx24123_writereg(state, 0x08, (ratio >> 16) & 0x3f );
462 cx24123_writereg(state, 0x09, (ratio >> 8) & 0xff );
463 cx24123_writereg(state, 0x0a, (ratio ) & 0xff );
464
465 dprintk("%s: srate=%d, ratio=0x%08x, sample_rate=%i\n", __FUNCTION__, srate, ratio, sample_rate);
Steve Tothb79cb652006-01-09 15:25:07 -0200466
467 return 0;
468}
469
470/*
471 * Based on the required frequency and symbolrate, the tuner AGC has to be configured
472 * and the correct band selected. Calculate those values
473 */
474static int cx24123_pll_calculate(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
475{
476 struct cx24123_state *state = fe->demodulator_priv;
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200477 u32 ndiv = 0, adiv = 0, vco_div = 0;
478 int i = 0;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300479 int pump = 2;
Steve Tothb79cb652006-01-09 15:25:07 -0200480
481 /* Defaults for low freq, low rate */
482 state->VCAarg = cx24123_AGC_vals[0].VCAprogdata;
483 state->VGAarg = cx24123_AGC_vals[0].VGAprogdata;
484 state->bandselectarg = cx24123_bandselect_vals[0].progdata;
485 vco_div = cx24123_bandselect_vals[0].VCOdivider;
486
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300487 /* For the given symbol rate, determine the VCA, VGA and FILTUNE programming bits */
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200488 for (i = 0; i < sizeof(cx24123_AGC_vals) / sizeof(cx24123_AGC_vals[0]); i++)
Steve Tothb79cb652006-01-09 15:25:07 -0200489 {
490 if ((cx24123_AGC_vals[i].symbolrate_low <= p->u.qpsk.symbol_rate) &&
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300491 (cx24123_AGC_vals[i].symbolrate_high >= p->u.qpsk.symbol_rate) ) {
Steve Tothb79cb652006-01-09 15:25:07 -0200492 state->VCAarg = cx24123_AGC_vals[i].VCAprogdata;
493 state->VGAarg = cx24123_AGC_vals[i].VGAprogdata;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300494 state->FILTune = cx24123_AGC_vals[i].FILTune;
Steve Tothb79cb652006-01-09 15:25:07 -0200495 }
496 }
497
498 /* For the given frequency, determine the bandselect programming bits */
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200499 for (i = 0; i < sizeof(cx24123_bandselect_vals) / sizeof(cx24123_bandselect_vals[0]); i++)
Steve Tothb79cb652006-01-09 15:25:07 -0200500 {
501 if ((cx24123_bandselect_vals[i].freq_low <= p->frequency) &&
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300502 (cx24123_bandselect_vals[i].freq_high >= p->frequency) ) {
Steve Tothb79cb652006-01-09 15:25:07 -0200503 state->bandselectarg = cx24123_bandselect_vals[i].progdata;
504 vco_div = cx24123_bandselect_vals[i].VCOdivider;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300505
506 /* determine the charge pump current */
507 if ( p->frequency < (cx24123_bandselect_vals[i].freq_low + cx24123_bandselect_vals[i].freq_high)/2 )
508 pump = 0x01;
509 else
510 pump = 0x02;
Steve Tothb79cb652006-01-09 15:25:07 -0200511 }
512 }
513
514 /* Determine the N/A dividers for the requested lband freq (in kHz). */
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300515 /* Note: the reference divider R=10, frequency is in KHz, XTAL is in Hz */
516 ndiv = ( ((p->frequency * vco_div * 10) / (2 * XTAL / 1000)) / 32) & 0x1ff;
517 adiv = ( ((p->frequency * vco_div * 10) / (2 * XTAL / 1000)) % 32) & 0x1f;
Steve Tothb79cb652006-01-09 15:25:07 -0200518
519 if (adiv == 0)
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300520 ndiv++;
Steve Tothb79cb652006-01-09 15:25:07 -0200521
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300522 /* control bits 11, refdiv 11, charge pump polarity 1, charge pump current, ndiv, adiv */
523 state->pllarg = (3 << 19) | (3 << 17) | (1 << 16) | (pump << 14) | (ndiv << 5) | adiv;
Steve Tothb79cb652006-01-09 15:25:07 -0200524
525 return 0;
526}
527
528/*
529 * Tuner data is 21 bits long, must be left-aligned in data.
530 * Tuner cx24109 is written through a dedicated 3wire interface on the demod chip.
531 */
532static int cx24123_pll_writereg(struct dvb_frontend* fe, struct dvb_frontend_parameters *p, u32 data)
533{
534 struct cx24123_state *state = fe->demodulator_priv;
Steven Toth0144f3142006-01-09 15:25:22 -0200535 unsigned long timeout;
Steve Tothb79cb652006-01-09 15:25:07 -0200536
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300537 dprintk("%s: pll writereg called, data=0x%08x\n",__FUNCTION__,data);
538
Steve Tothb79cb652006-01-09 15:25:07 -0200539 /* align the 21 bytes into to bit23 boundary */
540 data = data << 3;
541
542 /* Reset the demod pll word length to 0x15 bits */
543 cx24123_writereg(state, 0x21, 0x15);
544
Steve Tothb79cb652006-01-09 15:25:07 -0200545 /* write the msb 8 bits, wait for the send to be completed */
Steven Toth0144f3142006-01-09 15:25:22 -0200546 timeout = jiffies + msecs_to_jiffies(40);
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200547 cx24123_writereg(state, 0x22, (data >> 16) & 0xff);
Steven Toth0144f3142006-01-09 15:25:22 -0200548 while ((cx24123_readreg(state, 0x20) & 0x40) == 0) {
549 if (time_after(jiffies, timeout)) {
550 printk("%s: demodulator is not responding, possibly hung, aborting.\n", __FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200551 return -EREMOTEIO;
552 }
Steven Toth0144f3142006-01-09 15:25:22 -0200553 msleep(10);
Steve Tothb79cb652006-01-09 15:25:07 -0200554 }
555
Steve Tothb79cb652006-01-09 15:25:07 -0200556 /* send another 8 bytes, wait for the send to be completed */
Steven Toth0144f3142006-01-09 15:25:22 -0200557 timeout = jiffies + msecs_to_jiffies(40);
Steve Tothb79cb652006-01-09 15:25:07 -0200558 cx24123_writereg(state, 0x22, (data>>8) & 0xff );
Steven Toth0144f3142006-01-09 15:25:22 -0200559 while ((cx24123_readreg(state, 0x20) & 0x40) == 0) {
560 if (time_after(jiffies, timeout)) {
561 printk("%s: demodulator is not responding, possibly hung, aborting.\n", __FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200562 return -EREMOTEIO;
563 }
Steven Toth0144f3142006-01-09 15:25:22 -0200564 msleep(10);
Steve Tothb79cb652006-01-09 15:25:07 -0200565 }
566
Steve Tothb79cb652006-01-09 15:25:07 -0200567 /* send the lower 5 bits of this byte, padded with 3 LBB, wait for the send to be completed */
Steven Toth0144f3142006-01-09 15:25:22 -0200568 timeout = jiffies + msecs_to_jiffies(40);
Steve Tothb79cb652006-01-09 15:25:07 -0200569 cx24123_writereg(state, 0x22, (data) & 0xff );
Steven Toth0144f3142006-01-09 15:25:22 -0200570 while ((cx24123_readreg(state, 0x20) & 0x80)) {
571 if (time_after(jiffies, timeout)) {
572 printk("%s: demodulator is not responding, possibly hung, aborting.\n", __FUNCTION__);
Steve Tothb79cb652006-01-09 15:25:07 -0200573 return -EREMOTEIO;
574 }
Steven Toth0144f3142006-01-09 15:25:22 -0200575 msleep(10);
Steve Tothb79cb652006-01-09 15:25:07 -0200576 }
577
578 /* Trigger the demod to configure the tuner */
579 cx24123_writereg(state, 0x20, cx24123_readreg(state, 0x20) | 2);
580 cx24123_writereg(state, 0x20, cx24123_readreg(state, 0x20) & 0xfd);
581
582 return 0;
583}
584
585static int cx24123_pll_tune(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
586{
587 struct cx24123_state *state = fe->demodulator_priv;
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300588 u8 val;
589
590 dprintk("frequency=%i\n", p->frequency);
Steve Tothb79cb652006-01-09 15:25:07 -0200591
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200592 if (cx24123_pll_calculate(fe, p) != 0) {
Steve Tothb79cb652006-01-09 15:25:07 -0200593 printk("%s: cx24123_pll_calcutate failed\n",__FUNCTION__);
594 return -EINVAL;
595 }
596
597 /* Write the new VCO/VGA */
598 cx24123_pll_writereg(fe, p, state->VCAarg);
599 cx24123_pll_writereg(fe, p, state->VGAarg);
600
601 /* Write the new bandselect and pll args */
602 cx24123_pll_writereg(fe, p, state->bandselectarg);
603 cx24123_pll_writereg(fe, p, state->pllarg);
604
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300605 /* set the FILTUNE voltage */
606 val = cx24123_readreg(state, 0x28) & ~0x3;
607 cx24123_writereg(state, 0x27, state->FILTune >> 2);
608 cx24123_writereg(state, 0x28, val | (state->FILTune & 0x3));
609
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300610 dprintk("%s: pll tune VCA=%d, band=%d, pll=%d\n",__FUNCTION__,state->VCAarg,
611 state->bandselectarg,state->pllarg);
612
Steve Tothb79cb652006-01-09 15:25:07 -0200613 return 0;
614}
615
616static int cx24123_initfe(struct dvb_frontend* fe)
617{
618 struct cx24123_state *state = fe->demodulator_priv;
619 int i;
620
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300621 dprintk("%s: init frontend\n",__FUNCTION__);
622
Steve Tothb79cb652006-01-09 15:25:07 -0200623 /* Configure the demod to a good set of defaults */
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200624 for (i = 0; i < sizeof(cx24123_regdata) / sizeof(cx24123_regdata[0]); i++)
Steve Tothb79cb652006-01-09 15:25:07 -0200625 cx24123_writereg(state, cx24123_regdata[i].reg, cx24123_regdata[i].data);
626
627 if (state->config->pll_init)
628 state->config->pll_init(fe);
629
630 /* Configure the LNB for 14V */
Vadim Catana1c956a32006-01-09 15:25:08 -0200631 if (state->config->use_isl6421)
632 cx24123_writelnbreg(state, 0x0, 0x2a);
Steve Tothb79cb652006-01-09 15:25:07 -0200633
634 return 0;
635}
636
637static int cx24123_set_voltage(struct dvb_frontend* fe, fe_sec_voltage_t voltage)
638{
639 struct cx24123_state *state = fe->demodulator_priv;
640 u8 val;
641
Vadim Catana1c956a32006-01-09 15:25:08 -0200642 switch (state->config->use_isl6421) {
Steve Tothb79cb652006-01-09 15:25:07 -0200643
Vadim Catana1c956a32006-01-09 15:25:08 -0200644 case 1:
645
646 val = cx24123_readlnbreg(state, 0x0);
647
648 switch (voltage) {
649 case SEC_VOLTAGE_13:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300650 dprintk("%s: isl6421 voltage = 13V\n",__FUNCTION__);
Vadim Catana1c956a32006-01-09 15:25:08 -0200651 return cx24123_writelnbreg(state, 0x0, val & 0x32); /* V 13v */
652 case SEC_VOLTAGE_18:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300653 dprintk("%s: isl6421 voltage = 18V\n",__FUNCTION__);
Vadim Catana1c956a32006-01-09 15:25:08 -0200654 return cx24123_writelnbreg(state, 0x0, val | 0x04); /* H 18v */
655 case SEC_VOLTAGE_OFF:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300656 dprintk("%s: isl5421 voltage off\n",__FUNCTION__);
Vadim Catana1c956a32006-01-09 15:25:08 -0200657 return cx24123_writelnbreg(state, 0x0, val & 0x30);
658 default:
659 return -EINVAL;
660 };
661
662 case 0:
663
664 val = cx24123_readreg(state, 0x29);
665
666 switch (voltage) {
667 case SEC_VOLTAGE_13:
668 dprintk("%s: setting voltage 13V\n", __FUNCTION__);
669 if (state->config->enable_lnb_voltage)
670 state->config->enable_lnb_voltage(fe, 1);
671 return cx24123_writereg(state, 0x29, val | 0x80);
672 case SEC_VOLTAGE_18:
673 dprintk("%s: setting voltage 18V\n", __FUNCTION__);
674 if (state->config->enable_lnb_voltage)
675 state->config->enable_lnb_voltage(fe, 1);
676 return cx24123_writereg(state, 0x29, val & 0x7f);
677 case SEC_VOLTAGE_OFF:
678 dprintk("%s: setting voltage off\n", __FUNCTION__);
679 if (state->config->enable_lnb_voltage)
680 state->config->enable_lnb_voltage(fe, 0);
681 return 0;
682 default:
683 return -EINVAL;
684 };
685 }
686
687 return 0;
Steve Tothb79cb652006-01-09 15:25:07 -0200688}
689
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300690static int cx24123_send_diseqc_msg(struct dvb_frontend* fe, struct dvb_diseqc_master_cmd *cmd)
Steve Tothb79cb652006-01-09 15:25:07 -0200691{
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300692 struct cx24123_state *state = fe->demodulator_priv;
693 int i, val;
694 unsigned long timeout;
Steve Tothb79cb652006-01-09 15:25:07 -0200695
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300696 dprintk("%s:\n",__FUNCTION__);
697
698 /* check if continuous tone has been stoped */
699 if (state->config->use_isl6421)
700 val = cx24123_readlnbreg(state, 0x00) & 0x10;
701 else
702 val = cx24123_readreg(state, 0x29) & 0x10;
703
704
705 if (val) {
706 printk("%s: ERROR: attempt to send diseqc command before tone is off\n", __FUNCTION__);
707 return -ENOTSUPP;
708 }
709
710 /* select tone mode */
711 cx24123_writereg(state, 0x2a, cx24123_readreg(state, 0x2a) & 0xf8);
712
713 for (i = 0; i < cmd->msg_len; i++)
714 cx24123_writereg(state, 0x2C + i, cmd->msg[i]);
715
716 val = cx24123_readreg(state, 0x29);
717 cx24123_writereg(state, 0x29, ((val & 0x90) | 0x40) | ((cmd->msg_len-3) & 3));
718
719 timeout = jiffies + msecs_to_jiffies(100);
720 while (!time_after(jiffies, timeout) && !(cx24123_readreg(state, 0x29) & 0x40))
721 ; // wait for LNB ready
722
723 return 0;
724}
725
726static int cx24123_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t burst)
727{
728 struct cx24123_state *state = fe->demodulator_priv;
729 int val;
730 unsigned long timeout;
731
732 dprintk("%s:\n", __FUNCTION__);
733
734 /* check if continuous tone has been stoped */
735 if (state->config->use_isl6421)
736 val = cx24123_readlnbreg(state, 0x00) & 0x10;
737 else
738 val = cx24123_readreg(state, 0x29) & 0x10;
739
740
741 if (val) {
742 printk("%s: ERROR: attempt to send diseqc command before tone is off\n", __FUNCTION__);
743 return -ENOTSUPP;
744 }
745
746 /* select tone mode */
747 val = cx24123_readreg(state, 0x2a) & 0xf8;
748 cx24123_writereg(state, 0x2a, val | 0x04);
749
750 val = cx24123_readreg(state, 0x29);
751
752 if (burst == SEC_MINI_A)
753 cx24123_writereg(state, 0x29, ((val & 0x90) | 0x40 | 0x00));
754 else if (burst == SEC_MINI_B)
755 cx24123_writereg(state, 0x29, ((val & 0x90) | 0x40 | 0x08));
756 else
757 return -EINVAL;
758
759
760 timeout = jiffies + msecs_to_jiffies(100);
761 while (!time_after(jiffies, timeout) && !(cx24123_readreg(state, 0x29) & 0x40))
762 ; // wait for LNB ready
763
764 return 0;
Steve Tothb79cb652006-01-09 15:25:07 -0200765}
766
767static int cx24123_read_status(struct dvb_frontend* fe, fe_status_t* status)
768{
769 struct cx24123_state *state = fe->demodulator_priv;
770
771 int sync = cx24123_readreg(state, 0x14);
772 int lock = cx24123_readreg(state, 0x20);
773
774 *status = 0;
775 if (lock & 0x01)
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300776 *status |= FE_HAS_SIGNAL;
777 if (sync & 0x02)
778 *status |= FE_HAS_CARRIER;
Steve Tothb79cb652006-01-09 15:25:07 -0200779 if (sync & 0x04)
780 *status |= FE_HAS_VITERBI;
781 if (sync & 0x08)
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300782 *status |= FE_HAS_SYNC;
Steve Tothb79cb652006-01-09 15:25:07 -0200783 if (sync & 0x80)
Vadim Catanaa74b51f2006-04-13 10:19:52 -0300784 *status |= FE_HAS_LOCK;
Steve Tothb79cb652006-01-09 15:25:07 -0200785
786 return 0;
787}
788
789/*
790 * Configured to return the measurement of errors in blocks, because no UCBLOCKS value
791 * is available, so this value doubles up to satisfy both measurements
792 */
793static int cx24123_read_ber(struct dvb_frontend* fe, u32* ber)
794{
795 struct cx24123_state *state = fe->demodulator_priv;
796
797 state->lastber =
798 ((cx24123_readreg(state, 0x1c) & 0x3f) << 16) |
799 (cx24123_readreg(state, 0x1d) << 8 |
800 cx24123_readreg(state, 0x1e));
801
802 /* Do the signal quality processing here, it's derived from the BER. */
803 /* Scale the BER from a 24bit to a SNR 16 bit where higher = better */
804 if (state->lastber < 5000)
805 state->snr = 655*100;
806 else if ( (state->lastber >= 5000) && (state->lastber < 55000) )
807 state->snr = 655*90;
808 else if ( (state->lastber >= 55000) && (state->lastber < 150000) )
809 state->snr = 655*80;
810 else if ( (state->lastber >= 150000) && (state->lastber < 250000) )
811 state->snr = 655*70;
812 else if ( (state->lastber >= 250000) && (state->lastber < 450000) )
813 state->snr = 655*65;
814 else
815 state->snr = 0;
816
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300817 dprintk("%s: BER = %d, S/N index = %d\n",__FUNCTION__,state->lastber, state->snr);
818
Steve Tothb79cb652006-01-09 15:25:07 -0200819 *ber = state->lastber;
820
821 return 0;
822}
823
824static int cx24123_read_signal_strength(struct dvb_frontend* fe, u16* signal_strength)
825{
826 struct cx24123_state *state = fe->demodulator_priv;
827 *signal_strength = cx24123_readreg(state, 0x3b) << 8; /* larger = better */
828
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300829 dprintk("%s: Signal strength = %d\n",__FUNCTION__,*signal_strength);
830
Steve Tothb79cb652006-01-09 15:25:07 -0200831 return 0;
832}
833
834static int cx24123_read_snr(struct dvb_frontend* fe, u16* snr)
835{
836 struct cx24123_state *state = fe->demodulator_priv;
837 *snr = state->snr;
838
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300839 dprintk("%s: read S/N index = %d\n",__FUNCTION__,*snr);
840
Steve Tothb79cb652006-01-09 15:25:07 -0200841 return 0;
842}
843
844static int cx24123_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
845{
846 struct cx24123_state *state = fe->demodulator_priv;
847 *ucblocks = state->lastber;
848
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300849 dprintk("%s: ucblocks (ber) = %d\n",__FUNCTION__,*ucblocks);
850
Steve Tothb79cb652006-01-09 15:25:07 -0200851 return 0;
852}
853
854static int cx24123_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
855{
856 struct cx24123_state *state = fe->demodulator_priv;
857
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300858 dprintk("%s: set_frontend\n",__FUNCTION__);
859
Steve Tothb79cb652006-01-09 15:25:07 -0200860 if (state->config->set_ts_params)
861 state->config->set_ts_params(fe, 0);
862
863 state->currentfreq=p->frequency;
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200864 state->currentsymbolrate = p->u.qpsk.symbol_rate;
Steve Tothb79cb652006-01-09 15:25:07 -0200865
866 cx24123_set_inversion(state, p->inversion);
867 cx24123_set_fec(state, p->u.qpsk.fec_inner);
868 cx24123_set_symbolrate(state, p->u.qpsk.symbol_rate);
869 cx24123_pll_tune(fe, p);
870
871 /* Enable automatic aquisition and reset cycle */
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200872 cx24123_writereg(state, 0x03, (cx24123_readreg(state, 0x03) | 0x07));
Steve Tothb79cb652006-01-09 15:25:07 -0200873 cx24123_writereg(state, 0x00, 0x10);
874 cx24123_writereg(state, 0x00, 0);
875
876 return 0;
877}
878
879static int cx24123_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
880{
881 struct cx24123_state *state = fe->demodulator_priv;
882
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300883 dprintk("%s: get_frontend\n",__FUNCTION__);
884
Steve Tothb79cb652006-01-09 15:25:07 -0200885 if (cx24123_get_inversion(state, &p->inversion) != 0) {
886 printk("%s: Failed to get inversion status\n",__FUNCTION__);
887 return -EREMOTEIO;
888 }
889 if (cx24123_get_fec(state, &p->u.qpsk.fec_inner) != 0) {
890 printk("%s: Failed to get fec status\n",__FUNCTION__);
891 return -EREMOTEIO;
892 }
893 p->frequency = state->currentfreq;
894 p->u.qpsk.symbol_rate = state->currentsymbolrate;
895
896 return 0;
897}
898
899static int cx24123_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone)
900{
901 struct cx24123_state *state = fe->demodulator_priv;
902 u8 val;
903
Vadim Catana1c956a32006-01-09 15:25:08 -0200904 switch (state->config->use_isl6421) {
905 case 1:
Steve Tothb79cb652006-01-09 15:25:07 -0200906
Vadim Catana1c956a32006-01-09 15:25:08 -0200907 val = cx24123_readlnbreg(state, 0x0);
908
909 switch (tone) {
910 case SEC_TONE_ON:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300911 dprintk("%s: isl6421 sec tone on\n",__FUNCTION__);
Vadim Catana1c956a32006-01-09 15:25:08 -0200912 return cx24123_writelnbreg(state, 0x0, val | 0x10);
913 case SEC_TONE_OFF:
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -0300914 dprintk("%s: isl6421 sec tone off\n",__FUNCTION__);
Vadim Catana1c956a32006-01-09 15:25:08 -0200915 return cx24123_writelnbreg(state, 0x0, val & 0x2f);
916 default:
917 printk("%s: CASE reached default with tone=%d\n", __FUNCTION__, tone);
918 return -EINVAL;
919 }
920
921 case 0:
922
923 val = cx24123_readreg(state, 0x29);
924
925 switch (tone) {
926 case SEC_TONE_ON:
927 dprintk("%s: setting tone on\n", __FUNCTION__);
928 return cx24123_writereg(state, 0x29, val | 0x10);
929 case SEC_TONE_OFF:
930 dprintk("%s: setting tone off\n",__FUNCTION__);
931 return cx24123_writereg(state, 0x29, val & 0xef);
932 default:
933 printk("%s: CASE reached default with tone=%d\n", __FUNCTION__, tone);
934 return -EINVAL;
935 }
Steve Tothb79cb652006-01-09 15:25:07 -0200936 }
Vadim Catana1c956a32006-01-09 15:25:08 -0200937
938 return 0;
Steve Tothb79cb652006-01-09 15:25:07 -0200939}
940
941static void cx24123_release(struct dvb_frontend* fe)
942{
943 struct cx24123_state* state = fe->demodulator_priv;
944 dprintk("%s\n",__FUNCTION__);
945 kfree(state);
946}
947
948static struct dvb_frontend_ops cx24123_ops;
949
Johannes Stezenbache3b152b2006-01-09 15:25:08 -0200950struct dvb_frontend* cx24123_attach(const struct cx24123_config* config,
951 struct i2c_adapter* i2c)
Steve Tothb79cb652006-01-09 15:25:07 -0200952{
953 struct cx24123_state* state = NULL;
954 int ret;
955
956 dprintk("%s\n",__FUNCTION__);
957
958 /* allocate memory for the internal state */
959 state = kmalloc(sizeof(struct cx24123_state), GFP_KERNEL);
960 if (state == NULL) {
961 printk("Unable to kmalloc\n");
962 goto error;
963 }
964
965 /* setup the state */
966 state->config = config;
967 state->i2c = i2c;
968 memcpy(&state->ops, &cx24123_ops, sizeof(struct dvb_frontend_ops));
969 state->lastber = 0;
970 state->snr = 0;
971 state->lnbreg = 0;
972 state->VCAarg = 0;
973 state->VGAarg = 0;
974 state->bandselectarg = 0;
975 state->pllarg = 0;
976 state->currentfreq = 0;
977 state->currentsymbolrate = 0;
978
979 /* check if the demod is there */
980 ret = cx24123_readreg(state, 0x00);
981 if ((ret != 0xd1) && (ret != 0xe1)) {
982 printk("Version != d1 or e1\n");
983 goto error;
984 }
985
986 /* create dvb_frontend */
987 state->frontend.ops = &state->ops;
988 state->frontend.demodulator_priv = state;
989 return &state->frontend;
990
991error:
992 kfree(state);
993
994 return NULL;
995}
996
997static struct dvb_frontend_ops cx24123_ops = {
998
999 .info = {
1000 .name = "Conexant CX24123/CX24109",
1001 .type = FE_QPSK,
1002 .frequency_min = 950000,
1003 .frequency_max = 2150000,
1004 .frequency_stepsize = 1011, /* kHz for QPSK frontends */
1005 .frequency_tolerance = 29500,
1006 .symbol_rate_min = 1000000,
1007 .symbol_rate_max = 45000000,
1008 .caps = FE_CAN_INVERSION_AUTO |
1009 FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
1010 FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
1011 FE_CAN_QPSK | FE_CAN_RECOVER
1012 },
1013
1014 .release = cx24123_release,
1015
1016 .init = cx24123_initfe,
1017 .set_frontend = cx24123_set_frontend,
1018 .get_frontend = cx24123_get_frontend,
1019 .read_status = cx24123_read_status,
1020 .read_ber = cx24123_read_ber,
1021 .read_signal_strength = cx24123_read_signal_strength,
1022 .read_snr = cx24123_read_snr,
1023 .read_ucblocks = cx24123_read_ucblocks,
1024 .diseqc_send_master_cmd = cx24123_send_diseqc_msg,
Vadim Catanaa74b51f2006-04-13 10:19:52 -03001025 .diseqc_send_burst = cx24123_diseqc_send_burst,
Steve Tothb79cb652006-01-09 15:25:07 -02001026 .set_tone = cx24123_set_tone,
1027 .set_voltage = cx24123_set_voltage,
1028};
1029
1030module_param(debug, int, 0644);
Mauro Carvalho Chehabcaf970e2006-04-13 11:29:13 -03001031MODULE_PARM_DESC(debug, "Activates frontend debugging (default:0)");
Steve Tothb79cb652006-01-09 15:25:07 -02001032
1033MODULE_DESCRIPTION("DVB Frontend module for Conexant cx24123/cx24109 hardware");
1034MODULE_AUTHOR("Steven Toth");
1035MODULE_LICENSE("GPL");
1036
1037EXPORT_SYMBOL(cx24123_attach);