3 Frontend/Card driver for TwinHan DST Frontend
4 Copyright (C) 2003 Jamie Honan
5 Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.com)
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.
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.
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.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/string.h>
27 #include <linux/slab.h>
28 #include <linux/vmalloc.h>
29 #include <linux/delay.h>
30 #include <asm/div64.h>
32 #include "dvb_frontend.h"
34 #include "dst_common.h"
37 static unsigned int verbose
= 1;
38 module_param(verbose
, int, 0644);
39 MODULE_PARM_DESC(verbose
, "verbose startup messages, default is 1 (yes)");
41 static unsigned int debug
= 1;
42 module_param(debug
, int, 0644);
43 MODULE_PARM_DESC(debug
, "debug messages, default is 0 (yes)");
45 static unsigned int dst_addons
;
46 module_param(dst_addons
, int, 0644);
47 MODULE_PARM_DESC(dst_addons
, "CA daughterboard, default is 0 (No addons)");
49 #define dprintk if (debug) printk
52 #define ATTEMPT_TUNE 2
55 static void dst_packsize(struct dst_state
* state
, int psize
)
57 union dst_gpio_packet bits
;
60 bt878_device_control(state
->bt
, DST_IG_TS
, &bits
);
63 int dst_gpio_outb(struct dst_state
* state
, u32 mask
, u32 enbb
, u32 outhigh
, int delay
)
65 union dst_gpio_packet enb
;
66 union dst_gpio_packet bits
;
70 enb
.enb
.enable
= enbb
;
72 dprintk("%s: mask=[%04x], enbb=[%04x], outhigh=[%04x]\n", __FUNCTION__
, mask
, enbb
, outhigh
);
74 if ((err
= bt878_device_control(state
->bt
, DST_IG_ENABLE
, &enb
)) < 0) {
75 dprintk("%s: dst_gpio_enb error (err == %i, mask == %02x, enb == %02x)\n", __FUNCTION__
, err
, mask
, enbb
);
79 /* because complete disabling means no output, no need to do output packet */
86 bits
.outp
.mask
= enbb
;
87 bits
.outp
.highvals
= outhigh
;
89 if ((err
= bt878_device_control(state
->bt
, DST_IG_WRITE
, &bits
)) < 0) {
90 dprintk("%s: dst_gpio_outb error (err == %i, enbb == %02x, outhigh == %02x)\n", __FUNCTION__
, err
, enbb
, outhigh
);
95 EXPORT_SYMBOL(dst_gpio_outb
);
97 int dst_gpio_inb(struct dst_state
*state
, u8
* result
)
99 union dst_gpio_packet rd_packet
;
104 if ((err
= bt878_device_control(state
->bt
, DST_IG_READ
, &rd_packet
)) < 0) {
105 dprintk("%s: dst_gpio_inb error (err == %i)\n", __FUNCTION__
, err
);
109 *result
= (u8
) rd_packet
.rd
.value
;
112 EXPORT_SYMBOL(dst_gpio_inb
);
114 int rdc_reset_state(struct dst_state
*state
)
117 dprintk("%s: Resetting state machine\n", __FUNCTION__
);
119 if (dst_gpio_outb(state
, RDC_8820_INT
, RDC_8820_INT
, 0, NO_DELAY
) < 0) {
120 dprintk("%s: dst_gpio_outb ERROR !\n", __FUNCTION__
);
126 if (dst_gpio_outb(state
, RDC_8820_INT
, RDC_8820_INT
, RDC_8820_INT
, NO_DELAY
) < 0) {
127 dprintk("%s: dst_gpio_outb ERROR !\n", __FUNCTION__
);
134 EXPORT_SYMBOL(rdc_reset_state
);
136 int rdc_8820_reset(struct dst_state
*state
)
139 dprintk("%s: Resetting DST\n", __FUNCTION__
);
141 if (dst_gpio_outb(state
, RDC_8820_RESET
, RDC_8820_RESET
, 0, NO_DELAY
) < 0) {
142 dprintk("%s: dst_gpio_outb ERROR !\n", __FUNCTION__
);
146 if (dst_gpio_outb(state
, RDC_8820_RESET
, RDC_8820_RESET
, RDC_8820_RESET
, DELAY
) < 0) {
147 dprintk("%s: dst_gpio_outb ERROR !\n", __FUNCTION__
);
153 EXPORT_SYMBOL(rdc_8820_reset
);
155 int dst_pio_enable(struct dst_state
*state
)
157 if (dst_gpio_outb(state
, ~0, RDC_8820_PIO_0_ENABLE
, 0, NO_DELAY
) < 0) {
158 dprintk("%s: dst_gpio_outb ERROR !\n", __FUNCTION__
);
164 EXPORT_SYMBOL(dst_pio_enable
);
166 int dst_pio_disable(struct dst_state
*state
)
168 if (dst_gpio_outb(state
, ~0, RDC_8820_PIO_0_DISABLE
, RDC_8820_PIO_0_DISABLE
, NO_DELAY
) < 0) {
169 dprintk("%s: dst_gpio_outb ERROR !\n", __FUNCTION__
);
172 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
177 EXPORT_SYMBOL(dst_pio_disable
);
179 int dst_wait_dst_ready(struct dst_state
*state
, u8 delay_mode
)
184 for (i
= 0; i
< 200; i
++) {
185 if (dst_gpio_inb(state
, &reply
) < 0) {
186 dprintk("%s: dst_gpio_inb ERROR !\n", __FUNCTION__
);
190 if ((reply
& RDC_8820_PIO_0_ENABLE
) == 0) {
192 dprintk("%s: dst wait ready after %d\n", __FUNCTION__
, i
);
198 dprintk("%s: dst wait NOT ready after %d\n", __FUNCTION__
, i
);
202 EXPORT_SYMBOL(dst_wait_dst_ready
);
204 int dst_error_recovery(struct dst_state
*state
)
206 dprintk("%s: Trying to return from previous errors...\n", __FUNCTION__
);
207 dst_pio_disable(state
);
209 dst_pio_enable(state
);
214 EXPORT_SYMBOL(dst_error_recovery
);
216 int dst_error_bailout(struct dst_state
*state
)
218 dprintk("%s: Trying to bailout from previous error...\n", __FUNCTION__
);
219 rdc_8820_reset(state
);
220 dst_pio_disable(state
);
225 EXPORT_SYMBOL(dst_error_bailout
);
228 int dst_comm_init(struct dst_state
* state
)
231 dprintk ("%s: Initializing DST..\n", __FUNCTION__
);
232 if ((dst_pio_enable(state
)) < 0) {
233 dprintk("%s: PIO Enable Failed.\n", __FUNCTION__
);
236 if ((rdc_reset_state(state
)) < 0) {
237 dprintk("%s: RDC 8820 State RESET Failed.\n", __FUNCTION__
);
240 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
247 EXPORT_SYMBOL(dst_comm_init
);
250 int write_dst(struct dst_state
*state
, u8
*data
, u8 len
)
252 struct i2c_msg msg
= {
253 .addr
= state
->config
->demod_address
,.flags
= 0,.buf
= data
,.len
= len
258 if (debug
&& (verbose
> 4)) {
261 dprintk("%s writing", __FUNCTION__
);
262 for (i
= 0; i
< len
; i
++)
263 dprintk(" %02x", data
[i
]);
267 for (cnt
= 0; cnt
< 2; cnt
++) {
268 if ((err
= i2c_transfer(state
->i2c
, &msg
, 1)) < 0) {
269 dprintk("%s: _write_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)\n", __FUNCTION__
, err
, len
, data
[0]);
270 dst_error_recovery(state
);
278 printk("%s: RDC 8820 RESET...\n", __FUNCTION__
);
279 dst_error_bailout(state
);
286 EXPORT_SYMBOL(write_dst
);
288 int read_dst(struct dst_state
*state
, u8
* ret
, u8 len
)
290 struct i2c_msg msg
= {.addr
= state
->config
->demod_address
,.flags
= I2C_M_RD
,.buf
= ret
,.len
= len
};
294 for (cnt
= 0; cnt
< 2; cnt
++) {
295 if ((err
= i2c_transfer(state
->i2c
, &msg
, 1)) < 0) {
297 dprintk("%s: read_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)\n", __FUNCTION__
, err
, len
, ret
[0]);
298 dst_error_recovery(state
);
306 printk("%s: RDC 8820 RESET...\n", __FUNCTION__
);
307 dst_error_bailout(state
);
311 if (debug
&& (verbose
> 4)) {
312 dprintk("%s reply is 0x%x\n", __FUNCTION__
, ret
[0]);
313 for (err
= 1; err
< len
; err
++)
314 dprintk(" 0x%x", ret
[err
]);
321 EXPORT_SYMBOL(read_dst
);
323 static int dst_set_freq(struct dst_state
*state
, u32 freq
)
327 state
->frequency
= freq
;
329 dprintk("%s: set Frequency %u\n", __FUNCTION__
, freq
);
331 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
333 if (freq
< 950 || freq
> 2150)
335 val
= &state
->tx_tuna
[0];
336 val
[2] = (freq
>> 8) & 0x7f;
342 } else if (state
->dst_type
== DST_TYPE_IS_TERR
) {
344 if (freq
< 137000 || freq
> 858000)
346 val
= &state
->tx_tuna
[0];
347 val
[2] = (freq
>> 16) & 0xff;
348 val
[3] = (freq
>> 8) & 0xff;
351 switch (state
->bandwidth
) {
352 case BANDWIDTH_6_MHZ
:
356 case BANDWIDTH_7_MHZ
:
361 case BANDWIDTH_8_MHZ
:
368 } else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
369 /* guess till will get one */
371 val
= &state
->tx_tuna
[0];
372 val
[2] = (freq
>> 16) & 0xff;
373 val
[3] = (freq
>> 8) & 0xff;
380 static int dst_set_bandwidth(struct dst_state
* state
, fe_bandwidth_t bandwidth
)
384 state
->bandwidth
= bandwidth
;
386 if (state
->dst_type
!= DST_TYPE_IS_TERR
)
389 val
= &state
->tx_tuna
[0];
391 case BANDWIDTH_6_MHZ
:
395 case BANDWIDTH_7_MHZ
:
399 case BANDWIDTH_8_MHZ
:
409 static int dst_set_inversion(struct dst_state
* state
, fe_spectral_inversion_t inversion
)
413 state
->inversion
= inversion
;
415 val
= &state
->tx_tuna
[0];
431 static int dst_set_fec(struct dst_state
* state
, fe_code_rate_t fec
)
437 static fe_code_rate_t
dst_get_fec(struct dst_state
* state
)
442 static int dst_set_symbolrate(struct dst_state
* state
, u32 srate
)
448 state
->symbol_rate
= srate
;
450 if (state
->dst_type
== DST_TYPE_IS_TERR
) {
454 dprintk("%s: set symrate %u\n", __FUNCTION__
, srate
);
456 val
= &state
->tx_tuna
[0];
458 if (state
->type_flags
& DST_TYPE_HAS_SYMDIV
) {
462 symcalc
= (u32
) sval
;
465 dprintk("%s: set symcalc %u\n", __FUNCTION__
, symcalc
);
467 val
[5] = (u8
) (symcalc
>> 12);
468 val
[6] = (u8
) (symcalc
>> 4);
469 val
[7] = (u8
) (symcalc
<< 4);
471 val
[5] = (u8
) (srate
>> 16) & 0x7f;
472 val
[6] = (u8
) (srate
>> 8);
481 u8
dst_check_sum(u8
* buf
, u32 len
)
487 for (i
= 0; i
< len
; i
++) {
492 EXPORT_SYMBOL(dst_check_sum
);
494 static void dst_type_flags_print(u32 type_flags
)
496 printk("DST type flags :");
497 if (type_flags
& DST_TYPE_HAS_NEWTUNE
)
498 printk(" 0x%x newtuner", DST_TYPE_HAS_NEWTUNE
);
499 if (type_flags
& DST_TYPE_HAS_TS204
)
500 printk(" 0x%x ts204", DST_TYPE_HAS_TS204
);
501 if (type_flags
& DST_TYPE_HAS_SYMDIV
)
502 printk(" 0x%x symdiv", DST_TYPE_HAS_SYMDIV
);
503 if (type_flags
& DST_TYPE_HAS_FW_1
)
504 printk(" 0x%x firmware version = 1", DST_TYPE_HAS_FW_1
);
505 if (type_flags
& DST_TYPE_HAS_FW_2
)
506 printk(" 0x%x firmware version = 2", DST_TYPE_HAS_FW_2
);
507 if (type_flags
& DST_TYPE_HAS_FW_3
)
508 printk(" 0x%x firmware version = 3", DST_TYPE_HAS_FW_3
);
509 // if ((type_flags & DST_TYPE_HAS_FW_BUILD) && new_fw)
515 static int dst_type_print (u8 type
)
519 case DST_TYPE_IS_SAT
:
523 case DST_TYPE_IS_TERR
:
524 otype
= "terrestrial";
527 case DST_TYPE_IS_CABLE
:
532 printk("%s: invalid dst type %d\n", __FUNCTION__
, type
);
535 printk("DST type : %s\n", otype
);
545 VP-1020 DST-MOT LG(old), TS=188
547 VP-1020 DST-03T LG(new), TS=204
548 VP-1022 DST-03T LG(new), TS=204
549 VP-1025 DST-03T LG(new), TS=204
551 VP-1030 DSTMCI, LG(new), TS=188
552 VP-1032 DSTMCI, LG(new), TS=188
556 VP-2030 DCT-CI, Samsung, TS=204
557 VP-2021 DCT-CI, Unknown, TS=204
558 VP-2031 DCT-CI, Philips, TS=188
559 VP-2040 DCT-CI, Philips, TS=188, with CA daughter board
560 VP-2040 DCT-CI, Philips, TS=204, without CA daughter board
564 VP-3050 DTTNXT TS=188
565 VP-3040 DTT-CI, Philips, TS=188
566 VP-3040 DTT-CI, Philips, TS=204
570 VP-3220 ATSCDI, TS=188
571 VP-3250 ATSCAD, TS=188
575 struct dst_types dst_tlist
[] = {
577 .device_id
= "200103A",
579 .dst_type
= DST_TYPE_IS_SAT
,
580 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_FW_1
,
585 .device_id
= "DST-020",
587 .dst_type
= DST_TYPE_IS_SAT
,
588 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_FW_1
,
593 .device_id
= "DST-030",
595 .dst_type
= DST_TYPE_IS_SAT
,
596 .type_flags
= DST_TYPE_HAS_TS204
| DST_TYPE_HAS_NEWTUNE
| DST_TYPE_HAS_FW_1
,
601 .device_id
= "DST-03T",
603 .dst_type
= DST_TYPE_IS_SAT
,
604 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_TS204
| DST_TYPE_HAS_FW_2
,
605 .dst_feature
= DST_TYPE_HAS_DISEQC3
| DST_TYPE_HAS_DISEQC4
| DST_TYPE_HAS_DISEQC5
606 | DST_TYPE_HAS_MAC
| DST_TYPE_HAS_MOTO
610 .device_id
= "DST-MOT",
612 .dst_type
= DST_TYPE_IS_SAT
,
613 .type_flags
= DST_TYPE_HAS_SYMDIV
| DST_TYPE_HAS_FW_1
,
618 .device_id
= "DST-CI",
620 .dst_type
= DST_TYPE_IS_SAT
,
621 .type_flags
= DST_TYPE_HAS_TS204
| DST_TYPE_HAS_NEWTUNE
| DST_TYPE_HAS_FW_1
,
622 .dst_feature
= DST_TYPE_HAS_CA
623 }, /* An OEM board */
626 .device_id
= "DSTMCI",
628 .dst_type
= DST_TYPE_IS_SAT
,
629 .type_flags
= DST_TYPE_HAS_NEWTUNE
| DST_TYPE_HAS_FW_2
| DST_TYPE_HAS_FW_BUILD
,
630 .dst_feature
= DST_TYPE_HAS_CA
| DST_TYPE_HAS_DISEQC3
| DST_TYPE_HAS_DISEQC4
631 | DST_TYPE_HAS_MOTO
| DST_TYPE_HAS_MAC
635 .device_id
= "DSTFCI",
637 .dst_type
= DST_TYPE_IS_SAT
,
638 .type_flags
= DST_TYPE_HAS_NEWTUNE
| DST_TYPE_HAS_FW_1
,
640 }, /* unknown to vendor */
643 .device_id
= "DCT-CI",
645 .dst_type
= DST_TYPE_IS_CABLE
,
646 .type_flags
= DST_TYPE_HAS_TS204
| DST_TYPE_HAS_NEWTUNE
| DST_TYPE_HAS_FW_1
647 | DST_TYPE_HAS_FW_2
| DST_TYPE_HAS_FW_BUILD
,
648 .dst_feature
= DST_TYPE_HAS_CA
652 .device_id
= "DCTNEW",
654 .dst_type
= DST_TYPE_IS_CABLE
,
655 .type_flags
= DST_TYPE_HAS_NEWTUNE
| DST_TYPE_HAS_FW_3
,
660 .device_id
= "DTT-CI",
662 .dst_type
= DST_TYPE_IS_TERR
,
663 .type_flags
= DST_TYPE_HAS_TS204
| DST_TYPE_HAS_FW_2
| DST_TYPE_HAS_FW_BUILD
,
668 .device_id
= "DTTDIG",
670 .dst_type
= DST_TYPE_IS_TERR
,
671 .type_flags
= DST_TYPE_HAS_FW_2
,
676 .device_id
= "DTTNXT",
678 .dst_type
= DST_TYPE_IS_TERR
,
679 .type_flags
= DST_TYPE_HAS_FW_2
,
680 .dst_feature
= DST_TYPE_HAS_ANALOG
684 .device_id
= "ATSCDI",
686 .dst_type
= DST_TYPE_IS_ATSC
,
687 .type_flags
= DST_TYPE_HAS_FW_2
,
692 .device_id
= "ATSCAD",
694 .dst_type
= DST_TYPE_IS_ATSC
,
695 .type_flags
= DST_TYPE_HAS_FW_2
,
704 static int dst_get_device_id(struct dst_state
*state
)
709 struct dst_types
*p_dst_type
;
711 u32 use_type_flags
= 0;
713 static u8 device_type
[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
715 device_type
[7] = dst_check_sum(device_type
, 7);
717 if (write_dst(state
, device_type
, FIXED_COMM
))
718 return -1; /* Write failed */
720 if ((dst_pio_disable(state
)) < 0)
723 if (read_dst(state
, &reply
, GET_ACK
))
724 return -1; /* Read failure */
727 dprintk("%s: Write not Acknowledged! [Reply=0x%02x]\n", __FUNCTION__
, reply
);
728 return -1; /* Unack'd write */
731 if (!dst_wait_dst_ready(state
, DEVICE_INIT
))
732 return -1; /* DST not ready yet */
734 if (read_dst(state
, state
->rxbuffer
, FIXED_COMM
))
737 dst_pio_disable(state
);
739 if (state
->rxbuffer
[7] != dst_check_sum(state
->rxbuffer
, 7)) {
740 dprintk("%s: Checksum failure! \n", __FUNCTION__
);
741 return -1; /* Checksum failure */
744 state
->rxbuffer
[7] = '\0';
746 for (i
= 0, p_dst_type
= dst_tlist
; i
< ARRAY_SIZE (dst_tlist
); i
++, p_dst_type
++) {
747 if (!strncmp (&state
->rxbuffer
[p_dst_type
->offset
], p_dst_type
->device_id
, strlen (p_dst_type
->device_id
))) {
748 use_type_flags
= p_dst_type
->type_flags
;
749 use_dst_type
= p_dst_type
->dst_type
;
751 /* Card capabilities */
752 state
->dst_hw_cap
= p_dst_type
->dst_feature
;
753 printk ("%s: Recognise [%s]\n", __FUNCTION__
, p_dst_type
->device_id
);
759 if (i
>= sizeof (dst_tlist
) / sizeof (dst_tlist
[0])) {
760 printk("%s: Unable to recognize %s or %s\n", __FUNCTION__
, &state
->rxbuffer
[0], &state
->rxbuffer
[1]);
761 printk("%s: please email linux-dvb@linuxtv.org with this type in\n", __FUNCTION__
);
762 use_dst_type
= DST_TYPE_IS_SAT
;
763 use_type_flags
= DST_TYPE_HAS_SYMDIV
;
766 dst_type_print(use_dst_type
);
767 state
->type_flags
= use_type_flags
;
768 state
->dst_type
= use_dst_type
;
769 dst_type_flags_print(state
->type_flags
);
771 if (state
->type_flags
& DST_TYPE_HAS_TS204
) {
772 dst_packsize(state
, 204);
778 static int dst_probe(struct dst_state
*state
)
780 if ((rdc_8820_reset(state
)) < 0) {
781 dprintk("%s: RDC 8820 RESET Failed.\n", __FUNCTION__
);
784 if (dst_addons
& DST_TYPE_HAS_CA
)
789 if ((dst_comm_init(state
)) < 0) {
790 dprintk("%s: DST Initialization Failed.\n", __FUNCTION__
);
794 if (dst_get_device_id(state
) < 0) {
795 dprintk("%s: unknown device.\n", __FUNCTION__
);
802 int dst_command(struct dst_state
* state
, u8
* data
, u8 len
)
805 if ((dst_comm_init(state
)) < 0) {
806 dprintk("%s: DST Communication Initialization Failed.\n", __FUNCTION__
);
810 if (write_dst(state
, data
, len
)) {
812 dprintk("%s: Tring to recover.. \n", __FUNCTION__
);
813 if ((dst_error_recovery(state
)) < 0) {
814 dprintk("%s: Recovery Failed.\n", __FUNCTION__
);
819 if ((dst_pio_disable(state
)) < 0) {
820 dprintk("%s: PIO Disable Failed.\n", __FUNCTION__
);
823 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
826 if (read_dst(state
, &reply
, GET_ACK
)) {
828 dprintk("%s: Trying to recover.. \n", __FUNCTION__
);
829 if ((dst_error_recovery(state
)) < 0) {
830 dprintk("%s: Recovery Failed.\n", __FUNCTION__
);
837 dprintk("%s: write not acknowledged 0x%02x \n", __FUNCTION__
, reply
);
840 if (len
>= 2 && data
[0] == 0 && (data
[1] == 1 || data
[1] == 3))
844 if (state
->type_flags
& DST_TYPE_HAS_FW_1
)
849 if (!dst_wait_dst_ready(state
, NO_DELAY
))
852 if (read_dst(state
, state
->rxbuffer
, FIXED_COMM
)) {
854 dprintk("%s: Trying to recover.. \n", __FUNCTION__
);
855 if ((dst_error_recovery(state
)) < 0) {
856 dprintk("%s: Recovery failed.\n", __FUNCTION__
);
862 if (state
->rxbuffer
[7] != dst_check_sum(state
->rxbuffer
, 7)) {
863 dprintk("%s: checksum failure\n", __FUNCTION__
);
869 EXPORT_SYMBOL(dst_command
);
871 static int dst_get_signal(struct dst_state
* state
)
874 u8 get_signal
[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
876 if ((state
->diseq_flags
& ATTEMPT_TUNE
) == 0) {
877 state
->decode_lock
= state
->decode_strength
= state
->decode_snr
= 0;
880 if (0 == (state
->diseq_flags
& HAS_LOCK
)) {
881 state
->decode_lock
= state
->decode_strength
= state
->decode_snr
= 0;
884 if (time_after_eq(jiffies
, state
->cur_jiff
+ (HZ
/ 5))) {
885 retval
= dst_command(state
, get_signal
, 8);
888 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
889 state
->decode_lock
= ((state
->rxbuffer
[6] & 0x10) == 0) ? 1 : 0;
890 state
->decode_strength
= state
->rxbuffer
[5] << 8;
891 state
->decode_snr
= state
->rxbuffer
[2] << 8 | state
->rxbuffer
[3];
892 } else if ((state
->dst_type
== DST_TYPE_IS_TERR
) || (state
->dst_type
== DST_TYPE_IS_CABLE
)) {
893 state
->decode_lock
= (state
->rxbuffer
[1]) ? 1 : 0;
894 state
->decode_strength
= state
->rxbuffer
[4] << 8;
895 state
->decode_snr
= state
->rxbuffer
[3] << 8;
897 state
->cur_jiff
= jiffies
;
902 static int dst_tone_power_cmd(struct dst_state
* state
)
904 u8 paket
[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
906 if (state
->dst_type
== DST_TYPE_IS_TERR
)
909 if (state
->voltage
== SEC_VOLTAGE_OFF
)
914 if (state
->tone
== SEC_TONE_ON
)
918 if (state
->minicmd
== SEC_MINI_A
)
923 paket
[7] = dst_check_sum (paket
, 7);
924 dst_command(state
, paket
, 8);
928 static int dst_get_tuna(struct dst_state
* state
)
932 if ((state
->diseq_flags
& ATTEMPT_TUNE
) == 0)
935 state
->diseq_flags
&= ~(HAS_LOCK
);
936 if (!dst_wait_dst_ready(state
, NO_DELAY
))
939 if (state
->type_flags
& DST_TYPE_HAS_NEWTUNE
) {
940 /* how to get variable length reply ???? */
941 retval
= read_dst(state
, state
->rx_tuna
, 10);
943 retval
= read_dst(state
, &state
->rx_tuna
[2], FIXED_COMM
);
947 dprintk("%s: read not successful\n", __FUNCTION__
);
951 if (state
->type_flags
& DST_TYPE_HAS_NEWTUNE
) {
952 if (state
->rx_tuna
[9] != dst_check_sum(&state
->rx_tuna
[0], 9)) {
953 dprintk("%s: checksum failure?\n", __FUNCTION__
);
957 if (state
->rx_tuna
[9] != dst_check_sum(&state
->rx_tuna
[2], 7)) {
958 dprintk("%s: checksum failure?\n", __FUNCTION__
);
962 if (state
->rx_tuna
[2] == 0 && state
->rx_tuna
[3] == 0)
964 state
->decode_freq
= ((state
->rx_tuna
[2] & 0x7f) << 8) + state
->rx_tuna
[3];
966 state
->decode_lock
= 1;
968 dst->decode_n1 = (dst->rx_tuna[4] << 8) +
971 dst->decode_n2 = (dst->rx_tuna[8] << 8) +
974 state
->diseq_flags
|= HAS_LOCK
;
975 /* dst->cur_jiff = jiffies; */
979 static int dst_set_voltage(struct dvb_frontend
* fe
, fe_sec_voltage_t voltage
);
981 static int dst_write_tuna(struct dvb_frontend
* fe
)
983 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
988 dprintk("%s: type_flags 0x%x \n", __FUNCTION__
, state
->type_flags
);
990 state
->decode_freq
= 0;
991 state
->decode_lock
= state
->decode_strength
= state
->decode_snr
= 0;
992 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
993 if (!(state
->diseq_flags
& HAS_POWER
))
994 dst_set_voltage(fe
, SEC_VOLTAGE_13
);
996 state
->diseq_flags
&= ~(HAS_LOCK
| ATTEMPT_TUNE
);
998 if ((dst_comm_init(state
)) < 0) {
999 dprintk("%s: DST Communication initialization failed.\n", __FUNCTION__
);
1003 if (state
->type_flags
& DST_TYPE_HAS_NEWTUNE
) {
1004 state
->tx_tuna
[9] = dst_check_sum(&state
->tx_tuna
[0], 9);
1005 retval
= write_dst(state
, &state
->tx_tuna
[0], 10);
1008 state
->tx_tuna
[9] = dst_check_sum(&state
->tx_tuna
[2], 7);
1009 retval
= write_dst(state
, &state
->tx_tuna
[2], FIXED_COMM
);
1012 dst_pio_disable(state
);
1013 dprintk("%s: write not successful\n", __FUNCTION__
);
1017 if ((dst_pio_disable(state
)) < 0) {
1018 dprintk("%s: DST PIO disable failed !\n", __FUNCTION__
);
1022 if ((read_dst(state
, &reply
, GET_ACK
) < 0)) {
1023 dprintk("%s: read verify not successful.\n", __FUNCTION__
);
1027 dprintk("%s: write not acknowledged 0x%02x \n", __FUNCTION__
, reply
);
1030 state
->diseq_flags
|= ATTEMPT_TUNE
;
1032 return dst_get_tuna(state
);
1036 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1037 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1038 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1039 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1040 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1041 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1042 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1043 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1044 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1045 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1046 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1049 static int dst_set_diseqc(struct dvb_frontend
* fe
, struct dvb_diseqc_master_cmd
* cmd
)
1051 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1052 u8 paket
[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1054 if (state
->dst_type
== DST_TYPE_IS_TERR
)
1057 if (cmd
->msg_len
== 0 || cmd
->msg_len
> 4)
1059 memcpy(&paket
[3], cmd
->msg
, cmd
->msg_len
);
1060 paket
[7] = dst_check_sum(&paket
[0], 7);
1061 dst_command(state
, paket
, 8);
1065 static int dst_set_voltage(struct dvb_frontend
* fe
, fe_sec_voltage_t voltage
)
1069 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1071 state
->voltage
= voltage
;
1073 if (state
->dst_type
== DST_TYPE_IS_TERR
)
1077 val
= &state
->tx_tuna
[0];
1080 case SEC_VOLTAGE_13
:
1081 if ((state
->diseq_flags
& HAS_POWER
) == 0)
1083 state
->diseq_flags
|= HAS_POWER
;
1086 case SEC_VOLTAGE_18
:
1087 if ((state
->diseq_flags
& HAS_POWER
) == 0)
1089 state
->diseq_flags
|= HAS_POWER
;
1093 case SEC_VOLTAGE_OFF
:
1095 state
->diseq_flags
&= ~(HAS_POWER
| HAS_LOCK
| ATTEMPT_TUNE
);
1102 dst_tone_power_cmd(state
);
1107 static int dst_set_tone(struct dvb_frontend
* fe
, fe_sec_tone_mode_t tone
)
1110 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1114 if (state
->dst_type
== DST_TYPE_IS_TERR
)
1117 val
= &state
->tx_tuna
[0];
1132 dst_tone_power_cmd(state
);
1137 static int dst_init(struct dvb_frontend
* fe
)
1139 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1140 static u8 ini_satci_tuna
[] = { 9, 0, 3, 0xb6, 1, 0, 0x73, 0x21, 0, 0 };
1141 static u8 ini_satfta_tuna
[] = { 0, 0, 3, 0xb6, 1, 0x55, 0xbd, 0x50, 0, 0 };
1142 static u8 ini_tvfta_tuna
[] = { 0, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 };
1143 static u8 ini_tvci_tuna
[] = { 9, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 };
1144 static u8 ini_cabfta_tuna
[] = { 0, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 };
1145 static u8 ini_cabci_tuna
[] = { 9, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 };
1146 state
->inversion
= INVERSION_ON
;
1147 state
->voltage
= SEC_VOLTAGE_13
;
1148 state
->tone
= SEC_TONE_OFF
;
1149 state
->symbol_rate
= 29473000;
1150 state
->fec
= FEC_AUTO
;
1151 state
->diseq_flags
= 0;
1153 state
->bandwidth
= BANDWIDTH_7_MHZ
;
1154 state
->cur_jiff
= jiffies
;
1155 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1156 state
->frequency
= 950000;
1157 memcpy(state
->tx_tuna
, ((state
->type_flags
& DST_TYPE_HAS_NEWTUNE
) ? ini_satci_tuna
: ini_satfta_tuna
), sizeof(ini_satfta_tuna
));
1158 } else if (state
->dst_type
== DST_TYPE_IS_TERR
) {
1159 state
->frequency
= 137000000;
1160 memcpy(state
->tx_tuna
, ((state
->type_flags
& DST_TYPE_HAS_NEWTUNE
) ? ini_tvci_tuna
: ini_tvfta_tuna
), sizeof(ini_tvfta_tuna
));
1161 } else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
1162 state
->frequency
= 51000000;
1163 memcpy(state
->tx_tuna
, ((state
->type_flags
& DST_TYPE_HAS_NEWTUNE
) ? ini_cabci_tuna
: ini_cabfta_tuna
), sizeof(ini_cabfta_tuna
));
1169 static int dst_read_status(struct dvb_frontend
* fe
, fe_status_t
* status
)
1171 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1174 if (state
->diseq_flags
& HAS_LOCK
) {
1175 dst_get_signal(state
);
1176 if (state
->decode_lock
)
1177 *status
|= FE_HAS_LOCK
| FE_HAS_SIGNAL
| FE_HAS_CARRIER
| FE_HAS_SYNC
| FE_HAS_VITERBI
;
1183 static int dst_read_signal_strength(struct dvb_frontend
* fe
, u16
* strength
)
1185 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1187 dst_get_signal(state
);
1188 *strength
= state
->decode_strength
;
1193 static int dst_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
1195 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1197 dst_get_signal(state
);
1198 *snr
= state
->decode_snr
;
1203 static int dst_set_frontend(struct dvb_frontend
* fe
, struct dvb_frontend_parameters
*p
)
1205 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1207 dst_set_freq(state
, p
->frequency
);
1209 dprintk("Set Frequency = [%d]\n", p
->frequency
);
1211 dst_set_inversion(state
, p
->inversion
);
1212 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1213 dst_set_fec(state
, p
->u
.qpsk
.fec_inner
);
1214 dst_set_symbolrate(state
, p
->u
.qpsk
.symbol_rate
);
1216 dprintk("Set Symbolrate = [%d]\n", p
->u
.qpsk
.symbol_rate
);
1218 } else if (state
->dst_type
== DST_TYPE_IS_TERR
) {
1219 dst_set_bandwidth(state
, p
->u
.ofdm
.bandwidth
);
1220 } else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
1221 dst_set_fec(state
, p
->u
.qam
.fec_inner
);
1222 dst_set_symbolrate(state
, p
->u
.qam
.symbol_rate
);
1229 static int dst_get_frontend(struct dvb_frontend
* fe
, struct dvb_frontend_parameters
*p
)
1231 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1233 p
->frequency
= state
->decode_freq
;
1234 p
->inversion
= state
->inversion
;
1235 if (state
->dst_type
== DST_TYPE_IS_SAT
) {
1236 p
->u
.qpsk
.symbol_rate
= state
->symbol_rate
;
1237 p
->u
.qpsk
.fec_inner
= dst_get_fec(state
);
1238 } else if (state
->dst_type
== DST_TYPE_IS_TERR
) {
1239 p
->u
.ofdm
.bandwidth
= state
->bandwidth
;
1240 } else if (state
->dst_type
== DST_TYPE_IS_CABLE
) {
1241 p
->u
.qam
.symbol_rate
= state
->symbol_rate
;
1242 p
->u
.qam
.fec_inner
= dst_get_fec(state
);
1243 p
->u
.qam
.modulation
= QAM_AUTO
;
1249 static void dst_release(struct dvb_frontend
* fe
)
1251 struct dst_state
* state
= (struct dst_state
*) fe
->demodulator_priv
;
1255 static struct dvb_frontend_ops dst_dvbt_ops
;
1256 static struct dvb_frontend_ops dst_dvbs_ops
;
1257 static struct dvb_frontend_ops dst_dvbc_ops
;
1259 struct dst_state
* dst_attach(struct dst_state
*state
, struct dvb_adapter
*dvb_adapter
)
1262 /* check if the ASIC is there */
1263 if (dst_probe(state
) < 0) {
1269 /* determine settings based on type */
1270 switch (state
->dst_type
) {
1271 case DST_TYPE_IS_TERR
:
1272 memcpy(&state
->ops
, &dst_dvbt_ops
, sizeof(struct dvb_frontend_ops
));
1275 case DST_TYPE_IS_CABLE
:
1276 memcpy(&state
->ops
, &dst_dvbc_ops
, sizeof(struct dvb_frontend_ops
));
1279 case DST_TYPE_IS_SAT
:
1280 memcpy(&state
->ops
, &dst_dvbs_ops
, sizeof(struct dvb_frontend_ops
));
1284 printk("%s: unknown DST type. please report to the LinuxTV.org DVB mailinglist.\n", __FUNCTION__
);
1291 /* create dvb_frontend */
1292 state
->frontend
.ops
= &state
->ops
;
1293 state
->frontend
.demodulator_priv
= state
;
1295 return state
; /* Manu (DST is a card not a frontend) */
1298 EXPORT_SYMBOL(dst_attach
);
1300 static struct dvb_frontend_ops dst_dvbt_ops
= {
1303 .name
= "DST DVB-T",
1305 .frequency_min
= 137000000,
1306 .frequency_max
= 858000000,
1307 .frequency_stepsize
= 166667,
1308 .caps
= FE_CAN_FEC_AUTO
| FE_CAN_QAM_AUTO
| FE_CAN_TRANSMISSION_MODE_AUTO
| FE_CAN_GUARD_INTERVAL_AUTO
1311 .release
= dst_release
,
1315 .set_frontend
= dst_set_frontend
,
1316 .get_frontend
= dst_get_frontend
,
1318 .read_status
= dst_read_status
,
1319 .read_signal_strength
= dst_read_signal_strength
,
1320 .read_snr
= dst_read_snr
,
1323 static struct dvb_frontend_ops dst_dvbs_ops
= {
1326 .name
= "DST DVB-S",
1328 .frequency_min
= 950000,
1329 .frequency_max
= 2150000,
1330 .frequency_stepsize
= 1000, /* kHz for QPSK frontends */
1331 .frequency_tolerance
= 29500,
1332 .symbol_rate_min
= 1000000,
1333 .symbol_rate_max
= 45000000,
1334 /* . symbol_rate_tolerance = ???,*/
1335 .caps
= FE_CAN_FEC_AUTO
| FE_CAN_QPSK
1338 .release
= dst_release
,
1342 .set_frontend
= dst_set_frontend
,
1343 .get_frontend
= dst_get_frontend
,
1345 .read_status
= dst_read_status
,
1346 .read_signal_strength
= dst_read_signal_strength
,
1347 .read_snr
= dst_read_snr
,
1349 .diseqc_send_burst
= dst_set_tone
,
1350 .diseqc_send_master_cmd
= dst_set_diseqc
,
1351 .set_voltage
= dst_set_voltage
,
1352 .set_tone
= dst_set_tone
,
1355 static struct dvb_frontend_ops dst_dvbc_ops
= {
1358 .name
= "DST DVB-C",
1360 .frequency_stepsize
= 62500,
1361 .frequency_min
= 51000000,
1362 .frequency_max
= 858000000,
1363 .symbol_rate_min
= 1000000,
1364 .symbol_rate_max
= 45000000,
1365 /* . symbol_rate_tolerance = ???,*/
1366 .caps
= FE_CAN_FEC_AUTO
| FE_CAN_QAM_AUTO
1369 .release
= dst_release
,
1373 .set_frontend
= dst_set_frontend
,
1374 .get_frontend
= dst_get_frontend
,
1376 .read_status
= dst_read_status
,
1377 .read_signal_strength
= dst_read_signal_strength
,
1378 .read_snr
= dst_read_snr
,
1382 MODULE_DESCRIPTION("DST DVB-S/T/C Combo Frontend driver");
1383 MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1384 MODULE_LICENSE("GPL");