blob: caa4e18ed1c188d4d20575f184f2bf67572358ff [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07002 Frontend/Card driver for TwinHan DST Frontend
3 Copyright (C) 2003 Jamie Honan
4 Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07006 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070011 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070016 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019*/
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "dvb_frontend.h"
30#include "dst_priv.h"
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070031#include "dst_common.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070033static unsigned int verbose = 1;
34module_param(verbose, int, 0644);
35MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070037static unsigned int dst_addons;
38module_param(dst_addons, int, 0644);
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -070039MODULE_PARM_DESC(dst_addons, "CA daughterboard, default is 0 (No addons)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Manu Abraham8cfba632006-06-21 10:27:26 -030041static unsigned int dst_algo;
42module_param(dst_algo, int, 0644);
43MODULE_PARM_DESC(dst_algo, "tuning algo: default is 0=(SW), 1=(HW)");
44
Manu Abrahama427de62005-09-09 13:03:00 -070045#define HAS_LOCK 1
46#define ATTEMPT_TUNE 2
47#define HAS_POWER 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Manu Abrahama427de62005-09-09 13:03:00 -070049#define DST_ERROR 0
50#define DST_NOTICE 1
51#define DST_INFO 2
52#define DST_DEBUG 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Manu Abraham9500c7b2006-06-21 10:28:23 -030054#define dprintk(x, y, z, format, arg...) do { \
55 if (z) { \
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); \
68 } else { \
69 if (x > y) \
70 printk(format, ##arg); \
71 } \
Manu Abrahama427de62005-09-09 13:03:00 -070072} while(0)
73
Adrian Bunkb00ef4b2007-11-05 14:06:31 -030074static int dst_command(struct dst_state *state, u8 *data, u8 len);
Manu Abrahama427de62005-09-09 13:03:00 -070075
76static void dst_packsize(struct dst_state *state, int psize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 union dst_gpio_packet bits;
79
80 bits.psize = psize;
81 bt878_device_control(state->bt, DST_IG_TS, &bits);
82}
83
Adrian Bunkb00ef4b2007-11-05 14:06:31 -030084static int dst_gpio_outb(struct dst_state *state, u32 mask, u32 enbb,
85 u32 outhigh, int delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 union dst_gpio_packet enb;
88 union dst_gpio_packet bits;
89 int err;
90
91 enb.enb.mask = mask;
92 enb.enb.enable = enbb;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070093
Manu Abrahama427de62005-09-09 13:03:00 -070094 dprintk(verbose, DST_INFO, 1, "mask=[%04x], enbb=[%04x], outhigh=[%04x]", mask, enbb, outhigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if ((err = bt878_device_control(state->bt, DST_IG_ENABLE, &enb)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -070096 dprintk(verbose, DST_INFO, 1, "dst_gpio_enb error (err == %i, mask == %02x, enb == %02x)", err, mask, enbb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return -EREMOTEIO;
98 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -070099 udelay(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* because complete disabling means no output, no need to do output packet */
101 if (enbb == 0)
102 return 0;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700103 if (delay)
104 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 bits.outp.mask = enbb;
106 bits.outp.highvals = outhigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if ((err = bt878_device_control(state->bt, DST_IG_WRITE, &bits)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700108 dprintk(verbose, DST_INFO, 1, "dst_gpio_outb error (err == %i, enbb == %02x, outhigh == %02x)", err, enbb, outhigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return -EREMOTEIO;
110 }
Manu Abrahama427de62005-09-09 13:03:00 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return 0;
113}
114
Adrian Bunkb00ef4b2007-11-05 14:06:31 -0300115static int dst_gpio_inb(struct dst_state *state, u8 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 union dst_gpio_packet rd_packet;
118 int err;
119
120 *result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if ((err = bt878_device_control(state->bt, DST_IG_READ, &rd_packet)) < 0) {
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300122 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb error (err == %i)", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return -EREMOTEIO;
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 *result = (u8) rd_packet.rd.value;
Manu Abrahama427de62005-09-09 13:03:00 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return 0;
128}
129
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700130int rdc_reset_state(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Manu Abrahama427de62005-09-09 13:03:00 -0700132 dprintk(verbose, DST_INFO, 1, "Resetting state machine");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700133 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700134 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700135 return -1;
136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 msleep(10);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700138 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, RDC_8820_INT, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700139 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700140 msleep(10);
141 return -1;
142 }
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
145}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700146EXPORT_SYMBOL(rdc_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Adrian Bunkb00ef4b2007-11-05 14:06:31 -0300148static int rdc_8820_reset(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Manu Abrahama427de62005-09-09 13:03:00 -0700150 dprintk(verbose, DST_DEBUG, 1, "Resetting DST");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700151 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700152 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700153 return -1;
154 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700155 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700156 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, RDC_8820_RESET, DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700157 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700158 return -1;
159 }
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
162}
163
Adrian Bunkb00ef4b2007-11-05 14:06:31 -0300164static int dst_pio_enable(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700166 if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_ENABLE, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700167 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700168 return -1;
169 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700170 udelay(1000);
Manu Abrahama427de62005-09-09 13:03:00 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return 0;
173}
174
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700175int dst_pio_disable(struct dst_state *state)
176{
177 if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_DISABLE, RDC_8820_PIO_0_DISABLE, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700178 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700179 return -1;
180 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700181 if (state->type_flags & DST_TYPE_HAS_FW_1)
182 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700183
184 return 0;
185}
186EXPORT_SYMBOL(dst_pio_disable);
187
188int dst_wait_dst_ready(struct dst_state *state, u8 delay_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 u8 reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 for (i = 0; i < 200; i++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700194 if (dst_gpio_inb(state, &reply) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700195 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700196 return -1;
197 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700198 if ((reply & RDC_8820_PIO_0_ENABLE) == 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700199 dprintk(verbose, DST_INFO, 1, "dst wait ready after %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return 1;
201 }
Johannes Stezenbachb46dd442005-05-16 21:54:44 -0700202 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
Manu Abrahama427de62005-09-09 13:03:00 -0700204 dprintk(verbose, DST_NOTICE, 1, "dst wait NOT ready after %d", i);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return 0;
207}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700208EXPORT_SYMBOL(dst_wait_dst_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700210int dst_error_recovery(struct dst_state *state)
211{
Manu Abrahama427de62005-09-09 13:03:00 -0700212 dprintk(verbose, DST_NOTICE, 1, "Trying to return from previous errors.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700213 dst_pio_disable(state);
214 msleep(10);
215 dst_pio_enable(state);
216 msleep(10);
217
218 return 0;
219}
220EXPORT_SYMBOL(dst_error_recovery);
221
222int dst_error_bailout(struct dst_state *state)
223{
Manu Abrahama427de62005-09-09 13:03:00 -0700224 dprintk(verbose, DST_INFO, 1, "Trying to bailout from previous error.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700225 rdc_8820_reset(state);
226 dst_pio_disable(state);
227 msleep(10);
228
229 return 0;
230}
231EXPORT_SYMBOL(dst_error_bailout);
232
Manu Abrahama427de62005-09-09 13:03:00 -0700233int dst_comm_init(struct dst_state *state)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700234{
Manu Abrahama427de62005-09-09 13:03:00 -0700235 dprintk(verbose, DST_INFO, 1, "Initializing DST.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700236 if ((dst_pio_enable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700237 dprintk(verbose, DST_ERROR, 1, "PIO Enable Failed");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700238 return -1;
239 }
240 if ((rdc_reset_state(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700241 dprintk(verbose, DST_ERROR, 1, "RDC 8820 State RESET Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700242 return -1;
243 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700244 if (state->type_flags & DST_TYPE_HAS_FW_1)
245 msleep(100);
246 else
247 msleep(5);
248
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700249 return 0;
250}
251EXPORT_SYMBOL(dst_comm_init);
252
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700253int write_dst(struct dst_state *state, u8 *data, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct i2c_msg msg = {
Manu Abrahama427de62005-09-09 13:03:00 -0700256 .addr = state->config->demod_address,
257 .flags = 0,
258 .buf = data,
259 .len = len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 };
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 int err;
Manu Abrahama427de62005-09-09 13:03:00 -0700263 u8 cnt, i;
264
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");
269
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700270 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700272 dprintk(verbose, DST_INFO, 1, "_write_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)", err, len, data[0]);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700273 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 continue;
275 } else
276 break;
277 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700278 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700279 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700280 dst_error_bailout(state);
281
282 return -1;
283 }
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return 0;
286}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700287EXPORT_SYMBOL(write_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Manu Abrahama427de62005-09-09 13:03:00 -0700289int read_dst(struct dst_state *state, u8 *ret, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Manu Abrahama427de62005-09-09 13:03:00 -0700291 struct i2c_msg msg = {
292 .addr = state->config->demod_address,
293 .flags = I2C_M_RD,
294 .buf = ret,
295 .len = len
296 };
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int err;
299 int cnt;
300
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700301 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700303 dprintk(verbose, DST_INFO, 1, "read_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)", err, len, ret[0]);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700304 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 continue;
306 } else
307 break;
308 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700309 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700310 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700311 dst_error_bailout(state);
312
313 return -1;
314 }
Manu Abrahama427de62005-09-09 13:03:00 -0700315 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]);
318 if (err > 1)
319 dprintk(verbose, DST_DEBUG, 0, "\n");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 0;
322}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700323EXPORT_SYMBOL(read_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Manu Abraham7d534212005-07-07 17:57:50 -0700325static int dst_set_polarization(struct dst_state *state)
326{
327 switch (state->voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -0700328 case SEC_VOLTAGE_13: /* Vertical */
329 dprintk(verbose, DST_INFO, 1, "Polarization=[Vertical]");
330 state->tx_tuna[8] &= ~0x40;
331 break;
332 case SEC_VOLTAGE_18: /* Horizontal */
333 dprintk(verbose, DST_INFO, 1, "Polarization=[Horizontal]");
334 state->tx_tuna[8] |= 0x40;
335 break;
336 case SEC_VOLTAGE_OFF:
337 break;
Manu Abraham7d534212005-07-07 17:57:50 -0700338 }
339
340 return 0;
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static int dst_set_freq(struct dst_state *state, u32 freq)
344{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 state->frequency = freq;
Manu Abrahama427de62005-09-09 13:03:00 -0700346 dprintk(verbose, DST_INFO, 1, "set Frequency %u", freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (state->dst_type == DST_TYPE_IS_SAT) {
349 freq = freq / 1000;
350 if (freq < 950 || freq > 2150)
351 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700352 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) {
357 if (freq < 1531)
358 state->tx_tuna[8] |= 0x04;
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 } else if (state->dst_type == DST_TYPE_IS_TERR) {
361 freq = freq / 1000;
362 if (freq < 137000 || freq > 858000)
363 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700364 state->tx_tuna[2] = (freq >> 16) & 0xff;
365 state->tx_tuna[3] = (freq >> 8) & 0xff;
366 state->tx_tuna[4] = (u8) freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
Manu Abraham62867422005-09-09 13:03:02 -0700368 freq = freq / 1000;
Manu Abraham7d534212005-07-07 17:57:50 -0700369 state->tx_tuna[2] = (freq >> 16) & 0xff;
370 state->tx_tuna[3] = (freq >> 8) & 0xff;
371 state->tx_tuna[4] = (u8) freq;
Manu Abrahamed3d1062006-06-21 10:27:15 -0300372 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
373 freq = freq / 1000;
374 if (freq < 51000 || freq > 858000)
375 return -EINVAL;
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 } else
384 return -EINVAL;
Manu Abrahama427de62005-09-09 13:03:00 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return 0;
387}
388
Manu Abrahama427de62005-09-09 13:03:00 -0700389static int dst_set_bandwidth(struct dst_state *state, fe_bandwidth_t bandwidth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 state->bandwidth = bandwidth;
392
393 if (state->dst_type != DST_TYPE_IS_TERR)
Yeasah Pell0851fb42006-08-08 09:10:18 -0300394 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 switch (bandwidth) {
Manu Abrahama427de62005-09-09 13:03:00 -0700397 case BANDWIDTH_6_MHZ:
398 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
399 state->tx_tuna[7] = 0x06;
400 else {
401 state->tx_tuna[6] = 0x06;
402 state->tx_tuna[7] = 0x00;
403 }
404 break;
405 case BANDWIDTH_7_MHZ:
406 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
407 state->tx_tuna[7] = 0x07;
408 else {
409 state->tx_tuna[6] = 0x07;
410 state->tx_tuna[7] = 0x00;
411 }
412 break;
413 case BANDWIDTH_8_MHZ:
414 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
415 state->tx_tuna[7] = 0x08;
416 else {
417 state->tx_tuna[6] = 0x08;
418 state->tx_tuna[7] = 0x00;
419 }
420 break;
421 default:
422 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Manu Abrahama427de62005-09-09 13:03:00 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return 0;
426}
427
Manu Abrahama427de62005-09-09 13:03:00 -0700428static int dst_set_inversion(struct dst_state *state, fe_spectral_inversion_t inversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 state->inversion = inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 switch (inversion) {
Manu Abrahama427de62005-09-09 13:03:00 -0700432 case INVERSION_OFF: /* Inversion = Normal */
433 state->tx_tuna[8] &= ~0x80;
434 break;
435 case INVERSION_ON:
436 state->tx_tuna[8] |= 0x80;
437 break;
438 default:
439 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
Manu Abrahama427de62005-09-09 13:03:00 -0700441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return 0;
443}
444
Manu Abrahama427de62005-09-09 13:03:00 -0700445static int dst_set_fec(struct dst_state *state, fe_code_rate_t fec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 state->fec = fec;
448 return 0;
449}
450
Manu Abrahama427de62005-09-09 13:03:00 -0700451static fe_code_rate_t dst_get_fec(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 return state->fec;
454}
455
Manu Abrahama427de62005-09-09 13:03:00 -0700456static int dst_set_symbolrate(struct dst_state *state, u32 srate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 u32 symcalc;
459 u64 sval;
460
461 state->symbol_rate = srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (state->dst_type == DST_TYPE_IS_TERR) {
Yeasah Pell0851fb42006-08-08 09:10:18 -0300463 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Manu Abrahama427de62005-09-09 13:03:00 -0700465 dprintk(verbose, DST_INFO, 1, "set symrate %u", srate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 srate /= 1000;
Manu Abraham63ad4e42006-06-21 10:41:37 -0300467 if (state->dst_type == DST_TYPE_IS_SAT) {
468 if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
469 sval = srate;
470 sval <<= 20;
471 do_div(sval, 88000);
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);
477 } else {
478 state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
479 state->tx_tuna[6] = (u8) (srate >> 8);
480 state->tx_tuna[7] = (u8) srate;
481 }
482 state->tx_tuna[8] &= ~0x20;
483 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
484 if (srate > 8000)
485 state->tx_tuna[8] |= 0x20;
486 }
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;
497 }
Manu Abrahamf612c572005-09-09 13:02:58 -0700498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return 0;
500}
501
Manu Abraham7d534212005-07-07 17:57:50 -0700502static int dst_set_modulation(struct dst_state *state, fe_modulation_t modulation)
503{
504 if (state->dst_type != DST_TYPE_IS_CABLE)
Yeasah Pell0851fb42006-08-08 09:10:18 -0300505 return -EOPNOTSUPP;
Manu Abraham7d534212005-07-07 17:57:50 -0700506
507 state->modulation = modulation;
508 switch (modulation) {
Manu Abrahama427de62005-09-09 13:03:00 -0700509 case QAM_16:
510 state->tx_tuna[8] = 0x10;
511 break;
512 case QAM_32:
513 state->tx_tuna[8] = 0x20;
514 break;
515 case QAM_64:
516 state->tx_tuna[8] = 0x40;
517 break;
518 case QAM_128:
519 state->tx_tuna[8] = 0x80;
520 break;
521 case QAM_256:
Manu Abraham63ad4e42006-06-21 10:41:37 -0300522 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;
Manu Abrahama427de62005-09-09 13:03:00 -0700526 break;
527 case QPSK:
528 case QAM_AUTO:
529 case VSB_8:
530 case VSB_16:
531 default:
532 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700533
534 }
535
536 return 0;
537}
538
539static fe_modulation_t dst_get_modulation(struct dst_state *state)
540{
541 return state->modulation;
542}
543
544
Manu Abrahama427de62005-09-09 13:03:00 -0700545u8 dst_check_sum(u8 *buf, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 u32 i;
548 u8 val = 0;
549 if (!len)
550 return 0;
551 for (i = 0; i < len; i++) {
552 val += buf[i];
553 }
554 return ((~val) + 1);
555}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700556EXPORT_SYMBOL(dst_check_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300558static void dst_type_flags_print(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300560 u32 type_flags = state->type_flags;
561
Manu Abrahama427de62005-09-09 13:03:00 -0700562 dprintk(verbose, DST_ERROR, 0, "DST type flags :");
Manu Abraham7ef53b12006-06-21 10:41:41 -0300563 if (type_flags & DST_TYPE_HAS_TS188)
564 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner", DST_TYPE_HAS_TS188);
Manu Abraham1da5e8d2006-06-21 10:28:05 -0300565 if (type_flags & DST_TYPE_HAS_NEWTUNE_2)
566 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner 2", DST_TYPE_HAS_NEWTUNE_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (type_flags & DST_TYPE_HAS_TS204)
Manu Abrahama427de62005-09-09 13:03:00 -0700568 dprintk(verbose, DST_ERROR, 0, " 0x%x ts204", DST_TYPE_HAS_TS204);
Manu Abrahamcdd42082006-06-21 10:41:45 -0300569 if (type_flags & DST_TYPE_HAS_VLF)
570 dprintk(verbose, DST_ERROR, 0, " 0x%x VLF", DST_TYPE_HAS_VLF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (type_flags & DST_TYPE_HAS_SYMDIV)
Manu Abrahama427de62005-09-09 13:03:00 -0700572 dprintk(verbose, DST_ERROR, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700573 if (type_flags & DST_TYPE_HAS_FW_1)
Manu Abrahama427de62005-09-09 13:03:00 -0700574 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700575 if (type_flags & DST_TYPE_HAS_FW_2)
Manu Abrahama427de62005-09-09 13:03:00 -0700576 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700577 if (type_flags & DST_TYPE_HAS_FW_3)
Manu Abrahama427de62005-09-09 13:03:00 -0700578 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3);
579 dprintk(verbose, DST_ERROR, 0, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700582
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300583static int dst_type_print(struct dst_state *state, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 char *otype;
586 switch (type) {
587 case DST_TYPE_IS_SAT:
588 otype = "satellite";
589 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 case DST_TYPE_IS_TERR:
592 otype = "terrestrial";
593 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 case DST_TYPE_IS_CABLE:
596 otype = "cable";
597 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700598
Manu Abrahambc7386b2006-06-21 10:27:05 -0300599 case DST_TYPE_IS_ATSC:
600 otype = "atsc";
601 break;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 default:
Manu Abrahama427de62005-09-09 13:03:00 -0700604 dprintk(verbose, DST_INFO, 1, "invalid dst type %d", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return -EINVAL;
606 }
Manu Abrahama427de62005-09-09 13:03:00 -0700607 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return 0;
610}
611
Adrian Bunkb00ef4b2007-11-05 14:06:31 -0300612static struct tuner_types tuner_list[] = {
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300613 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300614 .tuner_type = TUNER_TYPE_L64724,
Manu Abraham364f2552006-06-21 10:28:01 -0300615 .tuner_name = "L 64724",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300616 .board_name = "UNKNOWN",
617 .fw_name = "UNKNOWN"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300618 },
619
620 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300621 .tuner_type = TUNER_TYPE_STV0299,
Manu Abraham364f2552006-06-21 10:28:01 -0300622 .tuner_name = "STV 0299",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300623 .board_name = "VP1020",
624 .fw_name = "DST-MOT"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300625 },
626
627 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300628 .tuner_type = TUNER_TYPE_STV0299,
629 .tuner_name = "STV 0299",
630 .board_name = "VP1020",
631 .fw_name = "DST-03T"
632 },
633
634 {
635 .tuner_type = TUNER_TYPE_MB86A15,
Manu Abraham364f2552006-06-21 10:28:01 -0300636 .tuner_name = "MB 86A15",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300637 .board_name = "VP1022",
638 .fw_name = "DST-03T"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300639 },
Manu Abraham364f2552006-06-21 10:28:01 -0300640
641 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300642 .tuner_type = TUNER_TYPE_MB86A15,
643 .tuner_name = "MB 86A15",
644 .board_name = "VP1025",
645 .fw_name = "DST-03T"
646 },
647
648 {
649 .tuner_type = TUNER_TYPE_STV0299,
650 .tuner_name = "STV 0299",
651 .board_name = "VP1030",
652 .fw_name = "DST-CI"
653 },
654
655 {
656 .tuner_type = TUNER_TYPE_STV0299,
657 .tuner_name = "STV 0299",
658 .board_name = "VP1030",
659 .fw_name = "DSTMCI"
660 },
661
662 {
663 .tuner_type = TUNER_TYPE_UNKNOWN,
664 .tuner_name = "UNKNOWN",
Manu Abraham63ad4e42006-06-21 10:41:37 -0300665 .board_name = "VP2021",
666 .fw_name = "DCTNEW"
667 },
668
669 {
670 .tuner_type = TUNER_TYPE_UNKNOWN,
671 .tuner_name = "UNKNOWN",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300672 .board_name = "VP2030",
673 .fw_name = "DCT-CI"
674 },
675
676 {
677 .tuner_type = TUNER_TYPE_UNKNOWN,
678 .tuner_name = "UNKNOWN",
679 .board_name = "VP2031",
680 .fw_name = "DCT-CI"
681 },
682
683 {
684 .tuner_type = TUNER_TYPE_UNKNOWN,
685 .tuner_name = "UNKNOWN",
686 .board_name = "VP2040",
687 .fw_name = "DCT-CI"
688 },
689
690 {
691 .tuner_type = TUNER_TYPE_UNKNOWN,
692 .tuner_name = "UNKNOWN",
693 .board_name = "VP3020",
694 .fw_name = "DTTFTA"
695 },
696
697 {
698 .tuner_type = TUNER_TYPE_UNKNOWN,
699 .tuner_name = "UNKNOWN",
700 .board_name = "VP3021",
701 .fw_name = "DTTFTA"
702 },
703
704 {
705 .tuner_type = TUNER_TYPE_TDA10046,
706 .tuner_name = "TDA10046",
707 .board_name = "VP3040",
708 .fw_name = "DTT-CI"
709 },
710
711 {
712 .tuner_type = TUNER_TYPE_UNKNOWN,
713 .tuner_name = "UNKNOWN",
714 .board_name = "VP3051",
715 .fw_name = "DTTNXT"
716 },
717
718 {
719 .tuner_type = TUNER_TYPE_NXT200x,
720 .tuner_name = "NXT200x",
721 .board_name = "VP3220",
722 .fw_name = "ATSCDI"
723 },
724
725 {
726 .tuner_type = TUNER_TYPE_NXT200x,
727 .tuner_name = "NXT200x",
728 .board_name = "VP3250",
729 .fw_name = "ATSCAD"
730 },
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300731};
732
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700733/*
734 Known cards list
735 Satellite
736 -------------------
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700737 200103A
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700738 VP-1020 DST-MOT LG(old), TS=188
739
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
743
744 VP-1030 DSTMCI, LG(new), TS=188
745 VP-1032 DSTMCI, LG(new), TS=188
746
747 Cable
748 -------------------
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
754
755 Terrestrial
756 -------------------
757 VP-3050 DTTNXT TS=188
758 VP-3040 DTT-CI, Philips, TS=188
759 VP-3040 DTT-CI, Philips, TS=204
760
761 ATSC
762 -------------------
763 VP-3220 ATSCDI, TS=188
764 VP-3250 ATSCAD, TS=188
765
766*/
767
Adrian Bunk47a9e502006-02-27 00:07:55 -0300768static struct dst_types dst_tlist[] = {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700769 {
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700770 .device_id = "200103A",
771 .offset = 0,
772 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700773 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS,
Manu Abraham396cffd2006-06-21 10:27:49 -0300774 .dst_feature = 0,
775 .tuner_type = 0
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700776 }, /* obsolete */
777
778 {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700779 .device_id = "DST-020",
780 .offset = 0,
781 .dst_type = DST_TYPE_IS_SAT,
782 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300783 .dst_feature = 0,
784 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700785 }, /* obsolete */
786
787 {
788 .device_id = "DST-030",
789 .offset = 0,
790 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7ef53b12006-06-21 10:41:41 -0300791 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_TS188 | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300792 .dst_feature = 0,
793 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700794 }, /* obsolete */
795
796 {
797 .device_id = "DST-03T",
798 .offset = 0,
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
Manu Abraham396cffd2006-06-21 10:27:49 -0300802 | DST_TYPE_HAS_MAC | DST_TYPE_HAS_MOTO,
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300803 .tuner_type = TUNER_TYPE_MULTI
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700804 },
805
806 {
807 .device_id = "DST-MOT",
808 .offset = 0,
809 .dst_type = DST_TYPE_IS_SAT,
810 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300811 .dst_feature = 0,
812 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700813 }, /* obsolete */
814
815 {
816 .device_id = "DST-CI",
817 .offset = 1,
818 .dst_type = DST_TYPE_IS_SAT,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300819 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300820 .dst_feature = DST_TYPE_HAS_CA,
821 .tuner_type = 0
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700822 }, /* An OEM board */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700823
824 {
825 .device_id = "DSTMCI",
826 .offset = 1,
827 .dst_type = DST_TYPE_IS_SAT,
Manu Abrahamcdd42082006-06-21 10:41:45 -0300828 .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,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700829 .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4
Manu Abraham396cffd2006-06-21 10:27:49 -0300830 | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC,
831 .tuner_type = TUNER_TYPE_MULTI
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700832 },
833
834 {
835 .device_id = "DSTFCI",
836 .offset = 1,
837 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7ef53b12006-06-21 10:41:41 -0300838 .type_flags = DST_TYPE_HAS_TS188 | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300839 .dst_feature = 0,
840 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700841 }, /* unknown to vendor */
842
843 {
844 .device_id = "DCT-CI",
845 .offset = 1,
846 .dst_type = DST_TYPE_IS_CABLE,
Manu Abrahamcdd42082006-06-21 10:41:45 -0300847 .type_flags = DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_VLF,
Manu Abraham396cffd2006-06-21 10:27:49 -0300848 .dst_feature = DST_TYPE_HAS_CA,
849 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700850 },
851
852 {
853 .device_id = "DCTNEW",
854 .offset = 1,
855 .dst_type = DST_TYPE_IS_CABLE,
Manu Abraham7ef53b12006-06-21 10:41:41 -0300856 .type_flags = DST_TYPE_HAS_TS188 | DST_TYPE_HAS_FW_3 | DST_TYPE_HAS_FW_BUILD | DST_TYPE_HAS_MULTI_FE,
Manu Abraham396cffd2006-06-21 10:27:49 -0300857 .dst_feature = 0,
858 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700859 },
860
861 {
862 .device_id = "DTT-CI",
863 .offset = 1,
864 .dst_type = DST_TYPE_IS_TERR,
Manu Abrahamcdd42082006-06-21 10:41:45 -0300865 .type_flags = DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_VLF,
Manu Abraham396cffd2006-06-21 10:27:49 -0300866 .dst_feature = DST_TYPE_HAS_CA,
867 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700868 },
869
870 {
871 .device_id = "DTTDIG",
872 .offset = 1,
873 .dst_type = DST_TYPE_IS_TERR,
874 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300875 .dst_feature = 0,
876 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700877 },
878
879 {
880 .device_id = "DTTNXT",
881 .offset = 1,
882 .dst_type = DST_TYPE_IS_TERR,
883 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300884 .dst_feature = DST_TYPE_HAS_ANALOG,
885 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700886 },
887
888 {
889 .device_id = "ATSCDI",
890 .offset = 1,
891 .dst_type = DST_TYPE_IS_ATSC,
892 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300893 .dst_feature = 0,
894 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700895 },
896
897 {
898 .device_id = "ATSCAD",
899 .offset = 1,
900 .dst_type = DST_TYPE_IS_ATSC,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300901 .type_flags = DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD,
Manu Abraham396cffd2006-06-21 10:27:49 -0300902 .dst_feature = DST_TYPE_HAS_MAC | DST_TYPE_HAS_ANALOG,
903 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700904 },
905
906 { }
907
908};
909
Manu Abraham62121b12005-09-09 13:03:01 -0700910static int dst_get_mac(struct dst_state *state)
911{
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");
916 return -1;
917 }
918 memset(&state->mac_address, '\0', 8);
919 memcpy(&state->mac_address, &state->rxbuffer, 6);
Johannes Berg7c510e42008-10-27 17:47:26 -0700920 dprintk(verbose, DST_ERROR, 1, "MAC Address=[%pM]", state->mac_address);
Manu Abraham62121b12005-09-09 13:03:01 -0700921
922 return 0;
923}
924
925static int dst_fw_ver(struct dst_state *state)
926{
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");
931 return -1;
932 }
Manu Abraham62121b12005-09-09 13:03:01 -0700933 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]);
939
940 return 0;
941}
942
943static int dst_card_type(struct dst_state *state)
944{
Manu Abraham364f2552006-06-21 10:28:01 -0300945 int j;
946 struct tuner_types *p_tuner_list = NULL;
947
Manu Abraham62121b12005-09-09 13:03:01 -0700948 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");
952 return -1;
953 }
954 memset(&state->card_info, '\0', 8);
Manu Abraham351634d2006-06-21 10:27:57 -0300955 memcpy(&state->card_info, &state->rxbuffer, 7);
Manu Abraham62121b12005-09-09 13:03:01 -0700956 dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
957
Manu Abraham364f2552006-06-21 10:28:01 -0300958 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;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300961 dprintk(verbose, DST_ERROR, 1, "DST has [%s] tuner, tuner type=[%d]",
Manu Abraham364f2552006-06-21 10:28:01 -0300962 p_tuner_list->tuner_name, p_tuner_list->tuner_type);
963 }
964 }
965
Manu Abraham62121b12005-09-09 13:03:01 -0700966 return 0;
967}
968
969static int dst_get_vendor(struct dst_state *state)
970{
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");
975 return -1;
976 }
977 memset(&state->vendor, '\0', 8);
Manu Abraham351634d2006-06-21 10:27:57 -0300978 memcpy(&state->vendor, &state->rxbuffer, 7);
Manu Abraham62121b12005-09-09 13:03:01 -0700979 dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
980
981 return 0;
982}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700983
Manu Abrahamde1e6ec2006-06-21 10:28:27 -0300984static void debug_dst_buffer(struct dst_state *state)
985{
986 int i;
987
988 if (verbose > 2) {
989 printk("%s: [", __func__);
990 for (i = 0; i < 8; i++)
991 printk(" %02x", state->rxbuffer[i]);
992 printk("]\n");
993 }
994}
995
996static int dst_check_stv0299(struct dst_state *state)
997{
998 u8 check_stv0299[] = { 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
999
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");
1003 return -1;
1004 }
1005 debug_dst_buffer(state);
1006
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;
1010 return 0;
1011 }
1012
1013 return -1;
1014}
1015
1016static int dst_check_mb86a15(struct dst_state *state)
1017{
1018 u8 check_mb86a15[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1019
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");
1023 return -1;
1024 }
1025 debug_dst_buffer(state);
1026
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;
1030 return 0;
1031 }
1032
1033 return -1;
1034}
1035
Manu Abraham29b2f782005-11-08 21:35:09 -08001036static int dst_get_tuner_info(struct dst_state *state)
1037{
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 };
1040
1041 get_tuner_1[7] = dst_check_sum(get_tuner_1, 7);
1042 get_tuner_2[7] = dst_check_sum(get_tuner_2, 7);
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001043 dprintk(verbose, DST_ERROR, 1, "DST TYpe = MULTI FE");
Manu Abraham29b2f782005-11-08 21:35:09 -08001044 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001045 if (dst_command(state, get_tuner_1, 8) < 0) {
1046 dprintk(verbose, DST_INFO, 1, "Cmd=[0x13], Unsupported");
Manu Abrahamcdd42082006-06-21 10:41:45 -03001047 goto force;
Manu Abraham29b2f782005-11-08 21:35:09 -08001048 }
1049 } else {
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001050 if (dst_command(state, get_tuner_2, 8) < 0) {
1051 dprintk(verbose, DST_INFO, 1, "Cmd=[0xb], Unsupported");
Manu Abrahamcdd42082006-06-21 10:41:45 -03001052 goto force;
Manu Abraham29b2f782005-11-08 21:35:09 -08001053 }
1054 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001055 memcpy(&state->board_info, &state->rxbuffer, 8);
1056 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001057 dprintk(verbose, DST_ERROR, 1, "DST type has TS=188");
Manu Abraham29b2f782005-11-08 21:35:09 -08001058 }
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001059 if (state->board_info[0] == 0xbc) {
Julia Lawall3227c862009-07-21 13:47:46 -03001060 if (state->dst_type != DST_TYPE_IS_ATSC)
Manu Abraham7ef53b12006-06-21 10:41:41 -03001061 state->type_flags |= DST_TYPE_HAS_TS188;
Bryan Scott3da2f4c2006-06-21 10:28:12 -03001062 else
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001063 state->type_flags |= DST_TYPE_HAS_NEWTUNE_2;
Bryan Scott3da2f4c2006-06-21 10:28:12 -03001064
Manu Abraham5aef20a2006-06-21 10:28:16 -03001065 if (state->board_info[1] == 0x01) {
1066 state->dst_hw_cap |= DST_TYPE_HAS_DBOARD;
1067 dprintk(verbose, DST_ERROR, 1, "DST has Daughterboard");
1068 }
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001069 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001070
1071 return 0;
Manu Abrahamcdd42082006-06-21 10:41:45 -03001072force:
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);
1076 }
1077
1078 return -1;
Manu Abraham29b2f782005-11-08 21:35:09 -08001079}
1080
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001081static int dst_get_device_id(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001083 u8 reply;
1084
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001085 int i, j;
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001086 struct dst_types *p_dst_type = NULL;
1087 struct tuner_types *p_tuner_list = NULL;
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001088
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001089 u8 use_dst_type = 0;
1090 u32 use_type_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001092 static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001094 state->tuner_type = 0;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001095 device_type[7] = dst_check_sum(device_type, 7);
1096
1097 if (write_dst(state, device_type, FIXED_COMM))
1098 return -1; /* Write failed */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001099 if ((dst_pio_disable(state)) < 0)
1100 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001101 if (read_dst(state, &reply, GET_ACK))
1102 return -1; /* Read failure */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001103 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001104 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001105 return -1; /* Unack'd write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001107 if (!dst_wait_dst_ready(state, DEVICE_INIT))
1108 return -1; /* DST not ready yet */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001109 if (read_dst(state, state->rxbuffer, FIXED_COMM))
1110 return -1;
1111
1112 dst_pio_disable(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001113 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001114 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001115 return -1; /* Checksum failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001117 state->rxbuffer[7] = '\0';
1118
Manu Abrahama427de62005-09-09 13:03:00 -07001119 for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001120 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;
1123
1124 /* Card capabilities */
1125 state->dst_hw_cap = p_dst_type->dst_feature;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001126 dprintk(verbose, DST_ERROR, 1, "Recognise [%s]", p_dst_type->device_id);
Manu Abraham63ad4e42006-06-21 10:41:37 -03001127 strncpy(&state->fw_name[0], p_dst_type->device_id, 6);
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001128 /* Multiple tuners */
1129 if (p_dst_type->tuner_type & TUNER_TYPE_MULTI) {
Manu Abrahamb32474c2006-06-21 10:28:31 -03001130 switch (use_dst_type) {
1131 case DST_TYPE_IS_SAT:
1132 /* STV0299 check */
1133 if (dst_check_stv0299(state) < 0) {
1134 dprintk(verbose, DST_ERROR, 1, "Unsupported");
1135 state->tuner_type = TUNER_TYPE_MB86A15;
1136 }
1137 break;
1138 default:
1139 break;
1140 }
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001141 if (dst_check_mb86a15(state) < 0)
1142 dprintk(verbose, DST_ERROR, 1, "Unsupported");
1143 /* Single tuner */
1144 } else {
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001145 state->tuner_type = p_dst_type->tuner_type;
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001146 }
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);
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001152 }
1153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 break;
1155 }
1156 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001157
Ahmed S. Darwish0496daa72007-02-14 22:57:42 -02001158 if (i >= ARRAY_SIZE(dst_tlist)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001159 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 use_dst_type = DST_TYPE_IS_SAT;
1162 use_type_flags = DST_TYPE_HAS_SYMDIV;
1163 }
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001164 dst_type_print(state, use_dst_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 state->type_flags = use_type_flags;
1166 state->dst_type = use_dst_type;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001167 dst_type_flags_print(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return 0;
1170}
1171
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001172static int dst_probe(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Ingo Molnar3593cab2006-02-07 06:49:14 -02001174 mutex_init(&state->dst_mutex);
Manu Abraham2e506a02006-06-21 10:27:20 -03001175 if (dst_addons & DST_TYPE_HAS_CA) {
1176 if ((rdc_8820_reset(state)) < 0) {
1177 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
1178 return -1;
1179 }
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -07001180 msleep(4000);
Manu Abraham2e506a02006-06-21 10:27:20 -03001181 } else {
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -07001182 msleep(100);
Manu Abraham2e506a02006-06-21 10:27:20 -03001183 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001184 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001185 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001186 return -1;
1187 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001188 msleep(100);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001189 if (dst_get_device_id(state) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001190 dprintk(verbose, DST_ERROR, 1, "unknown device.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001191 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
Manu Abraham62121b12005-09-09 13:03:01 -07001193 if (dst_get_mac(state) < 0) {
1194 dprintk(verbose, DST_INFO, 1, "MAC: Unsupported command");
Manu Abraham62121b12005-09-09 13:03:01 -07001195 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001196 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");
1199 }
Manu Abraham4c09aa72005-11-08 21:35:20 -08001200 if (state->type_flags & DST_TYPE_HAS_TS204) {
1201 dst_packsize(state, 204);
1202 }
Manu Abraham62121b12005-09-09 13:03:01 -07001203 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");
1206 return 0;
1207 }
1208 if (dst_card_type(state) < 0) {
1209 dprintk(verbose, DST_INFO, 1, "Card: Unsupported command");
1210 return 0;
1211 }
1212 if (dst_get_vendor(state) < 0) {
1213 dprintk(verbose, DST_INFO, 1, "Vendor: Unsupported command");
1214 return 0;
1215 }
1216 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001217
1218 return 0;
1219}
1220
Adrian Bunkb00ef4b2007-11-05 14:06:31 -03001221static int dst_command(struct dst_state *state, u8 *data, u8 len)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001222{
1223 u8 reply;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001224
Ingo Molnar3593cab2006-02-07 06:49:14 -02001225 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001226 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001227 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001228 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001230 if (write_dst(state, data, len)) {
Yeasah Pell0851fb42006-08-08 09:10:18 -03001231 dprintk(verbose, DST_INFO, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001232 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001233 dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001234 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001235 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001236 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001237 }
1238 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001239 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001240 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001241 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001242 if (state->type_flags & DST_TYPE_HAS_FW_1)
Thierry MERLEc4e3fd92008-09-01 17:32:10 -03001243 mdelay(3);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001244 if (read_dst(state, &reply, GET_ACK)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001245 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001246 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001247 dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001248 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001249 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001250 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001251 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001252 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001253 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001254 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256 if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001257 goto error;
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001258 if (state->type_flags & DST_TYPE_HAS_FW_1)
Thierry MERLEc4e3fd92008-09-01 17:32:10 -03001259 mdelay(3);
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001260 else
1261 udelay(2000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001262 if (!dst_wait_dst_ready(state, NO_DELAY))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001263 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001264 if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001265 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001266 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001267 dprintk(verbose, DST_INFO, 1, "Recovery failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001268 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001269 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001270 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001273 dprintk(verbose, DST_INFO, 1, "checksum failure");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001274 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
Ingo Molnar3593cab2006-02-07 06:49:14 -02001276 mutex_unlock(&state->dst_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001278
1279error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001280 mutex_unlock(&state->dst_mutex);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001281 return -EIO;
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
Manu Abrahama427de62005-09-09 13:03:00 -07001285static int dst_get_signal(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 int retval;
1288 u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
Harvey Harrisonb2e62e72008-04-08 23:20:00 -03001289 //dprintk("%s: Getting Signal strength and other parameters\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
1291 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1292 return 0;
1293 }
1294 if (0 == (state->diseq_flags & HAS_LOCK)) {
1295 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1296 return 0;
1297 }
1298 if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
1299 retval = dst_command(state, get_signal, 8);
1300 if (retval < 0)
1301 return retval;
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;
Manu Abrahamed3d1062006-06-21 10:27:15 -03001310 } 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];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315 state->cur_jiff = jiffies;
1316 }
1317 return 0;
1318}
1319
Manu Abrahama427de62005-09-09 13:03:00 -07001320static int dst_tone_power_cmd(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
1323
Yeasah Pell0851fb42006-08-08 09:10:18 -03001324 if (state->dst_type != DST_TYPE_IS_SAT)
1325 return -EOPNOTSUPP;
Manu Abraham8f6da8f2005-05-28 15:51:51 -07001326 paket[4] = state->tx_tuna[4];
Manu Abraham86360a32005-05-28 15:51:51 -07001327 paket[2] = state->tx_tuna[2];
Manu Abraham203fe8b2005-05-28 15:51:48 -07001328 paket[3] = state->tx_tuna[3];
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001329 paket[7] = dst_check_sum (paket, 7);
Yeasah Pell0851fb42006-08-08 09:10:18 -03001330 return dst_command(state, paket, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Manu Abrahama427de62005-09-09 13:03:00 -07001333static int dst_get_tuna(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 int retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
1338 return 0;
1339 state->diseq_flags &= ~(HAS_LOCK);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001340 if (!dst_wait_dst_ready(state, NO_DELAY))
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001341 return -EIO;
Manu Abrahamcdd42082006-06-21 10:41:45 -03001342 if ((state->type_flags & DST_TYPE_HAS_VLF) &&
Manu Abraham63ad4e42006-06-21 10:41:37 -03001343 !(state->dst_type == DST_TYPE_IS_ATSC))
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 retval = read_dst(state, state->rx_tuna, 10);
Manu Abrahama427de62005-09-09 13:03:00 -07001346 else
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001347 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (retval < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001349 dprintk(verbose, DST_DEBUG, 1, "read not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001350 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
Manu Abrahamcdd42082006-06-21 10:41:45 -03001352 if ((state->type_flags & DST_TYPE_HAS_VLF) &&
Klaas de Waalf0289ef2010-02-07 14:09:16 -03001353 !(state->dst_type == DST_TYPE_IS_ATSC)) {
Manu Abraham63ad4e42006-06-21 10:41:37 -03001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001356 dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001357 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
1359 } else {
1360 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001361 dprintk(verbose, DST_INFO, 1, "checksum failure? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001362 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364 }
1365 if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
1366 return 0;
Tom Hughesf5648e82005-11-08 21:35:22 -08001367 if (state->dst_type == DST_TYPE_IS_SAT) {
1368 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
1369 } else {
1370 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 16) + (state->rx_tuna[3] << 8) + state->rx_tuna[4];
1371 }
1372 state->decode_freq = state->decode_freq * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 state->decode_lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 state->diseq_flags |= HAS_LOCK;
Manu Abraham7d534212005-07-07 17:57:50 -07001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return 1;
1377}
1378
Manu Abrahama427de62005-09-09 13:03:00 -07001379static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Manu Abrahama427de62005-09-09 13:03:00 -07001381static int dst_write_tuna(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Manu Abrahama427de62005-09-09 13:03:00 -07001383 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 int retval;
1385 u8 reply;
1386
Manu Abrahama427de62005-09-09 13:03:00 -07001387 dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 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);
1393 }
1394 state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001395 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001396 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001397 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001398 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001399 }
Manu Abraham63ad4e42006-06-21 10:41:37 -03001400// if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
Manu Abrahamcdd42082006-06-21 10:41:45 -03001401 if ((state->type_flags & DST_TYPE_HAS_VLF) &&
Manu Abraham63ad4e42006-06-21 10:41:37 -03001402 (!(state->dst_type == DST_TYPE_IS_ATSC))) {
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
1405 retval = write_dst(state, &state->tx_tuna[0], 10);
1406 } else {
1407 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001408 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410 if (retval < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001411 dst_pio_disable(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001412 dprintk(verbose, DST_DEBUG, 1, "write not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001413 goto werr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001415 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001416 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001417 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001419 if ((read_dst(state, &reply, GET_ACK) < 0)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001420 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001421 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001422 }
1423 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001424 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001425 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427 state->diseq_flags |= ATTEMPT_TUNE;
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001428 retval = dst_get_tuna(state);
1429werr:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001430 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001431 return retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001432
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001433error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001434 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001435 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438/*
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
1450 */
1451
Manu Abrahama427de62005-09-09 13:03:00 -07001452static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
Manu Abrahama427de62005-09-09 13:03:00 -07001454 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1456
Manu Abraham226d97e2005-05-28 15:51:52 -07001457 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001458 return -EOPNOTSUPP;
Yeasah Pellceee5262006-06-21 18:28:13 -03001459 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);
1463 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 paket[7] = dst_check_sum(&paket[0], 7);
Yeasah Pell0851fb42006-08-08 09:10:18 -03001466 return dst_command(state, paket, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
Manu Abrahama427de62005-09-09 13:03:00 -07001469static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Yeasah Pell0851fb42006-08-08 09:10:18 -03001471 int need_cmd, retval = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001472 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 state->voltage = voltage;
Manu Abraham226d97e2005-05-28 15:51:52 -07001475 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001476 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 need_cmd = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 switch (voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -07001481 case SEC_VOLTAGE_13:
1482 case SEC_VOLTAGE_18:
1483 if ((state->diseq_flags & HAS_POWER) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 need_cmd = 1;
Manu Abrahama427de62005-09-09 13:03:00 -07001485 state->diseq_flags |= HAS_POWER;
1486 state->tx_tuna[4] = 0x01;
1487 break;
1488 case SEC_VOLTAGE_OFF:
1489 need_cmd = 1;
1490 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1491 state->tx_tuna[4] = 0x00;
1492 break;
1493 default:
1494 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
Manu Abrahama427de62005-09-09 13:03:00 -07001496
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001497 if (need_cmd)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001498 retval = dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001499
Yeasah Pell0851fb42006-08-08 09:10:18 -03001500 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Manu Abrahama427de62005-09-09 13:03:00 -07001503static int dst_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Manu Abrahama427de62005-09-09 13:03:00 -07001505 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 state->tone = tone;
Manu Abraham226d97e2005-05-28 15:51:52 -07001508 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001509 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 switch (tone) {
Manu Abrahama427de62005-09-09 13:03:00 -07001512 case SEC_TONE_OFF:
1513 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1514 state->tx_tuna[2] = 0x00;
1515 else
1516 state->tx_tuna[2] = 0xff;
1517 break;
Steffen Motzer4b2bd302005-07-07 17:58:31 -07001518
Manu Abrahama427de62005-09-09 13:03:00 -07001519 case SEC_TONE_ON:
1520 state->tx_tuna[2] = 0x02;
1521 break;
1522 default:
1523 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
Yeasah Pell0851fb42006-08-08 09:10:18 -03001525 return dst_tone_power_cmd(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
1527
Manu Abraham203fe8b2005-05-28 15:51:48 -07001528static int dst_send_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t minicmd)
1529{
1530 struct dst_state *state = fe->demodulator_priv;
1531
Manu Abraham226d97e2005-05-28 15:51:52 -07001532 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001533 return -EOPNOTSUPP;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001534 state->minicmd = minicmd;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001535 switch (minicmd) {
Manu Abrahama427de62005-09-09 13:03:00 -07001536 case SEC_MINI_A:
1537 state->tx_tuna[3] = 0x02;
1538 break;
1539 case SEC_MINI_B:
1540 state->tx_tuna[3] = 0xff;
1541 break;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001542 }
Yeasah Pell0851fb42006-08-08 09:10:18 -03001543 return dst_tone_power_cmd(state);
Manu Abraham203fe8b2005-05-28 15:51:48 -07001544}
1545
1546
Manu Abrahama427de62005-09-09 13:03:00 -07001547static int dst_init(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Manu Abrahama427de62005-09-09 13:03:00 -07001549 struct dst_state *state = fe->demodulator_priv;
1550
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 };
Manu Abrahamcdd42082006-06-21 10:41:45 -03001555 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 };
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001557 static u8 atsc_tuner[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
Manu Abrahama427de62005-09-09 13:03:00 -07001558
Manu Abraham7d534212005-07-07 17:57:50 -07001559 state->inversion = INVERSION_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 state->voltage = SEC_VOLTAGE_13;
1561 state->tone = SEC_TONE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 state->diseq_flags = 0;
1563 state->k22 = 0x02;
1564 state->bandwidth = BANDWIDTH_7_MHZ;
1565 state->cur_jiff = jiffies;
Manu Abrahama427de62005-09-09 13:03:00 -07001566 if (state->dst_type == DST_TYPE_IS_SAT)
Manu Abrahamcdd42082006-06-21 10:41:45 -03001567 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_VLF) ? sat_tuna_188 : sat_tuna_204), sizeof (sat_tuna_204));
Manu Abrahama427de62005-09-09 13:03:00 -07001568 else if (state->dst_type == DST_TYPE_IS_TERR)
Manu Abrahamcdd42082006-06-21 10:41:45 -03001569 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_VLF) ? ter_tuna_188 : ter_tuna_204), sizeof (ter_tuna_204));
Manu Abrahama427de62005-09-09 13:03:00 -07001570 else if (state->dst_type == DST_TYPE_IS_CABLE)
Manu Abrahamcdd42082006-06-21 10:41:45 -03001571 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_VLF) ? cab_tuna_188 : cab_tuna_204), sizeof (cab_tuna_204));
Manu Abraham1c4e7332006-06-21 10:27:46 -03001572 else if (state->dst_type == DST_TYPE_IS_ATSC)
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001573 memcpy(state->tx_tuna, atsc_tuner, sizeof (atsc_tuner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 return 0;
1576}
1577
Manu Abrahama427de62005-09-09 13:03:00 -07001578static int dst_read_status(struct dvb_frontend *fe, fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
Manu Abrahama427de62005-09-09 13:03:00 -07001580 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 *status = 0;
1583 if (state->diseq_flags & HAS_LOCK) {
Manu Abraham7d534212005-07-07 17:57:50 -07001584// dst_get_signal(state); // don't require(?) to ask MCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (state->decode_lock)
1586 *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1587 }
1588
1589 return 0;
1590}
1591
Manu Abrahama427de62005-09-09 13:03:00 -07001592static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Manu Abrahama427de62005-09-09 13:03:00 -07001594 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Yeasah Pell0851fb42006-08-08 09:10:18 -03001596 int retval = dst_get_signal(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 *strength = state->decode_strength;
1598
Yeasah Pell0851fb42006-08-08 09:10:18 -03001599 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Manu Abrahama427de62005-09-09 13:03:00 -07001602static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Manu Abrahama427de62005-09-09 13:03:00 -07001604 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Yeasah Pell0851fb42006-08-08 09:10:18 -03001606 int retval = dst_get_signal(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 *snr = state->decode_snr;
1608
Yeasah Pell0851fb42006-08-08 09:10:18 -03001609 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
Manu Abraham8cfba632006-06-21 10:27:26 -03001612static int dst_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
1613{
Yeasah Pell0851fb42006-08-08 09:10:18 -03001614 int retval = -EINVAL;
Manu Abraham8cfba632006-06-21 10:27:26 -03001615 struct dst_state *state = fe->demodulator_priv;
1616
1617 if (p != NULL) {
Yeasah Pell0851fb42006-08-08 09:10:18 -03001618 retval = dst_set_freq(state, p->frequency);
1619 if(retval != 0)
1620 return retval;
Manu Abraham8cfba632006-06-21 10:27:26 -03001621 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
1622
1623 if (state->dst_type == DST_TYPE_IS_SAT) {
1624 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1625 dst_set_inversion(state, p->inversion);
1626 dst_set_fec(state, p->u.qpsk.fec_inner);
1627 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1628 dst_set_polarization(state);
1629 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
1630
1631 } else if (state->dst_type == DST_TYPE_IS_TERR)
1632 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1633 else if (state->dst_type == DST_TYPE_IS_CABLE) {
1634 dst_set_fec(state, p->u.qam.fec_inner);
1635 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1636 dst_set_modulation(state, p->u.qam.modulation);
1637 }
Yeasah Pell0851fb42006-08-08 09:10:18 -03001638 retval = dst_write_tuna(fe);
Manu Abraham8cfba632006-06-21 10:27:26 -03001639 }
1640
Yeasah Pell0851fb42006-08-08 09:10:18 -03001641 return retval;
Manu Abraham8cfba632006-06-21 10:27:26 -03001642}
1643
1644static int dst_tune_frontend(struct dvb_frontend* fe,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001645 struct dvb_frontend_parameters* p,
1646 unsigned int mode_flags,
Mauro Carvalho Chehab3ea96612007-07-16 09:27:20 -03001647 unsigned int *delay,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001648 fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
Manu Abrahama427de62005-09-09 13:03:00 -07001650 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001652 if (p != NULL) {
1653 dst_set_freq(state, p->frequency);
1654 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001655
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001656 if (state->dst_type == DST_TYPE_IS_SAT) {
1657 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1658 dst_set_inversion(state, p->inversion);
1659 dst_set_fec(state, p->u.qpsk.fec_inner);
1660 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1661 dst_set_polarization(state);
1662 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001663
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001664 } else if (state->dst_type == DST_TYPE_IS_TERR)
1665 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1666 else if (state->dst_type == DST_TYPE_IS_CABLE) {
1667 dst_set_fec(state, p->u.qam.fec_inner);
1668 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1669 dst_set_modulation(state, p->u.qam.modulation);
1670 }
1671 dst_write_tuna(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001674 if (!(mode_flags & FE_TUNE_MODE_ONESHOT))
1675 dst_read_status(fe, status);
1676
1677 *delay = HZ/10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return 0;
1679}
1680
Manu Abraham8cfba632006-06-21 10:27:26 -03001681static int dst_get_tuning_algo(struct dvb_frontend *fe)
1682{
Matthias Schwarzzota00d0bb2009-01-27 16:29:44 -03001683 return dst_algo ? DVBFE_ALGO_HW : DVBFE_ALGO_SW;
Manu Abraham8cfba632006-06-21 10:27:26 -03001684}
1685
Manu Abrahama427de62005-09-09 13:03:00 -07001686static int dst_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Manu Abrahama427de62005-09-09 13:03:00 -07001688 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690 p->frequency = state->decode_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001692 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1693 p->inversion = state->inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 p->u.qpsk.symbol_rate = state->symbol_rate;
1695 p->u.qpsk.fec_inner = dst_get_fec(state);
1696 } else if (state->dst_type == DST_TYPE_IS_TERR) {
1697 p->u.ofdm.bandwidth = state->bandwidth;
1698 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
1699 p->u.qam.symbol_rate = state->symbol_rate;
1700 p->u.qam.fec_inner = dst_get_fec(state);
Manu Abraham7d534212005-07-07 17:57:50 -07001701 p->u.qam.modulation = dst_get_modulation(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703
1704 return 0;
1705}
1706
Manu Abrahama427de62005-09-09 13:03:00 -07001707static void dst_release(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708{
Manu Abrahama427de62005-09-09 13:03:00 -07001709 struct dst_state *state = fe->demodulator_priv;
Manu Abrahambbdd11f2006-08-08 15:48:08 -03001710 if (state->dst_ca) {
1711 dvb_unregister_device(state->dst_ca);
Mauro Carvalho Chehab149ef722008-04-29 21:38:46 -03001712#ifdef CONFIG_MEDIA_ATTACH
Manu Abrahambbdd11f2006-08-08 15:48:08 -03001713 symbol_put(dst_ca_attach);
1714#endif
1715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 kfree(state);
1717}
1718
1719static struct dvb_frontend_ops dst_dvbt_ops;
1720static struct dvb_frontend_ops dst_dvbs_ops;
1721static struct dvb_frontend_ops dst_dvbc_ops;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001722static struct dvb_frontend_ops dst_atsc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Manu Abrahama427de62005-09-09 13:03:00 -07001724struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001726 /* check if the ASIC is there */
1727 if (dst_probe(state) < 0) {
Jesper Juhl2ea75332005-11-07 01:01:31 -08001728 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001729 return NULL;
1730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 /* determine settings based on type */
Patrick Boettcherdea74862006-05-14 05:01:31 -03001732 /* create dvb_frontend */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 switch (state->dst_type) {
1734 case DST_TYPE_IS_TERR:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001735 memcpy(&state->frontend.ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 break;
1737 case DST_TYPE_IS_CABLE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001738 memcpy(&state->frontend.ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 break;
1740 case DST_TYPE_IS_SAT:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001741 memcpy(&state->frontend.ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 break;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001743 case DST_TYPE_IS_ATSC:
1744 memcpy(&state->frontend.ops, &dst_atsc_ops, sizeof(struct dvb_frontend_ops));
1745 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 default:
Manu Abrahama427de62005-09-09 13:03:00 -07001747 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
Jesper Juhl2ea75332005-11-07 01:01:31 -08001748 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001749 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 state->frontend.demodulator_priv = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001753 return state; /* Manu (DST is a card not a frontend) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754}
1755
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001756EXPORT_SYMBOL(dst_attach);
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758static struct dvb_frontend_ops dst_dvbt_ops = {
1759
1760 .info = {
1761 .name = "DST DVB-T",
1762 .type = FE_OFDM,
1763 .frequency_min = 137000000,
1764 .frequency_max = 858000000,
1765 .frequency_stepsize = 166667,
Arnuschkyc75079c2010-07-27 05:48:08 -03001766 .caps = FE_CAN_FEC_AUTO |
1767 FE_CAN_QAM_AUTO |
1768 FE_CAN_QAM_16 |
1769 FE_CAN_QAM_32 |
1770 FE_CAN_QAM_64 |
1771 FE_CAN_QAM_128 |
1772 FE_CAN_QAM_256 |
1773 FE_CAN_TRANSMISSION_MODE_AUTO |
1774 FE_CAN_GUARD_INTERVAL_AUTO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 },
1776
1777 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001779 .tune = dst_tune_frontend,
1780 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001782 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 .read_status = dst_read_status,
1784 .read_signal_strength = dst_read_signal_strength,
1785 .read_snr = dst_read_snr,
1786};
1787
1788static struct dvb_frontend_ops dst_dvbs_ops = {
1789
1790 .info = {
1791 .name = "DST DVB-S",
1792 .type = FE_QPSK,
1793 .frequency_min = 950000,
1794 .frequency_max = 2150000,
1795 .frequency_stepsize = 1000, /* kHz for QPSK frontends */
1796 .frequency_tolerance = 29500,
1797 .symbol_rate_min = 1000000,
1798 .symbol_rate_max = 45000000,
1799 /* . symbol_rate_tolerance = ???,*/
1800 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1801 },
1802
1803 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001805 .tune = dst_tune_frontend,
1806 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001808 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 .read_status = dst_read_status,
1810 .read_signal_strength = dst_read_signal_strength,
1811 .read_snr = dst_read_snr,
Manu Abraham203fe8b2005-05-28 15:51:48 -07001812 .diseqc_send_burst = dst_send_burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 .diseqc_send_master_cmd = dst_set_diseqc,
1814 .set_voltage = dst_set_voltage,
1815 .set_tone = dst_set_tone,
1816};
1817
1818static struct dvb_frontend_ops dst_dvbc_ops = {
1819
1820 .info = {
1821 .name = "DST DVB-C",
1822 .type = FE_QAM,
1823 .frequency_stepsize = 62500,
1824 .frequency_min = 51000000,
1825 .frequency_max = 858000000,
1826 .symbol_rate_min = 1000000,
1827 .symbol_rate_max = 45000000,
Klaas de Waalf0289ef2010-02-07 14:09:16 -03001828 .caps = FE_CAN_FEC_AUTO |
1829 FE_CAN_QAM_AUTO |
1830 FE_CAN_QAM_16 |
1831 FE_CAN_QAM_32 |
1832 FE_CAN_QAM_64 |
1833 FE_CAN_QAM_128 |
1834 FE_CAN_QAM_256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 },
1836
1837 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001839 .tune = dst_tune_frontend,
1840 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001842 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 .read_status = dst_read_status,
1844 .read_signal_strength = dst_read_signal_strength,
1845 .read_snr = dst_read_snr,
1846};
1847
Manu Abrahambc7386b2006-06-21 10:27:05 -03001848static struct dvb_frontend_ops dst_atsc_ops = {
1849 .info = {
1850 .name = "DST ATSC",
1851 .type = FE_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
1858 },
1859
1860 .release = dst_release,
1861 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001862 .tune = dst_tune_frontend,
1863 .set_frontend = dst_set_frontend,
Manu Abrahambc7386b2006-06-21 10:27:05 -03001864 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001865 .get_frontend_algo = dst_get_tuning_algo,
Manu Abrahambc7386b2006-06-21 10:27:05 -03001866 .read_status = dst_read_status,
1867 .read_signal_strength = dst_read_signal_strength,
1868 .read_snr = dst_read_snr,
1869};
1870
1871MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001872MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1873MODULE_LICENSE("GPL");