blob: 13f9193d4f4a9092ffc3b2b99197da02a171541a [file] [log] [blame]
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001/*
2 Montage Technology DS3000/TS2020 - DVBS/S2 Demodulator/Tuner driver
3 Copyright (C) 2009 Konstantin Dimitrov <kosio.dimitrov@gmail.com>
4
5 Copyright (C) 2009 TurboSight.com
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
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/slab.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/moduleparam.h>
26#include <linux/init.h>
27#include <linux/firmware.h>
28
29#include "dvb_frontend.h"
30#include "ds3000.h"
31
32static int debug;
33
34#define dprintk(args...) \
35 do { \
36 if (debug) \
37 printk(args); \
38 } while (0)
39
40/* as of March 2009 current DS3000 firmware version is 1.78 */
41/* DS3000 FW v1.78 MD5: a32d17910c4f370073f9346e71d34b80 */
42#define DS3000_DEFAULT_FIRMWARE "dvb-fe-ds3000.fw"
43
44#define DS3000_SAMPLE_RATE 96000 /* in kHz */
45#define DS3000_XTAL_FREQ 27000 /* in kHz */
46
47/* Register values to initialise the demod in DVB-S mode */
48static u8 ds3000_dvbs_init_tab[] = {
49 0x23, 0x05,
50 0x08, 0x03,
51 0x0c, 0x00,
52 0x21, 0x54,
53 0x25, 0x82,
54 0x27, 0x31,
55 0x30, 0x08,
56 0x31, 0x40,
57 0x32, 0x32,
58 0x33, 0x35,
59 0x35, 0xff,
60 0x3a, 0x00,
61 0x37, 0x10,
62 0x38, 0x10,
63 0x39, 0x02,
64 0x42, 0x60,
65 0x4a, 0x40,
66 0x4b, 0x04,
67 0x4d, 0x91,
68 0x5d, 0xc8,
69 0x50, 0x77,
70 0x51, 0x77,
71 0x52, 0x36,
72 0x53, 0x36,
73 0x56, 0x01,
74 0x63, 0x43,
75 0x64, 0x30,
76 0x65, 0x40,
77 0x68, 0x26,
78 0x69, 0x4c,
79 0x70, 0x20,
80 0x71, 0x70,
81 0x72, 0x04,
82 0x73, 0x00,
83 0x70, 0x40,
84 0x71, 0x70,
85 0x72, 0x04,
86 0x73, 0x00,
87 0x70, 0x60,
88 0x71, 0x70,
89 0x72, 0x04,
90 0x73, 0x00,
91 0x70, 0x80,
92 0x71, 0x70,
93 0x72, 0x04,
94 0x73, 0x00,
95 0x70, 0xa0,
96 0x71, 0x70,
97 0x72, 0x04,
98 0x73, 0x00,
99 0x70, 0x1f,
100 0x76, 0x00,
101 0x77, 0xd1,
102 0x78, 0x0c,
103 0x79, 0x80,
104 0x7f, 0x04,
105 0x7c, 0x00,
106 0x80, 0x86,
107 0x81, 0xa6,
108 0x85, 0x04,
109 0xcd, 0xf4,
110 0x90, 0x33,
111 0xa0, 0x44,
112 0xc0, 0x18,
113 0xc3, 0x10,
114 0xc4, 0x08,
115 0xc5, 0x80,
116 0xc6, 0x80,
117 0xc7, 0x0a,
118 0xc8, 0x1a,
119 0xc9, 0x80,
120 0xfe, 0x92,
121 0xe0, 0xf8,
122 0xe6, 0x8b,
123 0xd0, 0x40,
124 0xf8, 0x20,
125 0xfa, 0x0f,
126 0xfd, 0x20,
127 0xad, 0x20,
128 0xae, 0x07,
129 0xb8, 0x00,
130};
131
132/* Register values to initialise the demod in DVB-S2 mode */
133static u8 ds3000_dvbs2_init_tab[] = {
134 0x23, 0x0f,
135 0x08, 0x07,
136 0x0c, 0x00,
137 0x21, 0x54,
138 0x25, 0x82,
139 0x27, 0x31,
140 0x30, 0x08,
141 0x31, 0x32,
142 0x32, 0x32,
143 0x33, 0x35,
144 0x35, 0xff,
145 0x3a, 0x00,
146 0x37, 0x10,
147 0x38, 0x10,
148 0x39, 0x02,
149 0x42, 0x60,
150 0x4a, 0x80,
151 0x4b, 0x04,
152 0x4d, 0x81,
153 0x5d, 0x88,
154 0x50, 0x36,
155 0x51, 0x36,
156 0x52, 0x36,
157 0x53, 0x36,
158 0x63, 0x60,
159 0x64, 0x10,
160 0x65, 0x10,
161 0x68, 0x04,
162 0x69, 0x29,
163 0x70, 0x20,
164 0x71, 0x70,
165 0x72, 0x04,
166 0x73, 0x00,
167 0x70, 0x40,
168 0x71, 0x70,
169 0x72, 0x04,
170 0x73, 0x00,
171 0x70, 0x60,
172 0x71, 0x70,
173 0x72, 0x04,
174 0x73, 0x00,
175 0x70, 0x80,
176 0x71, 0x70,
177 0x72, 0x04,
178 0x73, 0x00,
179 0x70, 0xa0,
180 0x71, 0x70,
181 0x72, 0x04,
182 0x73, 0x00,
183 0x70, 0x1f,
184 0xa0, 0x44,
185 0xc0, 0x08,
186 0xc1, 0x10,
187 0xc2, 0x08,
188 0xc3, 0x10,
189 0xc4, 0x08,
190 0xc5, 0xf0,
191 0xc6, 0xf0,
192 0xc7, 0x0a,
193 0xc8, 0x1a,
194 0xc9, 0x80,
195 0xca, 0x23,
196 0xcb, 0x24,
197 0xce, 0x74,
198 0x90, 0x03,
199 0x76, 0x80,
200 0x77, 0x42,
201 0x78, 0x0a,
202 0x79, 0x80,
203 0xad, 0x40,
204 0xae, 0x07,
205 0x7f, 0xd4,
206 0x7c, 0x00,
207 0x80, 0xa8,
208 0x81, 0xda,
209 0x7c, 0x01,
210 0x80, 0xda,
211 0x81, 0xec,
212 0x7c, 0x02,
213 0x80, 0xca,
214 0x81, 0xeb,
215 0x7c, 0x03,
216 0x80, 0xba,
217 0x81, 0xdb,
218 0x85, 0x08,
219 0x86, 0x00,
220 0x87, 0x02,
221 0x89, 0x80,
222 0x8b, 0x44,
223 0x8c, 0xaa,
224 0x8a, 0x10,
225 0xba, 0x00,
226 0xf5, 0x04,
227 0xfe, 0x44,
228 0xd2, 0x32,
229 0xb8, 0x00,
230};
231
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300232struct ds3000_state {
233 struct i2c_adapter *i2c;
234 const struct ds3000_config *config;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300235 struct dvb_frontend frontend;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300236 u8 skip_fw_load;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300237 /* previous uncorrected block counter for DVB-S2 */
238 u16 prevUCBS2;
239};
240
241static int ds3000_writereg(struct ds3000_state *state, int reg, int data)
242{
243 u8 buf[] = { reg, data };
244 struct i2c_msg msg = { .addr = state->config->demod_address,
245 .flags = 0, .buf = buf, .len = 2 };
246 int err;
247
248 dprintk("%s: write reg 0x%02x, value 0x%02x\n", __func__, reg, data);
249
250 err = i2c_transfer(state->i2c, &msg, 1);
251 if (err != 1) {
252 printk(KERN_ERR "%s: writereg error(err == %i, reg == 0x%02x,"
253 " value == 0x%02x)\n", __func__, err, reg, data);
254 return -EREMOTEIO;
255 }
256
257 return 0;
258}
259
260static int ds3000_tuner_writereg(struct ds3000_state *state, int reg, int data)
261{
262 u8 buf[] = { reg, data };
263 struct i2c_msg msg = { .addr = 0x60,
264 .flags = 0, .buf = buf, .len = 2 };
265 int err;
266
267 dprintk("%s: write reg 0x%02x, value 0x%02x\n", __func__, reg, data);
268
269 ds3000_writereg(state, 0x03, 0x11);
270 err = i2c_transfer(state->i2c, &msg, 1);
271 if (err != 1) {
272 printk("%s: writereg error(err == %i, reg == 0x%02x,"
273 " value == 0x%02x)\n", __func__, err, reg, data);
274 return -EREMOTEIO;
275 }
276
277 return 0;
278}
279
280/* I2C write for 8k firmware load */
281static int ds3000_writeFW(struct ds3000_state *state, int reg,
282 const u8 *data, u16 len)
283{
284 int i, ret = -EREMOTEIO;
285 struct i2c_msg msg;
286 u8 *buf;
287
Igor M. Liplianincaa687c2011-02-01 19:40:25 -0300288 buf = kmalloc(33, GFP_KERNEL);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300289 if (buf == NULL) {
290 printk(KERN_ERR "Unable to kmalloc\n");
291 ret = -ENOMEM;
292 goto error;
293 }
294
295 *(buf) = reg;
296
297 msg.addr = state->config->demod_address;
298 msg.flags = 0;
299 msg.buf = buf;
Igor M. Liplianincaa687c2011-02-01 19:40:25 -0300300 msg.len = 33;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300301
Igor M. Liplianincaa687c2011-02-01 19:40:25 -0300302 for (i = 0; i < len; i += 32) {
303 memcpy(buf + 1, data + i, 32);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300304
305 dprintk("%s: write reg 0x%02x, len = %d\n", __func__, reg, len);
306
307 ret = i2c_transfer(state->i2c, &msg, 1);
308 if (ret != 1) {
309 printk(KERN_ERR "%s: write error(err == %i, "
310 "reg == 0x%02x\n", __func__, ret, reg);
311 ret = -EREMOTEIO;
312 }
313 }
314
315error:
316 kfree(buf);
317
318 return ret;
319}
320
321static int ds3000_readreg(struct ds3000_state *state, u8 reg)
322{
323 int ret;
324 u8 b0[] = { reg };
325 u8 b1[] = { 0 };
326 struct i2c_msg msg[] = {
327 {
328 .addr = state->config->demod_address,
329 .flags = 0,
330 .buf = b0,
331 .len = 1
332 }, {
333 .addr = state->config->demod_address,
334 .flags = I2C_M_RD,
335 .buf = b1,
336 .len = 1
337 }
338 };
339
340 ret = i2c_transfer(state->i2c, msg, 2);
341
342 if (ret != 2) {
343 printk(KERN_ERR "%s: reg=0x%x(error=%d)\n", __func__, reg, ret);
344 return ret;
345 }
346
347 dprintk("%s: read reg 0x%02x, value 0x%02x\n", __func__, reg, b1[0]);
348
349 return b1[0];
350}
351
352static int ds3000_tuner_readreg(struct ds3000_state *state, u8 reg)
353{
354 int ret;
355 u8 b0[] = { reg };
356 u8 b1[] = { 0 };
357 struct i2c_msg msg[] = {
358 {
359 .addr = 0x60,
360 .flags = 0,
361 .buf = b0,
362 .len = 1
363 }, {
364 .addr = 0x60,
365 .flags = I2C_M_RD,
366 .buf = b1,
367 .len = 1
368 }
369 };
370
371 ds3000_writereg(state, 0x03, 0x12);
372 ret = i2c_transfer(state->i2c, msg, 2);
373
374 if (ret != 2) {
375 printk(KERN_ERR "%s: reg=0x%x(error=%d)\n", __func__, reg, ret);
376 return ret;
377 }
378
379 dprintk("%s: read reg 0x%02x, value 0x%02x\n", __func__, reg, b1[0]);
380
381 return b1[0];
382}
383
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300384static int ds3000_load_firmware(struct dvb_frontend *fe,
385 const struct firmware *fw);
386
387static int ds3000_firmware_ondemand(struct dvb_frontend *fe)
388{
389 struct ds3000_state *state = fe->demodulator_priv;
390 const struct firmware *fw;
391 int ret = 0;
392
393 dprintk("%s()\n", __func__);
394
395 if (ds3000_readreg(state, 0xb2) <= 0)
396 return ret;
397
398 if (state->skip_fw_load)
399 return 0;
400 /* Load firmware */
401 /* request the firmware, this will block until someone uploads it */
402 printk(KERN_INFO "%s: Waiting for firmware upload (%s)...\n", __func__,
403 DS3000_DEFAULT_FIRMWARE);
404 ret = request_firmware(&fw, DS3000_DEFAULT_FIRMWARE,
405 state->i2c->dev.parent);
406 printk(KERN_INFO "%s: Waiting for firmware upload(2)...\n", __func__);
407 if (ret) {
408 printk(KERN_ERR "%s: No firmware uploaded (timeout or file not "
409 "found?)\n", __func__);
410 return ret;
411 }
412
413 /* Make sure we don't recurse back through here during loading */
414 state->skip_fw_load = 1;
415
416 ret = ds3000_load_firmware(fe, fw);
417 if (ret)
418 printk("%s: Writing firmware to device failed\n", __func__);
419
420 release_firmware(fw);
421
422 dprintk("%s: Firmware upload %s\n", __func__,
423 ret == 0 ? "complete" : "failed");
424
425 /* Ensure firmware is always loaded if required */
426 state->skip_fw_load = 0;
427
428 return ret;
429}
430
431static int ds3000_load_firmware(struct dvb_frontend *fe,
432 const struct firmware *fw)
433{
434 struct ds3000_state *state = fe->demodulator_priv;
435
436 dprintk("%s\n", __func__);
437 dprintk("Firmware is %zu bytes (%02x %02x .. %02x %02x)\n",
438 fw->size,
439 fw->data[0],
440 fw->data[1],
441 fw->data[fw->size - 2],
442 fw->data[fw->size - 1]);
443
444 /* Begin the firmware load process */
445 ds3000_writereg(state, 0xb2, 0x01);
446 /* write the entire firmware */
447 ds3000_writeFW(state, 0xb0, fw->data, fw->size);
448 ds3000_writereg(state, 0xb2, 0x00);
449
450 return 0;
451}
452
Igor M. Liplianind2ffc442011-02-25 18:41:22 -0300453static int ds3000_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
454{
455 struct ds3000_state *state = fe->demodulator_priv;
456 u8 data;
457
458 dprintk("%s(%d)\n", __func__, voltage);
459
460 data = ds3000_readreg(state, 0xa2);
461 data |= 0x03; /* bit0 V/H, bit1 off/on */
462
463 switch (voltage) {
464 case SEC_VOLTAGE_18:
465 data &= ~0x03;
466 break;
467 case SEC_VOLTAGE_13:
468 data &= ~0x03;
469 data |= 0x01;
470 break;
471 case SEC_VOLTAGE_OFF:
472 break;
473 }
474
475 ds3000_writereg(state, 0xa2, data);
476
477 return 0;
478}
479
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300480static int ds3000_read_status(struct dvb_frontend *fe, fe_status_t* status)
481{
482 struct ds3000_state *state = fe->demodulator_priv;
483 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
484 int lock;
485
486 *status = 0;
487
488 switch (c->delivery_system) {
489 case SYS_DVBS:
490 lock = ds3000_readreg(state, 0xd1);
491 if ((lock & 0x07) == 0x07)
492 *status = FE_HAS_SIGNAL | FE_HAS_CARRIER |
493 FE_HAS_VITERBI | FE_HAS_SYNC |
494 FE_HAS_LOCK;
495
496 break;
497 case SYS_DVBS2:
498 lock = ds3000_readreg(state, 0x0d);
499 if ((lock & 0x8f) == 0x8f)
500 *status = FE_HAS_SIGNAL | FE_HAS_CARRIER |
501 FE_HAS_VITERBI | FE_HAS_SYNC |
502 FE_HAS_LOCK;
503
504 break;
505 default:
506 return 1;
507 }
508
509 dprintk("%s: status = 0x%02x\n", __func__, lock);
510
511 return 0;
512}
513
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300514/* read DS3000 BER value */
515static int ds3000_read_ber(struct dvb_frontend *fe, u32* ber)
516{
517 struct ds3000_state *state = fe->demodulator_priv;
518 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
519 u8 data;
520 u32 ber_reading, lpdc_frames;
521
522 dprintk("%s()\n", __func__);
523
524 switch (c->delivery_system) {
525 case SYS_DVBS:
526 /* set the number of bytes checked during
527 BER estimation */
528 ds3000_writereg(state, 0xf9, 0x04);
529 /* read BER estimation status */
530 data = ds3000_readreg(state, 0xf8);
531 /* check if BER estimation is ready */
532 if ((data & 0x10) == 0) {
533 /* this is the number of error bits,
534 to calculate the bit error rate
535 divide to 8388608 */
536 *ber = (ds3000_readreg(state, 0xf7) << 8) |
537 ds3000_readreg(state, 0xf6);
538 /* start counting error bits */
539 /* need to be set twice
540 otherwise it fails sometimes */
541 data |= 0x10;
542 ds3000_writereg(state, 0xf8, data);
543 ds3000_writereg(state, 0xf8, data);
544 } else
545 /* used to indicate that BER estimation
546 is not ready, i.e. BER is unknown */
547 *ber = 0xffffffff;
548 break;
549 case SYS_DVBS2:
550 /* read the number of LPDC decoded frames */
551 lpdc_frames = (ds3000_readreg(state, 0xd7) << 16) |
552 (ds3000_readreg(state, 0xd6) << 8) |
553 ds3000_readreg(state, 0xd5);
554 /* read the number of packets with bad CRC */
555 ber_reading = (ds3000_readreg(state, 0xf8) << 8) |
556 ds3000_readreg(state, 0xf7);
557 if (lpdc_frames > 750) {
558 /* clear LPDC frame counters */
559 ds3000_writereg(state, 0xd1, 0x01);
560 /* clear bad packets counter */
561 ds3000_writereg(state, 0xf9, 0x01);
562 /* enable bad packets counter */
563 ds3000_writereg(state, 0xf9, 0x00);
564 /* enable LPDC frame counters */
565 ds3000_writereg(state, 0xd1, 0x00);
566 *ber = ber_reading;
567 } else
568 /* used to indicate that BER estimation is not ready,
569 i.e. BER is unknown */
570 *ber = 0xffffffff;
571 break;
572 default:
573 return 1;
574 }
575
576 return 0;
577}
578
579/* read TS2020 signal strength */
580static int ds3000_read_signal_strength(struct dvb_frontend *fe,
581 u16 *signal_strength)
582{
583 struct ds3000_state *state = fe->demodulator_priv;
584 u16 sig_reading, sig_strength;
585 u8 rfgain, bbgain;
586
587 dprintk("%s()\n", __func__);
588
589 rfgain = ds3000_tuner_readreg(state, 0x3d) & 0x1f;
590 bbgain = ds3000_tuner_readreg(state, 0x21) & 0x1f;
591
592 if (rfgain > 15)
593 rfgain = 15;
594 if (bbgain > 13)
595 bbgain = 13;
596
597 sig_reading = rfgain * 2 + bbgain * 3;
598
599 sig_strength = 40 + (64 - sig_reading) * 50 / 64 ;
600
601 /* cook the value to be suitable for szap-s2 human readable output */
602 *signal_strength = sig_strength * 1000;
603
604 dprintk("%s: raw / cooked = 0x%04x / 0x%04x\n", __func__,
605 sig_reading, *signal_strength);
606
607 return 0;
608}
609
610/* calculate DS3000 snr value in dB */
611static int ds3000_read_snr(struct dvb_frontend *fe, u16 *snr)
612{
613 struct ds3000_state *state = fe->demodulator_priv;
614 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
615 u8 snr_reading, snr_value;
616 u32 dvbs2_signal_reading, dvbs2_noise_reading, tmp;
617 static const u16 dvbs_snr_tab[] = { /* 20 x Table (rounded up) */
618 0x0000, 0x1b13, 0x2aea, 0x3627, 0x3ede, 0x45fe, 0x4c03,
619 0x513a, 0x55d4, 0x59f2, 0x5dab, 0x6111, 0x6431, 0x6717,
620 0x69c9, 0x6c4e, 0x6eac, 0x70e8, 0x7304, 0x7505
621 };
622 static const u16 dvbs2_snr_tab[] = { /* 80 x Table (rounded up) */
623 0x0000, 0x0bc2, 0x12a3, 0x1785, 0x1b4e, 0x1e65, 0x2103,
624 0x2347, 0x2546, 0x2710, 0x28ae, 0x2a28, 0x2b83, 0x2cc5,
625 0x2df1, 0x2f09, 0x3010, 0x3109, 0x31f4, 0x32d2, 0x33a6,
626 0x3470, 0x3531, 0x35ea, 0x369b, 0x3746, 0x37ea, 0x3888,
627 0x3920, 0x39b3, 0x3a42, 0x3acc, 0x3b51, 0x3bd3, 0x3c51,
628 0x3ccb, 0x3d42, 0x3db6, 0x3e27, 0x3e95, 0x3f00, 0x3f68,
629 0x3fcf, 0x4033, 0x4094, 0x40f4, 0x4151, 0x41ac, 0x4206,
630 0x425e, 0x42b4, 0x4308, 0x435b, 0x43ac, 0x43fc, 0x444a,
631 0x4497, 0x44e2, 0x452d, 0x4576, 0x45bd, 0x4604, 0x4649,
632 0x468e, 0x46d1, 0x4713, 0x4755, 0x4795, 0x47d4, 0x4813,
633 0x4851, 0x488d, 0x48c9, 0x4904, 0x493f, 0x4978, 0x49b1,
634 0x49e9, 0x4a20, 0x4a57
635 };
636
637 dprintk("%s()\n", __func__);
638
639 switch (c->delivery_system) {
640 case SYS_DVBS:
641 snr_reading = ds3000_readreg(state, 0xff);
642 snr_reading /= 8;
643 if (snr_reading == 0)
644 *snr = 0x0000;
645 else {
646 if (snr_reading > 20)
647 snr_reading = 20;
648 snr_value = dvbs_snr_tab[snr_reading - 1] * 10 / 23026;
649 /* cook the value to be suitable for szap-s2
650 human readable output */
651 *snr = snr_value * 8 * 655;
652 }
653 dprintk("%s: raw / cooked = 0x%02x / 0x%04x\n", __func__,
654 snr_reading, *snr);
655 break;
656 case SYS_DVBS2:
657 dvbs2_noise_reading = (ds3000_readreg(state, 0x8c) & 0x3f) +
658 (ds3000_readreg(state, 0x8d) << 4);
659 dvbs2_signal_reading = ds3000_readreg(state, 0x8e);
660 tmp = dvbs2_signal_reading * dvbs2_signal_reading >> 1;
Nicolas Noirbent450df222010-03-22 14:54:43 -0300661 if (tmp == 0) {
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300662 *snr = 0x0000;
663 return 0;
664 }
665 if (dvbs2_noise_reading == 0) {
666 snr_value = 0x0013;
667 /* cook the value to be suitable for szap-s2
668 human readable output */
669 *snr = 0xffff;
670 return 0;
671 }
672 if (tmp > dvbs2_noise_reading) {
673 snr_reading = tmp / dvbs2_noise_reading;
674 if (snr_reading > 80)
675 snr_reading = 80;
676 snr_value = dvbs2_snr_tab[snr_reading - 1] / 1000;
677 /* cook the value to be suitable for szap-s2
678 human readable output */
679 *snr = snr_value * 5 * 655;
680 } else {
681 snr_reading = dvbs2_noise_reading / tmp;
682 if (snr_reading > 80)
683 snr_reading = 80;
684 *snr = -(dvbs2_snr_tab[snr_reading] / 1000);
685 }
686 dprintk("%s: raw / cooked = 0x%02x / 0x%04x\n", __func__,
687 snr_reading, *snr);
688 break;
689 default:
690 return 1;
691 }
692
693 return 0;
694}
695
696/* read DS3000 uncorrected blocks */
697static int ds3000_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
698{
699 struct ds3000_state *state = fe->demodulator_priv;
700 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
701 u8 data;
702 u16 _ucblocks;
703
704 dprintk("%s()\n", __func__);
705
706 switch (c->delivery_system) {
707 case SYS_DVBS:
708 *ucblocks = (ds3000_readreg(state, 0xf5) << 8) |
709 ds3000_readreg(state, 0xf4);
710 data = ds3000_readreg(state, 0xf8);
711 /* clear packet counters */
712 data &= ~0x20;
713 ds3000_writereg(state, 0xf8, data);
714 /* enable packet counters */
715 data |= 0x20;
716 ds3000_writereg(state, 0xf8, data);
717 break;
718 case SYS_DVBS2:
719 _ucblocks = (ds3000_readreg(state, 0xe2) << 8) |
720 ds3000_readreg(state, 0xe1);
721 if (_ucblocks > state->prevUCBS2)
722 *ucblocks = _ucblocks - state->prevUCBS2;
723 else
724 *ucblocks = state->prevUCBS2 - _ucblocks;
725 state->prevUCBS2 = _ucblocks;
726 break;
727 default:
728 return 1;
729 }
730
731 return 0;
732}
733
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300734static int ds3000_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
735{
736 struct ds3000_state *state = fe->demodulator_priv;
737 u8 data;
738
739 dprintk("%s(%d)\n", __func__, tone);
740 if ((tone != SEC_TONE_ON) && (tone != SEC_TONE_OFF)) {
741 printk(KERN_ERR "%s: Invalid, tone=%d\n", __func__, tone);
742 return -EINVAL;
743 }
744
745 data = ds3000_readreg(state, 0xa2);
746 data &= ~0xc0;
747 ds3000_writereg(state, 0xa2, data);
748
749 switch (tone) {
750 case SEC_TONE_ON:
751 dprintk("%s: setting tone on\n", __func__);
752 data = ds3000_readreg(state, 0xa1);
753 data &= ~0x43;
754 data |= 0x04;
755 ds3000_writereg(state, 0xa1, data);
756 break;
757 case SEC_TONE_OFF:
758 dprintk("%s: setting tone off\n", __func__);
759 data = ds3000_readreg(state, 0xa2);
760 data |= 0x80;
761 ds3000_writereg(state, 0xa2, data);
762 break;
763 }
764
765 return 0;
766}
767
768static int ds3000_send_diseqc_msg(struct dvb_frontend *fe,
769 struct dvb_diseqc_master_cmd *d)
770{
771 struct ds3000_state *state = fe->demodulator_priv;
772 int i;
773 u8 data;
774
775 /* Dump DiSEqC message */
776 dprintk("%s(", __func__);
777 for (i = 0 ; i < d->msg_len;) {
778 dprintk("0x%02x", d->msg[i]);
779 if (++i < d->msg_len)
780 dprintk(", ");
781 }
782
783 /* enable DiSEqC message send pin */
784 data = ds3000_readreg(state, 0xa2);
785 data &= ~0xc0;
786 ds3000_writereg(state, 0xa2, data);
787
788 /* DiSEqC message */
789 for (i = 0; i < d->msg_len; i++)
790 ds3000_writereg(state, 0xa3 + i, d->msg[i]);
791
792 data = ds3000_readreg(state, 0xa1);
793 /* clear DiSEqC message length and status,
794 enable DiSEqC message send */
795 data &= ~0xf8;
796 /* set DiSEqC mode, modulation active during 33 pulses,
797 set DiSEqC message length */
798 data |= ((d->msg_len - 1) << 3) | 0x07;
799 ds3000_writereg(state, 0xa1, data);
800
801 /* wait up to 150ms for DiSEqC transmission to complete */
802 for (i = 0; i < 15; i++) {
803 data = ds3000_readreg(state, 0xa1);
804 if ((data & 0x40) == 0)
805 break;
806 msleep(10);
807 }
808
809 /* DiSEqC timeout after 150ms */
810 if (i == 15) {
811 data = ds3000_readreg(state, 0xa1);
812 data &= ~0x80;
813 data |= 0x40;
814 ds3000_writereg(state, 0xa1, data);
815
816 data = ds3000_readreg(state, 0xa2);
817 data &= ~0xc0;
818 data |= 0x80;
819 ds3000_writereg(state, 0xa2, data);
820
821 return 1;
822 }
823
824 data = ds3000_readreg(state, 0xa2);
825 data &= ~0xc0;
826 data |= 0x80;
827 ds3000_writereg(state, 0xa2, data);
828
829 return 0;
830}
831
832/* Send DiSEqC burst */
833static int ds3000_diseqc_send_burst(struct dvb_frontend *fe,
834 fe_sec_mini_cmd_t burst)
835{
836 struct ds3000_state *state = fe->demodulator_priv;
837 int i;
838 u8 data;
839
840 dprintk("%s()\n", __func__);
841
842 data = ds3000_readreg(state, 0xa2);
843 data &= ~0xc0;
844 ds3000_writereg(state, 0xa2, data);
845
846 /* DiSEqC burst */
847 if (burst == SEC_MINI_A)
848 /* Unmodulated tone burst */
849 ds3000_writereg(state, 0xa1, 0x02);
850 else if (burst == SEC_MINI_B)
851 /* Modulated tone burst */
852 ds3000_writereg(state, 0xa1, 0x01);
853 else
854 return -EINVAL;
855
856 msleep(13);
857 for (i = 0; i < 5; i++) {
858 data = ds3000_readreg(state, 0xa1);
859 if ((data & 0x40) == 0)
860 break;
861 msleep(1);
862 }
863
864 if (i == 5) {
865 data = ds3000_readreg(state, 0xa1);
866 data &= ~0x80;
867 data |= 0x40;
868 ds3000_writereg(state, 0xa1, data);
869
870 data = ds3000_readreg(state, 0xa2);
871 data &= ~0xc0;
872 data |= 0x80;
873 ds3000_writereg(state, 0xa2, data);
874
875 return 1;
876 }
877
878 data = ds3000_readreg(state, 0xa2);
879 data &= ~0xc0;
880 data |= 0x80;
881 ds3000_writereg(state, 0xa2, data);
882
883 return 0;
884}
885
886static void ds3000_release(struct dvb_frontend *fe)
887{
888 struct ds3000_state *state = fe->demodulator_priv;
889 dprintk("%s\n", __func__);
890 kfree(state);
891}
892
893static struct dvb_frontend_ops ds3000_ops;
894
895struct dvb_frontend *ds3000_attach(const struct ds3000_config *config,
896 struct i2c_adapter *i2c)
897{
898 struct ds3000_state *state = NULL;
899 int ret;
900
901 dprintk("%s\n", __func__);
902
903 /* allocate memory for the internal state */
Julia Lawall2ef17c92010-05-13 16:59:15 -0300904 state = kzalloc(sizeof(struct ds3000_state), GFP_KERNEL);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300905 if (state == NULL) {
906 printk(KERN_ERR "Unable to kmalloc\n");
907 goto error2;
908 }
909
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300910 state->config = config;
911 state->i2c = i2c;
912 state->prevUCBS2 = 0;
913
914 /* check if the demod is present */
915 ret = ds3000_readreg(state, 0x00) & 0xfe;
916 if (ret != 0xe0) {
917 printk(KERN_ERR "Invalid probe, probably not a DS3000\n");
918 goto error3;
919 }
920
921 printk(KERN_INFO "DS3000 chip version: %d.%d attached.\n",
922 ds3000_readreg(state, 0x02),
923 ds3000_readreg(state, 0x01));
924
925 memcpy(&state->frontend.ops, &ds3000_ops,
926 sizeof(struct dvb_frontend_ops));
927 state->frontend.demodulator_priv = state;
928 return &state->frontend;
929
930error3:
931 kfree(state);
932error2:
933 return NULL;
934}
935EXPORT_SYMBOL(ds3000_attach);
936
937static int ds3000_set_property(struct dvb_frontend *fe,
938 struct dtv_property *tvp)
939{
940 dprintk("%s(..)\n", __func__);
941 return 0;
942}
943
944static int ds3000_get_property(struct dvb_frontend *fe,
945 struct dtv_property *tvp)
946{
947 dprintk("%s(..)\n", __func__);
948 return 0;
949}
950
951static int ds3000_tune(struct dvb_frontend *fe,
952 struct dvb_frontend_parameters *p)
953{
954 struct ds3000_state *state = fe->demodulator_priv;
955 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
956
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300957 int i;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300958 u8 status, mlpf, mlpf_new, mlpf_max, mlpf_min, nlpf;
959 u16 value, ndiv;
960 u32 f3db;
961
962 dprintk("%s() ", __func__);
963
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300964 /* Reset status register */
965 status = 0;
966 /* Tune */
967 /* unknown */
968 ds3000_tuner_writereg(state, 0x07, 0x02);
969 ds3000_tuner_writereg(state, 0x10, 0x00);
970 ds3000_tuner_writereg(state, 0x60, 0x79);
971 ds3000_tuner_writereg(state, 0x08, 0x01);
972 ds3000_tuner_writereg(state, 0x00, 0x01);
973 /* calculate and set freq divider */
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -0300974 if (p->frequency < 1146000) {
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300975 ds3000_tuner_writereg(state, 0x10, 0x11);
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -0300976 ndiv = ((p->frequency * (6 + 8) * 4) +
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300977 (DS3000_XTAL_FREQ / 2)) /
978 DS3000_XTAL_FREQ - 1024;
979 } else {
980 ds3000_tuner_writereg(state, 0x10, 0x01);
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -0300981 ndiv = ((p->frequency * (6 + 8) * 2) +
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300982 (DS3000_XTAL_FREQ / 2)) /
983 DS3000_XTAL_FREQ - 1024;
984 }
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300985
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300986 ds3000_tuner_writereg(state, 0x01, (ndiv & 0x0f00) >> 8);
987 ds3000_tuner_writereg(state, 0x02, ndiv & 0x00ff);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300988
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300989 /* set pll */
990 ds3000_tuner_writereg(state, 0x03, 0x06);
991 ds3000_tuner_writereg(state, 0x51, 0x0f);
992 ds3000_tuner_writereg(state, 0x51, 0x1f);
993 ds3000_tuner_writereg(state, 0x50, 0x10);
994 ds3000_tuner_writereg(state, 0x50, 0x00);
995 msleep(5);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -0300996
Igor M. Liplianin18a73f32011-02-25 18:41:23 -0300997 /* unknown */
998 ds3000_tuner_writereg(state, 0x51, 0x17);
999 ds3000_tuner_writereg(state, 0x51, 0x1f);
1000 ds3000_tuner_writereg(state, 0x50, 0x08);
1001 ds3000_tuner_writereg(state, 0x50, 0x00);
1002 msleep(5);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001003
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001004 value = ds3000_tuner_readreg(state, 0x3d);
1005 value &= 0x0f;
1006 if ((value > 4) && (value < 15)) {
1007 value -= 3;
1008 if (value < 4)
1009 value = 4;
1010 value = ((value << 3) | 0x01) & 0x79;
1011 }
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001012
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001013 ds3000_tuner_writereg(state, 0x60, value);
1014 ds3000_tuner_writereg(state, 0x51, 0x17);
1015 ds3000_tuner_writereg(state, 0x51, 0x1f);
1016 ds3000_tuner_writereg(state, 0x50, 0x08);
1017 ds3000_tuner_writereg(state, 0x50, 0x00);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001018
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001019 /* set low-pass filter period */
1020 ds3000_tuner_writereg(state, 0x04, 0x2e);
1021 ds3000_tuner_writereg(state, 0x51, 0x1b);
1022 ds3000_tuner_writereg(state, 0x51, 0x1f);
1023 ds3000_tuner_writereg(state, 0x50, 0x04);
1024 ds3000_tuner_writereg(state, 0x50, 0x00);
1025 msleep(5);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001026
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -03001027 f3db = ((c->symbol_rate / 1000) << 2) / 5 + 2000;
1028 if ((c->symbol_rate / 1000) < 5000)
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001029 f3db += 3000;
1030 if (f3db < 7000)
1031 f3db = 7000;
1032 if (f3db > 40000)
1033 f3db = 40000;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001034
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001035 /* set low-pass filter baseband */
1036 value = ds3000_tuner_readreg(state, 0x26);
1037 mlpf = 0x2e * 207 / ((value << 1) + 151);
1038 mlpf_max = mlpf * 135 / 100;
1039 mlpf_min = mlpf * 78 / 100;
1040 if (mlpf_max > 63)
1041 mlpf_max = 63;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001042
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001043 /* rounded to the closest integer */
1044 nlpf = ((mlpf * f3db * 1000) + (2766 * DS3000_XTAL_FREQ / 2))
1045 / (2766 * DS3000_XTAL_FREQ);
1046 if (nlpf > 23)
1047 nlpf = 23;
1048 if (nlpf < 1)
1049 nlpf = 1;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001050
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001051 /* rounded to the closest integer */
1052 mlpf_new = ((DS3000_XTAL_FREQ * nlpf * 2766) +
1053 (1000 * f3db / 2)) / (1000 * f3db);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001054
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001055 if (mlpf_new < mlpf_min) {
1056 nlpf++;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001057 mlpf_new = ((DS3000_XTAL_FREQ * nlpf * 2766) +
1058 (1000 * f3db / 2)) / (1000 * f3db);
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001059 }
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001060
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001061 if (mlpf_new > mlpf_max)
1062 mlpf_new = mlpf_max;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001063
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001064 ds3000_tuner_writereg(state, 0x04, mlpf_new);
1065 ds3000_tuner_writereg(state, 0x06, nlpf);
1066 ds3000_tuner_writereg(state, 0x51, 0x1b);
1067 ds3000_tuner_writereg(state, 0x51, 0x1f);
1068 ds3000_tuner_writereg(state, 0x50, 0x04);
1069 ds3000_tuner_writereg(state, 0x50, 0x00);
1070 msleep(5);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001071
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001072 /* unknown */
1073 ds3000_tuner_writereg(state, 0x51, 0x1e);
1074 ds3000_tuner_writereg(state, 0x51, 0x1f);
1075 ds3000_tuner_writereg(state, 0x50, 0x01);
1076 ds3000_tuner_writereg(state, 0x50, 0x00);
1077 msleep(60);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001078
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001079 /* ds3000 global reset */
1080 ds3000_writereg(state, 0x07, 0x80);
1081 ds3000_writereg(state, 0x07, 0x00);
1082 /* ds3000 build-in uC reset */
1083 ds3000_writereg(state, 0xb2, 0x01);
1084 /* ds3000 software reset */
1085 ds3000_writereg(state, 0x00, 0x01);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001086
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001087 switch (c->delivery_system) {
1088 case SYS_DVBS:
1089 /* initialise the demod in DVB-S mode */
1090 for (i = 0; i < sizeof(ds3000_dvbs_init_tab); i += 2)
1091 ds3000_writereg(state,
1092 ds3000_dvbs_init_tab[i],
1093 ds3000_dvbs_init_tab[i + 1]);
1094 value = ds3000_readreg(state, 0xfe);
1095 value &= 0xc0;
1096 value |= 0x1b;
1097 ds3000_writereg(state, 0xfe, value);
1098 break;
1099 case SYS_DVBS2:
1100 /* initialise the demod in DVB-S2 mode */
1101 for (i = 0; i < sizeof(ds3000_dvbs2_init_tab); i += 2)
1102 ds3000_writereg(state,
1103 ds3000_dvbs2_init_tab[i],
1104 ds3000_dvbs2_init_tab[i + 1]);
1105 ds3000_writereg(state, 0xfe, 0x98);
1106 break;
1107 default:
1108 return 1;
1109 }
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001110
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001111 /* enable 27MHz clock output */
1112 ds3000_writereg(state, 0x29, 0x80);
1113 /* enable ac coupling */
1114 ds3000_writereg(state, 0x25, 0x8a);
1115
1116 /* enhance symbol rate performance */
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -03001117 if ((c->symbol_rate / 1000) <= 5000) {
1118 value = 29777 / (c->symbol_rate / 1000) + 1;
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001119 if (value % 2 != 0)
1120 value++;
1121 ds3000_writereg(state, 0xc3, 0x0d);
1122 ds3000_writereg(state, 0xc8, value);
1123 ds3000_writereg(state, 0xc4, 0x10);
1124 ds3000_writereg(state, 0xc7, 0x0e);
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -03001125 } else if ((c->symbol_rate / 1000) <= 10000) {
1126 value = 92166 / (c->symbol_rate / 1000) + 1;
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001127 if (value % 2 != 0)
1128 value++;
1129 ds3000_writereg(state, 0xc3, 0x07);
1130 ds3000_writereg(state, 0xc8, value);
1131 ds3000_writereg(state, 0xc4, 0x09);
1132 ds3000_writereg(state, 0xc7, 0x12);
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -03001133 } else if ((c->symbol_rate / 1000) <= 20000) {
1134 value = 64516 / (c->symbol_rate / 1000) + 1;
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001135 ds3000_writereg(state, 0xc3, value);
1136 ds3000_writereg(state, 0xc8, 0x0e);
1137 ds3000_writereg(state, 0xc4, 0x07);
1138 ds3000_writereg(state, 0xc7, 0x18);
1139 } else {
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -03001140 value = 129032 / (c->symbol_rate / 1000) + 1;
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001141 ds3000_writereg(state, 0xc3, value);
1142 ds3000_writereg(state, 0xc8, 0x0a);
1143 ds3000_writereg(state, 0xc4, 0x05);
1144 ds3000_writereg(state, 0xc7, 0x24);
1145 }
1146
1147 /* normalized symbol rate rounded to the closest integer */
Igor M. Liplianincb8f74d2011-02-25 18:41:24 -03001148 value = (((c->symbol_rate / 1000) << 16) +
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001149 (DS3000_SAMPLE_RATE / 2)) / DS3000_SAMPLE_RATE;
1150 ds3000_writereg(state, 0x61, value & 0x00ff);
1151 ds3000_writereg(state, 0x62, (value & 0xff00) >> 8);
1152
1153 /* co-channel interference cancellation disabled */
1154 ds3000_writereg(state, 0x56, 0x00);
1155
1156 /* equalizer disabled */
1157 ds3000_writereg(state, 0x76, 0x00);
1158
1159 /*ds3000_writereg(state, 0x08, 0x03);
1160 ds3000_writereg(state, 0xfd, 0x22);
1161 ds3000_writereg(state, 0x08, 0x07);
1162 ds3000_writereg(state, 0xfd, 0x42);
1163 ds3000_writereg(state, 0x08, 0x07);*/
1164
1165 if (state->config->ci_mode) {
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001166 switch (c->delivery_system) {
1167 case SYS_DVBS:
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001168 default:
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001169 ds3000_writereg(state, 0xfd, 0x80);
1170 break;
1171 case SYS_DVBS2:
1172 ds3000_writereg(state, 0xfd, 0x01);
Igor M. Liplianind2ffc442011-02-25 18:41:22 -03001173 break;
Igor M. Liplianind2ffc442011-02-25 18:41:22 -03001174 }
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001175 }
Igor M. Liplianind2ffc442011-02-25 18:41:22 -03001176
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001177 /* ds3000 out of software reset */
1178 ds3000_writereg(state, 0x00, 0x00);
1179 /* start ds3000 build-in uC */
1180 ds3000_writereg(state, 0xb2, 0x00);
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001181
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001182 /* TODO: calculate and set carrier offset */
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001183
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001184 for (i = 0; i < 30 ; i++) {
1185 ds3000_read_status(fe, &status);
1186 if (status && FE_HAS_LOCK)
1187 break;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001188
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001189 msleep(10);
1190 }
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001191
Igor M. Liplianin18a73f32011-02-25 18:41:23 -03001192 return 0;
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001193}
1194
1195static enum dvbfe_algo ds3000_get_algo(struct dvb_frontend *fe)
1196{
1197 dprintk("%s()\n", __func__);
1198 return DVBFE_ALGO_SW;
1199}
1200
1201/*
1202 * Initialise or wake up device
1203 *
1204 * Power config will reset and load initial firmware if required
1205 */
1206static int ds3000_initfe(struct dvb_frontend *fe)
1207{
Igor M. Liplianina0ea298d52011-02-01 19:40:03 -03001208 struct ds3000_state *state = fe->demodulator_priv;
1209 int ret;
1210
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001211 dprintk("%s()\n", __func__);
Igor M. Liplianina0ea298d52011-02-01 19:40:03 -03001212 /* hard reset */
1213 ds3000_writereg(state, 0x08, 0x01 | ds3000_readreg(state, 0x08));
1214 msleep(1);
1215
1216 /* TS2020 init */
1217 ds3000_tuner_writereg(state, 0x42, 0x73);
1218 ds3000_tuner_writereg(state, 0x05, 0x01);
1219 ds3000_tuner_writereg(state, 0x62, 0xf5);
Igor M. Liplianinb9bf2ea2011-02-01 19:40:36 -03001220 /* Load the firmware if required */
1221 ret = ds3000_firmware_ondemand(fe);
1222 if (ret != 0) {
1223 printk(KERN_ERR "%s: Unable initialize firmware\n", __func__);
1224 return ret;
1225 }
Igor M. Liplianina0ea298d52011-02-01 19:40:03 -03001226
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001227 return 0;
1228}
1229
1230/* Put device to sleep */
1231static int ds3000_sleep(struct dvb_frontend *fe)
1232{
1233 dprintk("%s()\n", __func__);
1234 return 0;
1235}
1236
1237static struct dvb_frontend_ops ds3000_ops = {
1238
1239 .info = {
1240 .name = "Montage Technology DS3000/TS2020",
1241 .type = FE_QPSK,
1242 .frequency_min = 950000,
1243 .frequency_max = 2150000,
1244 .frequency_stepsize = 1011, /* kHz for QPSK frontends */
1245 .frequency_tolerance = 5000,
1246 .symbol_rate_min = 1000000,
1247 .symbol_rate_max = 45000000,
1248 .caps = FE_CAN_INVERSION_AUTO |
1249 FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
1250 FE_CAN_FEC_4_5 | FE_CAN_FEC_5_6 | FE_CAN_FEC_6_7 |
1251 FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
1252 FE_CAN_2G_MODULATION |
1253 FE_CAN_QPSK | FE_CAN_RECOVER
1254 },
1255
1256 .release = ds3000_release,
1257
1258 .init = ds3000_initfe,
1259 .sleep = ds3000_sleep,
1260 .read_status = ds3000_read_status,
1261 .read_ber = ds3000_read_ber,
1262 .read_signal_strength = ds3000_read_signal_strength,
1263 .read_snr = ds3000_read_snr,
1264 .read_ucblocks = ds3000_read_ucblocks,
Igor M. Liplianind2ffc442011-02-25 18:41:22 -03001265 .set_voltage = ds3000_set_voltage,
Igor M. Liplianin09ea33e2009-11-24 20:16:04 -03001266 .set_tone = ds3000_set_tone,
1267 .diseqc_send_master_cmd = ds3000_send_diseqc_msg,
1268 .diseqc_send_burst = ds3000_diseqc_send_burst,
1269 .get_frontend_algo = ds3000_get_algo,
1270
1271 .set_property = ds3000_set_property,
1272 .get_property = ds3000_get_property,
1273 .set_frontend = ds3000_tune,
1274};
1275
1276module_param(debug, int, 0644);
1277MODULE_PARM_DESC(debug, "Activates frontend debugging (default:0)");
1278
1279MODULE_DESCRIPTION("DVB Frontend module for Montage Technology "
1280 "DS3000/TS2020 hardware");
1281MODULE_AUTHOR("Konstantin Dimitrov");
1282MODULE_LICENSE("GPL");