]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/media/dvb/bt8xx/dst.c
[PATCH] dvb: dst: identify boards
[karo-tx-linux.git] / drivers / media / dvb / bt8xx / dst.c
1 /*
2         Frontend/Card driver for TwinHan DST Frontend
3         Copyright (C) 2003 Jamie Honan
4         Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.com)
5
6         This program is free software; you can redistribute it and/or modify
7         it under the terms of the GNU General Public License as published by
8         the Free Software Foundation; either version 2 of the License, or
9         (at your option) any later version.
10
11         This program is distributed in the hope that it will be useful,
12         but WITHOUT ANY WARRANTY; without even the implied warranty of
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14         GNU General Public License for more details.
15
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.
19 */
20
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"
30 #include "dst_priv.h"
31 #include "dst_common.h"
32
33 static unsigned int verbose = 1;
34 module_param(verbose, int, 0644);
35 MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)");
36
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)");
40
41 #define HAS_LOCK                1
42 #define ATTEMPT_TUNE            2
43 #define HAS_POWER               4
44
45 #define DST_ERROR               0
46 #define DST_NOTICE              1
47 #define DST_INFO                2
48 #define DST_DEBUG               3
49
50 #define dprintk(x, y, z, format, arg...) do {                                           \
51         if (z) {                                                                        \
52                 if      ((x > DST_ERROR) && (x > y))                                    \
53                         printk(KERN_ERR "%s: " format "\n", __FUNCTION__ , ##arg);      \
54                 else if ((x > DST_NOTICE) && (x > y))                                   \
55                         printk(KERN_NOTICE "%s: " format "\n", __FUNCTION__ , ##arg);   \
56                 else if ((x > DST_INFO) && (x > y))                                     \
57                         printk(KERN_INFO "%s: " format "\n", __FUNCTION__ , ##arg);     \
58                 else if ((x > DST_DEBUG) && (x > y))                                    \
59                         printk(KERN_DEBUG "%s: " format "\n", __FUNCTION__ , ##arg);    \
60         } else {                                                                        \
61                 if (x > y)                                                              \
62                         printk(format, ##arg);                                          \
63         }                                                                               \
64 } while(0)
65
66
67 static void dst_packsize(struct dst_state *state, int psize)
68 {
69         union dst_gpio_packet bits;
70
71         bits.psize = psize;
72         bt878_device_control(state->bt, DST_IG_TS, &bits);
73 }
74
75 int dst_gpio_outb(struct dst_state *state, u32 mask, u32 enbb, u32 outhigh, int delay)
76 {
77         union dst_gpio_packet enb;
78         union dst_gpio_packet bits;
79         int err;
80
81         enb.enb.mask = mask;
82         enb.enb.enable = enbb;
83
84         dprintk(verbose, DST_INFO, 1, "mask=[%04x], enbb=[%04x], outhigh=[%04x]", mask, enbb, outhigh);
85         if ((err = bt878_device_control(state->bt, DST_IG_ENABLE, &enb)) < 0) {
86                 dprintk(verbose, DST_INFO, 1, "dst_gpio_enb error (err == %i, mask == %02x, enb == %02x)", err, mask, enbb);
87                 return -EREMOTEIO;
88         }
89         udelay(1000);
90         /* because complete disabling means no output, no need to do output packet */
91         if (enbb == 0)
92                 return 0;
93         if (delay)
94                 msleep(10);
95         bits.outp.mask = enbb;
96         bits.outp.highvals = outhigh;
97         if ((err = bt878_device_control(state->bt, DST_IG_WRITE, &bits)) < 0) {
98                 dprintk(verbose, DST_INFO, 1, "dst_gpio_outb error (err == %i, enbb == %02x, outhigh == %02x)", err, enbb, outhigh);
99                 return -EREMOTEIO;
100         }
101
102         return 0;
103 }
104 EXPORT_SYMBOL(dst_gpio_outb);
105
106 int dst_gpio_inb(struct dst_state *state, u8 *result)
107 {
108         union dst_gpio_packet rd_packet;
109         int err;
110
111         *result = 0;
112         if ((err = bt878_device_control(state->bt, DST_IG_READ, &rd_packet)) < 0) {
113                 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb error (err == %i)\n", err);
114                 return -EREMOTEIO;
115         }
116         *result = (u8) rd_packet.rd.value;
117
118         return 0;
119 }
120 EXPORT_SYMBOL(dst_gpio_inb);
121
122 int rdc_reset_state(struct dst_state *state)
123 {
124         dprintk(verbose, DST_INFO, 1, "Resetting state machine");
125         if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, 0, NO_DELAY) < 0) {
126                 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
127                 return -1;
128         }
129         msleep(10);
130         if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, RDC_8820_INT, NO_DELAY) < 0) {
131                 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
132                 msleep(10);
133                 return -1;
134         }
135
136         return 0;
137 }
138 EXPORT_SYMBOL(rdc_reset_state);
139
140 int rdc_8820_reset(struct dst_state *state)
141 {
142         dprintk(verbose, DST_DEBUG, 1, "Resetting DST");
143         if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, 0, NO_DELAY) < 0) {
144                 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
145                 return -1;
146         }
147         udelay(1000);
148         if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, RDC_8820_RESET, DELAY) < 0) {
149                 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
150                 return -1;
151         }
152
153         return 0;
154 }
155 EXPORT_SYMBOL(rdc_8820_reset);
156
157 int dst_pio_enable(struct dst_state *state)
158 {
159         if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_ENABLE, 0, NO_DELAY) < 0) {
160                 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
161                 return -1;
162         }
163         udelay(1000);
164
165         return 0;
166 }
167 EXPORT_SYMBOL(dst_pio_enable);
168
169 int dst_pio_disable(struct dst_state *state)
170 {
171         if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_DISABLE, RDC_8820_PIO_0_DISABLE, NO_DELAY) < 0) {
172                 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
173                 return -1;
174         }
175         if (state->type_flags & DST_TYPE_HAS_FW_1)
176                 udelay(1000);
177
178         return 0;
179 }
180 EXPORT_SYMBOL(dst_pio_disable);
181
182 int dst_wait_dst_ready(struct dst_state *state, u8 delay_mode)
183 {
184         u8 reply;
185         int i;
186
187         for (i = 0; i < 200; i++) {
188                 if (dst_gpio_inb(state, &reply) < 0) {
189                         dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb ERROR !");
190                         return -1;
191                 }
192                 if ((reply & RDC_8820_PIO_0_ENABLE) == 0) {
193                         dprintk(verbose, DST_INFO, 1, "dst wait ready after %d", i);
194                         return 1;
195                 }
196                 msleep(10);
197         }
198         dprintk(verbose, DST_NOTICE, 1, "dst wait NOT ready after %d", i);
199
200         return 0;
201 }
202 EXPORT_SYMBOL(dst_wait_dst_ready);
203
204 int dst_error_recovery(struct dst_state *state)
205 {
206         dprintk(verbose, DST_NOTICE, 1, "Trying to return from previous errors.");
207         dst_pio_disable(state);
208         msleep(10);
209         dst_pio_enable(state);
210         msleep(10);
211
212         return 0;
213 }
214 EXPORT_SYMBOL(dst_error_recovery);
215
216 int dst_error_bailout(struct dst_state *state)
217 {
218         dprintk(verbose, DST_INFO, 1, "Trying to bailout from previous error.");
219         rdc_8820_reset(state);
220         dst_pio_disable(state);
221         msleep(10);
222
223         return 0;
224 }
225 EXPORT_SYMBOL(dst_error_bailout);
226
227 int dst_comm_init(struct dst_state *state)
228 {
229         dprintk(verbose, DST_INFO, 1, "Initializing DST.");
230         if ((dst_pio_enable(state)) < 0) {
231                 dprintk(verbose, DST_ERROR, 1, "PIO Enable Failed");
232                 return -1;
233         }
234         if ((rdc_reset_state(state)) < 0) {
235                 dprintk(verbose, DST_ERROR, 1, "RDC 8820 State RESET Failed.");
236                 return -1;
237         }
238         if (state->type_flags & DST_TYPE_HAS_FW_1)
239                 msleep(100);
240         else
241                 msleep(5);
242
243         return 0;
244 }
245 EXPORT_SYMBOL(dst_comm_init);
246
247 int write_dst(struct dst_state *state, u8 *data, u8 len)
248 {
249         struct i2c_msg msg = {
250                 .addr = state->config->demod_address,
251                 .flags = 0,
252                 .buf = data,
253                 .len = len
254         };
255
256         int err;
257         u8 cnt, i;
258
259         dprintk(verbose, DST_NOTICE, 0, "writing [ ");
260         for (i = 0; i < len; i++)
261                 dprintk(verbose, DST_NOTICE, 0, "%02x ", data[i]);
262         dprintk(verbose, DST_NOTICE, 0, "]\n");
263
264         for (cnt = 0; cnt < 2; cnt++) {
265                 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
266                         dprintk(verbose, DST_INFO, 1, "_write_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)", err, len, data[0]);
267                         dst_error_recovery(state);
268                         continue;
269                 } else
270                         break;
271         }
272         if (cnt >= 2) {
273                 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
274                 dst_error_bailout(state);
275
276                 return -1;
277         }
278
279         return 0;
280 }
281 EXPORT_SYMBOL(write_dst);
282
283 int read_dst(struct dst_state *state, u8 *ret, u8 len)
284 {
285         struct i2c_msg msg = {
286                 .addr = state->config->demod_address,
287                 .flags = I2C_M_RD,
288                 .buf = ret,
289                 .len = len
290         };
291
292         int err;
293         int cnt;
294
295         for (cnt = 0; cnt < 2; cnt++) {
296                 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
297                         dprintk(verbose, DST_INFO, 1, "read_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)", err, len, ret[0]);
298                         dst_error_recovery(state);
299                         continue;
300                 } else
301                         break;
302         }
303         if (cnt >= 2) {
304                 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
305                 dst_error_bailout(state);
306
307                 return -1;
308         }
309         dprintk(verbose, DST_DEBUG, 1, "reply is 0x%x", ret[0]);
310         for (err = 1; err < len; err++)
311                 dprintk(verbose, DST_DEBUG, 0, " 0x%x", ret[err]);
312         if (err > 1)
313                 dprintk(verbose, DST_DEBUG, 0, "\n");
314
315         return 0;
316 }
317 EXPORT_SYMBOL(read_dst);
318
319 static int dst_set_polarization(struct dst_state *state)
320 {
321         switch (state->voltage) {
322         case SEC_VOLTAGE_13:    /*      Vertical        */
323                 dprintk(verbose, DST_INFO, 1, "Polarization=[Vertical]");
324                 state->tx_tuna[8] &= ~0x40;
325                 break;
326         case SEC_VOLTAGE_18:    /*      Horizontal      */
327                 dprintk(verbose, DST_INFO, 1, "Polarization=[Horizontal]");
328                 state->tx_tuna[8] |= 0x40;
329                 break;
330         case SEC_VOLTAGE_OFF:
331                 break;
332         }
333
334         return 0;
335 }
336
337 static int dst_set_freq(struct dst_state *state, u32 freq)
338 {
339         state->frequency = freq;
340         dprintk(verbose, DST_INFO, 1, "set Frequency %u", freq);
341
342         if (state->dst_type == DST_TYPE_IS_SAT) {
343                 freq = freq / 1000;
344                 if (freq < 950 || freq > 2150)
345                         return -EINVAL;
346                 state->tx_tuna[2] = (freq >> 8);
347                 state->tx_tuna[3] = (u8) freq;
348                 state->tx_tuna[4] = 0x01;
349                 state->tx_tuna[8] &= ~0x04;
350                 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
351                         if (freq < 1531)
352                                 state->tx_tuna[8] |= 0x04;
353                 }
354         } else if (state->dst_type == DST_TYPE_IS_TERR) {
355                 freq = freq / 1000;
356                 if (freq < 137000 || freq > 858000)
357                         return -EINVAL;
358                 state->tx_tuna[2] = (freq >> 16) & 0xff;
359                 state->tx_tuna[3] = (freq >> 8) & 0xff;
360                 state->tx_tuna[4] = (u8) freq;
361         } else if (state->dst_type == DST_TYPE_IS_CABLE) {
362                 state->tx_tuna[2] = (freq >> 16) & 0xff;
363                 state->tx_tuna[3] = (freq >> 8) & 0xff;
364                 state->tx_tuna[4] = (u8) freq;
365         } else
366                 return -EINVAL;
367
368         return 0;
369 }
370
371 static int dst_set_bandwidth(struct dst_state *state, fe_bandwidth_t bandwidth)
372 {
373         state->bandwidth = bandwidth;
374
375         if (state->dst_type != DST_TYPE_IS_TERR)
376                 return 0;
377
378         switch (bandwidth) {
379         case BANDWIDTH_6_MHZ:
380                 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
381                         state->tx_tuna[7] = 0x06;
382                 else {
383                         state->tx_tuna[6] = 0x06;
384                         state->tx_tuna[7] = 0x00;
385                 }
386                 break;
387         case BANDWIDTH_7_MHZ:
388                 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
389                         state->tx_tuna[7] = 0x07;
390                 else {
391                         state->tx_tuna[6] = 0x07;
392                         state->tx_tuna[7] = 0x00;
393                 }
394                 break;
395         case BANDWIDTH_8_MHZ:
396                 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
397                         state->tx_tuna[7] = 0x08;
398                 else {
399                         state->tx_tuna[6] = 0x08;
400                         state->tx_tuna[7] = 0x00;
401                 }
402                 break;
403         default:
404                 return -EINVAL;
405         }
406
407         return 0;
408 }
409
410 static int dst_set_inversion(struct dst_state *state, fe_spectral_inversion_t inversion)
411 {
412         state->inversion = inversion;
413         switch (inversion) {
414         case INVERSION_OFF:     /*      Inversion = Normal      */
415                 state->tx_tuna[8] &= ~0x80;
416                 break;
417         case INVERSION_ON:
418                 state->tx_tuna[8] |= 0x80;
419                 break;
420         default:
421                 return -EINVAL;
422         }
423
424         return 0;
425 }
426
427 static int dst_set_fec(struct dst_state *state, fe_code_rate_t fec)
428 {
429         state->fec = fec;
430         return 0;
431 }
432
433 static fe_code_rate_t dst_get_fec(struct dst_state *state)
434 {
435         return state->fec;
436 }
437
438 static int dst_set_symbolrate(struct dst_state *state, u32 srate)
439 {
440         u32 symcalc;
441         u64 sval;
442
443         state->symbol_rate = srate;
444         if (state->dst_type == DST_TYPE_IS_TERR) {
445                 return 0;
446         }
447         dprintk(verbose, DST_INFO, 1, "set symrate %u", srate);
448         srate /= 1000;
449         if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
450                 sval = srate;
451                 sval <<= 20;
452                 do_div(sval, 88000);
453                 symcalc = (u32) sval;
454                 dprintk(verbose, DST_INFO, 1, "set symcalc %u", symcalc);
455                 state->tx_tuna[5] = (u8) (symcalc >> 12);
456                 state->tx_tuna[6] = (u8) (symcalc >> 4);
457                 state->tx_tuna[7] = (u8) (symcalc << 4);
458         } else {
459                 state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
460                 state->tx_tuna[6] = (u8) (srate >> 8);
461                 state->tx_tuna[7] = (u8) srate;
462         }
463         state->tx_tuna[8] &= ~0x20;
464         if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
465                 if (srate > 8000)
466                         state->tx_tuna[8] |= 0x20;
467         }
468         return 0;
469 }
470
471
472 static int dst_set_modulation(struct dst_state *state, fe_modulation_t modulation)
473 {
474         if (state->dst_type != DST_TYPE_IS_CABLE)
475                 return 0;
476
477         state->modulation = modulation;
478         switch (modulation) {
479         case QAM_16:
480                 state->tx_tuna[8] = 0x10;
481                 break;
482         case QAM_32:
483                 state->tx_tuna[8] = 0x20;
484                 break;
485         case QAM_64:
486                 state->tx_tuna[8] = 0x40;
487                 break;
488         case QAM_128:
489                 state->tx_tuna[8] = 0x80;
490                 break;
491         case QAM_256:
492                 state->tx_tuna[8] = 0x00;
493                 break;
494         case QPSK:
495         case QAM_AUTO:
496         case VSB_8:
497         case VSB_16:
498         default:
499                 return -EINVAL;
500
501         }
502
503         return 0;
504 }
505
506 static fe_modulation_t dst_get_modulation(struct dst_state *state)
507 {
508         return state->modulation;
509 }
510
511
512 u8 dst_check_sum(u8 *buf, u32 len)
513 {
514         u32 i;
515         u8 val = 0;
516         if (!len)
517                 return 0;
518         for (i = 0; i < len; i++) {
519                 val += buf[i];
520         }
521         return ((~val) + 1);
522 }
523 EXPORT_SYMBOL(dst_check_sum);
524
525 static void dst_type_flags_print(u32 type_flags)
526 {
527         dprintk(verbose, DST_ERROR, 0, "DST type flags :");
528         if (type_flags & DST_TYPE_HAS_NEWTUNE)
529                 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner", DST_TYPE_HAS_NEWTUNE);
530         if (type_flags & DST_TYPE_HAS_TS204)
531                 dprintk(verbose, DST_ERROR, 0, " 0x%x ts204", DST_TYPE_HAS_TS204);
532         if (type_flags & DST_TYPE_HAS_SYMDIV)
533                 dprintk(verbose, DST_ERROR, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV);
534         if (type_flags & DST_TYPE_HAS_FW_1)
535                 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1);
536         if (type_flags & DST_TYPE_HAS_FW_2)
537                 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2);
538         if (type_flags & DST_TYPE_HAS_FW_3)
539                 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3);
540         dprintk(verbose, DST_ERROR, 0, "\n");
541 }
542
543
544 static int dst_type_print(u8 type)
545 {
546         char *otype;
547         switch (type) {
548         case DST_TYPE_IS_SAT:
549                 otype = "satellite";
550                 break;
551
552         case DST_TYPE_IS_TERR:
553                 otype = "terrestrial";
554                 break;
555
556         case DST_TYPE_IS_CABLE:
557                 otype = "cable";
558                 break;
559
560         default:
561                 dprintk(verbose, DST_INFO, 1, "invalid dst type %d", type);
562                 return -EINVAL;
563         }
564         dprintk(verbose, DST_INFO, 1, "DST type: %s", otype);
565
566         return 0;
567 }
568
569 /*
570         Known cards list
571         Satellite
572         -------------------
573                   200103A
574         VP-1020   DST-MOT       LG(old), TS=188
575
576         VP-1020   DST-03T       LG(new), TS=204
577         VP-1022   DST-03T       LG(new), TS=204
578         VP-1025   DST-03T       LG(new), TS=204
579
580         VP-1030   DSTMCI,       LG(new), TS=188
581         VP-1032   DSTMCI,       LG(new), TS=188
582
583         Cable
584         -------------------
585         VP-2030   DCT-CI,       Samsung, TS=204
586         VP-2021   DCT-CI,       Unknown, TS=204
587         VP-2031   DCT-CI,       Philips, TS=188
588         VP-2040   DCT-CI,       Philips, TS=188, with CA daughter board
589         VP-2040   DCT-CI,       Philips, TS=204, without CA daughter board
590
591         Terrestrial
592         -------------------
593         VP-3050  DTTNXT                  TS=188
594         VP-3040  DTT-CI,        Philips, TS=188
595         VP-3040  DTT-CI,        Philips, TS=204
596
597         ATSC
598         -------------------
599         VP-3220  ATSCDI,                 TS=188
600         VP-3250  ATSCAD,                 TS=188
601
602 */
603
604 struct dst_types dst_tlist[] = {
605         {
606                 .device_id = "200103A",
607                 .offset = 0,
608                 .dst_type =  DST_TYPE_IS_SAT,
609                 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS,
610                 .dst_feature = 0
611         },      /*      obsolete        */
612
613         {
614                 .device_id = "DST-020",
615                 .offset = 0,
616                 .dst_type =  DST_TYPE_IS_SAT,
617                 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
618                 .dst_feature = 0
619         },      /*      obsolete        */
620
621         {
622                 .device_id = "DST-030",
623                 .offset =  0,
624                 .dst_type = DST_TYPE_IS_SAT,
625                 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
626                 .dst_feature = 0
627         },      /*      obsolete        */
628
629         {
630                 .device_id = "DST-03T",
631                 .offset = 0,
632                 .dst_type = DST_TYPE_IS_SAT,
633                 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
634                 .dst_feature = DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 | DST_TYPE_HAS_DISEQC5
635                                                          | DST_TYPE_HAS_MAC | DST_TYPE_HAS_MOTO
636          },
637
638         {
639                 .device_id = "DST-MOT",
640                 .offset =  0,
641                 .dst_type = DST_TYPE_IS_SAT,
642                 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
643                 .dst_feature = 0
644         },      /*      obsolete        */
645
646         {
647                 .device_id = "DST-CI",
648                 .offset = 1,
649                 .dst_type = DST_TYPE_IS_SAT,
650                 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
651                 .dst_feature = DST_TYPE_HAS_CA
652         },      /*      An OEM board    */
653
654         {
655                 .device_id = "DSTMCI",
656                 .offset = 1,
657                 .dst_type = DST_TYPE_IS_SAT,
658                 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD | DST_TYPE_HAS_INC_COUNT,
659                 .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4
660                                                         | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC
661         },
662
663         {
664                 .device_id = "DSTFCI",
665                 .offset = 1,
666                 .dst_type = DST_TYPE_IS_SAT,
667                 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
668                 .dst_feature = 0
669         },      /* unknown to vendor    */
670
671         {
672                 .device_id = "DCT-CI",
673                 .offset = 1,
674                 .dst_type = DST_TYPE_IS_CABLE,
675                 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1
676                                                         | DST_TYPE_HAS_FW_2,
677                 .dst_feature = DST_TYPE_HAS_CA
678         },
679
680         {
681                 .device_id = "DCTNEW",
682                 .offset = 1,
683                 .dst_type = DST_TYPE_IS_CABLE,
684                 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_3 | DST_TYPE_HAS_FW_BUILD,
685                 .dst_feature = 0
686         },
687
688         {
689                 .device_id = "DTT-CI",
690                 .offset = 1,
691                 .dst_type = DST_TYPE_IS_TERR,
692                 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
693                 .dst_feature = 0
694         },
695
696         {
697                 .device_id = "DTTDIG",
698                 .offset = 1,
699                 .dst_type = DST_TYPE_IS_TERR,
700                 .type_flags = DST_TYPE_HAS_FW_2,
701                 .dst_feature = 0
702         },
703
704         {
705                 .device_id = "DTTNXT",
706                 .offset = 1,
707                 .dst_type = DST_TYPE_IS_TERR,
708                 .type_flags = DST_TYPE_HAS_FW_2,
709                 .dst_feature = DST_TYPE_HAS_ANALOG
710         },
711
712         {
713                 .device_id = "ATSCDI",
714                 .offset = 1,
715                 .dst_type = DST_TYPE_IS_ATSC,
716                 .type_flags = DST_TYPE_HAS_FW_2,
717                 .dst_feature = 0
718         },
719
720         {
721                 .device_id = "ATSCAD",
722                 .offset = 1,
723                 .dst_type = DST_TYPE_IS_ATSC,
724                 .type_flags = DST_TYPE_HAS_FW_2,
725                 .dst_feature = 0
726         },
727
728         { }
729
730 };
731
732 static int dst_get_mac(struct dst_state *state)
733 {
734         u8 get_mac[] = { 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
735         get_mac[7] = dst_check_sum(get_mac, 7);
736         if (dst_command(state, get_mac, 8) < 0) {
737                 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
738                 return -1;
739         }
740         memset(&state->mac_address, '\0', 8);
741         memcpy(&state->mac_address, &state->rxbuffer, 6);
742         dprintk(verbose, DST_ERROR, 1, "MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]",
743                 state->mac_address[0], state->mac_address[1], state->mac_address[2],
744                 state->mac_address[4], state->mac_address[5], state->mac_address[6]);
745
746         return 0;
747 }
748
749 static int dst_fw_ver(struct dst_state *state)
750 {
751         u8 get_ver[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
752         get_ver[7] = dst_check_sum(get_ver, 7);
753         if (dst_command(state, get_ver, 8) < 0) {
754                 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
755                 return -1;
756         }
757         memset(&state->fw_version, '\0', 8);
758         memcpy(&state->fw_version, &state->rxbuffer, 8);
759         dprintk(verbose, DST_ERROR, 1, "Firmware Ver = %x.%x Build = %02x, on %x:%x, %x-%x-20%02x",
760                 state->fw_version[0] >> 4, state->fw_version[0] & 0x0f,
761                 state->fw_version[1],
762                 state->fw_version[5], state->fw_version[6],
763                 state->fw_version[4], state->fw_version[3], state->fw_version[2]);
764
765         return 0;
766 }
767
768 static int dst_card_type(struct dst_state *state)
769 {
770         u8 get_type[] = { 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
771         get_type[7] = dst_check_sum(get_type, 7);
772         if (dst_command(state, get_type, 8) < 0) {
773                 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
774                 return -1;
775         }
776         memset(&state->card_info, '\0', 8);
777         memcpy(&state->card_info, &state->rxbuffer, 8);
778         dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
779
780         return 0;
781 }
782
783 static int dst_get_vendor(struct dst_state *state)
784 {
785         u8 get_vendor[] = { 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
786         get_vendor[7] = dst_check_sum(get_vendor, 7);
787         if (dst_command(state, get_vendor, 8) < 0) {
788                 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
789                 return -1;
790         }
791         memset(&state->vendor, '\0', 8);
792         memcpy(&state->vendor, &state->rxbuffer, 8);
793         dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
794
795         return 0;
796 }
797
798 static int dst_get_device_id(struct dst_state *state)
799 {
800         u8 reply;
801
802         int i;
803         struct dst_types *p_dst_type;
804         u8 use_dst_type = 0;
805         u32 use_type_flags = 0;
806
807         static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
808
809         device_type[7] = dst_check_sum(device_type, 7);
810
811         if (write_dst(state, device_type, FIXED_COMM))
812                 return -1;              /*      Write failed            */
813         if ((dst_pio_disable(state)) < 0)
814                 return -1;
815         if (read_dst(state, &reply, GET_ACK))
816                 return -1;              /*      Read failure            */
817         if (reply != ACK) {
818                 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
819                 return -1;              /*      Unack'd write           */
820         }
821         if (!dst_wait_dst_ready(state, DEVICE_INIT))
822                 return -1;              /*      DST not ready yet       */
823         if (read_dst(state, state->rxbuffer, FIXED_COMM))
824                 return -1;
825
826         dst_pio_disable(state);
827         if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
828                 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
829                 return -1;              /*      Checksum failure        */
830         }
831         state->rxbuffer[7] = '\0';
832
833         for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
834                 if (!strncmp (&state->rxbuffer[p_dst_type->offset], p_dst_type->device_id, strlen (p_dst_type->device_id))) {
835                         use_type_flags = p_dst_type->type_flags;
836                         use_dst_type = p_dst_type->dst_type;
837
838                         /*      Card capabilities       */
839                         state->dst_hw_cap = p_dst_type->dst_feature;
840                         dprintk(verbose, DST_ERROR, 1, "Recognise [%s]\n", p_dst_type->device_id);
841
842                         break;
843                 }
844         }
845
846         if (i >= sizeof (dst_tlist) / sizeof (dst_tlist [0])) {
847                 dprintk(verbose, DST_ERROR, 1, "Unable to recognize %s or %s", &state->rxbuffer[0], &state->rxbuffer[1]);
848                 dprintk(verbose, DST_ERROR, 1, "please email linux-dvb@linuxtv.org with this type in");
849                 use_dst_type = DST_TYPE_IS_SAT;
850                 use_type_flags = DST_TYPE_HAS_SYMDIV;
851         }
852         dst_type_print(use_dst_type);
853         state->type_flags = use_type_flags;
854         state->dst_type = use_dst_type;
855         dst_type_flags_print(state->type_flags);
856
857         if (state->type_flags & DST_TYPE_HAS_TS204) {
858                 dst_packsize(state, 204);
859         }
860
861         return 0;
862 }
863
864 static int dst_probe(struct dst_state *state)
865 {
866         if ((rdc_8820_reset(state)) < 0) {
867                 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
868                 return -1;
869         }
870         if (dst_addons & DST_TYPE_HAS_CA)
871                 msleep(4000);
872         else
873                 msleep(100);
874
875         if ((dst_comm_init(state)) < 0) {
876                 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
877                 return -1;
878         }
879         msleep(100);
880         if (dst_get_device_id(state) < 0) {
881                 dprintk(verbose, DST_ERROR, 1, "unknown device.");
882                 return -1;
883         }
884         if (dst_get_mac(state) < 0) {
885                 dprintk(verbose, DST_INFO, 1, "MAC: Unsupported command");
886                 return 0;
887         }
888         if (state->type_flags & DST_TYPE_HAS_FW_BUILD) {
889                 if (dst_fw_ver(state) < 0) {
890                         dprintk(verbose, DST_INFO, 1, "FW: Unsupported command");
891                         return 0;
892                 }
893                 if (dst_card_type(state) < 0) {
894                         dprintk(verbose, DST_INFO, 1, "Card: Unsupported command");
895                         return 0;
896                 }
897                 if (dst_get_vendor(state) < 0) {
898                         dprintk(verbose, DST_INFO, 1, "Vendor: Unsupported command");
899                         return 0;
900                 }
901         }
902
903         return 0;
904 }
905
906 int dst_command(struct dst_state *state, u8 *data, u8 len)
907 {
908         u8 reply;
909         if ((dst_comm_init(state)) < 0) {
910                 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
911                 return -1;
912         }
913         if (write_dst(state, data, len)) {
914                 dprintk(verbose, DST_INFO, 1, "Tring to recover.. ");
915                 if ((dst_error_recovery(state)) < 0) {
916                         dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
917                         return -1;
918                 }
919                 return -1;
920         }
921         if ((dst_pio_disable(state)) < 0) {
922                 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
923                 return -1;
924         }
925         if (state->type_flags & DST_TYPE_HAS_FW_1)
926                 udelay(3000);
927         if (read_dst(state, &reply, GET_ACK)) {
928                 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
929                 if ((dst_error_recovery(state)) < 0) {
930                         dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
931                         return -1;
932                 }
933                 return -1;
934         }
935         if (reply != ACK) {
936                 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
937                 return -1;
938         }
939         if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
940                 return 0;
941         if (state->type_flags & DST_TYPE_HAS_FW_1)
942                 udelay(3000);
943         else
944                 udelay(2000);
945         if (!dst_wait_dst_ready(state, NO_DELAY))
946                 return -1;
947         if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
948                 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
949                 if ((dst_error_recovery(state)) < 0) {
950                         dprintk(verbose, DST_INFO, 1, "Recovery failed.");
951                         return -1;
952                 }
953                 return -1;
954         }
955         if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
956                 dprintk(verbose, DST_INFO, 1, "checksum failure");
957                 return -1;
958         }
959
960         return 0;
961 }
962 EXPORT_SYMBOL(dst_command);
963
964 static int dst_get_signal(struct dst_state *state)
965 {
966         int retval;
967         u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
968         //dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__);
969         if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
970                 state->decode_lock = state->decode_strength = state->decode_snr = 0;
971                 return 0;
972         }
973         if (0 == (state->diseq_flags & HAS_LOCK)) {
974                 state->decode_lock = state->decode_strength = state->decode_snr = 0;
975                 return 0;
976         }
977         if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
978                 retval = dst_command(state, get_signal, 8);
979                 if (retval < 0)
980                         return retval;
981                 if (state->dst_type == DST_TYPE_IS_SAT) {
982                         state->decode_lock = ((state->rxbuffer[6] & 0x10) == 0) ? 1 : 0;
983                         state->decode_strength = state->rxbuffer[5] << 8;
984                         state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
985                 } else if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE)) {
986                         state->decode_lock = (state->rxbuffer[1]) ? 1 : 0;
987                         state->decode_strength = state->rxbuffer[4] << 8;
988                         state->decode_snr = state->rxbuffer[3] << 8;
989                 }
990                 state->cur_jiff = jiffies;
991         }
992         return 0;
993 }
994
995 static int dst_tone_power_cmd(struct dst_state *state)
996 {
997         u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
998
999         if (state->dst_type == DST_TYPE_IS_TERR)
1000                 return 0;
1001         paket[4] = state->tx_tuna[4];
1002         paket[2] = state->tx_tuna[2];
1003         paket[3] = state->tx_tuna[3];
1004         paket[7] = dst_check_sum (paket, 7);
1005         dst_command(state, paket, 8);
1006
1007         return 0;
1008 }
1009
1010 static int dst_get_tuna(struct dst_state *state)
1011 {
1012         int retval;
1013
1014         if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
1015                 return 0;
1016         state->diseq_flags &= ~(HAS_LOCK);
1017         if (!dst_wait_dst_ready(state, NO_DELAY))
1018                 return 0;
1019         if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
1020                 /* how to get variable length reply ???? */
1021                 retval = read_dst(state, state->rx_tuna, 10);
1022         else
1023                 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
1024         if (retval < 0) {
1025                 dprintk(verbose, DST_DEBUG, 1, "read not successful");
1026                 return 0;
1027         }
1028         if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
1029                 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
1030                         dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
1031                         return 0;
1032                 }
1033         } else {
1034                 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
1035                         dprintk(verbose, DST_INFO, 1, "checksum failure? ");
1036                         return 0;
1037                 }
1038         }
1039         if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
1040                 return 0;
1041         state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
1042         state->decode_lock = 1;
1043         state->diseq_flags |= HAS_LOCK;
1044
1045         return 1;
1046 }
1047
1048 static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage);
1049
1050 static int dst_write_tuna(struct dvb_frontend *fe)
1051 {
1052         struct dst_state *state = fe->demodulator_priv;
1053         int retval;
1054         u8 reply;
1055
1056         dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
1057         state->decode_freq = 0;
1058         state->decode_lock = state->decode_strength = state->decode_snr = 0;
1059         if (state->dst_type == DST_TYPE_IS_SAT) {
1060                 if (!(state->diseq_flags & HAS_POWER))
1061                         dst_set_voltage(fe, SEC_VOLTAGE_13);
1062         }
1063         state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
1064
1065         if ((dst_comm_init(state)) < 0) {
1066                 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
1067                 return -1;
1068         }
1069         if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
1070                 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
1071                 retval = write_dst(state, &state->tx_tuna[0], 10);
1072         } else {
1073                 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
1074                 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
1075         }
1076         if (retval < 0) {
1077                 dst_pio_disable(state);
1078                 dprintk(verbose, DST_DEBUG, 1, "write not successful");
1079                 return retval;
1080         }
1081         if ((dst_pio_disable(state)) < 0) {
1082                 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
1083                 return -1;
1084         }
1085         if ((read_dst(state, &reply, GET_ACK) < 0)) {
1086                 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
1087                 return -1;
1088         }
1089         if (reply != ACK) {
1090                 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
1091                 return 0;
1092         }
1093         state->diseq_flags |= ATTEMPT_TUNE;
1094
1095         return dst_get_tuna(state);
1096 }
1097
1098 /*
1099  * line22k0    0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1100  * line22k1    0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1101  * line22k2    0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1102  * tone        0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1103  * data        0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1104  * power_off   0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1105  * power_on    0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1106  * Diseqc 1    0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1107  * Diseqc 2    0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1108  * Diseqc 3    0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1109  * Diseqc 4    0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1110  */
1111
1112 static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
1113 {
1114         struct dst_state *state = fe->demodulator_priv;
1115         u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1116
1117         if (state->dst_type != DST_TYPE_IS_SAT)
1118                 return 0;
1119         if (cmd->msg_len == 0 || cmd->msg_len > 4)
1120                 return -EINVAL;
1121         memcpy(&paket[3], cmd->msg, cmd->msg_len);
1122         paket[7] = dst_check_sum(&paket[0], 7);
1123         dst_command(state, paket, 8);
1124         return 0;
1125 }
1126
1127 static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
1128 {
1129         int need_cmd;
1130         struct dst_state *state = fe->demodulator_priv;
1131
1132         state->voltage = voltage;
1133         if (state->dst_type != DST_TYPE_IS_SAT)
1134                 return 0;
1135
1136         need_cmd = 0;
1137
1138         switch (voltage) {
1139         case SEC_VOLTAGE_13:
1140         case SEC_VOLTAGE_18:
1141                 if ((state->diseq_flags & HAS_POWER) == 0)
1142                         need_cmd = 1;
1143                 state->diseq_flags |= HAS_POWER;
1144                 state->tx_tuna[4] = 0x01;
1145                 break;
1146         case SEC_VOLTAGE_OFF:
1147                 need_cmd = 1;
1148                 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1149                 state->tx_tuna[4] = 0x00;
1150                 break;
1151         default:
1152                 return -EINVAL;
1153         }
1154
1155         if (need_cmd)
1156                 dst_tone_power_cmd(state);
1157
1158         return 0;
1159 }
1160
1161 static int dst_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
1162 {
1163         struct dst_state *state = fe->demodulator_priv;
1164
1165         state->tone = tone;
1166         if (state->dst_type != DST_TYPE_IS_SAT)
1167                 return 0;
1168
1169         switch (tone) {
1170         case SEC_TONE_OFF:
1171                 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1172                     state->tx_tuna[2] = 0x00;
1173                 else
1174                     state->tx_tuna[2] = 0xff;
1175                 break;
1176
1177         case SEC_TONE_ON:
1178                 state->tx_tuna[2] = 0x02;
1179                 break;
1180         default:
1181                 return -EINVAL;
1182         }
1183         dst_tone_power_cmd(state);
1184
1185         return 0;
1186 }
1187
1188 static int dst_send_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t minicmd)
1189 {
1190         struct dst_state *state = fe->demodulator_priv;
1191
1192         if (state->dst_type != DST_TYPE_IS_SAT)
1193                 return 0;
1194         state->minicmd = minicmd;
1195         switch (minicmd) {
1196         case SEC_MINI_A:
1197                 state->tx_tuna[3] = 0x02;
1198                 break;
1199         case SEC_MINI_B:
1200                 state->tx_tuna[3] = 0xff;
1201                 break;
1202         }
1203         dst_tone_power_cmd(state);
1204
1205         return 0;
1206 }
1207
1208
1209 static int dst_init(struct dvb_frontend *fe)
1210 {
1211         struct dst_state *state = fe->demodulator_priv;
1212
1213         static u8 sat_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1214         static u8 sat_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1215         static u8 ter_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1216         static u8 ter_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1217         static u8 cab_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1218         static u8 cab_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1219
1220         state->inversion = INVERSION_OFF;
1221         state->voltage = SEC_VOLTAGE_13;
1222         state->tone = SEC_TONE_OFF;
1223         state->diseq_flags = 0;
1224         state->k22 = 0x02;
1225         state->bandwidth = BANDWIDTH_7_MHZ;
1226         state->cur_jiff = jiffies;
1227         if (state->dst_type == DST_TYPE_IS_SAT)
1228                 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? sat_tuna_188 : sat_tuna_204), sizeof (sat_tuna_204));
1229         else if (state->dst_type == DST_TYPE_IS_TERR)
1230                 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? ter_tuna_188 : ter_tuna_204), sizeof (ter_tuna_204));
1231         else if (state->dst_type == DST_TYPE_IS_CABLE)
1232                 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? cab_tuna_188 : cab_tuna_204), sizeof (cab_tuna_204));
1233
1234         return 0;
1235 }
1236
1237 static int dst_read_status(struct dvb_frontend *fe, fe_status_t *status)
1238 {
1239         struct dst_state *state = fe->demodulator_priv;
1240
1241         *status = 0;
1242         if (state->diseq_flags & HAS_LOCK) {
1243 //              dst_get_signal(state);  // don't require(?) to ask MCU
1244                 if (state->decode_lock)
1245                         *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1246         }
1247
1248         return 0;
1249 }
1250
1251 static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
1252 {
1253         struct dst_state *state = fe->demodulator_priv;
1254
1255         dst_get_signal(state);
1256         *strength = state->decode_strength;
1257
1258         return 0;
1259 }
1260
1261 static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
1262 {
1263         struct dst_state *state = fe->demodulator_priv;
1264
1265         dst_get_signal(state);
1266         *snr = state->decode_snr;
1267
1268         return 0;
1269 }
1270
1271 static int dst_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
1272 {
1273         struct dst_state *state = fe->demodulator_priv;
1274
1275         dst_set_freq(state, p->frequency);
1276         dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
1277
1278         if (state->dst_type == DST_TYPE_IS_SAT) {
1279                 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1280                         dst_set_inversion(state, p->inversion);
1281                 dst_set_fec(state, p->u.qpsk.fec_inner);
1282                 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1283                 dst_set_polarization(state);
1284                 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
1285
1286         } else if (state->dst_type == DST_TYPE_IS_TERR)
1287                 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1288         else if (state->dst_type == DST_TYPE_IS_CABLE) {
1289                 dst_set_fec(state, p->u.qam.fec_inner);
1290                 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1291                 dst_set_modulation(state, p->u.qam.modulation);
1292         }
1293         dst_write_tuna(fe);
1294
1295         return 0;
1296 }
1297
1298 static int dst_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
1299 {
1300         struct dst_state *state = fe->demodulator_priv;
1301
1302         p->frequency = state->decode_freq;
1303         if (state->dst_type == DST_TYPE_IS_SAT) {
1304                 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1305                         p->inversion = state->inversion;
1306                 p->u.qpsk.symbol_rate = state->symbol_rate;
1307                 p->u.qpsk.fec_inner = dst_get_fec(state);
1308         } else if (state->dst_type == DST_TYPE_IS_TERR) {
1309                 p->u.ofdm.bandwidth = state->bandwidth;
1310         } else if (state->dst_type == DST_TYPE_IS_CABLE) {
1311                 p->u.qam.symbol_rate = state->symbol_rate;
1312                 p->u.qam.fec_inner = dst_get_fec(state);
1313                 p->u.qam.modulation = dst_get_modulation(state);
1314         }
1315
1316         return 0;
1317 }
1318
1319 static void dst_release(struct dvb_frontend *fe)
1320 {
1321         struct dst_state *state = fe->demodulator_priv;
1322         kfree(state);
1323 }
1324
1325 static struct dvb_frontend_ops dst_dvbt_ops;
1326 static struct dvb_frontend_ops dst_dvbs_ops;
1327 static struct dvb_frontend_ops dst_dvbc_ops;
1328
1329 struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
1330 {
1331         /* check if the ASIC is there */
1332         if (dst_probe(state) < 0) {
1333                 if (state)
1334                         kfree(state);
1335
1336                 return NULL;
1337         }
1338         /* determine settings based on type */
1339         switch (state->dst_type) {
1340         case DST_TYPE_IS_TERR:
1341                 memcpy(&state->ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
1342                 break;
1343         case DST_TYPE_IS_CABLE:
1344                 memcpy(&state->ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
1345                 break;
1346         case DST_TYPE_IS_SAT:
1347                 memcpy(&state->ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
1348                 break;
1349         default:
1350                 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
1351                 if (state)
1352                         kfree(state);
1353
1354                 return NULL;
1355         }
1356
1357         /* create dvb_frontend */
1358         state->frontend.ops = &state->ops;
1359         state->frontend.demodulator_priv = state;
1360
1361         return state;                           /*      Manu (DST is a card not a frontend)     */
1362 }
1363
1364 EXPORT_SYMBOL(dst_attach);
1365
1366 static struct dvb_frontend_ops dst_dvbt_ops = {
1367
1368         .info = {
1369                 .name = "DST DVB-T",
1370                 .type = FE_OFDM,
1371                 .frequency_min = 137000000,
1372                 .frequency_max = 858000000,
1373                 .frequency_stepsize = 166667,
1374                 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
1375         },
1376
1377         .release = dst_release,
1378         .init = dst_init,
1379         .set_frontend = dst_set_frontend,
1380         .get_frontend = dst_get_frontend,
1381         .read_status = dst_read_status,
1382         .read_signal_strength = dst_read_signal_strength,
1383         .read_snr = dst_read_snr,
1384 };
1385
1386 static struct dvb_frontend_ops dst_dvbs_ops = {
1387
1388         .info = {
1389                 .name = "DST DVB-S",
1390                 .type = FE_QPSK,
1391                 .frequency_min = 950000,
1392                 .frequency_max = 2150000,
1393                 .frequency_stepsize = 1000,     /* kHz for QPSK frontends */
1394                 .frequency_tolerance = 29500,
1395                 .symbol_rate_min = 1000000,
1396                 .symbol_rate_max = 45000000,
1397         /*     . symbol_rate_tolerance  =       ???,*/
1398                 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1399         },
1400
1401         .release = dst_release,
1402         .init = dst_init,
1403         .set_frontend = dst_set_frontend,
1404         .get_frontend = dst_get_frontend,
1405         .read_status = dst_read_status,
1406         .read_signal_strength = dst_read_signal_strength,
1407         .read_snr = dst_read_snr,
1408         .diseqc_send_burst = dst_send_burst,
1409         .diseqc_send_master_cmd = dst_set_diseqc,
1410         .set_voltage = dst_set_voltage,
1411         .set_tone = dst_set_tone,
1412 };
1413
1414 static struct dvb_frontend_ops dst_dvbc_ops = {
1415
1416         .info = {
1417                 .name = "DST DVB-C",
1418                 .type = FE_QAM,
1419                 .frequency_stepsize = 62500,
1420                 .frequency_min = 51000000,
1421                 .frequency_max = 858000000,
1422                 .symbol_rate_min = 1000000,
1423                 .symbol_rate_max = 45000000,
1424         /*     . symbol_rate_tolerance  =       ???,*/
1425                 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO
1426         },
1427
1428         .release = dst_release,
1429         .init = dst_init,
1430         .set_frontend = dst_set_frontend,
1431         .get_frontend = dst_get_frontend,
1432         .read_status = dst_read_status,
1433         .read_signal_strength = dst_read_signal_strength,
1434         .read_snr = dst_read_snr,
1435 };
1436
1437 MODULE_DESCRIPTION("DST DVB-S/T/C Combo Frontend driver");
1438 MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1439 MODULE_LICENSE("GPL");