blob: 35bc9b2287b4c140bd7cb5708e8f8cdc70ee74f6 [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
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -0300389static int dst_set_bandwidth(struct dst_state *state, u32 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) {
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -0300397 case 6000000:
Manu Abrahama427de62005-09-09 13:03:00 -0700398 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;
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -0300405 case 7000000:
Manu Abrahama427de62005-09-09 13:03:00 -0700406 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;
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -0300413 case 8000000:
Manu Abrahama427de62005-09-09 13:03:00 -0700414 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
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300428static int dst_set_inversion(struct dst_state *state,
429 enum fe_spectral_inversion inversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 state->inversion = inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 switch (inversion) {
Manu Abrahama427de62005-09-09 13:03:00 -0700433 case INVERSION_OFF: /* Inversion = Normal */
434 state->tx_tuna[8] &= ~0x80;
435 break;
436 case INVERSION_ON:
437 state->tx_tuna[8] |= 0x80;
438 break;
439 default:
440 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
Manu Abrahama427de62005-09-09 13:03:00 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return 0;
444}
445
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300446static int dst_set_fec(struct dst_state *state, enum fe_code_rate fec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 state->fec = fec;
449 return 0;
450}
451
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300452static enum fe_code_rate dst_get_fec(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 return state->fec;
455}
456
Manu Abrahama427de62005-09-09 13:03:00 -0700457static int dst_set_symbolrate(struct dst_state *state, u32 srate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 u32 symcalc;
460 u64 sval;
461
462 state->symbol_rate = srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (state->dst_type == DST_TYPE_IS_TERR) {
Yeasah Pell0851fb42006-08-08 09:10:18 -0300464 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Manu Abrahama427de62005-09-09 13:03:00 -0700466 dprintk(verbose, DST_INFO, 1, "set symrate %u", srate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 srate /= 1000;
Manu Abraham63ad4e42006-06-21 10:41:37 -0300468 if (state->dst_type == DST_TYPE_IS_SAT) {
469 if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
470 sval = srate;
471 sval <<= 20;
472 do_div(sval, 88000);
473 symcalc = (u32) sval;
474 dprintk(verbose, DST_INFO, 1, "set symcalc %u", symcalc);
475 state->tx_tuna[5] = (u8) (symcalc >> 12);
476 state->tx_tuna[6] = (u8) (symcalc >> 4);
477 state->tx_tuna[7] = (u8) (symcalc << 4);
478 } else {
479 state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
480 state->tx_tuna[6] = (u8) (srate >> 8);
481 state->tx_tuna[7] = (u8) srate;
482 }
483 state->tx_tuna[8] &= ~0x20;
484 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
485 if (srate > 8000)
486 state->tx_tuna[8] |= 0x20;
487 }
488 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
489 dprintk(verbose, DST_DEBUG, 1, "%s", state->fw_name);
490 if (!strncmp(state->fw_name, "DCTNEW", 6)) {
491 state->tx_tuna[5] = (u8) (srate >> 8);
492 state->tx_tuna[6] = (u8) srate;
493 state->tx_tuna[7] = 0x00;
494 } else if (!strncmp(state->fw_name, "DCT-CI", 6)) {
495 state->tx_tuna[5] = 0x00;
496 state->tx_tuna[6] = (u8) (srate >> 8);
497 state->tx_tuna[7] = (u8) srate;
498 }
Manu Abrahamf612c572005-09-09 13:02:58 -0700499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return 0;
501}
502
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300503static int dst_set_modulation(struct dst_state *state,
504 enum fe_modulation modulation)
Manu Abraham7d534212005-07-07 17:57:50 -0700505{
506 if (state->dst_type != DST_TYPE_IS_CABLE)
Yeasah Pell0851fb42006-08-08 09:10:18 -0300507 return -EOPNOTSUPP;
Manu Abraham7d534212005-07-07 17:57:50 -0700508
509 state->modulation = modulation;
510 switch (modulation) {
Manu Abrahama427de62005-09-09 13:03:00 -0700511 case QAM_16:
512 state->tx_tuna[8] = 0x10;
513 break;
514 case QAM_32:
515 state->tx_tuna[8] = 0x20;
516 break;
517 case QAM_64:
518 state->tx_tuna[8] = 0x40;
519 break;
520 case QAM_128:
521 state->tx_tuna[8] = 0x80;
522 break;
523 case QAM_256:
Manu Abraham63ad4e42006-06-21 10:41:37 -0300524 if (!strncmp(state->fw_name, "DCTNEW", 6))
525 state->tx_tuna[8] = 0xff;
526 else if (!strncmp(state->fw_name, "DCT-CI", 6))
527 state->tx_tuna[8] = 0x00;
Manu Abrahama427de62005-09-09 13:03:00 -0700528 break;
529 case QPSK:
530 case QAM_AUTO:
531 case VSB_8:
532 case VSB_16:
533 default:
534 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700535
536 }
537
538 return 0;
539}
540
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300541static enum fe_modulation dst_get_modulation(struct dst_state *state)
Manu Abraham7d534212005-07-07 17:57:50 -0700542{
543 return state->modulation;
544}
545
546
Manu Abrahama427de62005-09-09 13:03:00 -0700547u8 dst_check_sum(u8 *buf, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 u32 i;
550 u8 val = 0;
551 if (!len)
552 return 0;
553 for (i = 0; i < len; i++) {
554 val += buf[i];
555 }
556 return ((~val) + 1);
557}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700558EXPORT_SYMBOL(dst_check_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300560static void dst_type_flags_print(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300562 u32 type_flags = state->type_flags;
563
Manu Abrahama427de62005-09-09 13:03:00 -0700564 dprintk(verbose, DST_ERROR, 0, "DST type flags :");
Manu Abraham7ef53b12006-06-21 10:41:41 -0300565 if (type_flags & DST_TYPE_HAS_TS188)
566 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner", DST_TYPE_HAS_TS188);
Manu Abraham1da5e8d2006-06-21 10:28:05 -0300567 if (type_flags & DST_TYPE_HAS_NEWTUNE_2)
568 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner 2", DST_TYPE_HAS_NEWTUNE_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (type_flags & DST_TYPE_HAS_TS204)
Manu Abrahama427de62005-09-09 13:03:00 -0700570 dprintk(verbose, DST_ERROR, 0, " 0x%x ts204", DST_TYPE_HAS_TS204);
Manu Abrahamcdd42082006-06-21 10:41:45 -0300571 if (type_flags & DST_TYPE_HAS_VLF)
572 dprintk(verbose, DST_ERROR, 0, " 0x%x VLF", DST_TYPE_HAS_VLF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (type_flags & DST_TYPE_HAS_SYMDIV)
Manu Abrahama427de62005-09-09 13:03:00 -0700574 dprintk(verbose, DST_ERROR, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700575 if (type_flags & DST_TYPE_HAS_FW_1)
Manu Abrahama427de62005-09-09 13:03:00 -0700576 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700577 if (type_flags & DST_TYPE_HAS_FW_2)
Manu Abrahama427de62005-09-09 13:03:00 -0700578 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700579 if (type_flags & DST_TYPE_HAS_FW_3)
Manu Abrahama427de62005-09-09 13:03:00 -0700580 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3);
581 dprintk(verbose, DST_ERROR, 0, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700584
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300585static int dst_type_print(struct dst_state *state, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 char *otype;
588 switch (type) {
589 case DST_TYPE_IS_SAT:
590 otype = "satellite";
591 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 case DST_TYPE_IS_TERR:
594 otype = "terrestrial";
595 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 case DST_TYPE_IS_CABLE:
598 otype = "cable";
599 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700600
Manu Abrahambc7386b2006-06-21 10:27:05 -0300601 case DST_TYPE_IS_ATSC:
602 otype = "atsc";
603 break;
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 default:
Manu Abrahama427de62005-09-09 13:03:00 -0700606 dprintk(verbose, DST_INFO, 1, "invalid dst type %d", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return -EINVAL;
608 }
Manu Abrahama427de62005-09-09 13:03:00 -0700609 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 0;
612}
613
Adrian Bunkb00ef4b2007-11-05 14:06:31 -0300614static struct tuner_types tuner_list[] = {
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300615 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300616 .tuner_type = TUNER_TYPE_L64724,
Manu Abraham364f2552006-06-21 10:28:01 -0300617 .tuner_name = "L 64724",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300618 .board_name = "UNKNOWN",
619 .fw_name = "UNKNOWN"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300620 },
621
622 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300623 .tuner_type = TUNER_TYPE_STV0299,
Manu Abraham364f2552006-06-21 10:28:01 -0300624 .tuner_name = "STV 0299",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300625 .board_name = "VP1020",
626 .fw_name = "DST-MOT"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300627 },
628
629 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300630 .tuner_type = TUNER_TYPE_STV0299,
631 .tuner_name = "STV 0299",
632 .board_name = "VP1020",
633 .fw_name = "DST-03T"
634 },
635
636 {
637 .tuner_type = TUNER_TYPE_MB86A15,
Manu Abraham364f2552006-06-21 10:28:01 -0300638 .tuner_name = "MB 86A15",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300639 .board_name = "VP1022",
640 .fw_name = "DST-03T"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300641 },
Manu Abraham364f2552006-06-21 10:28:01 -0300642
643 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300644 .tuner_type = TUNER_TYPE_MB86A15,
645 .tuner_name = "MB 86A15",
646 .board_name = "VP1025",
647 .fw_name = "DST-03T"
648 },
649
650 {
651 .tuner_type = TUNER_TYPE_STV0299,
652 .tuner_name = "STV 0299",
653 .board_name = "VP1030",
654 .fw_name = "DST-CI"
655 },
656
657 {
658 .tuner_type = TUNER_TYPE_STV0299,
659 .tuner_name = "STV 0299",
660 .board_name = "VP1030",
661 .fw_name = "DSTMCI"
662 },
663
664 {
665 .tuner_type = TUNER_TYPE_UNKNOWN,
666 .tuner_name = "UNKNOWN",
Manu Abraham63ad4e42006-06-21 10:41:37 -0300667 .board_name = "VP2021",
668 .fw_name = "DCTNEW"
669 },
670
671 {
672 .tuner_type = TUNER_TYPE_UNKNOWN,
673 .tuner_name = "UNKNOWN",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300674 .board_name = "VP2030",
675 .fw_name = "DCT-CI"
676 },
677
678 {
679 .tuner_type = TUNER_TYPE_UNKNOWN,
680 .tuner_name = "UNKNOWN",
681 .board_name = "VP2031",
682 .fw_name = "DCT-CI"
683 },
684
685 {
686 .tuner_type = TUNER_TYPE_UNKNOWN,
687 .tuner_name = "UNKNOWN",
688 .board_name = "VP2040",
689 .fw_name = "DCT-CI"
690 },
691
692 {
693 .tuner_type = TUNER_TYPE_UNKNOWN,
694 .tuner_name = "UNKNOWN",
695 .board_name = "VP3020",
696 .fw_name = "DTTFTA"
697 },
698
699 {
700 .tuner_type = TUNER_TYPE_UNKNOWN,
701 .tuner_name = "UNKNOWN",
702 .board_name = "VP3021",
703 .fw_name = "DTTFTA"
704 },
705
706 {
707 .tuner_type = TUNER_TYPE_TDA10046,
708 .tuner_name = "TDA10046",
709 .board_name = "VP3040",
710 .fw_name = "DTT-CI"
711 },
712
713 {
714 .tuner_type = TUNER_TYPE_UNKNOWN,
715 .tuner_name = "UNKNOWN",
716 .board_name = "VP3051",
717 .fw_name = "DTTNXT"
718 },
719
720 {
721 .tuner_type = TUNER_TYPE_NXT200x,
722 .tuner_name = "NXT200x",
723 .board_name = "VP3220",
724 .fw_name = "ATSCDI"
725 },
726
727 {
728 .tuner_type = TUNER_TYPE_NXT200x,
729 .tuner_name = "NXT200x",
730 .board_name = "VP3250",
731 .fw_name = "ATSCAD"
732 },
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300733};
734
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700735/*
736 Known cards list
737 Satellite
738 -------------------
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700739 200103A
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700740 VP-1020 DST-MOT LG(old), TS=188
741
742 VP-1020 DST-03T LG(new), TS=204
743 VP-1022 DST-03T LG(new), TS=204
744 VP-1025 DST-03T LG(new), TS=204
745
746 VP-1030 DSTMCI, LG(new), TS=188
747 VP-1032 DSTMCI, LG(new), TS=188
748
749 Cable
750 -------------------
751 VP-2030 DCT-CI, Samsung, TS=204
752 VP-2021 DCT-CI, Unknown, TS=204
753 VP-2031 DCT-CI, Philips, TS=188
754 VP-2040 DCT-CI, Philips, TS=188, with CA daughter board
755 VP-2040 DCT-CI, Philips, TS=204, without CA daughter board
756
757 Terrestrial
758 -------------------
759 VP-3050 DTTNXT TS=188
760 VP-3040 DTT-CI, Philips, TS=188
761 VP-3040 DTT-CI, Philips, TS=204
762
763 ATSC
764 -------------------
765 VP-3220 ATSCDI, TS=188
766 VP-3250 ATSCAD, TS=188
767
768*/
769
Adrian Bunk47a9e502006-02-27 00:07:55 -0300770static struct dst_types dst_tlist[] = {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700771 {
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700772 .device_id = "200103A",
773 .offset = 0,
774 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700775 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS,
Manu Abraham396cffd2006-06-21 10:27:49 -0300776 .dst_feature = 0,
777 .tuner_type = 0
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700778 }, /* obsolete */
779
780 {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700781 .device_id = "DST-020",
782 .offset = 0,
783 .dst_type = DST_TYPE_IS_SAT,
784 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300785 .dst_feature = 0,
786 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700787 }, /* obsolete */
788
789 {
790 .device_id = "DST-030",
791 .offset = 0,
792 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7ef53b12006-06-21 10:41:41 -0300793 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_TS188 | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300794 .dst_feature = 0,
795 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700796 }, /* obsolete */
797
798 {
799 .device_id = "DST-03T",
800 .offset = 0,
801 .dst_type = DST_TYPE_IS_SAT,
802 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
803 .dst_feature = DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 | DST_TYPE_HAS_DISEQC5
Manu Abraham396cffd2006-06-21 10:27:49 -0300804 | DST_TYPE_HAS_MAC | DST_TYPE_HAS_MOTO,
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300805 .tuner_type = TUNER_TYPE_MULTI
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700806 },
807
808 {
809 .device_id = "DST-MOT",
810 .offset = 0,
811 .dst_type = DST_TYPE_IS_SAT,
812 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300813 .dst_feature = 0,
814 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700815 }, /* obsolete */
816
817 {
818 .device_id = "DST-CI",
819 .offset = 1,
820 .dst_type = DST_TYPE_IS_SAT,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300821 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300822 .dst_feature = DST_TYPE_HAS_CA,
823 .tuner_type = 0
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700824 }, /* An OEM board */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700825
826 {
827 .device_id = "DSTMCI",
828 .offset = 1,
829 .dst_type = DST_TYPE_IS_SAT,
Manu Abrahamcdd42082006-06-21 10:41:45 -0300830 .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 -0700831 .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4
Manu Abraham396cffd2006-06-21 10:27:49 -0300832 | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC,
833 .tuner_type = TUNER_TYPE_MULTI
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700834 },
835
836 {
837 .device_id = "DSTFCI",
838 .offset = 1,
839 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7ef53b12006-06-21 10:41:41 -0300840 .type_flags = DST_TYPE_HAS_TS188 | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300841 .dst_feature = 0,
842 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700843 }, /* unknown to vendor */
844
845 {
846 .device_id = "DCT-CI",
847 .offset = 1,
848 .dst_type = DST_TYPE_IS_CABLE,
Manu Abrahamcdd42082006-06-21 10:41:45 -0300849 .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 -0300850 .dst_feature = DST_TYPE_HAS_CA,
851 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700852 },
853
854 {
855 .device_id = "DCTNEW",
856 .offset = 1,
857 .dst_type = DST_TYPE_IS_CABLE,
Manu Abraham7ef53b12006-06-21 10:41:41 -0300858 .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 -0300859 .dst_feature = 0,
860 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700861 },
862
863 {
864 .device_id = "DTT-CI",
865 .offset = 1,
866 .dst_type = DST_TYPE_IS_TERR,
Manu Abrahamcdd42082006-06-21 10:41:45 -0300867 .type_flags = DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_VLF,
Manu Abraham396cffd2006-06-21 10:27:49 -0300868 .dst_feature = DST_TYPE_HAS_CA,
869 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700870 },
871
872 {
873 .device_id = "DTTDIG",
874 .offset = 1,
875 .dst_type = DST_TYPE_IS_TERR,
876 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300877 .dst_feature = 0,
878 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700879 },
880
881 {
882 .device_id = "DTTNXT",
883 .offset = 1,
884 .dst_type = DST_TYPE_IS_TERR,
885 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300886 .dst_feature = DST_TYPE_HAS_ANALOG,
887 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700888 },
889
890 {
891 .device_id = "ATSCDI",
892 .offset = 1,
893 .dst_type = DST_TYPE_IS_ATSC,
894 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300895 .dst_feature = 0,
896 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700897 },
898
899 {
900 .device_id = "ATSCAD",
901 .offset = 1,
902 .dst_type = DST_TYPE_IS_ATSC,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300903 .type_flags = DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD,
Manu Abraham396cffd2006-06-21 10:27:49 -0300904 .dst_feature = DST_TYPE_HAS_MAC | DST_TYPE_HAS_ANALOG,
905 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700906 },
907
908 { }
909
910};
911
Manu Abraham62121b12005-09-09 13:03:01 -0700912static int dst_get_mac(struct dst_state *state)
913{
914 u8 get_mac[] = { 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
915 get_mac[7] = dst_check_sum(get_mac, 7);
916 if (dst_command(state, get_mac, 8) < 0) {
917 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
918 return -1;
919 }
920 memset(&state->mac_address, '\0', 8);
921 memcpy(&state->mac_address, &state->rxbuffer, 6);
Johannes Berg7c510e42008-10-27 17:47:26 -0700922 dprintk(verbose, DST_ERROR, 1, "MAC Address=[%pM]", state->mac_address);
Manu Abraham62121b12005-09-09 13:03:01 -0700923
924 return 0;
925}
926
927static int dst_fw_ver(struct dst_state *state)
928{
929 u8 get_ver[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
930 get_ver[7] = dst_check_sum(get_ver, 7);
931 if (dst_command(state, get_ver, 8) < 0) {
932 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
933 return -1;
934 }
Manu Abraham62121b12005-09-09 13:03:01 -0700935 memcpy(&state->fw_version, &state->rxbuffer, 8);
936 dprintk(verbose, DST_ERROR, 1, "Firmware Ver = %x.%x Build = %02x, on %x:%x, %x-%x-20%02x",
937 state->fw_version[0] >> 4, state->fw_version[0] & 0x0f,
938 state->fw_version[1],
939 state->fw_version[5], state->fw_version[6],
940 state->fw_version[4], state->fw_version[3], state->fw_version[2]);
941
942 return 0;
943}
944
945static int dst_card_type(struct dst_state *state)
946{
Manu Abraham364f2552006-06-21 10:28:01 -0300947 int j;
948 struct tuner_types *p_tuner_list = NULL;
949
Manu Abraham62121b12005-09-09 13:03:01 -0700950 u8 get_type[] = { 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
951 get_type[7] = dst_check_sum(get_type, 7);
952 if (dst_command(state, get_type, 8) < 0) {
953 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
954 return -1;
955 }
956 memset(&state->card_info, '\0', 8);
Manu Abraham351634d2006-06-21 10:27:57 -0300957 memcpy(&state->card_info, &state->rxbuffer, 7);
Manu Abraham62121b12005-09-09 13:03:01 -0700958 dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
959
Manu Abraham364f2552006-06-21 10:28:01 -0300960 for (j = 0, p_tuner_list = tuner_list; j < ARRAY_SIZE(tuner_list); j++, p_tuner_list++) {
961 if (!strcmp(&state->card_info[0], p_tuner_list->board_name)) {
962 state->tuner_type = p_tuner_list->tuner_type;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300963 dprintk(verbose, DST_ERROR, 1, "DST has [%s] tuner, tuner type=[%d]",
Manu Abraham364f2552006-06-21 10:28:01 -0300964 p_tuner_list->tuner_name, p_tuner_list->tuner_type);
965 }
966 }
967
Manu Abraham62121b12005-09-09 13:03:01 -0700968 return 0;
969}
970
971static int dst_get_vendor(struct dst_state *state)
972{
973 u8 get_vendor[] = { 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
974 get_vendor[7] = dst_check_sum(get_vendor, 7);
975 if (dst_command(state, get_vendor, 8) < 0) {
976 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
977 return -1;
978 }
979 memset(&state->vendor, '\0', 8);
Manu Abraham351634d2006-06-21 10:27:57 -0300980 memcpy(&state->vendor, &state->rxbuffer, 7);
Manu Abraham62121b12005-09-09 13:03:01 -0700981 dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
982
983 return 0;
984}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700985
Manu Abrahamde1e6ec2006-06-21 10:28:27 -0300986static void debug_dst_buffer(struct dst_state *state)
987{
988 int i;
989
990 if (verbose > 2) {
991 printk("%s: [", __func__);
992 for (i = 0; i < 8; i++)
993 printk(" %02x", state->rxbuffer[i]);
994 printk("]\n");
995 }
996}
997
998static int dst_check_stv0299(struct dst_state *state)
999{
1000 u8 check_stv0299[] = { 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1001
1002 check_stv0299[7] = dst_check_sum(check_stv0299, 7);
1003 if (dst_command(state, check_stv0299, 8) < 0) {
1004 dprintk(verbose, DST_ERROR, 1, "Cmd=[0x04] failed");
1005 return -1;
1006 }
1007 debug_dst_buffer(state);
1008
1009 if (memcmp(&check_stv0299, &state->rxbuffer, 8)) {
1010 dprintk(verbose, DST_ERROR, 1, "Found a STV0299 NIM");
1011 state->tuner_type = TUNER_TYPE_STV0299;
1012 return 0;
1013 }
1014
1015 return -1;
1016}
1017
1018static int dst_check_mb86a15(struct dst_state *state)
1019{
1020 u8 check_mb86a15[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1021
1022 check_mb86a15[7] = dst_check_sum(check_mb86a15, 7);
1023 if (dst_command(state, check_mb86a15, 8) < 0) {
1024 dprintk(verbose, DST_ERROR, 1, "Cmd=[0x10], failed");
1025 return -1;
1026 }
1027 debug_dst_buffer(state);
1028
1029 if (memcmp(&check_mb86a15, &state->rxbuffer, 8) < 0) {
1030 dprintk(verbose, DST_ERROR, 1, "Found a MB86A15 NIM");
1031 state->tuner_type = TUNER_TYPE_MB86A15;
1032 return 0;
1033 }
1034
1035 return -1;
1036}
1037
Manu Abraham29b2f782005-11-08 21:35:09 -08001038static int dst_get_tuner_info(struct dst_state *state)
1039{
1040 u8 get_tuner_1[] = { 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1041 u8 get_tuner_2[] = { 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1042
1043 get_tuner_1[7] = dst_check_sum(get_tuner_1, 7);
1044 get_tuner_2[7] = dst_check_sum(get_tuner_2, 7);
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001045 dprintk(verbose, DST_ERROR, 1, "DST TYpe = MULTI FE");
Manu Abraham29b2f782005-11-08 21:35:09 -08001046 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001047 if (dst_command(state, get_tuner_1, 8) < 0) {
1048 dprintk(verbose, DST_INFO, 1, "Cmd=[0x13], Unsupported");
Manu Abrahamcdd42082006-06-21 10:41:45 -03001049 goto force;
Manu Abraham29b2f782005-11-08 21:35:09 -08001050 }
1051 } else {
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001052 if (dst_command(state, get_tuner_2, 8) < 0) {
1053 dprintk(verbose, DST_INFO, 1, "Cmd=[0xb], Unsupported");
Manu Abrahamcdd42082006-06-21 10:41:45 -03001054 goto force;
Manu Abraham29b2f782005-11-08 21:35:09 -08001055 }
1056 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001057 memcpy(&state->board_info, &state->rxbuffer, 8);
1058 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001059 dprintk(verbose, DST_ERROR, 1, "DST type has TS=188");
Manu Abraham29b2f782005-11-08 21:35:09 -08001060 }
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001061 if (state->board_info[0] == 0xbc) {
Julia Lawall3227c862009-07-21 13:47:46 -03001062 if (state->dst_type != DST_TYPE_IS_ATSC)
Manu Abraham7ef53b12006-06-21 10:41:41 -03001063 state->type_flags |= DST_TYPE_HAS_TS188;
Bryan Scott3da2f4c2006-06-21 10:28:12 -03001064 else
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001065 state->type_flags |= DST_TYPE_HAS_NEWTUNE_2;
Bryan Scott3da2f4c2006-06-21 10:28:12 -03001066
Manu Abraham5aef20a2006-06-21 10:28:16 -03001067 if (state->board_info[1] == 0x01) {
1068 state->dst_hw_cap |= DST_TYPE_HAS_DBOARD;
1069 dprintk(verbose, DST_ERROR, 1, "DST has Daughterboard");
1070 }
Manu Abrahamc65f1c52006-06-21 10:27:40 -03001071 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001072
1073 return 0;
Manu Abrahamcdd42082006-06-21 10:41:45 -03001074force:
1075 if (!strncmp(state->fw_name, "DCT-CI", 6)) {
1076 state->type_flags |= DST_TYPE_HAS_TS204;
1077 dprintk(verbose, DST_ERROR, 1, "Forcing [%s] to TS188", state->fw_name);
1078 }
1079
1080 return -1;
Manu Abraham29b2f782005-11-08 21:35:09 -08001081}
1082
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001083static int dst_get_device_id(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001085 u8 reply;
1086
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001087 int i, j;
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001088 struct dst_types *p_dst_type = NULL;
1089 struct tuner_types *p_tuner_list = NULL;
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001090
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001091 u8 use_dst_type = 0;
1092 u32 use_type_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001094 static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001096 state->tuner_type = 0;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001097 device_type[7] = dst_check_sum(device_type, 7);
1098
1099 if (write_dst(state, device_type, FIXED_COMM))
1100 return -1; /* Write failed */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001101 if ((dst_pio_disable(state)) < 0)
1102 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001103 if (read_dst(state, &reply, GET_ACK))
1104 return -1; /* Read failure */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001105 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001106 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001107 return -1; /* Unack'd write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001109 if (!dst_wait_dst_ready(state, DEVICE_INIT))
1110 return -1; /* DST not ready yet */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001111 if (read_dst(state, state->rxbuffer, FIXED_COMM))
1112 return -1;
1113
1114 dst_pio_disable(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001115 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001116 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001117 return -1; /* Checksum failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001119 state->rxbuffer[7] = '\0';
1120
Manu Abrahama427de62005-09-09 13:03:00 -07001121 for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001122 if (!strncmp (&state->rxbuffer[p_dst_type->offset], p_dst_type->device_id, strlen (p_dst_type->device_id))) {
1123 use_type_flags = p_dst_type->type_flags;
1124 use_dst_type = p_dst_type->dst_type;
1125
1126 /* Card capabilities */
1127 state->dst_hw_cap = p_dst_type->dst_feature;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001128 dprintk(verbose, DST_ERROR, 1, "Recognise [%s]", p_dst_type->device_id);
Manu Abraham63ad4e42006-06-21 10:41:37 -03001129 strncpy(&state->fw_name[0], p_dst_type->device_id, 6);
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001130 /* Multiple tuners */
1131 if (p_dst_type->tuner_type & TUNER_TYPE_MULTI) {
Manu Abrahamb32474c2006-06-21 10:28:31 -03001132 switch (use_dst_type) {
1133 case DST_TYPE_IS_SAT:
1134 /* STV0299 check */
1135 if (dst_check_stv0299(state) < 0) {
1136 dprintk(verbose, DST_ERROR, 1, "Unsupported");
1137 state->tuner_type = TUNER_TYPE_MB86A15;
1138 }
1139 break;
1140 default:
1141 break;
1142 }
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001143 if (dst_check_mb86a15(state) < 0)
1144 dprintk(verbose, DST_ERROR, 1, "Unsupported");
1145 /* Single tuner */
1146 } else {
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001147 state->tuner_type = p_dst_type->tuner_type;
Manu Abrahamde1e6ec2006-06-21 10:28:27 -03001148 }
1149 for (j = 0, p_tuner_list = tuner_list; j < ARRAY_SIZE(tuner_list); j++, p_tuner_list++) {
1150 if (!(strncmp(p_dst_type->device_id, p_tuner_list->fw_name, 7)) &&
1151 p_tuner_list->tuner_type == state->tuner_type) {
1152 dprintk(verbose, DST_ERROR, 1, "[%s] has a [%s]",
1153 p_dst_type->device_id, p_tuner_list->tuner_name);
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001154 }
1155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 break;
1157 }
1158 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001159
Ahmed S. Darwish0496daa72007-02-14 22:57:42 -02001160 if (i >= ARRAY_SIZE(dst_tlist)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001161 dprintk(verbose, DST_ERROR, 1, "Unable to recognize %s or %s", &state->rxbuffer[0], &state->rxbuffer[1]);
1162 dprintk(verbose, DST_ERROR, 1, "please email linux-dvb@linuxtv.org with this type in");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 use_dst_type = DST_TYPE_IS_SAT;
1164 use_type_flags = DST_TYPE_HAS_SYMDIV;
1165 }
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001166 dst_type_print(state, use_dst_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 state->type_flags = use_type_flags;
1168 state->dst_type = use_dst_type;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001169 dst_type_flags_print(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return 0;
1172}
1173
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001174static int dst_probe(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Ingo Molnar3593cab2006-02-07 06:49:14 -02001176 mutex_init(&state->dst_mutex);
Manu Abraham2e506a02006-06-21 10:27:20 -03001177 if (dst_addons & DST_TYPE_HAS_CA) {
1178 if ((rdc_8820_reset(state)) < 0) {
1179 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
1180 return -1;
1181 }
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -07001182 msleep(4000);
Manu Abraham2e506a02006-06-21 10:27:20 -03001183 } else {
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -07001184 msleep(100);
Manu Abraham2e506a02006-06-21 10:27:20 -03001185 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001186 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001187 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001188 return -1;
1189 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001190 msleep(100);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001191 if (dst_get_device_id(state) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001192 dprintk(verbose, DST_ERROR, 1, "unknown device.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001193 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Manu Abraham62121b12005-09-09 13:03:01 -07001195 if (dst_get_mac(state) < 0) {
1196 dprintk(verbose, DST_INFO, 1, "MAC: Unsupported command");
Manu Abraham62121b12005-09-09 13:03:01 -07001197 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001198 if ((state->type_flags & DST_TYPE_HAS_MULTI_FE) || (state->type_flags & DST_TYPE_HAS_FW_BUILD)) {
1199 if (dst_get_tuner_info(state) < 0)
1200 dprintk(verbose, DST_INFO, 1, "Tuner: Unsupported command");
1201 }
Manu Abraham4c09aa72005-11-08 21:35:20 -08001202 if (state->type_flags & DST_TYPE_HAS_TS204) {
1203 dst_packsize(state, 204);
1204 }
Manu Abraham62121b12005-09-09 13:03:01 -07001205 if (state->type_flags & DST_TYPE_HAS_FW_BUILD) {
1206 if (dst_fw_ver(state) < 0) {
1207 dprintk(verbose, DST_INFO, 1, "FW: Unsupported command");
1208 return 0;
1209 }
1210 if (dst_card_type(state) < 0) {
1211 dprintk(verbose, DST_INFO, 1, "Card: Unsupported command");
1212 return 0;
1213 }
1214 if (dst_get_vendor(state) < 0) {
1215 dprintk(verbose, DST_INFO, 1, "Vendor: Unsupported command");
1216 return 0;
1217 }
1218 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001219
1220 return 0;
1221}
1222
Adrian Bunkb00ef4b2007-11-05 14:06:31 -03001223static int dst_command(struct dst_state *state, u8 *data, u8 len)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001224{
1225 u8 reply;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001226
Ingo Molnar3593cab2006-02-07 06:49:14 -02001227 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001228 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001229 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001230 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001232 if (write_dst(state, data, len)) {
Yeasah Pell0851fb42006-08-08 09:10:18 -03001233 dprintk(verbose, DST_INFO, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001234 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001235 dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001236 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001237 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001238 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001239 }
1240 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001241 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001242 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001243 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001244 if (state->type_flags & DST_TYPE_HAS_FW_1)
Thierry MERLEc4e3fd92008-09-01 17:32:10 -03001245 mdelay(3);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001246 if (read_dst(state, &reply, GET_ACK)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001247 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001248 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001249 dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001250 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001251 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001252 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001253 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001254 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001255 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001256 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258 if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001259 goto error;
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001260 if (state->type_flags & DST_TYPE_HAS_FW_1)
Thierry MERLEc4e3fd92008-09-01 17:32:10 -03001261 mdelay(3);
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001262 else
1263 udelay(2000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001264 if (!dst_wait_dst_ready(state, NO_DELAY))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001265 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001266 if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001267 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001268 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001269 dprintk(verbose, DST_INFO, 1, "Recovery failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001270 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001271 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001272 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001275 dprintk(verbose, DST_INFO, 1, "checksum failure");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001276 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
Ingo Molnar3593cab2006-02-07 06:49:14 -02001278 mutex_unlock(&state->dst_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return 0;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001280
1281error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001282 mutex_unlock(&state->dst_mutex);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001283 return -EIO;
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
Manu Abrahama427de62005-09-09 13:03:00 -07001287static int dst_get_signal(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289 int retval;
1290 u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
Harvey Harrisonb2e62e72008-04-08 23:20:00 -03001291 //dprintk("%s: Getting Signal strength and other parameters\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
1293 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1294 return 0;
1295 }
1296 if (0 == (state->diseq_flags & HAS_LOCK)) {
1297 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1298 return 0;
1299 }
1300 if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
1301 retval = dst_command(state, get_signal, 8);
1302 if (retval < 0)
1303 return retval;
1304 if (state->dst_type == DST_TYPE_IS_SAT) {
1305 state->decode_lock = ((state->rxbuffer[6] & 0x10) == 0) ? 1 : 0;
1306 state->decode_strength = state->rxbuffer[5] << 8;
1307 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
1308 } else if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE)) {
1309 state->decode_lock = (state->rxbuffer[1]) ? 1 : 0;
1310 state->decode_strength = state->rxbuffer[4] << 8;
1311 state->decode_snr = state->rxbuffer[3] << 8;
Manu Abrahamed3d1062006-06-21 10:27:15 -03001312 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
1313 state->decode_lock = (state->rxbuffer[6] == 0x00) ? 1 : 0;
1314 state->decode_strength = state->rxbuffer[4] << 8;
1315 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317 state->cur_jiff = jiffies;
1318 }
1319 return 0;
1320}
1321
Manu Abrahama427de62005-09-09 13:03:00 -07001322static int dst_tone_power_cmd(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
1325
Yeasah Pell0851fb42006-08-08 09:10:18 -03001326 if (state->dst_type != DST_TYPE_IS_SAT)
1327 return -EOPNOTSUPP;
Manu Abraham8f6da8f2005-05-28 15:51:51 -07001328 paket[4] = state->tx_tuna[4];
Manu Abraham86360a32005-05-28 15:51:51 -07001329 paket[2] = state->tx_tuna[2];
Manu Abraham203fe8b2005-05-28 15:51:48 -07001330 paket[3] = state->tx_tuna[3];
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001331 paket[7] = dst_check_sum (paket, 7);
Yeasah Pell0851fb42006-08-08 09:10:18 -03001332 return dst_command(state, paket, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
Manu Abrahama427de62005-09-09 13:03:00 -07001335static int dst_get_tuna(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 int retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
1340 return 0;
1341 state->diseq_flags &= ~(HAS_LOCK);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001342 if (!dst_wait_dst_ready(state, NO_DELAY))
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001343 return -EIO;
Manu Abrahamcdd42082006-06-21 10:41:45 -03001344 if ((state->type_flags & DST_TYPE_HAS_VLF) &&
Manu Abraham63ad4e42006-06-21 10:41:37 -03001345 !(state->dst_type == DST_TYPE_IS_ATSC))
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 retval = read_dst(state, state->rx_tuna, 10);
Manu Abrahama427de62005-09-09 13:03:00 -07001348 else
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001349 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (retval < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001351 dprintk(verbose, DST_DEBUG, 1, "read not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001352 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
Manu Abrahamcdd42082006-06-21 10:41:45 -03001354 if ((state->type_flags & DST_TYPE_HAS_VLF) &&
Klaas de Waalf0289ef2010-02-07 14:09:16 -03001355 !(state->dst_type == DST_TYPE_IS_ATSC)) {
Manu Abraham63ad4e42006-06-21 10:41:37 -03001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001358 dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001359 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
1361 } else {
1362 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001363 dprintk(verbose, DST_INFO, 1, "checksum failure? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001364 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366 }
1367 if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
1368 return 0;
Tom Hughesf5648e82005-11-08 21:35:22 -08001369 if (state->dst_type == DST_TYPE_IS_SAT) {
1370 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
1371 } else {
1372 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 16) + (state->rx_tuna[3] << 8) + state->rx_tuna[4];
1373 }
1374 state->decode_freq = state->decode_freq * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 state->decode_lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 state->diseq_flags |= HAS_LOCK;
Manu Abraham7d534212005-07-07 17:57:50 -07001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return 1;
1379}
1380
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03001381static int dst_set_voltage(struct dvb_frontend *fe,
1382 enum fe_sec_voltage voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Manu Abrahama427de62005-09-09 13:03:00 -07001384static int dst_write_tuna(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Manu Abrahama427de62005-09-09 13:03:00 -07001386 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 int retval;
1388 u8 reply;
1389
Manu Abrahama427de62005-09-09 13:03:00 -07001390 dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 state->decode_freq = 0;
1392 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1393 if (state->dst_type == DST_TYPE_IS_SAT) {
1394 if (!(state->diseq_flags & HAS_POWER))
1395 dst_set_voltage(fe, SEC_VOLTAGE_13);
1396 }
1397 state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001398 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001399 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001400 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001401 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001402 }
Manu Abraham63ad4e42006-06-21 10:41:37 -03001403// if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
Manu Abrahamcdd42082006-06-21 10:41:45 -03001404 if ((state->type_flags & DST_TYPE_HAS_VLF) &&
Manu Abraham63ad4e42006-06-21 10:41:37 -03001405 (!(state->dst_type == DST_TYPE_IS_ATSC))) {
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
1408 retval = write_dst(state, &state->tx_tuna[0], 10);
1409 } else {
1410 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001411 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413 if (retval < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001414 dst_pio_disable(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001415 dprintk(verbose, DST_DEBUG, 1, "write not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001416 goto werr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001418 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001419 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001420 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001422 if ((read_dst(state, &reply, GET_ACK) < 0)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001423 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001424 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001425 }
1426 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001427 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001428 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
1430 state->diseq_flags |= ATTEMPT_TUNE;
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001431 retval = dst_get_tuna(state);
1432werr:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001433 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001434 return retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001435
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001436error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001437 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001438 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
1441/*
1442 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1443 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1444 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1445 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1446 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1447 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1448 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1449 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1450 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1451 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1452 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1453 */
1454
Manu Abrahama427de62005-09-09 13:03:00 -07001455static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Manu Abrahama427de62005-09-09 13:03:00 -07001457 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1459
Manu Abraham226d97e2005-05-28 15:51:52 -07001460 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001461 return -EOPNOTSUPP;
Yeasah Pellceee5262006-06-21 18:28:13 -03001462 if (cmd->msg_len > 0 && cmd->msg_len < 5)
1463 memcpy(&paket[3], cmd->msg, cmd->msg_len);
1464 else if (cmd->msg_len == 5 && state->dst_hw_cap & DST_TYPE_HAS_DISEQC5)
1465 memcpy(&paket[2], cmd->msg, cmd->msg_len);
1466 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 paket[7] = dst_check_sum(&paket[0], 7);
Yeasah Pell0851fb42006-08-08 09:10:18 -03001469 return dst_command(state, paket, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03001472static int dst_set_voltage(struct dvb_frontend *fe, enum fe_sec_voltage voltage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Yeasah Pell0851fb42006-08-08 09:10:18 -03001474 int need_cmd, retval = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001475 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 state->voltage = voltage;
Manu Abraham226d97e2005-05-28 15:51:52 -07001478 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001479 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 need_cmd = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 switch (voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -07001484 case SEC_VOLTAGE_13:
1485 case SEC_VOLTAGE_18:
1486 if ((state->diseq_flags & HAS_POWER) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 need_cmd = 1;
Manu Abrahama427de62005-09-09 13:03:00 -07001488 state->diseq_flags |= HAS_POWER;
1489 state->tx_tuna[4] = 0x01;
1490 break;
1491 case SEC_VOLTAGE_OFF:
1492 need_cmd = 1;
1493 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1494 state->tx_tuna[4] = 0x00;
1495 break;
1496 default:
1497 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
Manu Abrahama427de62005-09-09 13:03:00 -07001499
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001500 if (need_cmd)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001501 retval = dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001502
Yeasah Pell0851fb42006-08-08 09:10:18 -03001503 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03001506static int dst_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Manu Abrahama427de62005-09-09 13:03:00 -07001508 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 state->tone = tone;
Manu Abraham226d97e2005-05-28 15:51:52 -07001511 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001512 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 switch (tone) {
Manu Abrahama427de62005-09-09 13:03:00 -07001515 case SEC_TONE_OFF:
1516 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1517 state->tx_tuna[2] = 0x00;
1518 else
1519 state->tx_tuna[2] = 0xff;
1520 break;
Steffen Motzer4b2bd302005-07-07 17:58:31 -07001521
Manu Abrahama427de62005-09-09 13:03:00 -07001522 case SEC_TONE_ON:
1523 state->tx_tuna[2] = 0x02;
1524 break;
1525 default:
1526 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
Yeasah Pell0851fb42006-08-08 09:10:18 -03001528 return dst_tone_power_cmd(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03001531static int dst_send_burst(struct dvb_frontend *fe, enum fe_sec_mini_cmd minicmd)
Manu Abraham203fe8b2005-05-28 15:51:48 -07001532{
1533 struct dst_state *state = fe->demodulator_priv;
1534
Manu Abraham226d97e2005-05-28 15:51:52 -07001535 if (state->dst_type != DST_TYPE_IS_SAT)
Yeasah Pell0851fb42006-08-08 09:10:18 -03001536 return -EOPNOTSUPP;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001537 state->minicmd = minicmd;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001538 switch (minicmd) {
Manu Abrahama427de62005-09-09 13:03:00 -07001539 case SEC_MINI_A:
1540 state->tx_tuna[3] = 0x02;
1541 break;
1542 case SEC_MINI_B:
1543 state->tx_tuna[3] = 0xff;
1544 break;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001545 }
Yeasah Pell0851fb42006-08-08 09:10:18 -03001546 return dst_tone_power_cmd(state);
Manu Abraham203fe8b2005-05-28 15:51:48 -07001547}
1548
1549
Luis R. Rodriguez68592772014-04-17 22:24:44 -03001550static int bt8xx_dst_init(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Manu Abrahama427de62005-09-09 13:03:00 -07001552 struct dst_state *state = fe->demodulator_priv;
1553
1554 static u8 sat_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1555 static u8 sat_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1556 static u8 ter_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1557 static u8 ter_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
Manu Abrahamcdd42082006-06-21 10:41:45 -03001558 static u8 cab_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1559 static u8 cab_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001560 static u8 atsc_tuner[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
Manu Abrahama427de62005-09-09 13:03:00 -07001561
Manu Abraham7d534212005-07-07 17:57:50 -07001562 state->inversion = INVERSION_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 state->voltage = SEC_VOLTAGE_13;
1564 state->tone = SEC_TONE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 state->diseq_flags = 0;
1566 state->k22 = 0x02;
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001567 state->bandwidth = 7000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 state->cur_jiff = jiffies;
Manu Abrahama427de62005-09-09 13:03:00 -07001569 if (state->dst_type == DST_TYPE_IS_SAT)
Manu Abrahamcdd42082006-06-21 10:41:45 -03001570 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 -07001571 else if (state->dst_type == DST_TYPE_IS_TERR)
Manu Abrahamcdd42082006-06-21 10:41:45 -03001572 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 -07001573 else if (state->dst_type == DST_TYPE_IS_CABLE)
Manu Abrahamcdd42082006-06-21 10:41:45 -03001574 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 -03001575 else if (state->dst_type == DST_TYPE_IS_ATSC)
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001576 memcpy(state->tx_tuna, atsc_tuner, sizeof (atsc_tuner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 return 0;
1579}
1580
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03001581static int dst_read_status(struct dvb_frontend *fe, enum fe_status *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Manu Abrahama427de62005-09-09 13:03:00 -07001583 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 *status = 0;
1586 if (state->diseq_flags & HAS_LOCK) {
Manu Abraham7d534212005-07-07 17:57:50 -07001587// dst_get_signal(state); // don't require(?) to ask MCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (state->decode_lock)
1589 *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1590 }
1591
1592 return 0;
1593}
1594
Manu Abrahama427de62005-09-09 13:03:00 -07001595static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Manu Abrahama427de62005-09-09 13:03:00 -07001597 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Yeasah Pell0851fb42006-08-08 09:10:18 -03001599 int retval = dst_get_signal(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 *strength = state->decode_strength;
1601
Yeasah Pell0851fb42006-08-08 09:10:18 -03001602 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
Manu Abrahama427de62005-09-09 13:03:00 -07001605static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Manu Abrahama427de62005-09-09 13:03:00 -07001607 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Yeasah Pell0851fb42006-08-08 09:10:18 -03001609 int retval = dst_get_signal(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 *snr = state->decode_snr;
1611
Yeasah Pell0851fb42006-08-08 09:10:18 -03001612 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001615static int dst_set_frontend(struct dvb_frontend *fe)
Manu Abraham8cfba632006-06-21 10:27:26 -03001616{
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001617 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
Yeasah Pell0851fb42006-08-08 09:10:18 -03001618 int retval = -EINVAL;
Manu Abraham8cfba632006-06-21 10:27:26 -03001619 struct dst_state *state = fe->demodulator_priv;
1620
1621 if (p != NULL) {
Yeasah Pell0851fb42006-08-08 09:10:18 -03001622 retval = dst_set_freq(state, p->frequency);
1623 if(retval != 0)
1624 return retval;
Manu Abraham8cfba632006-06-21 10:27:26 -03001625 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
1626
1627 if (state->dst_type == DST_TYPE_IS_SAT) {
1628 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1629 dst_set_inversion(state, p->inversion);
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001630 dst_set_fec(state, p->fec_inner);
1631 dst_set_symbolrate(state, p->symbol_rate);
Manu Abraham8cfba632006-06-21 10:27:26 -03001632 dst_set_polarization(state);
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001633 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->symbol_rate);
Manu Abraham8cfba632006-06-21 10:27:26 -03001634
1635 } else if (state->dst_type == DST_TYPE_IS_TERR)
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001636 dst_set_bandwidth(state, p->bandwidth_hz);
Manu Abraham8cfba632006-06-21 10:27:26 -03001637 else if (state->dst_type == DST_TYPE_IS_CABLE) {
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001638 dst_set_fec(state, p->fec_inner);
1639 dst_set_symbolrate(state, p->symbol_rate);
1640 dst_set_modulation(state, p->modulation);
Manu Abraham8cfba632006-06-21 10:27:26 -03001641 }
Yeasah Pell0851fb42006-08-08 09:10:18 -03001642 retval = dst_write_tuna(fe);
Manu Abraham8cfba632006-06-21 10:27:26 -03001643 }
1644
Yeasah Pell0851fb42006-08-08 09:10:18 -03001645 return retval;
Manu Abraham8cfba632006-06-21 10:27:26 -03001646}
1647
1648static int dst_tune_frontend(struct dvb_frontend* fe,
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -03001649 bool re_tune,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001650 unsigned int mode_flags,
Mauro Carvalho Chehab3ea96612007-07-16 09:27:20 -03001651 unsigned int *delay,
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03001652 enum fe_status *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Manu Abrahama427de62005-09-09 13:03:00 -07001654 struct dst_state *state = fe->demodulator_priv;
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -03001655 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -03001657 if (re_tune) {
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001658 dst_set_freq(state, p->frequency);
1659 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001660
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001661 if (state->dst_type == DST_TYPE_IS_SAT) {
1662 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1663 dst_set_inversion(state, p->inversion);
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -03001664 dst_set_fec(state, p->fec_inner);
1665 dst_set_symbolrate(state, p->symbol_rate);
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001666 dst_set_polarization(state);
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -03001667 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->symbol_rate);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001668
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001669 } else if (state->dst_type == DST_TYPE_IS_TERR)
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -03001670 dst_set_bandwidth(state, p->bandwidth_hz);
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001671 else if (state->dst_type == DST_TYPE_IS_CABLE) {
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -03001672 dst_set_fec(state, p->fec_inner);
1673 dst_set_symbolrate(state, p->symbol_rate);
1674 dst_set_modulation(state, p->modulation);
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001675 }
1676 dst_write_tuna(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001679 if (!(mode_flags & FE_TUNE_MODE_ONESHOT))
1680 dst_read_status(fe, status);
1681
1682 *delay = HZ/10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return 0;
1684}
1685
Manu Abraham8cfba632006-06-21 10:27:26 -03001686static int dst_get_tuning_algo(struct dvb_frontend *fe)
1687{
Matthias Schwarzzota00d0bb2009-01-27 16:29:44 -03001688 return dst_algo ? DVBFE_ALGO_HW : DVBFE_ALGO_SW;
Manu Abraham8cfba632006-06-21 10:27:26 -03001689}
1690
Mauro Carvalho Chehab7e3e68b2016-02-04 12:58:30 -02001691static int dst_get_frontend(struct dvb_frontend *fe,
1692 struct dtv_frontend_properties *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Manu Abrahama427de62005-09-09 13:03:00 -07001694 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 p->frequency = state->decode_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001698 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1699 p->inversion = state->inversion;
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001700 p->symbol_rate = state->symbol_rate;
1701 p->fec_inner = dst_get_fec(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 } else if (state->dst_type == DST_TYPE_IS_TERR) {
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001703 p->bandwidth_hz = state->bandwidth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001705 p->symbol_rate = state->symbol_rate;
1706 p->fec_inner = dst_get_fec(state);
1707 p->modulation = dst_get_modulation(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 }
1709
1710 return 0;
1711}
1712
Luis R. Rodriguez68592772014-04-17 22:24:44 -03001713static void bt8xx_dst_release(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
Manu Abrahama427de62005-09-09 13:03:00 -07001715 struct dst_state *state = fe->demodulator_priv;
Manu Abrahambbdd11f2006-08-08 15:48:08 -03001716 if (state->dst_ca) {
1717 dvb_unregister_device(state->dst_ca);
Mauro Carvalho Chehab149ef722008-04-29 21:38:46 -03001718#ifdef CONFIG_MEDIA_ATTACH
Manu Abrahambbdd11f2006-08-08 15:48:08 -03001719 symbol_put(dst_ca_attach);
1720#endif
1721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 kfree(state);
1723}
1724
1725static struct dvb_frontend_ops dst_dvbt_ops;
1726static struct dvb_frontend_ops dst_dvbs_ops;
1727static struct dvb_frontend_ops dst_dvbc_ops;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001728static struct dvb_frontend_ops dst_atsc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Manu Abrahama427de62005-09-09 13:03:00 -07001730struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001732 /* check if the ASIC is there */
1733 if (dst_probe(state) < 0) {
Jesper Juhl2ea75332005-11-07 01:01:31 -08001734 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001735 return NULL;
1736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 /* determine settings based on type */
Patrick Boettcherdea74862006-05-14 05:01:31 -03001738 /* create dvb_frontend */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 switch (state->dst_type) {
1740 case DST_TYPE_IS_TERR:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001741 memcpy(&state->frontend.ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 break;
1743 case DST_TYPE_IS_CABLE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001744 memcpy(&state->frontend.ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 break;
1746 case DST_TYPE_IS_SAT:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001747 memcpy(&state->frontend.ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001749 case DST_TYPE_IS_ATSC:
1750 memcpy(&state->frontend.ops, &dst_atsc_ops, sizeof(struct dvb_frontend_ops));
1751 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 default:
Manu Abrahama427de62005-09-09 13:03:00 -07001753 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
Jesper Juhl2ea75332005-11-07 01:01:31 -08001754 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001755 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 state->frontend.demodulator_priv = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001759 return state; /* Manu (DST is a card not a frontend) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001762EXPORT_SYMBOL(dst_attach);
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764static struct dvb_frontend_ops dst_dvbt_ops = {
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001765 .delsys = { SYS_DVBT },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 .info = {
1767 .name = "DST DVB-T",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 .frequency_min = 137000000,
1769 .frequency_max = 858000000,
1770 .frequency_stepsize = 166667,
Arnuschkyc75079c2010-07-27 05:48:08 -03001771 .caps = FE_CAN_FEC_AUTO |
1772 FE_CAN_QAM_AUTO |
1773 FE_CAN_QAM_16 |
1774 FE_CAN_QAM_32 |
1775 FE_CAN_QAM_64 |
1776 FE_CAN_QAM_128 |
1777 FE_CAN_QAM_256 |
1778 FE_CAN_TRANSMISSION_MODE_AUTO |
1779 FE_CAN_GUARD_INTERVAL_AUTO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 },
1781
Luis R. Rodriguez68592772014-04-17 22:24:44 -03001782 .release = bt8xx_dst_release,
1783 .init = bt8xx_dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001784 .tune = dst_tune_frontend,
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001785 .set_frontend = dst_set_frontend,
1786 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001787 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 .read_status = dst_read_status,
1789 .read_signal_strength = dst_read_signal_strength,
1790 .read_snr = dst_read_snr,
1791};
1792
1793static struct dvb_frontend_ops dst_dvbs_ops = {
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001794 .delsys = { SYS_DVBS },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 .info = {
1796 .name = "DST DVB-S",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 .frequency_min = 950000,
1798 .frequency_max = 2150000,
1799 .frequency_stepsize = 1000, /* kHz for QPSK frontends */
1800 .frequency_tolerance = 29500,
1801 .symbol_rate_min = 1000000,
1802 .symbol_rate_max = 45000000,
1803 /* . symbol_rate_tolerance = ???,*/
1804 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1805 },
1806
Luis R. Rodriguez68592772014-04-17 22:24:44 -03001807 .release = bt8xx_dst_release,
1808 .init = bt8xx_dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001809 .tune = dst_tune_frontend,
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001810 .set_frontend = dst_set_frontend,
1811 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001812 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 .read_status = dst_read_status,
1814 .read_signal_strength = dst_read_signal_strength,
1815 .read_snr = dst_read_snr,
Manu Abraham203fe8b2005-05-28 15:51:48 -07001816 .diseqc_send_burst = dst_send_burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 .diseqc_send_master_cmd = dst_set_diseqc,
1818 .set_voltage = dst_set_voltage,
1819 .set_tone = dst_set_tone,
1820};
1821
1822static struct dvb_frontend_ops dst_dvbc_ops = {
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001823 .delsys = { SYS_DVBC_ANNEX_A },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 .info = {
1825 .name = "DST DVB-C",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 .frequency_stepsize = 62500,
1827 .frequency_min = 51000000,
1828 .frequency_max = 858000000,
1829 .symbol_rate_min = 1000000,
1830 .symbol_rate_max = 45000000,
Klaas de Waalf0289ef2010-02-07 14:09:16 -03001831 .caps = FE_CAN_FEC_AUTO |
1832 FE_CAN_QAM_AUTO |
1833 FE_CAN_QAM_16 |
1834 FE_CAN_QAM_32 |
1835 FE_CAN_QAM_64 |
1836 FE_CAN_QAM_128 |
1837 FE_CAN_QAM_256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 },
1839
Luis R. Rodriguez68592772014-04-17 22:24:44 -03001840 .release = bt8xx_dst_release,
1841 .init = bt8xx_dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001842 .tune = dst_tune_frontend,
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001843 .set_frontend = dst_set_frontend,
1844 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001845 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 .read_status = dst_read_status,
1847 .read_signal_strength = dst_read_signal_strength,
1848 .read_snr = dst_read_snr,
1849};
1850
Manu Abrahambc7386b2006-06-21 10:27:05 -03001851static struct dvb_frontend_ops dst_atsc_ops = {
Mauro Carvalho Chehab7581e612012-01-01 16:11:18 -03001852 .delsys = { SYS_ATSC },
Manu Abrahambc7386b2006-06-21 10:27:05 -03001853 .info = {
1854 .name = "DST ATSC",
Manu Abrahambc7386b2006-06-21 10:27:05 -03001855 .frequency_stepsize = 62500,
1856 .frequency_min = 510000000,
1857 .frequency_max = 858000000,
1858 .symbol_rate_min = 1000000,
1859 .symbol_rate_max = 45000000,
1860 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
1861 },
1862
Luis R. Rodriguez68592772014-04-17 22:24:44 -03001863 .release = bt8xx_dst_release,
1864 .init = bt8xx_dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001865 .tune = dst_tune_frontend,
Mauro Carvalho Chehab5942c672011-12-26 15:26:49 -03001866 .set_frontend = dst_set_frontend,
1867 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393cc2006-06-21 10:27:36 -03001868 .get_frontend_algo = dst_get_tuning_algo,
Manu Abrahambc7386b2006-06-21 10:27:05 -03001869 .read_status = dst_read_status,
1870 .read_signal_strength = dst_read_signal_strength,
1871 .read_snr = dst_read_snr,
1872};
1873
1874MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001875MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1876MODULE_LICENSE("GPL");