blob: 2475cb6fb587d017c3ee708d196fa69f287df1cd [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 Abrahama427de62005-09-09 13:03:00 -070054#define dprintk(x, y, z, format, arg...) do { \
55 if (z) { \
56 if ((x > DST_ERROR) && (x > y)) \
57 printk(KERN_ERR "%s: " format "\n", __FUNCTION__ , ##arg); \
58 else if ((x > DST_NOTICE) && (x > y)) \
59 printk(KERN_NOTICE "%s: " format "\n", __FUNCTION__ , ##arg); \
60 else if ((x > DST_INFO) && (x > y)) \
61 printk(KERN_INFO "%s: " format "\n", __FUNCTION__ , ##arg); \
62 else if ((x > DST_DEBUG) && (x > y)) \
63 printk(KERN_DEBUG "%s: " format "\n", __FUNCTION__ , ##arg); \
64 } else { \
65 if (x > y) \
66 printk(format, ##arg); \
67 } \
68} while(0)
69
70
71static void dst_packsize(struct dst_state *state, int psize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 union dst_gpio_packet bits;
74
75 bits.psize = psize;
76 bt878_device_control(state->bt, DST_IG_TS, &bits);
77}
78
Manu Abrahama427de62005-09-09 13:03:00 -070079int dst_gpio_outb(struct dst_state *state, u32 mask, u32 enbb, u32 outhigh, int delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 union dst_gpio_packet enb;
82 union dst_gpio_packet bits;
83 int err;
84
85 enb.enb.mask = mask;
86 enb.enb.enable = enbb;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070087
Manu Abrahama427de62005-09-09 13:03:00 -070088 dprintk(verbose, DST_INFO, 1, "mask=[%04x], enbb=[%04x], outhigh=[%04x]", mask, enbb, outhigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if ((err = bt878_device_control(state->bt, DST_IG_ENABLE, &enb)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -070090 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 -070091 return -EREMOTEIO;
92 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -070093 udelay(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 /* because complete disabling means no output, no need to do output packet */
95 if (enbb == 0)
96 return 0;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070097 if (delay)
98 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 bits.outp.mask = enbb;
100 bits.outp.highvals = outhigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if ((err = bt878_device_control(state->bt, DST_IG_WRITE, &bits)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700102 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 -0700103 return -EREMOTEIO;
104 }
Manu Abrahama427de62005-09-09 13:03:00 -0700105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 0;
107}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700108EXPORT_SYMBOL(dst_gpio_outb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Manu Abrahama427de62005-09-09 13:03:00 -0700110int dst_gpio_inb(struct dst_state *state, u8 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 union dst_gpio_packet rd_packet;
113 int err;
114
115 *result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if ((err = bt878_device_control(state->bt, DST_IG_READ, &rd_packet)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700117 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb error (err == %i)\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return -EREMOTEIO;
119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 *result = (u8) rd_packet.rd.value;
Manu Abrahama427de62005-09-09 13:03:00 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return 0;
123}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700124EXPORT_SYMBOL(dst_gpio_inb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700126int rdc_reset_state(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Manu Abrahama427de62005-09-09 13:03:00 -0700128 dprintk(verbose, DST_INFO, 1, "Resetting state machine");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700129 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700130 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700131 return -1;
132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 msleep(10);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700134 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, RDC_8820_INT, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700135 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700136 msleep(10);
137 return -1;
138 }
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700142EXPORT_SYMBOL(rdc_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700144int rdc_8820_reset(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Manu Abrahama427de62005-09-09 13:03:00 -0700146 dprintk(verbose, DST_DEBUG, 1, "Resetting DST");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700147 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700148 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700149 return -1;
150 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700151 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700152 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, RDC_8820_RESET, DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700153 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700154 return -1;
155 }
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return 0;
158}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700159EXPORT_SYMBOL(rdc_8820_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700161int dst_pio_enable(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700163 if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_ENABLE, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700164 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700165 return -1;
166 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700167 udelay(1000);
Manu Abrahama427de62005-09-09 13:03:00 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 0;
170}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700171EXPORT_SYMBOL(dst_pio_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700173int dst_pio_disable(struct dst_state *state)
174{
175 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 -0700176 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700177 return -1;
178 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700179 if (state->type_flags & DST_TYPE_HAS_FW_1)
180 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700181
182 return 0;
183}
184EXPORT_SYMBOL(dst_pio_disable);
185
186int dst_wait_dst_ready(struct dst_state *state, u8 delay_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 u8 reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 for (i = 0; i < 200; i++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700192 if (dst_gpio_inb(state, &reply) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700193 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700194 return -1;
195 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700196 if ((reply & RDC_8820_PIO_0_ENABLE) == 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700197 dprintk(verbose, DST_INFO, 1, "dst wait ready after %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return 1;
199 }
Johannes Stezenbachb46dd442005-05-16 21:54:44 -0700200 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
Manu Abrahama427de62005-09-09 13:03:00 -0700202 dprintk(verbose, DST_NOTICE, 1, "dst wait NOT ready after %d", i);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return 0;
205}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700206EXPORT_SYMBOL(dst_wait_dst_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700208int dst_error_recovery(struct dst_state *state)
209{
Manu Abrahama427de62005-09-09 13:03:00 -0700210 dprintk(verbose, DST_NOTICE, 1, "Trying to return from previous errors.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700211 dst_pio_disable(state);
212 msleep(10);
213 dst_pio_enable(state);
214 msleep(10);
215
216 return 0;
217}
218EXPORT_SYMBOL(dst_error_recovery);
219
220int dst_error_bailout(struct dst_state *state)
221{
Manu Abrahama427de62005-09-09 13:03:00 -0700222 dprintk(verbose, DST_INFO, 1, "Trying to bailout from previous error.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700223 rdc_8820_reset(state);
224 dst_pio_disable(state);
225 msleep(10);
226
227 return 0;
228}
229EXPORT_SYMBOL(dst_error_bailout);
230
Manu Abrahama427de62005-09-09 13:03:00 -0700231int dst_comm_init(struct dst_state *state)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700232{
Manu Abrahama427de62005-09-09 13:03:00 -0700233 dprintk(verbose, DST_INFO, 1, "Initializing DST.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700234 if ((dst_pio_enable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700235 dprintk(verbose, DST_ERROR, 1, "PIO Enable Failed");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700236 return -1;
237 }
238 if ((rdc_reset_state(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700239 dprintk(verbose, DST_ERROR, 1, "RDC 8820 State RESET Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700240 return -1;
241 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700242 if (state->type_flags & DST_TYPE_HAS_FW_1)
243 msleep(100);
244 else
245 msleep(5);
246
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700247 return 0;
248}
249EXPORT_SYMBOL(dst_comm_init);
250
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700251int write_dst(struct dst_state *state, u8 *data, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 struct i2c_msg msg = {
Manu Abrahama427de62005-09-09 13:03:00 -0700254 .addr = state->config->demod_address,
255 .flags = 0,
256 .buf = data,
257 .len = len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 };
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 int err;
Manu Abrahama427de62005-09-09 13:03:00 -0700261 u8 cnt, i;
262
263 dprintk(verbose, DST_NOTICE, 0, "writing [ ");
264 for (i = 0; i < len; i++)
265 dprintk(verbose, DST_NOTICE, 0, "%02x ", data[i]);
266 dprintk(verbose, DST_NOTICE, 0, "]\n");
267
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700268 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700270 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 -0700271 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 continue;
273 } else
274 break;
275 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700276 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700277 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700278 dst_error_bailout(state);
279
280 return -1;
281 }
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return 0;
284}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700285EXPORT_SYMBOL(write_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Manu Abrahama427de62005-09-09 13:03:00 -0700287int read_dst(struct dst_state *state, u8 *ret, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Manu Abrahama427de62005-09-09 13:03:00 -0700289 struct i2c_msg msg = {
290 .addr = state->config->demod_address,
291 .flags = I2C_M_RD,
292 .buf = ret,
293 .len = len
294 };
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 int err;
297 int cnt;
298
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700299 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700301 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 -0700302 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 continue;
304 } else
305 break;
306 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700307 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700308 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700309 dst_error_bailout(state);
310
311 return -1;
312 }
Manu Abrahama427de62005-09-09 13:03:00 -0700313 dprintk(verbose, DST_DEBUG, 1, "reply is 0x%x", ret[0]);
314 for (err = 1; err < len; err++)
315 dprintk(verbose, DST_DEBUG, 0, " 0x%x", ret[err]);
316 if (err > 1)
317 dprintk(verbose, DST_DEBUG, 0, "\n");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 0;
320}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700321EXPORT_SYMBOL(read_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Manu Abraham7d534212005-07-07 17:57:50 -0700323static int dst_set_polarization(struct dst_state *state)
324{
325 switch (state->voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -0700326 case SEC_VOLTAGE_13: /* Vertical */
327 dprintk(verbose, DST_INFO, 1, "Polarization=[Vertical]");
328 state->tx_tuna[8] &= ~0x40;
329 break;
330 case SEC_VOLTAGE_18: /* Horizontal */
331 dprintk(verbose, DST_INFO, 1, "Polarization=[Horizontal]");
332 state->tx_tuna[8] |= 0x40;
333 break;
334 case SEC_VOLTAGE_OFF:
335 break;
Manu Abraham7d534212005-07-07 17:57:50 -0700336 }
337
338 return 0;
339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static int dst_set_freq(struct dst_state *state, u32 freq)
342{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 state->frequency = freq;
Manu Abrahama427de62005-09-09 13:03:00 -0700344 dprintk(verbose, DST_INFO, 1, "set Frequency %u", freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (state->dst_type == DST_TYPE_IS_SAT) {
347 freq = freq / 1000;
348 if (freq < 950 || freq > 2150)
349 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700350 state->tx_tuna[2] = (freq >> 8);
351 state->tx_tuna[3] = (u8) freq;
352 state->tx_tuna[4] = 0x01;
353 state->tx_tuna[8] &= ~0x04;
354 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
355 if (freq < 1531)
356 state->tx_tuna[8] |= 0x04;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 } else if (state->dst_type == DST_TYPE_IS_TERR) {
359 freq = freq / 1000;
360 if (freq < 137000 || freq > 858000)
361 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700362 state->tx_tuna[2] = (freq >> 16) & 0xff;
363 state->tx_tuna[3] = (freq >> 8) & 0xff;
364 state->tx_tuna[4] = (u8) freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
Manu Abraham62867422005-09-09 13:03:02 -0700366 freq = freq / 1000;
Manu Abraham7d534212005-07-07 17:57:50 -0700367 state->tx_tuna[2] = (freq >> 16) & 0xff;
368 state->tx_tuna[3] = (freq >> 8) & 0xff;
369 state->tx_tuna[4] = (u8) freq;
Manu Abrahamed3d1062006-06-21 10:27:15 -0300370 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
371 freq = freq / 1000;
372 if (freq < 51000 || freq > 858000)
373 return -EINVAL;
374 state->tx_tuna[2] = (freq >> 16) & 0xff;
375 state->tx_tuna[3] = (freq >> 8) & 0xff;
376 state->tx_tuna[4] = (u8) freq;
377 state->tx_tuna[5] = 0x00; /* ATSC */
378 state->tx_tuna[6] = 0x00;
379 if (state->dst_hw_cap & DST_TYPE_HAS_ANALOG)
380 state->tx_tuna[7] = 0x00; /* Digital */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 } else
382 return -EINVAL;
Manu Abrahama427de62005-09-09 13:03:00 -0700383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return 0;
385}
386
Manu Abrahama427de62005-09-09 13:03:00 -0700387static int dst_set_bandwidth(struct dst_state *state, fe_bandwidth_t bandwidth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 state->bandwidth = bandwidth;
390
391 if (state->dst_type != DST_TYPE_IS_TERR)
392 return 0;
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 switch (bandwidth) {
Manu Abrahama427de62005-09-09 13:03:00 -0700395 case BANDWIDTH_6_MHZ:
396 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
397 state->tx_tuna[7] = 0x06;
398 else {
399 state->tx_tuna[6] = 0x06;
400 state->tx_tuna[7] = 0x00;
401 }
402 break;
403 case BANDWIDTH_7_MHZ:
404 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
405 state->tx_tuna[7] = 0x07;
406 else {
407 state->tx_tuna[6] = 0x07;
408 state->tx_tuna[7] = 0x00;
409 }
410 break;
411 case BANDWIDTH_8_MHZ:
412 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
413 state->tx_tuna[7] = 0x08;
414 else {
415 state->tx_tuna[6] = 0x08;
416 state->tx_tuna[7] = 0x00;
417 }
418 break;
419 default:
420 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Manu Abrahama427de62005-09-09 13:03:00 -0700422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424}
425
Manu Abrahama427de62005-09-09 13:03:00 -0700426static int dst_set_inversion(struct dst_state *state, fe_spectral_inversion_t inversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 state->inversion = inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 switch (inversion) {
Manu Abrahama427de62005-09-09 13:03:00 -0700430 case INVERSION_OFF: /* Inversion = Normal */
431 state->tx_tuna[8] &= ~0x80;
432 break;
433 case INVERSION_ON:
434 state->tx_tuna[8] |= 0x80;
435 break;
436 default:
437 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Manu Abrahama427de62005-09-09 13:03:00 -0700439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return 0;
441}
442
Manu Abrahama427de62005-09-09 13:03:00 -0700443static int dst_set_fec(struct dst_state *state, fe_code_rate_t fec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 state->fec = fec;
446 return 0;
447}
448
Manu Abrahama427de62005-09-09 13:03:00 -0700449static fe_code_rate_t dst_get_fec(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 return state->fec;
452}
453
Manu Abrahama427de62005-09-09 13:03:00 -0700454static int dst_set_symbolrate(struct dst_state *state, u32 srate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 u32 symcalc;
457 u64 sval;
458
459 state->symbol_rate = srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (state->dst_type == DST_TYPE_IS_TERR) {
461 return 0;
462 }
Manu Abrahama427de62005-09-09 13:03:00 -0700463 dprintk(verbose, DST_INFO, 1, "set symrate %u", srate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 srate /= 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
466 sval = srate;
467 sval <<= 20;
468 do_div(sval, 88000);
469 symcalc = (u32) sval;
Manu Abrahama427de62005-09-09 13:03:00 -0700470 dprintk(verbose, DST_INFO, 1, "set symcalc %u", symcalc);
Manu Abrahamf612c572005-09-09 13:02:58 -0700471 state->tx_tuna[5] = (u8) (symcalc >> 12);
472 state->tx_tuna[6] = (u8) (symcalc >> 4);
473 state->tx_tuna[7] = (u8) (symcalc << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 } else {
Manu Abrahamf612c572005-09-09 13:02:58 -0700475 state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
476 state->tx_tuna[6] = (u8) (srate >> 8);
477 state->tx_tuna[7] = (u8) srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Manu Abrahamf612c572005-09-09 13:02:58 -0700479 state->tx_tuna[8] &= ~0x20;
480 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
481 if (srate > 8000)
482 state->tx_tuna[8] |= 0x20;
483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return 0;
485}
486
Manu Abraham7d534212005-07-07 17:57:50 -0700487
488static int dst_set_modulation(struct dst_state *state, fe_modulation_t modulation)
489{
490 if (state->dst_type != DST_TYPE_IS_CABLE)
491 return 0;
492
493 state->modulation = modulation;
494 switch (modulation) {
Manu Abrahama427de62005-09-09 13:03:00 -0700495 case QAM_16:
496 state->tx_tuna[8] = 0x10;
497 break;
498 case QAM_32:
499 state->tx_tuna[8] = 0x20;
500 break;
501 case QAM_64:
502 state->tx_tuna[8] = 0x40;
503 break;
504 case QAM_128:
505 state->tx_tuna[8] = 0x80;
506 break;
507 case QAM_256:
508 state->tx_tuna[8] = 0x00;
509 break;
510 case QPSK:
511 case QAM_AUTO:
512 case VSB_8:
513 case VSB_16:
514 default:
515 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700516
517 }
518
519 return 0;
520}
521
522static fe_modulation_t dst_get_modulation(struct dst_state *state)
523{
524 return state->modulation;
525}
526
527
Manu Abrahama427de62005-09-09 13:03:00 -0700528u8 dst_check_sum(u8 *buf, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 u32 i;
531 u8 val = 0;
532 if (!len)
533 return 0;
534 for (i = 0; i < len; i++) {
535 val += buf[i];
536 }
537 return ((~val) + 1);
538}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700539EXPORT_SYMBOL(dst_check_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541static void dst_type_flags_print(u32 type_flags)
542{
Manu Abrahama427de62005-09-09 13:03:00 -0700543 dprintk(verbose, DST_ERROR, 0, "DST type flags :");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (type_flags & DST_TYPE_HAS_NEWTUNE)
Manu Abrahama427de62005-09-09 13:03:00 -0700545 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner", DST_TYPE_HAS_NEWTUNE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (type_flags & DST_TYPE_HAS_TS204)
Manu Abrahama427de62005-09-09 13:03:00 -0700547 dprintk(verbose, DST_ERROR, 0, " 0x%x ts204", DST_TYPE_HAS_TS204);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (type_flags & DST_TYPE_HAS_SYMDIV)
Manu Abrahama427de62005-09-09 13:03:00 -0700549 dprintk(verbose, DST_ERROR, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700550 if (type_flags & DST_TYPE_HAS_FW_1)
Manu Abrahama427de62005-09-09 13:03:00 -0700551 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700552 if (type_flags & DST_TYPE_HAS_FW_2)
Manu Abrahama427de62005-09-09 13:03:00 -0700553 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700554 if (type_flags & DST_TYPE_HAS_FW_3)
Manu Abrahama427de62005-09-09 13:03:00 -0700555 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3);
556 dprintk(verbose, DST_ERROR, 0, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700559
Manu Abrahama427de62005-09-09 13:03:00 -0700560static int dst_type_print(u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 char *otype;
563 switch (type) {
564 case DST_TYPE_IS_SAT:
565 otype = "satellite";
566 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 case DST_TYPE_IS_TERR:
569 otype = "terrestrial";
570 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 case DST_TYPE_IS_CABLE:
573 otype = "cable";
574 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700575
Manu Abrahambc7386b2006-06-21 10:27:05 -0300576 case DST_TYPE_IS_ATSC:
577 otype = "atsc";
578 break;
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 default:
Manu Abrahama427de62005-09-09 13:03:00 -0700581 dprintk(verbose, DST_INFO, 1, "invalid dst type %d", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return -EINVAL;
583 }
Manu Abrahama427de62005-09-09 13:03:00 -0700584 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
587}
588
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700589/*
590 Known cards list
591 Satellite
592 -------------------
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700593 200103A
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700594 VP-1020 DST-MOT LG(old), TS=188
595
596 VP-1020 DST-03T LG(new), TS=204
597 VP-1022 DST-03T LG(new), TS=204
598 VP-1025 DST-03T LG(new), TS=204
599
600 VP-1030 DSTMCI, LG(new), TS=188
601 VP-1032 DSTMCI, LG(new), TS=188
602
603 Cable
604 -------------------
605 VP-2030 DCT-CI, Samsung, TS=204
606 VP-2021 DCT-CI, Unknown, TS=204
607 VP-2031 DCT-CI, Philips, TS=188
608 VP-2040 DCT-CI, Philips, TS=188, with CA daughter board
609 VP-2040 DCT-CI, Philips, TS=204, without CA daughter board
610
611 Terrestrial
612 -------------------
613 VP-3050 DTTNXT TS=188
614 VP-3040 DTT-CI, Philips, TS=188
615 VP-3040 DTT-CI, Philips, TS=204
616
617 ATSC
618 -------------------
619 VP-3220 ATSCDI, TS=188
620 VP-3250 ATSCAD, TS=188
621
622*/
623
Adrian Bunk47a9e502006-02-27 00:07:55 -0300624static struct dst_types dst_tlist[] = {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700625 {
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700626 .device_id = "200103A",
627 .offset = 0,
628 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700629 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS,
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700630 .dst_feature = 0
631 }, /* obsolete */
632
633 {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700634 .device_id = "DST-020",
635 .offset = 0,
636 .dst_type = DST_TYPE_IS_SAT,
637 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
638 .dst_feature = 0
639 }, /* obsolete */
640
641 {
642 .device_id = "DST-030",
643 .offset = 0,
644 .dst_type = DST_TYPE_IS_SAT,
645 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
646 .dst_feature = 0
647 }, /* obsolete */
648
649 {
650 .device_id = "DST-03T",
651 .offset = 0,
652 .dst_type = DST_TYPE_IS_SAT,
653 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
654 .dst_feature = DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 | DST_TYPE_HAS_DISEQC5
655 | DST_TYPE_HAS_MAC | DST_TYPE_HAS_MOTO
656 },
657
658 {
659 .device_id = "DST-MOT",
660 .offset = 0,
661 .dst_type = DST_TYPE_IS_SAT,
662 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
663 .dst_feature = 0
664 }, /* obsolete */
665
666 {
667 .device_id = "DST-CI",
668 .offset = 1,
669 .dst_type = DST_TYPE_IS_SAT,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300670 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_1,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700671 .dst_feature = DST_TYPE_HAS_CA
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700672 }, /* An OEM board */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700673
674 {
675 .device_id = "DSTMCI",
676 .offset = 1,
677 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700678 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD | DST_TYPE_HAS_INC_COUNT,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700679 .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4
680 | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC
681 },
682
683 {
684 .device_id = "DSTFCI",
685 .offset = 1,
686 .dst_type = DST_TYPE_IS_SAT,
687 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
688 .dst_feature = 0
689 }, /* unknown to vendor */
690
691 {
692 .device_id = "DCT-CI",
693 .offset = 1,
694 .dst_type = DST_TYPE_IS_CABLE,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300695 .type_flags = DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_FW_2,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700696 .dst_feature = DST_TYPE_HAS_CA
697 },
698
699 {
700 .device_id = "DCTNEW",
701 .offset = 1,
702 .dst_type = DST_TYPE_IS_CABLE,
Manu Abraham62121b12005-09-09 13:03:01 -0700703 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_3 | DST_TYPE_HAS_FW_BUILD,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700704 .dst_feature = 0
705 },
706
707 {
708 .device_id = "DTT-CI",
709 .offset = 1,
710 .dst_type = DST_TYPE_IS_TERR,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300711 .type_flags = DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_MULTI_FE,
Manu Abraham29b2f782005-11-08 21:35:09 -0800712 .dst_feature = DST_TYPE_HAS_CA
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700713 },
714
715 {
716 .device_id = "DTTDIG",
717 .offset = 1,
718 .dst_type = DST_TYPE_IS_TERR,
719 .type_flags = DST_TYPE_HAS_FW_2,
720 .dst_feature = 0
721 },
722
723 {
724 .device_id = "DTTNXT",
725 .offset = 1,
726 .dst_type = DST_TYPE_IS_TERR,
727 .type_flags = DST_TYPE_HAS_FW_2,
728 .dst_feature = DST_TYPE_HAS_ANALOG
729 },
730
731 {
732 .device_id = "ATSCDI",
733 .offset = 1,
734 .dst_type = DST_TYPE_IS_ATSC,
735 .type_flags = DST_TYPE_HAS_FW_2,
736 .dst_feature = 0
737 },
738
739 {
740 .device_id = "ATSCAD",
741 .offset = 1,
742 .dst_type = DST_TYPE_IS_ATSC,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300743 .type_flags = DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD,
Manu Abrahamed3d1062006-06-21 10:27:15 -0300744 .dst_feature = DST_TYPE_HAS_MAC | DST_TYPE_HAS_ANALOG
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700745 },
746
747 { }
748
749};
750
Manu Abraham62121b12005-09-09 13:03:01 -0700751static int dst_get_mac(struct dst_state *state)
752{
753 u8 get_mac[] = { 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
754 get_mac[7] = dst_check_sum(get_mac, 7);
755 if (dst_command(state, get_mac, 8) < 0) {
756 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
757 return -1;
758 }
759 memset(&state->mac_address, '\0', 8);
760 memcpy(&state->mac_address, &state->rxbuffer, 6);
761 dprintk(verbose, DST_ERROR, 1, "MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]",
762 state->mac_address[0], state->mac_address[1], state->mac_address[2],
763 state->mac_address[4], state->mac_address[5], state->mac_address[6]);
764
765 return 0;
766}
767
768static int dst_fw_ver(struct dst_state *state)
769{
770 u8 get_ver[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
771 get_ver[7] = dst_check_sum(get_ver, 7);
772 if (dst_command(state, get_ver, 8) < 0) {
773 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
774 return -1;
775 }
776 memset(&state->fw_version, '\0', 8);
777 memcpy(&state->fw_version, &state->rxbuffer, 8);
778 dprintk(verbose, DST_ERROR, 1, "Firmware Ver = %x.%x Build = %02x, on %x:%x, %x-%x-20%02x",
779 state->fw_version[0] >> 4, state->fw_version[0] & 0x0f,
780 state->fw_version[1],
781 state->fw_version[5], state->fw_version[6],
782 state->fw_version[4], state->fw_version[3], state->fw_version[2]);
783
784 return 0;
785}
786
787static int dst_card_type(struct dst_state *state)
788{
789 u8 get_type[] = { 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
790 get_type[7] = dst_check_sum(get_type, 7);
791 if (dst_command(state, get_type, 8) < 0) {
792 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
793 return -1;
794 }
795 memset(&state->card_info, '\0', 8);
796 memcpy(&state->card_info, &state->rxbuffer, 8);
797 dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
798
799 return 0;
800}
801
802static int dst_get_vendor(struct dst_state *state)
803{
804 u8 get_vendor[] = { 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
805 get_vendor[7] = dst_check_sum(get_vendor, 7);
806 if (dst_command(state, get_vendor, 8) < 0) {
807 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
808 return -1;
809 }
810 memset(&state->vendor, '\0', 8);
811 memcpy(&state->vendor, &state->rxbuffer, 8);
812 dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
813
814 return 0;
815}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700816
Manu Abraham29b2f782005-11-08 21:35:09 -0800817static int dst_get_tuner_info(struct dst_state *state)
818{
819 u8 get_tuner_1[] = { 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
820 u8 get_tuner_2[] = { 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
821
822 get_tuner_1[7] = dst_check_sum(get_tuner_1, 7);
823 get_tuner_2[7] = dst_check_sum(get_tuner_2, 7);
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300824 dprintk(verbose, DST_ERROR, 1, "DST TYpe = MULTI FE");
Manu Abraham29b2f782005-11-08 21:35:09 -0800825 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300826// if (dst_command(state, get_tuner_2, 8) < 0) {
827 if (dst_command(state, get_tuner_1, 8) < 0) {
828 dprintk(verbose, DST_INFO, 1, "Cmd=[0x13], Unsupported");
Manu Abraham29b2f782005-11-08 21:35:09 -0800829 return -1;
830 }
831 } else {
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300832// if (dst_command(state, get_tuner_1, 8) < 0) {
833 if (dst_command(state, get_tuner_2, 8) < 0) {
834 dprintk(verbose, DST_INFO, 1, "Cmd=[0xb], Unsupported");
Manu Abraham29b2f782005-11-08 21:35:09 -0800835 return -1;
836 }
837 }
838 memset(&state->board_info, '\0', 8);
839 memcpy(&state->board_info, &state->rxbuffer, 8);
840 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300841 dprintk(verbose, DST_ERROR, 1, "DST type has TS=188");
842/*
Manu Abraham29b2f782005-11-08 21:35:09 -0800843 if (state->board_info[1] == 0x0b) {
844 if (state->type_flags & DST_TYPE_HAS_TS204)
845 state->type_flags &= ~DST_TYPE_HAS_TS204;
846 state->type_flags |= DST_TYPE_HAS_NEWTUNE;
847 dprintk(verbose, DST_INFO, 1, "DST type has TS=188");
848 } else {
849 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
850 state->type_flags &= ~DST_TYPE_HAS_NEWTUNE;
851 state->type_flags |= DST_TYPE_HAS_TS204;
852 dprintk(verbose, DST_INFO, 1, "DST type has TS=204");
853 }
854 } else {
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300855*/
Manu Abraham29b2f782005-11-08 21:35:09 -0800856 }
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300857 if (state->board_info[0] == 0xbc) {
858// if (state->type_flags & DST_TYPE_HAS_TS204)
859// state->type_flags &= ~DST_TYPE_HAS_TS204;
860 state->type_flags |= DST_TYPE_HAS_NEWTUNE;
861 dprintk(verbose, DST_INFO, 1, "DST type has TS=188, Daughterboard=[%d]", state->board_info[1]);
862
863 } else if (state->board_info[0] == 0xcc) {
864// if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
865// state->type_flags &= ~DST_TYPE_HAS_NEWTUNE;
866 state->type_flags |= DST_TYPE_HAS_TS204;
867 dprintk(verbose, DST_INFO, 1, "DST type has TS=204 Daughterboard=[%d]", state->board_info[1]);
868 }
869// }
Manu Abraham29b2f782005-11-08 21:35:09 -0800870
871 return 0;
872}
873
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700874static int dst_get_device_id(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700876 u8 reply;
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700879 struct dst_types *p_dst_type;
880 u8 use_dst_type = 0;
881 u32 use_type_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700883 static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700885 device_type[7] = dst_check_sum(device_type, 7);
886
887 if (write_dst(state, device_type, FIXED_COMM))
888 return -1; /* Write failed */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700889 if ((dst_pio_disable(state)) < 0)
890 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700891 if (read_dst(state, &reply, GET_ACK))
892 return -1; /* Read failure */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700893 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -0700894 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700895 return -1; /* Unack'd write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700897 if (!dst_wait_dst_ready(state, DEVICE_INIT))
898 return -1; /* DST not ready yet */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700899 if (read_dst(state, state->rxbuffer, FIXED_COMM))
900 return -1;
901
902 dst_pio_disable(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700903 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700904 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700905 return -1; /* Checksum failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700907 state->rxbuffer[7] = '\0';
908
Manu Abrahama427de62005-09-09 13:03:00 -0700909 for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700910 if (!strncmp (&state->rxbuffer[p_dst_type->offset], p_dst_type->device_id, strlen (p_dst_type->device_id))) {
911 use_type_flags = p_dst_type->type_flags;
912 use_dst_type = p_dst_type->dst_type;
913
914 /* Card capabilities */
915 state->dst_hw_cap = p_dst_type->dst_feature;
Manu Abrahama427de62005-09-09 13:03:00 -0700916 dprintk(verbose, DST_ERROR, 1, "Recognise [%s]\n", p_dst_type->device_id);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 break;
919 }
920 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700921
922 if (i >= sizeof (dst_tlist) / sizeof (dst_tlist [0])) {
Manu Abrahama427de62005-09-09 13:03:00 -0700923 dprintk(verbose, DST_ERROR, 1, "Unable to recognize %s or %s", &state->rxbuffer[0], &state->rxbuffer[1]);
924 dprintk(verbose, DST_ERROR, 1, "please email linux-dvb@linuxtv.org with this type in");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 use_dst_type = DST_TYPE_IS_SAT;
926 use_type_flags = DST_TYPE_HAS_SYMDIV;
927 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700928 dst_type_print(use_dst_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 state->type_flags = use_type_flags;
930 state->dst_type = use_dst_type;
931 dst_type_flags_print(state->type_flags);
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return 0;
934}
935
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700936static int dst_probe(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Ingo Molnar3593cab2006-02-07 06:49:14 -0200938 mutex_init(&state->dst_mutex);
Manu Abraham2e506a02006-06-21 10:27:20 -0300939 if (dst_addons & DST_TYPE_HAS_CA) {
940 if ((rdc_8820_reset(state)) < 0) {
941 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
942 return -1;
943 }
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -0700944 msleep(4000);
Manu Abraham2e506a02006-06-21 10:27:20 -0300945 } else {
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -0700946 msleep(100);
Manu Abraham2e506a02006-06-21 10:27:20 -0300947 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700948 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700949 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700950 return -1;
951 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700952 msleep(100);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700953 if (dst_get_device_id(state) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700954 dprintk(verbose, DST_ERROR, 1, "unknown device.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700955 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
Manu Abraham62121b12005-09-09 13:03:01 -0700957 if (dst_get_mac(state) < 0) {
958 dprintk(verbose, DST_INFO, 1, "MAC: Unsupported command");
959 return 0;
960 }
Manu Abraham29b2f782005-11-08 21:35:09 -0800961 if ((state->type_flags & DST_TYPE_HAS_MULTI_FE) || (state->type_flags & DST_TYPE_HAS_FW_BUILD)) {
962 if (dst_get_tuner_info(state) < 0)
963 dprintk(verbose, DST_INFO, 1, "Tuner: Unsupported command");
964 }
Manu Abraham4c09aa72005-11-08 21:35:20 -0800965 if (state->type_flags & DST_TYPE_HAS_TS204) {
966 dst_packsize(state, 204);
967 }
Manu Abraham62121b12005-09-09 13:03:01 -0700968 if (state->type_flags & DST_TYPE_HAS_FW_BUILD) {
969 if (dst_fw_ver(state) < 0) {
970 dprintk(verbose, DST_INFO, 1, "FW: Unsupported command");
971 return 0;
972 }
973 if (dst_card_type(state) < 0) {
974 dprintk(verbose, DST_INFO, 1, "Card: Unsupported command");
975 return 0;
976 }
977 if (dst_get_vendor(state) < 0) {
978 dprintk(verbose, DST_INFO, 1, "Vendor: Unsupported command");
979 return 0;
980 }
981 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700982
983 return 0;
984}
985
Manu Abrahama427de62005-09-09 13:03:00 -0700986int dst_command(struct dst_state *state, u8 *data, u8 len)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700987{
988 u8 reply;
Manu Abrahamd28d5762005-11-08 21:35:36 -0800989
Ingo Molnar3593cab2006-02-07 06:49:14 -0200990 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700991 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700992 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -0800993 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700995 if (write_dst(state, data, len)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700996 dprintk(verbose, DST_INFO, 1, "Tring to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700997 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700998 dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -0800999 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001000 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001001 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001002 }
1003 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001004 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001005 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001006 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001007 if (state->type_flags & DST_TYPE_HAS_FW_1)
1008 udelay(3000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001009 if (read_dst(state, &reply, GET_ACK)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001010 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001011 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001012 dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001013 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001014 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001015 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001016 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001017 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001018 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001019 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021 if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001022 goto error;
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001023 if (state->type_flags & DST_TYPE_HAS_FW_1)
1024 udelay(3000);
1025 else
1026 udelay(2000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001027 if (!dst_wait_dst_ready(state, NO_DELAY))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001028 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001029 if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001030 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001031 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001032 dprintk(verbose, DST_INFO, 1, "Recovery failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001033 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001034 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001035 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001038 dprintk(verbose, DST_INFO, 1, "checksum failure");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001039 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
Ingo Molnar3593cab2006-02-07 06:49:14 -02001041 mutex_unlock(&state->dst_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return 0;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001043
1044error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001045 mutex_unlock(&state->dst_mutex);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001046 return -EIO;
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001049EXPORT_SYMBOL(dst_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Manu Abrahama427de62005-09-09 13:03:00 -07001051static int dst_get_signal(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 int retval;
1054 u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
Johannes Stezenbach5b5b5342005-09-09 13:02:52 -07001055 //dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
1057 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1058 return 0;
1059 }
1060 if (0 == (state->diseq_flags & HAS_LOCK)) {
1061 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1062 return 0;
1063 }
1064 if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
1065 retval = dst_command(state, get_signal, 8);
1066 if (retval < 0)
1067 return retval;
1068 if (state->dst_type == DST_TYPE_IS_SAT) {
1069 state->decode_lock = ((state->rxbuffer[6] & 0x10) == 0) ? 1 : 0;
1070 state->decode_strength = state->rxbuffer[5] << 8;
1071 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
1072 } else if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE)) {
1073 state->decode_lock = (state->rxbuffer[1]) ? 1 : 0;
1074 state->decode_strength = state->rxbuffer[4] << 8;
1075 state->decode_snr = state->rxbuffer[3] << 8;
Manu Abrahamed3d1062006-06-21 10:27:15 -03001076 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
1077 state->decode_lock = (state->rxbuffer[6] == 0x00) ? 1 : 0;
1078 state->decode_strength = state->rxbuffer[4] << 8;
1079 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081 state->cur_jiff = jiffies;
1082 }
1083 return 0;
1084}
1085
Manu Abrahama427de62005-09-09 13:03:00 -07001086static int dst_tone_power_cmd(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
1088 u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
1089
1090 if (state->dst_type == DST_TYPE_IS_TERR)
1091 return 0;
Manu Abraham8f6da8f2005-05-28 15:51:51 -07001092 paket[4] = state->tx_tuna[4];
Manu Abraham86360a32005-05-28 15:51:51 -07001093 paket[2] = state->tx_tuna[2];
Manu Abraham203fe8b2005-05-28 15:51:48 -07001094 paket[3] = state->tx_tuna[3];
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001095 paket[7] = dst_check_sum (paket, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 dst_command(state, paket, 8);
Manu Abraham203fe8b2005-05-28 15:51:48 -07001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return 0;
1099}
1100
Manu Abrahama427de62005-09-09 13:03:00 -07001101static int dst_get_tuna(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
1103 int retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
1106 return 0;
1107 state->diseq_flags &= ~(HAS_LOCK);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001108 if (!dst_wait_dst_ready(state, NO_DELAY))
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001109 return -EIO;
Manu Abrahama427de62005-09-09 13:03:00 -07001110 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 /* how to get variable length reply ???? */
1112 retval = read_dst(state, state->rx_tuna, 10);
Manu Abrahama427de62005-09-09 13:03:00 -07001113 else
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001114 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (retval < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001116 dprintk(verbose, DST_DEBUG, 1, "read not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001117 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
1120 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001121 dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001122 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124 } else {
1125 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001126 dprintk(verbose, DST_INFO, 1, "checksum failure? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001127 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 }
1130 if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
1131 return 0;
Tom Hughesf5648e82005-11-08 21:35:22 -08001132 if (state->dst_type == DST_TYPE_IS_SAT) {
1133 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
1134 } else {
1135 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 16) + (state->rx_tuna[3] << 8) + state->rx_tuna[4];
1136 }
1137 state->decode_freq = state->decode_freq * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 state->decode_lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 state->diseq_flags |= HAS_LOCK;
Manu Abraham7d534212005-07-07 17:57:50 -07001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return 1;
1142}
1143
Manu Abrahama427de62005-09-09 13:03:00 -07001144static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Manu Abrahama427de62005-09-09 13:03:00 -07001146static int dst_write_tuna(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Manu Abrahama427de62005-09-09 13:03:00 -07001148 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 int retval;
1150 u8 reply;
1151
Manu Abrahama427de62005-09-09 13:03:00 -07001152 dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 state->decode_freq = 0;
1154 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1155 if (state->dst_type == DST_TYPE_IS_SAT) {
1156 if (!(state->diseq_flags & HAS_POWER))
1157 dst_set_voltage(fe, SEC_VOLTAGE_13);
1158 }
1159 state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001160 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001161 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001162 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001163 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
1167 retval = write_dst(state, &state->tx_tuna[0], 10);
1168 } else {
1169 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001170 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172 if (retval < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001173 dst_pio_disable(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001174 dprintk(verbose, DST_DEBUG, 1, "write not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001175 goto werr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001177 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001178 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001179 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001181 if ((read_dst(state, &reply, GET_ACK) < 0)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001182 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001183 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001184 }
1185 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001186 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001187 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
1189 state->diseq_flags |= ATTEMPT_TUNE;
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001190 retval = dst_get_tuna(state);
1191werr:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001192 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001193 return retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001194
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001195error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001196 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001197 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200/*
1201 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1202 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1203 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1204 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1205 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1206 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1207 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1208 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1209 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1210 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1211 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1212 */
1213
Manu Abrahama427de62005-09-09 13:03:00 -07001214static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Manu Abrahama427de62005-09-09 13:03:00 -07001216 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1218
Manu Abraham226d97e2005-05-28 15:51:52 -07001219 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (cmd->msg_len == 0 || cmd->msg_len > 4)
1222 return -EINVAL;
1223 memcpy(&paket[3], cmd->msg, cmd->msg_len);
1224 paket[7] = dst_check_sum(&paket[0], 7);
1225 dst_command(state, paket, 8);
1226 return 0;
1227}
1228
Manu Abrahama427de62005-09-09 13:03:00 -07001229static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 int need_cmd;
Manu Abrahama427de62005-09-09 13:03:00 -07001232 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 state->voltage = voltage;
Manu Abraham226d97e2005-05-28 15:51:52 -07001235 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return 0;
1237
1238 need_cmd = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 switch (voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -07001241 case SEC_VOLTAGE_13:
1242 case SEC_VOLTAGE_18:
1243 if ((state->diseq_flags & HAS_POWER) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 need_cmd = 1;
Manu Abrahama427de62005-09-09 13:03:00 -07001245 state->diseq_flags |= HAS_POWER;
1246 state->tx_tuna[4] = 0x01;
1247 break;
1248 case SEC_VOLTAGE_OFF:
1249 need_cmd = 1;
1250 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1251 state->tx_tuna[4] = 0x00;
1252 break;
1253 default:
1254 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
Manu Abrahama427de62005-09-09 13:03:00 -07001256
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001257 if (need_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return 0;
1261}
1262
Manu Abrahama427de62005-09-09 13:03:00 -07001263static int dst_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Manu Abrahama427de62005-09-09 13:03:00 -07001265 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 state->tone = tone;
Manu Abraham226d97e2005-05-28 15:51:52 -07001268 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return 0;
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 switch (tone) {
Manu Abrahama427de62005-09-09 13:03:00 -07001272 case SEC_TONE_OFF:
1273 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1274 state->tx_tuna[2] = 0x00;
1275 else
1276 state->tx_tuna[2] = 0xff;
1277 break;
Steffen Motzer4b2bd302005-07-07 17:58:31 -07001278
Manu Abrahama427de62005-09-09 13:03:00 -07001279 case SEC_TONE_ON:
1280 state->tx_tuna[2] = 0x02;
1281 break;
1282 default:
1283 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return 0;
1288}
1289
Manu Abraham203fe8b2005-05-28 15:51:48 -07001290static int dst_send_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t minicmd)
1291{
1292 struct dst_state *state = fe->demodulator_priv;
1293
Manu Abraham226d97e2005-05-28 15:51:52 -07001294 if (state->dst_type != DST_TYPE_IS_SAT)
Manu Abraham203fe8b2005-05-28 15:51:48 -07001295 return 0;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001296 state->minicmd = minicmd;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001297 switch (minicmd) {
Manu Abrahama427de62005-09-09 13:03:00 -07001298 case SEC_MINI_A:
1299 state->tx_tuna[3] = 0x02;
1300 break;
1301 case SEC_MINI_B:
1302 state->tx_tuna[3] = 0xff;
1303 break;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001304 }
1305 dst_tone_power_cmd(state);
1306
1307 return 0;
1308}
1309
1310
Manu Abrahama427de62005-09-09 13:03:00 -07001311static int dst_init(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Manu Abrahama427de62005-09-09 13:03:00 -07001313 struct dst_state *state = fe->demodulator_priv;
1314
1315 static u8 sat_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1316 static u8 sat_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1317 static u8 ter_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1318 static u8 ter_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1319 static u8 cab_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1320 static u8 cab_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1321
Manu Abraham7d534212005-07-07 17:57:50 -07001322 state->inversion = INVERSION_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 state->voltage = SEC_VOLTAGE_13;
1324 state->tone = SEC_TONE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 state->diseq_flags = 0;
1326 state->k22 = 0x02;
1327 state->bandwidth = BANDWIDTH_7_MHZ;
1328 state->cur_jiff = jiffies;
Manu Abrahama427de62005-09-09 13:03:00 -07001329 if (state->dst_type == DST_TYPE_IS_SAT)
1330 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? sat_tuna_188 : sat_tuna_204), sizeof (sat_tuna_204));
1331 else if (state->dst_type == DST_TYPE_IS_TERR)
1332 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? ter_tuna_188 : ter_tuna_204), sizeof (ter_tuna_204));
1333 else if (state->dst_type == DST_TYPE_IS_CABLE)
1334 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? cab_tuna_188 : cab_tuna_204), sizeof (cab_tuna_204));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 return 0;
1337}
1338
Manu Abrahama427de62005-09-09 13:03:00 -07001339static int dst_read_status(struct dvb_frontend *fe, fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Manu Abrahama427de62005-09-09 13:03:00 -07001341 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 *status = 0;
1344 if (state->diseq_flags & HAS_LOCK) {
Manu Abraham7d534212005-07-07 17:57:50 -07001345// dst_get_signal(state); // don't require(?) to ask MCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (state->decode_lock)
1347 *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1348 }
1349
1350 return 0;
1351}
1352
Manu Abrahama427de62005-09-09 13:03:00 -07001353static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Manu Abrahama427de62005-09-09 13:03:00 -07001355 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 dst_get_signal(state);
1358 *strength = state->decode_strength;
1359
1360 return 0;
1361}
1362
Manu Abrahama427de62005-09-09 13:03:00 -07001363static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Manu Abrahama427de62005-09-09 13:03:00 -07001365 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 dst_get_signal(state);
1368 *snr = state->decode_snr;
1369
1370 return 0;
1371}
1372
Manu Abraham8cfba632006-06-21 10:27:26 -03001373static int dst_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
1374{
1375 struct dst_state *state = fe->demodulator_priv;
1376
1377 if (p != NULL) {
1378 dst_set_freq(state, p->frequency);
1379 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
1380
1381 if (state->dst_type == DST_TYPE_IS_SAT) {
1382 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1383 dst_set_inversion(state, p->inversion);
1384 dst_set_fec(state, p->u.qpsk.fec_inner);
1385 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1386 dst_set_polarization(state);
1387 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
1388
1389 } else if (state->dst_type == DST_TYPE_IS_TERR)
1390 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1391 else if (state->dst_type == DST_TYPE_IS_CABLE) {
1392 dst_set_fec(state, p->u.qam.fec_inner);
1393 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1394 dst_set_modulation(state, p->u.qam.modulation);
1395 }
1396 dst_write_tuna(fe);
1397 }
1398
1399 return 0;
1400}
1401
1402static int dst_tune_frontend(struct dvb_frontend* fe,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001403 struct dvb_frontend_parameters* p,
1404 unsigned int mode_flags,
1405 int *delay,
1406 fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Manu Abrahama427de62005-09-09 13:03:00 -07001408 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001410 if (p != NULL) {
1411 dst_set_freq(state, p->frequency);
1412 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001413
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001414 if (state->dst_type == DST_TYPE_IS_SAT) {
1415 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1416 dst_set_inversion(state, p->inversion);
1417 dst_set_fec(state, p->u.qpsk.fec_inner);
1418 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1419 dst_set_polarization(state);
1420 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001421
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001422 } else if (state->dst_type == DST_TYPE_IS_TERR)
1423 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1424 else if (state->dst_type == DST_TYPE_IS_CABLE) {
1425 dst_set_fec(state, p->u.qam.fec_inner);
1426 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1427 dst_set_modulation(state, p->u.qam.modulation);
1428 }
1429 dst_write_tuna(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001432 if (!(mode_flags & FE_TUNE_MODE_ONESHOT))
1433 dst_read_status(fe, status);
1434
1435 *delay = HZ/10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 return 0;
1437}
1438
Manu Abraham8cfba632006-06-21 10:27:26 -03001439static int dst_get_tuning_algo(struct dvb_frontend *fe)
1440{
1441 return dst_algo;
1442}
1443
Manu Abrahama427de62005-09-09 13:03:00 -07001444static int dst_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Manu Abrahama427de62005-09-09 13:03:00 -07001446 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 p->frequency = state->decode_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001450 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1451 p->inversion = state->inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 p->u.qpsk.symbol_rate = state->symbol_rate;
1453 p->u.qpsk.fec_inner = dst_get_fec(state);
1454 } else if (state->dst_type == DST_TYPE_IS_TERR) {
1455 p->u.ofdm.bandwidth = state->bandwidth;
1456 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
1457 p->u.qam.symbol_rate = state->symbol_rate;
1458 p->u.qam.fec_inner = dst_get_fec(state);
Manu Abraham7d534212005-07-07 17:57:50 -07001459 p->u.qam.modulation = dst_get_modulation(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
1461
1462 return 0;
1463}
1464
Manu Abrahama427de62005-09-09 13:03:00 -07001465static void dst_release(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
Manu Abrahama427de62005-09-09 13:03:00 -07001467 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 kfree(state);
1469}
1470
1471static struct dvb_frontend_ops dst_dvbt_ops;
1472static struct dvb_frontend_ops dst_dvbs_ops;
1473static struct dvb_frontend_ops dst_dvbc_ops;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001474static struct dvb_frontend_ops dst_atsc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Manu Abrahama427de62005-09-09 13:03:00 -07001476struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001478 /* check if the ASIC is there */
1479 if (dst_probe(state) < 0) {
Jesper Juhl2ea75332005-11-07 01:01:31 -08001480 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001481 return NULL;
1482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* determine settings based on type */
Patrick Boettcherdea74862006-05-14 05:01:31 -03001484 /* create dvb_frontend */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 switch (state->dst_type) {
1486 case DST_TYPE_IS_TERR:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001487 memcpy(&state->frontend.ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 break;
1489 case DST_TYPE_IS_CABLE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001490 memcpy(&state->frontend.ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 break;
1492 case DST_TYPE_IS_SAT:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001493 memcpy(&state->frontend.ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 break;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001495 case DST_TYPE_IS_ATSC:
1496 memcpy(&state->frontend.ops, &dst_atsc_ops, sizeof(struct dvb_frontend_ops));
1497 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 default:
Manu Abrahama427de62005-09-09 13:03:00 -07001499 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
Jesper Juhl2ea75332005-11-07 01:01:31 -08001500 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001501 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 state->frontend.demodulator_priv = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001505 return state; /* Manu (DST is a card not a frontend) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001508EXPORT_SYMBOL(dst_attach);
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510static struct dvb_frontend_ops dst_dvbt_ops = {
1511
1512 .info = {
1513 .name = "DST DVB-T",
1514 .type = FE_OFDM,
1515 .frequency_min = 137000000,
1516 .frequency_max = 858000000,
1517 .frequency_stepsize = 166667,
1518 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
1519 },
1520
1521 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001523 .tune = dst_tune_frontend,
1524 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001526 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 .read_status = dst_read_status,
1528 .read_signal_strength = dst_read_signal_strength,
1529 .read_snr = dst_read_snr,
1530};
1531
1532static struct dvb_frontend_ops dst_dvbs_ops = {
1533
1534 .info = {
1535 .name = "DST DVB-S",
1536 .type = FE_QPSK,
1537 .frequency_min = 950000,
1538 .frequency_max = 2150000,
1539 .frequency_stepsize = 1000, /* kHz for QPSK frontends */
1540 .frequency_tolerance = 29500,
1541 .symbol_rate_min = 1000000,
1542 .symbol_rate_max = 45000000,
1543 /* . symbol_rate_tolerance = ???,*/
1544 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1545 },
1546
1547 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001549 .tune = dst_tune_frontend,
1550 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001552 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 .read_status = dst_read_status,
1554 .read_signal_strength = dst_read_signal_strength,
1555 .read_snr = dst_read_snr,
Manu Abraham203fe8b2005-05-28 15:51:48 -07001556 .diseqc_send_burst = dst_send_burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 .diseqc_send_master_cmd = dst_set_diseqc,
1558 .set_voltage = dst_set_voltage,
1559 .set_tone = dst_set_tone,
1560};
1561
1562static struct dvb_frontend_ops dst_dvbc_ops = {
1563
1564 .info = {
1565 .name = "DST DVB-C",
1566 .type = FE_QAM,
1567 .frequency_stepsize = 62500,
1568 .frequency_min = 51000000,
1569 .frequency_max = 858000000,
1570 .symbol_rate_min = 1000000,
1571 .symbol_rate_max = 45000000,
1572 /* . symbol_rate_tolerance = ???,*/
1573 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO
1574 },
1575
1576 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001578 .tune = dst_tune_frontend,
1579 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001581 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 .read_status = dst_read_status,
1583 .read_signal_strength = dst_read_signal_strength,
1584 .read_snr = dst_read_snr,
1585};
1586
Manu Abrahambc7386b2006-06-21 10:27:05 -03001587static struct dvb_frontend_ops dst_atsc_ops = {
1588 .info = {
1589 .name = "DST ATSC",
1590 .type = FE_ATSC,
1591 .frequency_stepsize = 62500,
1592 .frequency_min = 510000000,
1593 .frequency_max = 858000000,
1594 .symbol_rate_min = 1000000,
1595 .symbol_rate_max = 45000000,
1596 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
1597 },
1598
1599 .release = dst_release,
1600 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001601 .tune = dst_tune_frontend,
1602 .set_frontend = dst_set_frontend,
Manu Abrahambc7386b2006-06-21 10:27:05 -03001603 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001604 .get_frontend_algo = dst_get_tuning_algo,
Manu Abrahambc7386b2006-06-21 10:27:05 -03001605 .read_status = dst_read_status,
1606 .read_signal_strength = dst_read_signal_strength,
1607 .read_snr = dst_read_snr,
1608};
1609
1610MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001611MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1612MODULE_LICENSE("GPL");