2 Frontend/Card driver for TwinHan DST Frontend
3 Copyright (C) 2003 Jamie Honan
4 Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.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
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/string.h>
25 #include <linux/slab.h>
26 #include <linux/vmalloc.h>
27 #include <linux/delay.h>
28 #include <asm/div64.h>
29 #include "dvb_frontend.h"
31 #include "dst_common.h"
33 static unsigned int verbose
= 1;
34 module_param(verbose
, int, 0644);
35 MODULE_PARM_DESC(verbose
, "verbose startup messages, default is 1 (yes)");
37 static unsigned int dst_addons
;
38 module_param(dst_addons
, int, 0644);
39 MODULE_PARM_DESC(dst_addons
, "CA daughterboard, default is 0 (No addons)");
41 static unsigned int dst_algo
;
42 module_param(dst_algo
, int, 0644);
43 MODULE_PARM_DESC(dst_algo
, "tuning algo: default is 0=(SW), 1=(HW)");
46 #define ATTEMPT_TUNE 2
54 #define dprintk(x, y, z, format, arg...) do { \
56 if ((x > DST_ERROR) && (x > y)) \
57 printk(KERN_ERR "dst(%d) %s: " format "\n", \
58 state->bt->nr, __func__ , ##arg); \
59 else if ((x > DST_NOTICE) && (x > y)) \
60 printk(KERN_NOTICE "dst(%d) %s: " format "\n", \
61 state->bt->nr, __func__ , ##arg); \
62 else if ((x > DST_INFO) && (x > y)) \
63 printk(KERN_INFO "dst(%d) %s: " format "\n", \
64 state->bt->nr, __func__ , ##arg); \
65 else if ((x > DST_DEBUG) && (x > y)) \
66 printk(KERN_DEBUG "dst(%d) %s: " format "\n", \
67 state->bt->nr, __func__ , ##arg); \
70 printk(format, ##arg); \
74 static int dst_command(struct dst_state
*state
, u8
*data
, u8 len
);
76 static void dst_packsize(struct dst_state
*state
, int psize
)
78 union dst_gpio_packet bits
;
81 bt878_device_control(state
->bt
, DST_IG_TS
, &bits
);
84 static int dst_gpio_outb(struct dst_state
*state
, u32 mask
, u32 enbb
,
85 u32 outhigh
, int delay
)
87 union dst_gpio_packet enb
;
88 union dst_gpio_packet bits
;
92 enb
.enb
.enable
= enbb
;
94 dprintk(verbose
, DST_INFO
, 1, "mask=[%04x], enbb=[%04x], outhigh=[%04x]", mask
, enbb
, outhigh
);
95 if ((err
= bt878_device_control(state
->bt
, DST_IG_ENABLE
, &enb
)) < 0) {
96 dprintk(verbose
, DST_INFO
, 1, "dst_gpio_enb error (err == %i, mask == %02x, enb == %02x)", err
, mask
, enbb
);
100 /* because complete disabling means no output, no need to do output packet */
105 bits
.outp
.mask
= enbb
;
106 bits
.outp
.highvals
= outhigh
;
107 if ((err
= bt878_device_control(state
->bt
, DST_IG_WRITE
, &bits
)) < 0) {
108 dprintk(verbose
, DST_INFO
, 1, "dst_gpio_outb error (err == %i, enbb == %02x, outhigh == %02x)", err
, enbb
, outhigh
);
115 static int dst_gpio_inb(struct dst_state
*state
, u8
*result
)
117 union dst_gpio_packet rd_packet
;
121 if ((err
= bt878_device_control(state
->bt
, DST_IG_READ
, &rd_packet
)) < 0) {
122 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_inb error (err == %i)", err
);
125 *result
= (u8
) rd_packet
.rd
.value
;
130 int rdc_reset_state(struct dst_state
*state
)
132 dprintk(verbose
, DST_INFO
, 1, "Resetting state machine");
133 if (dst_gpio_outb(state
, RDC_8820_INT
, RDC_8820_INT
, 0, NO_DELAY
) < 0) {
134 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_outb ERROR !");
138 if (dst_gpio_outb(state
, RDC_8820_INT
, RDC_8820_INT
, RDC_8820_INT
, NO_DELAY
) < 0) {
139 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_outb ERROR !");
146 EXPORT_SYMBOL(rdc_reset_state
);
148 static int rdc_8820_reset(struct dst_state
*state
)
150 dprintk(verbose
, DST_DEBUG
, 1, "Resetting DST");
151 if (dst_gpio_outb(state
, RDC_8820_RESET
, RDC_8820_RESET
, 0, NO_DELAY
) < 0) {
152 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_outb ERROR !");
156 if (dst_gpio_outb(state
, RDC_8820_RESET
, RDC_8820_RESET
, RDC_8820_RESET
, DELAY
) < 0) {
157 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_outb ERROR !");
164 static int dst_pio_enable(struct dst_state
*state
)
166 if (dst_gpio_outb(state
, ~0, RDC_8820_PIO_0_ENABLE
, 0, NO_DELAY
) < 0) {
167 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_outb ERROR !");
175 int dst_pio_disable(struct dst_state
*state
)
177 if (dst_gpio_outb(state
, ~0, RDC_8820_PIO_0_DISABLE
, RDC_8820_PIO_0_DISABLE
, NO_DELAY
) < 0) {
178 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_outb ERROR !");
181 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
186 EXPORT_SYMBOL(dst_pio_disable
);
188 int dst_wait_dst_ready(struct dst_state
*state
, u8 delay_mode
)
193 for (i
= 0; i
< 200; i
++) {
194 if (dst_gpio_inb(state
, &reply
) < 0) {
195 dprintk(verbose
, DST_ERROR
, 1, "dst_gpio_inb ERROR !");
198 if ((reply
& RDC_8820_PIO_0_ENABLE
) == 0) {
199 dprintk(verbose
, DST_INFO
, 1, "dst wait ready after %d", i
);
204 dprintk(verbose
, DST_NOTICE
, 1, "dst wait NOT ready after %d", i
);
208 EXPORT_SYMBOL(dst_wait_dst_ready
);
210 int dst_error_recovery(struct dst_state
*state
)
212 dprintk(verbose
, DST_NOTICE
, 1, "Trying to return from previous errors.");
213 dst_pio_disable(state
);
215 dst_pio_enable(state
);
220 EXPORT_SYMBOL(dst_error_recovery
);
222 int dst_error_bailout(struct dst_state
*state
)
224 dprintk(verbose
, DST_INFO
, 1, "Trying to bailout from previous error.");
225 rdc_8820_reset(state
);
226 dst_pio_disable(state
);
231 EXPORT_SYMBOL(dst_error_bailout
);
233 int dst_comm_init(struct dst_state
*state
)
235 dprintk(verbose
, DST_INFO
, 1, "Initializing DST.");
236 if ((dst_pio_enable(state
)) < 0) {
237 dprintk(verbose
, DST_ERROR
, 1, "PIO Enable Failed");
240 if ((rdc_reset_state(state
)) < 0) {
241 dprintk(verbose
, DST_ERROR
, 1, "RDC 8820 State RESET Failed.");
244 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
251 EXPORT_SYMBOL(dst_comm_init
);
253 int write_dst(struct dst_state
*state
, u8
*data
, u8 len
)
255 struct i2c_msg msg
= {
256 .addr
= state
->config
->demod_address
,
265 dprintk(verbose
, DST_NOTICE
, 0, "writing [ ");
266 for (i
= 0; i
< len
; i
++)
267 dprintk(verbose
, DST_NOTICE
, 0, "%02x ", data
[i
]);
268 dprintk(verbose
, DST_NOTICE
, 0, "]\n");
270 for (cnt
= 0; cnt
< 2; cnt
++) {
271 if ((err
= i2c_transfer(state
->i2c
, &msg
, 1)) < 0) {
272 dprintk(verbose
, DST_INFO
, 1, "_write_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)", err
, len
, data
[0]);
273 dst_error_recovery(state
);
279 dprintk(verbose
, DST_INFO
, 1, "RDC 8820 RESET");
280 dst_error_bailout(state
);
287 EXPORT_SYMBOL(write_dst
);
289 int read_dst(struct dst_state
*state
, u8
*ret
, u8 len
)
291 struct i2c_msg msg
= {
292 .addr
= state
->config
->demod_address
,
301 for (cnt
= 0; cnt
< 2; cnt
++) {
302 if ((err
= i2c_transfer(state
->i2c
, &msg
, 1)) < 0) {
303 dprintk(verbose
, DST_INFO
, 1, "read_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)", err
, len
, ret
[0]);
304 dst_error_recovery(state
);
310 dprintk(verbose
, DST_INFO
, 1, "RDC 8820 RESET");
311 dst_error_bailout(state
);
315 dprintk(verbose
, DST_DEBUG
, 1, "reply is 0x%x", ret
[0]);
316 for (err
= 1; err
< len
; err
++)
317 dprintk(verbose
, DST_DEBUG
, 0, " 0x%x", ret
[err
]);
319 dprintk(verbose
, DST_DEBUG
, 0, "\n");
323 EXPORT_SYMBOL(read_dst
);
325 static int dst_set_polarization(struct dst_state
*state
)
327 switch (state
->voltage
) {
328 case SEC_VOLTAGE_13
: /* Vertical */
329 dprintk(verbose
, DST_INFO
, 1, "Polarization=[Vertical]");
330 state
->tx_tuna
[8] &= ~0x40;
332 case SEC_VOLTAGE_18
: /* Horizontal */
333 dprintk(verbose
, DST_INFO
, 1, "Polarization=[Horizontal]");
334 state
->tx_tuna
[8] |= 0x40;
336 case SEC_VOLTAGE_OFF
:
343 static int dst_set_freq(struct dst_state
*state
, u32 freq
)
345 state
->frequency
= freq
;
346 dprintk(verbose
, DST_INFO
, 1, "set Frequency %u", freq
);
348 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
350 if (freq
< 950 || freq
> 2150)
352 state
->tx_tuna
[2] = (freq
>> 8);
353 state
->tx_tuna
[3] = (u8
) freq
;
354 state
->tx_tuna
[4] = 0x01;
355 state
->tx_tuna
[8] &= ~0x04;
356 if (state
->type_flags
& DST_TYPE_HAS_OBS_REGS
) {
358 state
->tx_tuna
[8] |= 0x04;
360 } else if (state
->dst_type
== DST_TYPE_IS_TERR
) {
362 if (freq
< 137000 || freq
> 858000)
364 state
->tx_tuna
[2] = (freq
>> 16) & 0xff;
365 state
->tx_tuna
[3] = (freq
>> 8) & 0xff;
366 state
->tx_tuna
[4] = (u8
) freq
;
367 } else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
369 state
->tx_tuna
[2] = (freq
>> 16) & 0xff;
370 state
->tx_tuna
[3] = (freq
>> 8) & 0xff;
371 state
->tx_tuna
[4] = (u8
) freq
;
372 } else if (state
->dst_type
== DST_TYPE_IS_ATSC
) {
374 if (freq
< 51000 || freq
> 858000)
376 state
->tx_tuna
[2] = (freq
>> 16) & 0xff;
377 state
->tx_tuna
[3] = (freq
>> 8) & 0xff;
378 state
->tx_tuna
[4] = (u8
) freq
;
379 state
->tx_tuna
[5] = 0x00; /* ATSC */
380 state
->tx_tuna
[6] = 0x00;
381 if (state
->dst_hw_cap
& DST_TYPE_HAS_ANALOG
)
382 state
->tx_tuna
[7] = 0x00; /* Digital */
389 static int dst_set_bandwidth(struct dst_state
*state
, u32 bandwidth
)
391 state
->bandwidth
= bandwidth
;
393 if (state
->dst_type
!= DST_TYPE_IS_TERR
)
398 if (state
->dst_hw_cap
& DST_TYPE_HAS_CA
)
399 state
->tx_tuna
[7] = 0x06;
401 state
->tx_tuna
[6] = 0x06;
402 state
->tx_tuna
[7] = 0x00;
406 if (state
->dst_hw_cap
& DST_TYPE_HAS_CA
)
407 state
->tx_tuna
[7] = 0x07;
409 state
->tx_tuna
[6] = 0x07;
410 state
->tx_tuna
[7] = 0x00;
414 if (state
->dst_hw_cap
& DST_TYPE_HAS_CA
)
415 state
->tx_tuna
[7] = 0x08;
417 state
->tx_tuna
[6] = 0x08;
418 state
->tx_tuna
[7] = 0x00;
428 static int dst_set_inversion(struct dst_state
*state
, fe_spectral_inversion_t inversion
)
430 state
->inversion
= inversion
;
432 case INVERSION_OFF
: /* Inversion = Normal */
433 state
->tx_tuna
[8] &= ~0x80;
436 state
->tx_tuna
[8] |= 0x80;
445 static int dst_set_fec(struct dst_state
*state
, fe_code_rate_t fec
)
451 static fe_code_rate_t
dst_get_fec(struct dst_state
*state
)
456 static int dst_set_symbolrate(struct dst_state
*state
, u32 srate
)
461 state
->symbol_rate
= srate
;
462 if (state
->dst_type
== DST_TYPE_IS_TERR
) {
465 dprintk(verbose
, DST_INFO
, 1, "set symrate %u", srate
);
467 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
468 if (state
->type_flags
& DST_TYPE_HAS_SYMDIV
) {
472 symcalc
= (u32
) sval
;
473 dprintk(verbose
, DST_INFO
, 1, "set symcalc %u", symcalc
);
474 state
->tx_tuna
[5] = (u8
) (symcalc
>> 12);
475 state
->tx_tuna
[6] = (u8
) (symcalc
>> 4);
476 state
->tx_tuna
[7] = (u8
) (symcalc
<< 4);
478 state
->tx_tuna
[5] = (u8
) (srate
>> 16) & 0x7f;
479 state
->tx_tuna
[6] = (u8
) (srate
>> 8);
480 state
->tx_tuna
[7] = (u8
) srate
;
482 state
->tx_tuna
[8] &= ~0x20;
483 if (state
->type_flags
& DST_TYPE_HAS_OBS_REGS
) {
485 state
->tx_tuna
[8] |= 0x20;
487 } else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
488 dprintk(verbose
, DST_DEBUG
, 1, "%s", state
->fw_name
);
489 if (!strncmp(state
->fw_name
, "DCTNEW", 6)) {
490 state
->tx_tuna
[5] = (u8
) (srate
>> 8);
491 state
->tx_tuna
[6] = (u8
) srate
;
492 state
->tx_tuna
[7] = 0x00;
493 } else if (!strncmp(state
->fw_name
, "DCT-CI", 6)) {
494 state
->tx_tuna
[5] = 0x00;
495 state
->tx_tuna
[6] = (u8
) (srate
>> 8);
496 state
->tx_tuna
[7] = (u8
) srate
;
502 static int dst_set_modulation(struct dst_state
*state
, fe_modulation_t modulation
)
504 if (state
->dst_type
!= DST_TYPE_IS_CABLE
)
507 state
->modulation
= modulation
;
508 switch (modulation
) {
510 state
->tx_tuna
[8] = 0x10;
513 state
->tx_tuna
[8] = 0x20;
516 state
->tx_tuna
[8] = 0x40;
519 state
->tx_tuna
[8] = 0x80;
522 if (!strncmp(state
->fw_name
, "DCTNEW", 6))
523 state
->tx_tuna
[8] = 0xff;
524 else if (!strncmp(state
->fw_name
, "DCT-CI", 6))
525 state
->tx_tuna
[8] = 0x00;
539 static fe_modulation_t
dst_get_modulation(struct dst_state
*state
)
541 return state
->modulation
;
545 u8
dst_check_sum(u8
*buf
, u32 len
)
551 for (i
= 0; i
< len
; i
++) {
556 EXPORT_SYMBOL(dst_check_sum
);
558 static void dst_type_flags_print(struct dst_state
*state
)
560 u32 type_flags
= state
->type_flags
;
562 dprintk(verbose
, DST_ERROR
, 0, "DST type flags :");
563 if (type_flags
& DST_TYPE_HAS_TS188
)
564 dprintk(verbose
, DST_ERROR
, 0, " 0x%x newtuner", DST_TYPE_HAS_TS188
);
565 if (type_flags
& DST_TYPE_HAS_NEWTUNE_2
)
566 dprintk(verbose
, DST_ERROR
, 0, " 0x%x newtuner 2", DST_TYPE_HAS_NEWTUNE_2
);
567 if (type_flags
& DST_TYPE_HAS_TS204
)
568 dprintk(verbose
, DST_ERROR
, 0, " 0x%x ts204", DST_TYPE_HAS_TS204
);
569 if (type_flags
& DST_TYPE_HAS_VLF
)
570 dprintk(verbose
, DST_ERROR
, 0, " 0x%x VLF", DST_TYPE_HAS_VLF
);
571 if (type_flags
& DST_TYPE_HAS_SYMDIV
)
572 dprintk(verbose
, DST_ERROR
, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV
);
573 if (type_flags
& DST_TYPE_HAS_FW_1
)
574 dprintk(verbose
, DST_ERROR
, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1
);
575 if (type_flags
& DST_TYPE_HAS_FW_2
)
576 dprintk(verbose
, DST_ERROR
, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2
);
577 if (type_flags
& DST_TYPE_HAS_FW_3
)
578 dprintk(verbose
, DST_ERROR
, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3
);
579 dprintk(verbose
, DST_ERROR
, 0, "\n");
583 static int dst_type_print(struct dst_state
*state
, u8 type
)
587 case DST_TYPE_IS_SAT
:
591 case DST_TYPE_IS_TERR
:
592 otype
= "terrestrial";
595 case DST_TYPE_IS_CABLE
:
599 case DST_TYPE_IS_ATSC
:
604 dprintk(verbose
, DST_INFO
, 1, "invalid dst type %d", type
);
607 dprintk(verbose
, DST_INFO
, 1, "DST type: %s", otype
);
612 static struct tuner_types tuner_list
[] = {
614 .tuner_type
= TUNER_TYPE_L64724
,
615 .tuner_name
= "L 64724",
616 .board_name
= "UNKNOWN",
621 .tuner_type
= TUNER_TYPE_STV0299
,
622 .tuner_name
= "STV 0299",
623 .board_name
= "VP1020",
628 .tuner_type
= TUNER_TYPE_STV0299
,
629 .tuner_name
= "STV 0299",
630 .board_name
= "VP1020",
635 .tuner_type
= TUNER_TYPE_MB86A15
,
636 .tuner_name
= "MB 86A15",
637 .board_name
= "VP1022",
642 .tuner_type
= TUNER_TYPE_MB86A15
,
643 .tuner_name
= "MB 86A15",
644 .board_name
= "VP1025",
649 .tuner_type
= TUNER_TYPE_STV0299
,
650 .tuner_name
= "STV 0299",
651 .board_name
= "VP1030",
656 .tuner_type
= TUNER_TYPE_STV0299
,
657 .tuner_name
= "STV 0299",
658 .board_name
= "VP1030",
663 .tuner_type
= TUNER_TYPE_UNKNOWN
,
664 .tuner_name
= "UNKNOWN",
665 .board_name
= "VP2021",
670 .tuner_type
= TUNER_TYPE_UNKNOWN
,
671 .tuner_name
= "UNKNOWN",
672 .board_name
= "VP2030",
677 .tuner_type
= TUNER_TYPE_UNKNOWN
,
678 .tuner_name
= "UNKNOWN",
679 .board_name
= "VP2031",
684 .tuner_type
= TUNER_TYPE_UNKNOWN
,
685 .tuner_name
= "UNKNOWN",
686 .board_name
= "VP2040",
691 .tuner_type
= TUNER_TYPE_UNKNOWN
,
692 .tuner_name
= "UNKNOWN",
693 .board_name
= "VP3020",
698 .tuner_type
= TUNER_TYPE_UNKNOWN
,
699 .tuner_name
= "UNKNOWN",
700 .board_name
= "VP3021",
705 .tuner_type
= TUNER_TYPE_TDA10046
,
706 .tuner_name
= "TDA10046",
707 .board_name
= "VP3040",
712 .tuner_type
= TUNER_TYPE_UNKNOWN
,
713 .tuner_name
= "UNKNOWN",
714 .board_name
= "VP3051",
719 .tuner_type
= TUNER_TYPE_NXT200x
,
720 .tuner_name
= "NXT200x",
721 .board_name
= "VP3220",
726 .tuner_type
= TUNER_TYPE_NXT200x
,
727 .tuner_name
= "NXT200x",
728 .board_name
= "VP3250",
738 VP-1020 DST-MOT LG(old), TS=188
740 VP-1020 DST-03T LG(new), TS=204
741 VP-1022 DST-03T LG(new), TS=204
742 VP-1025 DST-03T LG(new), TS=204
744 VP-1030 DSTMCI, LG(new), TS=188
745 VP-1032 DSTMCI, LG(new), TS=188
749 VP-2030 DCT-CI, Samsung, TS=204
750 VP-2021 DCT-CI, Unknown, TS=204
751 VP-2031 DCT-CI, Philips, TS=188
752 VP-2040 DCT-CI, Philips, TS=188, with CA daughter board
753 VP-2040 DCT-CI, Philips, TS=204, without CA daughter board
757 VP-3050 DTTNXT TS=188
758 VP-3040 DTT-CI, Philips, TS=188
759 VP-3040 DTT-CI, Philips, TS=204
763 VP-3220 ATSCDI, TS=188
764 VP-3250 ATSCAD, TS=188
768 static struct dst_types dst_tlist
[] = {
770 .device_id
= "200103A",
772 .dst_type
= DST_TYPE_IS_SAT
,
773 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_FW_1
| DST_TYPE_HAS_OBS_REGS
,
779 .device_id
= "DST-020",
781 .dst_type
= DST_TYPE_IS_SAT
,
782 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_FW_1
,
788 .device_id
= "DST-030",
790 .dst_type
= DST_TYPE_IS_SAT
,
791 .type_flags
= DST_TYPE_HAS_TS204
| DST_TYPE_HAS_TS188
| DST_TYPE_HAS_FW_1
,
797 .device_id
= "DST-03T",
799 .dst_type
= DST_TYPE_IS_SAT
,
800 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_TS204
| DST_TYPE_HAS_FW_2
,
801 .dst_feature
= DST_TYPE_HAS_DISEQC3
| DST_TYPE_HAS_DISEQC4
| DST_TYPE_HAS_DISEQC5
802 | DST_TYPE_HAS_MAC
| DST_TYPE_HAS_MOTO
,
803 .tuner_type
= TUNER_TYPE_MULTI
807 .device_id
= "DST-MOT",
809 .dst_type
= DST_TYPE_IS_SAT
,
810 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_FW_1
,
816 .device_id
= "DST-CI",
818 .dst_type
= DST_TYPE_IS_SAT
,
819 .type_flags
= DST_TYPE_HAS_TS204
| DST_TYPE_HAS_FW_1
,
820 .dst_feature
= DST_TYPE_HAS_CA
,
822 }, /* An OEM board */
825 .device_id
= "DSTMCI",
827 .dst_type
= DST_TYPE_IS_SAT
,
828 .type_flags
= DST_TYPE_HAS_TS188
| DST_TYPE_HAS_FW_2
| DST_TYPE_HAS_FW_BUILD
| DST_TYPE_HAS_INC_COUNT
| DST_TYPE_HAS_VLF
,
829 .dst_feature
= DST_TYPE_HAS_CA
| DST_TYPE_HAS_DISEQC3
| DST_TYPE_HAS_DISEQC4
830 | DST_TYPE_HAS_MOTO
| DST_TYPE_HAS_MAC
,
831 .tuner_type
= TUNER_TYPE_MULTI
835 .device_id
= "DSTFCI",
837 .dst_type
= DST_TYPE_IS_SAT
,
838 .type_flags
= DST_TYPE_HAS_TS188
| DST_TYPE_HAS_FW_1
,
841 }, /* unknown to vendor */
844 .device_id
= "DCT-CI",
846 .dst_type
= DST_TYPE_IS_CABLE
,
847 .type_flags
= DST_TYPE_HAS_MULTI_FE
| DST_TYPE_HAS_FW_1
| DST_TYPE_HAS_FW_2
| DST_TYPE_HAS_VLF
,
848 .dst_feature
= DST_TYPE_HAS_CA
,
853 .device_id
= "DCTNEW",
855 .dst_type
= DST_TYPE_IS_CABLE
,
856 .type_flags
= DST_TYPE_HAS_TS188
| DST_TYPE_HAS_FW_3
| DST_TYPE_HAS_FW_BUILD
| DST_TYPE_HAS_MULTI_FE
,
862 .device_id
= "DTT-CI",
864 .dst_type
= DST_TYPE_IS_TERR
,
865 .type_flags
= DST_TYPE_HAS_FW_2
| DST_TYPE_HAS_MULTI_FE
| DST_TYPE_HAS_VLF
,
866 .dst_feature
= DST_TYPE_HAS_CA
,
871 .device_id
= "DTTDIG",
873 .dst_type
= DST_TYPE_IS_TERR
,
874 .type_flags
= DST_TYPE_HAS_FW_2
,
880 .device_id
= "DTTNXT",
882 .dst_type
= DST_TYPE_IS_TERR
,
883 .type_flags
= DST_TYPE_HAS_FW_2
,
884 .dst_feature
= DST_TYPE_HAS_ANALOG
,
889 .device_id
= "ATSCDI",
891 .dst_type
= DST_TYPE_IS_ATSC
,
892 .type_flags
= DST_TYPE_HAS_FW_2
,
898 .device_id
= "ATSCAD",
900 .dst_type
= DST_TYPE_IS_ATSC
,
901 .type_flags
= DST_TYPE_HAS_MULTI_FE
| DST_TYPE_HAS_FW_2
| DST_TYPE_HAS_FW_BUILD
,
902 .dst_feature
= DST_TYPE_HAS_MAC
| DST_TYPE_HAS_ANALOG
,
910 static int dst_get_mac(struct dst_state
*state
)
912 u8 get_mac
[] = { 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
913 get_mac
[7] = dst_check_sum(get_mac
, 7);
914 if (dst_command(state
, get_mac
, 8) < 0) {
915 dprintk(verbose
, DST_INFO
, 1, "Unsupported Command");
918 memset(&state
->mac_address
, '\0', 8);
919 memcpy(&state
->mac_address
, &state
->rxbuffer
, 6);
920 dprintk(verbose
, DST_ERROR
, 1, "MAC Address=[%pM]", state
->mac_address
);
925 static int dst_fw_ver(struct dst_state
*state
)
927 u8 get_ver
[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
928 get_ver
[7] = dst_check_sum(get_ver
, 7);
929 if (dst_command(state
, get_ver
, 8) < 0) {
930 dprintk(verbose
, DST_INFO
, 1, "Unsupported Command");
933 memcpy(&state
->fw_version
, &state
->rxbuffer
, 8);
934 dprintk(verbose
, DST_ERROR
, 1, "Firmware Ver = %x.%x Build = %02x, on %x:%x, %x-%x-20%02x",
935 state
->fw_version
[0] >> 4, state
->fw_version
[0] & 0x0f,
936 state
->fw_version
[1],
937 state
->fw_version
[5], state
->fw_version
[6],
938 state
->fw_version
[4], state
->fw_version
[3], state
->fw_version
[2]);
943 static int dst_card_type(struct dst_state
*state
)
946 struct tuner_types
*p_tuner_list
= NULL
;
948 u8 get_type
[] = { 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
949 get_type
[7] = dst_check_sum(get_type
, 7);
950 if (dst_command(state
, get_type
, 8) < 0) {
951 dprintk(verbose
, DST_INFO
, 1, "Unsupported Command");
954 memset(&state
->card_info
, '\0', 8);
955 memcpy(&state
->card_info
, &state
->rxbuffer
, 7);
956 dprintk(verbose
, DST_ERROR
, 1, "Device Model=[%s]", &state
->card_info
[0]);
958 for (j
= 0, p_tuner_list
= tuner_list
; j
< ARRAY_SIZE(tuner_list
); j
++, p_tuner_list
++) {
959 if (!strcmp(&state
->card_info
[0], p_tuner_list
->board_name
)) {
960 state
->tuner_type
= p_tuner_list
->tuner_type
;
961 dprintk(verbose
, DST_ERROR
, 1, "DST has [%s] tuner, tuner type=[%d]",
962 p_tuner_list
->tuner_name
, p_tuner_list
->tuner_type
);
969 static int dst_get_vendor(struct dst_state
*state
)
971 u8 get_vendor
[] = { 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
972 get_vendor
[7] = dst_check_sum(get_vendor
, 7);
973 if (dst_command(state
, get_vendor
, 8) < 0) {
974 dprintk(verbose
, DST_INFO
, 1, "Unsupported Command");
977 memset(&state
->vendor
, '\0', 8);
978 memcpy(&state
->vendor
, &state
->rxbuffer
, 7);
979 dprintk(verbose
, DST_ERROR
, 1, "Vendor=[%s]", &state
->vendor
[0]);
984 static void debug_dst_buffer(struct dst_state
*state
)
989 printk("%s: [", __func__
);
990 for (i
= 0; i
< 8; i
++)
991 printk(" %02x", state
->rxbuffer
[i
]);
996 static int dst_check_stv0299(struct dst_state
*state
)
998 u8 check_stv0299
[] = { 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1000 check_stv0299
[7] = dst_check_sum(check_stv0299
, 7);
1001 if (dst_command(state
, check_stv0299
, 8) < 0) {
1002 dprintk(verbose
, DST_ERROR
, 1, "Cmd=[0x04] failed");
1005 debug_dst_buffer(state
);
1007 if (memcmp(&check_stv0299
, &state
->rxbuffer
, 8)) {
1008 dprintk(verbose
, DST_ERROR
, 1, "Found a STV0299 NIM");
1009 state
->tuner_type
= TUNER_TYPE_STV0299
;
1016 static int dst_check_mb86a15(struct dst_state
*state
)
1018 u8 check_mb86a15
[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1020 check_mb86a15
[7] = dst_check_sum(check_mb86a15
, 7);
1021 if (dst_command(state
, check_mb86a15
, 8) < 0) {
1022 dprintk(verbose
, DST_ERROR
, 1, "Cmd=[0x10], failed");
1025 debug_dst_buffer(state
);
1027 if (memcmp(&check_mb86a15
, &state
->rxbuffer
, 8) < 0) {
1028 dprintk(verbose
, DST_ERROR
, 1, "Found a MB86A15 NIM");
1029 state
->tuner_type
= TUNER_TYPE_MB86A15
;
1036 static int dst_get_tuner_info(struct dst_state
*state
)
1038 u8 get_tuner_1
[] = { 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1039 u8 get_tuner_2
[] = { 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1041 get_tuner_1
[7] = dst_check_sum(get_tuner_1
, 7);
1042 get_tuner_2
[7] = dst_check_sum(get_tuner_2
, 7);
1043 dprintk(verbose
, DST_ERROR
, 1, "DST TYpe = MULTI FE");
1044 if (state
->type_flags
& DST_TYPE_HAS_MULTI_FE
) {
1045 if (dst_command(state
, get_tuner_1
, 8) < 0) {
1046 dprintk(verbose
, DST_INFO
, 1, "Cmd=[0x13], Unsupported");
1050 if (dst_command(state
, get_tuner_2
, 8) < 0) {
1051 dprintk(verbose
, DST_INFO
, 1, "Cmd=[0xb], Unsupported");
1055 memcpy(&state
->board_info
, &state
->rxbuffer
, 8);
1056 if (state
->type_flags
& DST_TYPE_HAS_MULTI_FE
) {
1057 dprintk(verbose
, DST_ERROR
, 1, "DST type has TS=188");
1059 if (state
->board_info
[0] == 0xbc) {
1060 if (state
->dst_type
!= DST_TYPE_IS_ATSC
)
1061 state
->type_flags
|= DST_TYPE_HAS_TS188
;
1063 state
->type_flags
|= DST_TYPE_HAS_NEWTUNE_2
;
1065 if (state
->board_info
[1] == 0x01) {
1066 state
->dst_hw_cap
|= DST_TYPE_HAS_DBOARD
;
1067 dprintk(verbose
, DST_ERROR
, 1, "DST has Daughterboard");
1073 if (!strncmp(state
->fw_name
, "DCT-CI", 6)) {
1074 state
->type_flags
|= DST_TYPE_HAS_TS204
;
1075 dprintk(verbose
, DST_ERROR
, 1, "Forcing [%s] to TS188", state
->fw_name
);
1081 static int dst_get_device_id(struct dst_state
*state
)
1086 struct dst_types
*p_dst_type
= NULL
;
1087 struct tuner_types
*p_tuner_list
= NULL
;
1089 u8 use_dst_type
= 0;
1090 u32 use_type_flags
= 0;
1092 static u8 device_type
[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
1094 state
->tuner_type
= 0;
1095 device_type
[7] = dst_check_sum(device_type
, 7);
1097 if (write_dst(state
, device_type
, FIXED_COMM
))
1098 return -1; /* Write failed */
1099 if ((dst_pio_disable(state
)) < 0)
1101 if (read_dst(state
, &reply
, GET_ACK
))
1102 return -1; /* Read failure */
1104 dprintk(verbose
, DST_INFO
, 1, "Write not Acknowledged! [Reply=0x%02x]", reply
);
1105 return -1; /* Unack'd write */
1107 if (!dst_wait_dst_ready(state
, DEVICE_INIT
))
1108 return -1; /* DST not ready yet */
1109 if (read_dst(state
, state
->rxbuffer
, FIXED_COMM
))
1112 dst_pio_disable(state
);
1113 if (state
->rxbuffer
[7] != dst_check_sum(state
->rxbuffer
, 7)) {
1114 dprintk(verbose
, DST_INFO
, 1, "Checksum failure!");
1115 return -1; /* Checksum failure */
1117 state
->rxbuffer
[7] = '\0';
1119 for (i
= 0, p_dst_type
= dst_tlist
; i
< ARRAY_SIZE(dst_tlist
); i
++, p_dst_type
++) {
1120 if (!strncmp (&state
->rxbuffer
[p_dst_type
->offset
], p_dst_type
->device_id
, strlen (p_dst_type
->device_id
))) {
1121 use_type_flags
= p_dst_type
->type_flags
;
1122 use_dst_type
= p_dst_type
->dst_type
;
1124 /* Card capabilities */
1125 state
->dst_hw_cap
= p_dst_type
->dst_feature
;
1126 dprintk(verbose
, DST_ERROR
, 1, "Recognise [%s]", p_dst_type
->device_id
);
1127 strncpy(&state
->fw_name
[0], p_dst_type
->device_id
, 6);
1128 /* Multiple tuners */
1129 if (p_dst_type
->tuner_type
& TUNER_TYPE_MULTI
) {
1130 switch (use_dst_type
) {
1131 case DST_TYPE_IS_SAT
:
1133 if (dst_check_stv0299(state
) < 0) {
1134 dprintk(verbose
, DST_ERROR
, 1, "Unsupported");
1135 state
->tuner_type
= TUNER_TYPE_MB86A15
;
1141 if (dst_check_mb86a15(state
) < 0)
1142 dprintk(verbose
, DST_ERROR
, 1, "Unsupported");
1145 state
->tuner_type
= p_dst_type
->tuner_type
;
1147 for (j
= 0, p_tuner_list
= tuner_list
; j
< ARRAY_SIZE(tuner_list
); j
++, p_tuner_list
++) {
1148 if (!(strncmp(p_dst_type
->device_id
, p_tuner_list
->fw_name
, 7)) &&
1149 p_tuner_list
->tuner_type
== state
->tuner_type
) {
1150 dprintk(verbose
, DST_ERROR
, 1, "[%s] has a [%s]",
1151 p_dst_type
->device_id
, p_tuner_list
->tuner_name
);
1158 if (i
>= ARRAY_SIZE(dst_tlist
)) {
1159 dprintk(verbose
, DST_ERROR
, 1, "Unable to recognize %s or %s", &state
->rxbuffer
[0], &state
->rxbuffer
[1]);
1160 dprintk(verbose
, DST_ERROR
, 1, "please email linux-dvb@linuxtv.org with this type in");
1161 use_dst_type
= DST_TYPE_IS_SAT
;
1162 use_type_flags
= DST_TYPE_HAS_SYMDIV
;
1164 dst_type_print(state
, use_dst_type
);
1165 state
->type_flags
= use_type_flags
;
1166 state
->dst_type
= use_dst_type
;
1167 dst_type_flags_print(state
);
1172 static int dst_probe(struct dst_state
*state
)
1174 mutex_init(&state
->dst_mutex
);
1175 if (dst_addons
& DST_TYPE_HAS_CA
) {
1176 if ((rdc_8820_reset(state
)) < 0) {
1177 dprintk(verbose
, DST_ERROR
, 1, "RDC 8820 RESET Failed.");
1184 if ((dst_comm_init(state
)) < 0) {
1185 dprintk(verbose
, DST_ERROR
, 1, "DST Initialization Failed.");
1189 if (dst_get_device_id(state
) < 0) {
1190 dprintk(verbose
, DST_ERROR
, 1, "unknown device.");
1193 if (dst_get_mac(state
) < 0) {
1194 dprintk(verbose
, DST_INFO
, 1, "MAC: Unsupported command");
1196 if ((state
->type_flags
& DST_TYPE_HAS_MULTI_FE
) || (state
->type_flags
& DST_TYPE_HAS_FW_BUILD
)) {
1197 if (dst_get_tuner_info(state
) < 0)
1198 dprintk(verbose
, DST_INFO
, 1, "Tuner: Unsupported command");
1200 if (state
->type_flags
& DST_TYPE_HAS_TS204
) {
1201 dst_packsize(state
, 204);
1203 if (state
->type_flags
& DST_TYPE_HAS_FW_BUILD
) {
1204 if (dst_fw_ver(state
) < 0) {
1205 dprintk(verbose
, DST_INFO
, 1, "FW: Unsupported command");
1208 if (dst_card_type(state
) < 0) {
1209 dprintk(verbose
, DST_INFO
, 1, "Card: Unsupported command");
1212 if (dst_get_vendor(state
) < 0) {
1213 dprintk(verbose
, DST_INFO
, 1, "Vendor: Unsupported command");
1221 static int dst_command(struct dst_state
*state
, u8
*data
, u8 len
)
1225 mutex_lock(&state
->dst_mutex
);
1226 if ((dst_comm_init(state
)) < 0) {
1227 dprintk(verbose
, DST_NOTICE
, 1, "DST Communication Initialization Failed.");
1230 if (write_dst(state
, data
, len
)) {
1231 dprintk(verbose
, DST_INFO
, 1, "Trying to recover.. ");
1232 if ((dst_error_recovery(state
)) < 0) {
1233 dprintk(verbose
, DST_ERROR
, 1, "Recovery Failed.");
1238 if ((dst_pio_disable(state
)) < 0) {
1239 dprintk(verbose
, DST_ERROR
, 1, "PIO Disable Failed.");
1242 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
1244 if (read_dst(state
, &reply
, GET_ACK
)) {
1245 dprintk(verbose
, DST_DEBUG
, 1, "Trying to recover.. ");
1246 if ((dst_error_recovery(state
)) < 0) {
1247 dprintk(verbose
, DST_INFO
, 1, "Recovery Failed.");
1253 dprintk(verbose
, DST_INFO
, 1, "write not acknowledged 0x%02x ", reply
);
1256 if (len
>= 2 && data
[0] == 0 && (data
[1] == 1 || data
[1] == 3))
1258 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
1262 if (!dst_wait_dst_ready(state
, NO_DELAY
))
1264 if (read_dst(state
, state
->rxbuffer
, FIXED_COMM
)) {
1265 dprintk(verbose
, DST_DEBUG
, 1, "Trying to recover.. ");
1266 if ((dst_error_recovery(state
)) < 0) {
1267 dprintk(verbose
, DST_INFO
, 1, "Recovery failed.");
1272 if (state
->rxbuffer
[7] != dst_check_sum(state
->rxbuffer
, 7)) {
1273 dprintk(verbose
, DST_INFO
, 1, "checksum failure");
1276 mutex_unlock(&state
->dst_mutex
);
1280 mutex_unlock(&state
->dst_mutex
);
1285 static int dst_get_signal(struct dst_state
*state
)
1288 u8 get_signal
[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
1289 //dprintk("%s: Getting Signal strength and other parameters\n", __func__);
1290 if ((state
->diseq_flags
& ATTEMPT_TUNE
) == 0) {
1291 state
->decode_lock
= state
->decode_strength
= state
->decode_snr
= 0;
1294 if (0 == (state
->diseq_flags
& HAS_LOCK
)) {
1295 state
->decode_lock
= state
->decode_strength
= state
->decode_snr
= 0;
1298 if (time_after_eq(jiffies
, state
->cur_jiff
+ (HZ
/ 5))) {
1299 retval
= dst_command(state
, get_signal
, 8);
1302 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1303 state
->decode_lock
= ((state
->rxbuffer
[6] & 0x10) == 0) ? 1 : 0;
1304 state
->decode_strength
= state
->rxbuffer
[5] << 8;
1305 state
->decode_snr
= state
->rxbuffer
[2] << 8 | state
->rxbuffer
[3];
1306 } else if ((state
->dst_type
== DST_TYPE_IS_TERR
) || (state
->dst_type
== DST_TYPE_IS_CABLE
)) {
1307 state
->decode_lock
= (state
->rxbuffer
[1]) ? 1 : 0;
1308 state
->decode_strength
= state
->rxbuffer
[4] << 8;
1309 state
->decode_snr
= state
->rxbuffer
[3] << 8;
1310 } else if (state
->dst_type
== DST_TYPE_IS_ATSC
) {
1311 state
->decode_lock
= (state
->rxbuffer
[6] == 0x00) ? 1 : 0;
1312 state
->decode_strength
= state
->rxbuffer
[4] << 8;
1313 state
->decode_snr
= state
->rxbuffer
[2] << 8 | state
->rxbuffer
[3];
1315 state
->cur_jiff
= jiffies
;
1320 static int dst_tone_power_cmd(struct dst_state
*state
)
1322 u8 paket
[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
1324 if (state
->dst_type
!= DST_TYPE_IS_SAT
)
1326 paket
[4] = state
->tx_tuna
[4];
1327 paket
[2] = state
->tx_tuna
[2];
1328 paket
[3] = state
->tx_tuna
[3];
1329 paket
[7] = dst_check_sum (paket
, 7);
1330 return dst_command(state
, paket
, 8);
1333 static int dst_get_tuna(struct dst_state
*state
)
1337 if ((state
->diseq_flags
& ATTEMPT_TUNE
) == 0)
1339 state
->diseq_flags
&= ~(HAS_LOCK
);
1340 if (!dst_wait_dst_ready(state
, NO_DELAY
))
1342 if ((state
->type_flags
& DST_TYPE_HAS_VLF
) &&
1343 !(state
->dst_type
== DST_TYPE_IS_ATSC
))
1345 retval
= read_dst(state
, state
->rx_tuna
, 10);
1347 retval
= read_dst(state
, &state
->rx_tuna
[2], FIXED_COMM
);
1349 dprintk(verbose
, DST_DEBUG
, 1, "read not successful");
1352 if ((state
->type_flags
& DST_TYPE_HAS_VLF
) &&
1353 !(state
->dst_type
== DST_TYPE_IS_ATSC
)) {
1355 if (state
->rx_tuna
[9] != dst_check_sum(&state
->rx_tuna
[0], 9)) {
1356 dprintk(verbose
, DST_INFO
, 1, "checksum failure ? ");
1360 if (state
->rx_tuna
[9] != dst_check_sum(&state
->rx_tuna
[2], 7)) {
1361 dprintk(verbose
, DST_INFO
, 1, "checksum failure? ");
1365 if (state
->rx_tuna
[2] == 0 && state
->rx_tuna
[3] == 0)
1367 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1368 state
->decode_freq
= ((state
->rx_tuna
[2] & 0x7f) << 8) + state
->rx_tuna
[3];
1370 state
->decode_freq
= ((state
->rx_tuna
[2] & 0x7f) << 16) + (state
->rx_tuna
[3] << 8) + state
->rx_tuna
[4];
1372 state
->decode_freq
= state
->decode_freq
* 1000;
1373 state
->decode_lock
= 1;
1374 state
->diseq_flags
|= HAS_LOCK
;
1379 static int dst_set_voltage(struct dvb_frontend
*fe
, fe_sec_voltage_t voltage
);
1381 static int dst_write_tuna(struct dvb_frontend
*fe
)
1383 struct dst_state
*state
= fe
->demodulator_priv
;
1387 dprintk(verbose
, DST_INFO
, 1, "type_flags 0x%x ", state
->type_flags
);
1388 state
->decode_freq
= 0;
1389 state
->decode_lock
= state
->decode_strength
= state
->decode_snr
= 0;
1390 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1391 if (!(state
->diseq_flags
& HAS_POWER
))
1392 dst_set_voltage(fe
, SEC_VOLTAGE_13
);
1394 state
->diseq_flags
&= ~(HAS_LOCK
| ATTEMPT_TUNE
);
1395 mutex_lock(&state
->dst_mutex
);
1396 if ((dst_comm_init(state
)) < 0) {
1397 dprintk(verbose
, DST_DEBUG
, 1, "DST Communication initialization failed.");
1400 // if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
1401 if ((state
->type_flags
& DST_TYPE_HAS_VLF
) &&
1402 (!(state
->dst_type
== DST_TYPE_IS_ATSC
))) {
1404 state
->tx_tuna
[9] = dst_check_sum(&state
->tx_tuna
[0], 9);
1405 retval
= write_dst(state
, &state
->tx_tuna
[0], 10);
1407 state
->tx_tuna
[9] = dst_check_sum(&state
->tx_tuna
[2], 7);
1408 retval
= write_dst(state
, &state
->tx_tuna
[2], FIXED_COMM
);
1411 dst_pio_disable(state
);
1412 dprintk(verbose
, DST_DEBUG
, 1, "write not successful");
1415 if ((dst_pio_disable(state
)) < 0) {
1416 dprintk(verbose
, DST_DEBUG
, 1, "DST PIO disable failed !");
1419 if ((read_dst(state
, &reply
, GET_ACK
) < 0)) {
1420 dprintk(verbose
, DST_DEBUG
, 1, "read verify not successful.");
1424 dprintk(verbose
, DST_DEBUG
, 1, "write not acknowledged 0x%02x ", reply
);
1427 state
->diseq_flags
|= ATTEMPT_TUNE
;
1428 retval
= dst_get_tuna(state
);
1430 mutex_unlock(&state
->dst_mutex
);
1434 mutex_unlock(&state
->dst_mutex
);
1439 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1440 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1441 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1442 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1443 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1444 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1445 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1446 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1447 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1448 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1449 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1452 static int dst_set_diseqc(struct dvb_frontend
*fe
, struct dvb_diseqc_master_cmd
*cmd
)
1454 struct dst_state
*state
= fe
->demodulator_priv
;
1455 u8 paket
[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1457 if (state
->dst_type
!= DST_TYPE_IS_SAT
)
1459 if (cmd
->msg_len
> 0 && cmd
->msg_len
< 5)
1460 memcpy(&paket
[3], cmd
->msg
, cmd
->msg_len
);
1461 else if (cmd
->msg_len
== 5 && state
->dst_hw_cap
& DST_TYPE_HAS_DISEQC5
)
1462 memcpy(&paket
[2], cmd
->msg
, cmd
->msg_len
);
1465 paket
[7] = dst_check_sum(&paket
[0], 7);
1466 return dst_command(state
, paket
, 8);
1469 static int dst_set_voltage(struct dvb_frontend
*fe
, fe_sec_voltage_t voltage
)
1471 int need_cmd
, retval
= 0;
1472 struct dst_state
*state
= fe
->demodulator_priv
;
1474 state
->voltage
= voltage
;
1475 if (state
->dst_type
!= DST_TYPE_IS_SAT
)
1481 case SEC_VOLTAGE_13
:
1482 case SEC_VOLTAGE_18
:
1483 if ((state
->diseq_flags
& HAS_POWER
) == 0)
1485 state
->diseq_flags
|= HAS_POWER
;
1486 state
->tx_tuna
[4] = 0x01;
1488 case SEC_VOLTAGE_OFF
:
1490 state
->diseq_flags
&= ~(HAS_POWER
| HAS_LOCK
| ATTEMPT_TUNE
);
1491 state
->tx_tuna
[4] = 0x00;
1498 retval
= dst_tone_power_cmd(state
);
1503 static int dst_set_tone(struct dvb_frontend
*fe
, fe_sec_tone_mode_t tone
)
1505 struct dst_state
*state
= fe
->demodulator_priv
;
1508 if (state
->dst_type
!= DST_TYPE_IS_SAT
)
1513 if (state
->type_flags
& DST_TYPE_HAS_OBS_REGS
)
1514 state
->tx_tuna
[2] = 0x00;
1516 state
->tx_tuna
[2] = 0xff;
1520 state
->tx_tuna
[2] = 0x02;
1525 return dst_tone_power_cmd(state
);
1528 static int dst_send_burst(struct dvb_frontend
*fe
, fe_sec_mini_cmd_t minicmd
)
1530 struct dst_state
*state
= fe
->demodulator_priv
;
1532 if (state
->dst_type
!= DST_TYPE_IS_SAT
)
1534 state
->minicmd
= minicmd
;
1537 state
->tx_tuna
[3] = 0x02;
1540 state
->tx_tuna
[3] = 0xff;
1543 return dst_tone_power_cmd(state
);
1547 static int dst_init(struct dvb_frontend
*fe
)
1549 struct dst_state
*state
= fe
->demodulator_priv
;
1551 static u8 sat_tuna_188
[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1552 static u8 sat_tuna_204
[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1553 static u8 ter_tuna_188
[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1554 static u8 ter_tuna_204
[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1555 static u8 cab_tuna_188
[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1556 static u8 cab_tuna_204
[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1557 static u8 atsc_tuner
[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1559 state
->inversion
= INVERSION_OFF
;
1560 state
->voltage
= SEC_VOLTAGE_13
;
1561 state
->tone
= SEC_TONE_OFF
;
1562 state
->diseq_flags
= 0;
1564 state
->bandwidth
= 7000000;
1565 state
->cur_jiff
= jiffies
;
1566 if (state
->dst_type
== DST_TYPE_IS_SAT
)
1567 memcpy(state
->tx_tuna
, ((state
->type_flags
& DST_TYPE_HAS_VLF
) ? sat_tuna_188
: sat_tuna_204
), sizeof (sat_tuna_204
));
1568 else if (state
->dst_type
== DST_TYPE_IS_TERR
)
1569 memcpy(state
->tx_tuna
, ((state
->type_flags
& DST_TYPE_HAS_VLF
) ? ter_tuna_188
: ter_tuna_204
), sizeof (ter_tuna_204
));
1570 else if (state
->dst_type
== DST_TYPE_IS_CABLE
)
1571 memcpy(state
->tx_tuna
, ((state
->type_flags
& DST_TYPE_HAS_VLF
) ? cab_tuna_188
: cab_tuna_204
), sizeof (cab_tuna_204
));
1572 else if (state
->dst_type
== DST_TYPE_IS_ATSC
)
1573 memcpy(state
->tx_tuna
, atsc_tuner
, sizeof (atsc_tuner
));
1578 static int dst_read_status(struct dvb_frontend
*fe
, fe_status_t
*status
)
1580 struct dst_state
*state
= fe
->demodulator_priv
;
1583 if (state
->diseq_flags
& HAS_LOCK
) {
1584 // dst_get_signal(state); // don't require(?) to ask MCU
1585 if (state
->decode_lock
)
1586 *status
|= FE_HAS_LOCK
| FE_HAS_SIGNAL
| FE_HAS_CARRIER
| FE_HAS_SYNC
| FE_HAS_VITERBI
;
1592 static int dst_read_signal_strength(struct dvb_frontend
*fe
, u16
*strength
)
1594 struct dst_state
*state
= fe
->demodulator_priv
;
1596 int retval
= dst_get_signal(state
);
1597 *strength
= state
->decode_strength
;
1602 static int dst_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
1604 struct dst_state
*state
= fe
->demodulator_priv
;
1606 int retval
= dst_get_signal(state
);
1607 *snr
= state
->decode_snr
;
1612 static int dst_set_frontend(struct dvb_frontend
*fe
)
1614 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
1615 int retval
= -EINVAL
;
1616 struct dst_state
*state
= fe
->demodulator_priv
;
1619 retval
= dst_set_freq(state
, p
->frequency
);
1622 dprintk(verbose
, DST_DEBUG
, 1, "Set Frequency=[%d]", p
->frequency
);
1624 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1625 if (state
->type_flags
& DST_TYPE_HAS_OBS_REGS
)
1626 dst_set_inversion(state
, p
->inversion
);
1627 dst_set_fec(state
, p
->fec_inner
);
1628 dst_set_symbolrate(state
, p
->symbol_rate
);
1629 dst_set_polarization(state
);
1630 dprintk(verbose
, DST_DEBUG
, 1, "Set Symbolrate=[%d]", p
->symbol_rate
);
1632 } else if (state
->dst_type
== DST_TYPE_IS_TERR
)
1633 dst_set_bandwidth(state
, p
->bandwidth_hz
);
1634 else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
1635 dst_set_fec(state
, p
->fec_inner
);
1636 dst_set_symbolrate(state
, p
->symbol_rate
);
1637 dst_set_modulation(state
, p
->modulation
);
1639 retval
= dst_write_tuna(fe
);
1645 static int dst_tune_frontend(struct dvb_frontend
* fe
,
1647 unsigned int mode_flags
,
1648 unsigned int *delay
,
1649 fe_status_t
*status
)
1651 struct dst_state
*state
= fe
->demodulator_priv
;
1652 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
1655 dst_set_freq(state
, p
->frequency
);
1656 dprintk(verbose
, DST_DEBUG
, 1, "Set Frequency=[%d]", p
->frequency
);
1658 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1659 if (state
->type_flags
& DST_TYPE_HAS_OBS_REGS
)
1660 dst_set_inversion(state
, p
->inversion
);
1661 dst_set_fec(state
, p
->fec_inner
);
1662 dst_set_symbolrate(state
, p
->symbol_rate
);
1663 dst_set_polarization(state
);
1664 dprintk(verbose
, DST_DEBUG
, 1, "Set Symbolrate=[%d]", p
->symbol_rate
);
1666 } else if (state
->dst_type
== DST_TYPE_IS_TERR
)
1667 dst_set_bandwidth(state
, p
->bandwidth_hz
);
1668 else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
1669 dst_set_fec(state
, p
->fec_inner
);
1670 dst_set_symbolrate(state
, p
->symbol_rate
);
1671 dst_set_modulation(state
, p
->modulation
);
1676 if (!(mode_flags
& FE_TUNE_MODE_ONESHOT
))
1677 dst_read_status(fe
, status
);
1683 static int dst_get_tuning_algo(struct dvb_frontend
*fe
)
1685 return dst_algo
? DVBFE_ALGO_HW
: DVBFE_ALGO_SW
;
1688 static int dst_get_frontend(struct dvb_frontend
*fe
)
1690 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
1691 struct dst_state
*state
= fe
->demodulator_priv
;
1693 p
->frequency
= state
->decode_freq
;
1694 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1695 if (state
->type_flags
& DST_TYPE_HAS_OBS_REGS
)
1696 p
->inversion
= state
->inversion
;
1697 p
->symbol_rate
= state
->symbol_rate
;
1698 p
->fec_inner
= dst_get_fec(state
);
1699 } else if (state
->dst_type
== DST_TYPE_IS_TERR
) {
1700 p
->bandwidth_hz
= state
->bandwidth
;
1701 } else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
1702 p
->symbol_rate
= state
->symbol_rate
;
1703 p
->fec_inner
= dst_get_fec(state
);
1704 p
->modulation
= dst_get_modulation(state
);
1710 static void dst_release(struct dvb_frontend
*fe
)
1712 struct dst_state
*state
= fe
->demodulator_priv
;
1713 if (state
->dst_ca
) {
1714 dvb_unregister_device(state
->dst_ca
);
1715 #ifdef CONFIG_MEDIA_ATTACH
1716 symbol_put(dst_ca_attach
);
1722 static struct dvb_frontend_ops dst_dvbt_ops
;
1723 static struct dvb_frontend_ops dst_dvbs_ops
;
1724 static struct dvb_frontend_ops dst_dvbc_ops
;
1725 static struct dvb_frontend_ops dst_atsc_ops
;
1727 struct dst_state
*dst_attach(struct dst_state
*state
, struct dvb_adapter
*dvb_adapter
)
1729 /* check if the ASIC is there */
1730 if (dst_probe(state
) < 0) {
1734 /* determine settings based on type */
1735 /* create dvb_frontend */
1736 switch (state
->dst_type
) {
1737 case DST_TYPE_IS_TERR
:
1738 memcpy(&state
->frontend
.ops
, &dst_dvbt_ops
, sizeof(struct dvb_frontend_ops
));
1740 case DST_TYPE_IS_CABLE
:
1741 memcpy(&state
->frontend
.ops
, &dst_dvbc_ops
, sizeof(struct dvb_frontend_ops
));
1743 case DST_TYPE_IS_SAT
:
1744 memcpy(&state
->frontend
.ops
, &dst_dvbs_ops
, sizeof(struct dvb_frontend_ops
));
1746 case DST_TYPE_IS_ATSC
:
1747 memcpy(&state
->frontend
.ops
, &dst_atsc_ops
, sizeof(struct dvb_frontend_ops
));
1750 dprintk(verbose
, DST_ERROR
, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
1754 state
->frontend
.demodulator_priv
= state
;
1756 return state
; /* Manu (DST is a card not a frontend) */
1759 EXPORT_SYMBOL(dst_attach
);
1761 static struct dvb_frontend_ops dst_dvbt_ops
= {
1762 .delsys
= { SYS_DVBT
},
1764 .name
= "DST DVB-T",
1765 .frequency_min
= 137000000,
1766 .frequency_max
= 858000000,
1767 .frequency_stepsize
= 166667,
1768 .caps
= FE_CAN_FEC_AUTO
|
1775 FE_CAN_TRANSMISSION_MODE_AUTO
|
1776 FE_CAN_GUARD_INTERVAL_AUTO
1779 .release
= dst_release
,
1781 .tune
= dst_tune_frontend
,
1782 .set_frontend
= dst_set_frontend
,
1783 .get_frontend
= dst_get_frontend
,
1784 .get_frontend_algo
= dst_get_tuning_algo
,
1785 .read_status
= dst_read_status
,
1786 .read_signal_strength
= dst_read_signal_strength
,
1787 .read_snr
= dst_read_snr
,
1790 static struct dvb_frontend_ops dst_dvbs_ops
= {
1791 .delsys
= { SYS_DVBS
},
1793 .name
= "DST DVB-S",
1794 .frequency_min
= 950000,
1795 .frequency_max
= 2150000,
1796 .frequency_stepsize
= 1000, /* kHz for QPSK frontends */
1797 .frequency_tolerance
= 29500,
1798 .symbol_rate_min
= 1000000,
1799 .symbol_rate_max
= 45000000,
1800 /* . symbol_rate_tolerance = ???,*/
1801 .caps
= FE_CAN_FEC_AUTO
| FE_CAN_QPSK
1804 .release
= dst_release
,
1806 .tune
= dst_tune_frontend
,
1807 .set_frontend
= dst_set_frontend
,
1808 .get_frontend
= dst_get_frontend
,
1809 .get_frontend_algo
= dst_get_tuning_algo
,
1810 .read_status
= dst_read_status
,
1811 .read_signal_strength
= dst_read_signal_strength
,
1812 .read_snr
= dst_read_snr
,
1813 .diseqc_send_burst
= dst_send_burst
,
1814 .diseqc_send_master_cmd
= dst_set_diseqc
,
1815 .set_voltage
= dst_set_voltage
,
1816 .set_tone
= dst_set_tone
,
1819 static struct dvb_frontend_ops dst_dvbc_ops
= {
1820 .delsys
= { SYS_DVBC_ANNEX_A
},
1822 .name
= "DST DVB-C",
1823 .frequency_stepsize
= 62500,
1824 .frequency_min
= 51000000,
1825 .frequency_max
= 858000000,
1826 .symbol_rate_min
= 1000000,
1827 .symbol_rate_max
= 45000000,
1828 .caps
= FE_CAN_FEC_AUTO
|
1837 .release
= dst_release
,
1839 .tune
= dst_tune_frontend
,
1840 .set_frontend
= dst_set_frontend
,
1841 .get_frontend
= dst_get_frontend
,
1842 .get_frontend_algo
= dst_get_tuning_algo
,
1843 .read_status
= dst_read_status
,
1844 .read_signal_strength
= dst_read_signal_strength
,
1845 .read_snr
= dst_read_snr
,
1848 static struct dvb_frontend_ops dst_atsc_ops
= {
1849 .delsys
= { SYS_ATSC
},
1852 .frequency_stepsize
= 62500,
1853 .frequency_min
= 510000000,
1854 .frequency_max
= 858000000,
1855 .symbol_rate_min
= 1000000,
1856 .symbol_rate_max
= 45000000,
1857 .caps
= FE_CAN_FEC_AUTO
| FE_CAN_QAM_AUTO
| FE_CAN_QAM_64
| FE_CAN_QAM_256
| FE_CAN_8VSB
1860 .release
= dst_release
,
1862 .tune
= dst_tune_frontend
,
1863 .set_frontend
= dst_set_frontend
,
1864 .get_frontend
= dst_get_frontend
,
1865 .get_frontend_algo
= dst_get_tuning_algo
,
1866 .read_status
= dst_read_status
,
1867 .read_signal_strength
= dst_read_signal_strength
,
1868 .read_snr
= dst_read_snr
,
1871 MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
1872 MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1873 MODULE_LICENSE("GPL");