blob: 2346667721bca9d27d54261615cf41d23b23ae6f [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 Abrahama427de62005-09-09 13:03:00 -070041#define HAS_LOCK 1
42#define ATTEMPT_TUNE 2
43#define HAS_POWER 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Manu Abrahama427de62005-09-09 13:03:00 -070045#define DST_ERROR 0
46#define DST_NOTICE 1
47#define DST_INFO 2
48#define DST_DEBUG 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Manu Abrahama427de62005-09-09 13:03:00 -070050#define dprintk(x, y, z, format, arg...) do { \
51 if (z) { \
52 if ((x > DST_ERROR) && (x > y)) \
53 printk(KERN_ERR "%s: " format "\n", __FUNCTION__ , ##arg); \
54 else if ((x > DST_NOTICE) && (x > y)) \
55 printk(KERN_NOTICE "%s: " format "\n", __FUNCTION__ , ##arg); \
56 else if ((x > DST_INFO) && (x > y)) \
57 printk(KERN_INFO "%s: " format "\n", __FUNCTION__ , ##arg); \
58 else if ((x > DST_DEBUG) && (x > y)) \
59 printk(KERN_DEBUG "%s: " format "\n", __FUNCTION__ , ##arg); \
60 } else { \
61 if (x > y) \
62 printk(format, ##arg); \
63 } \
64} while(0)
65
66
67static void dst_packsize(struct dst_state *state, int psize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 union dst_gpio_packet bits;
70
71 bits.psize = psize;
72 bt878_device_control(state->bt, DST_IG_TS, &bits);
73}
74
Manu Abrahama427de62005-09-09 13:03:00 -070075int dst_gpio_outb(struct dst_state *state, u32 mask, u32 enbb, u32 outhigh, int delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 union dst_gpio_packet enb;
78 union dst_gpio_packet bits;
79 int err;
80
81 enb.enb.mask = mask;
82 enb.enb.enable = enbb;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070083
Manu Abrahama427de62005-09-09 13:03:00 -070084 dprintk(verbose, DST_INFO, 1, "mask=[%04x], enbb=[%04x], outhigh=[%04x]", mask, enbb, outhigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if ((err = bt878_device_control(state->bt, DST_IG_ENABLE, &enb)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -070086 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 -070087 return -EREMOTEIO;
88 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -070089 udelay(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* because complete disabling means no output, no need to do output packet */
91 if (enbb == 0)
92 return 0;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070093 if (delay)
94 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 bits.outp.mask = enbb;
96 bits.outp.highvals = outhigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if ((err = bt878_device_control(state->bt, DST_IG_WRITE, &bits)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -070098 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 -070099 return -EREMOTEIO;
100 }
Manu Abrahama427de62005-09-09 13:03:00 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return 0;
103}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700104EXPORT_SYMBOL(dst_gpio_outb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Manu Abrahama427de62005-09-09 13:03:00 -0700106int dst_gpio_inb(struct dst_state *state, u8 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 union dst_gpio_packet rd_packet;
109 int err;
110
111 *result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if ((err = bt878_device_control(state->bt, DST_IG_READ, &rd_packet)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700113 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb error (err == %i)\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return -EREMOTEIO;
115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 *result = (u8) rd_packet.rd.value;
Manu Abrahama427de62005-09-09 13:03:00 -0700117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return 0;
119}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700120EXPORT_SYMBOL(dst_gpio_inb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700122int rdc_reset_state(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Manu Abrahama427de62005-09-09 13:03:00 -0700124 dprintk(verbose, DST_INFO, 1, "Resetting state machine");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700125 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700126 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700127 return -1;
128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 msleep(10);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700130 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, RDC_8820_INT, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700131 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700132 msleep(10);
133 return -1;
134 }
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return 0;
137}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700138EXPORT_SYMBOL(rdc_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700140int rdc_8820_reset(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Manu Abrahama427de62005-09-09 13:03:00 -0700142 dprintk(verbose, DST_DEBUG, 1, "Resetting DST");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700143 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700144 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700145 return -1;
146 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700147 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700148 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, RDC_8820_RESET, DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700149 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700150 return -1;
151 }
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return 0;
154}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700155EXPORT_SYMBOL(rdc_8820_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700157int dst_pio_enable(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700159 if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_ENABLE, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700160 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700161 return -1;
162 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700163 udelay(1000);
Manu Abrahama427de62005-09-09 13:03:00 -0700164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return 0;
166}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700167EXPORT_SYMBOL(dst_pio_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700169int dst_pio_disable(struct dst_state *state)
170{
171 if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_DISABLE, RDC_8820_PIO_0_DISABLE, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700172 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700173 return -1;
174 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700175 if (state->type_flags & DST_TYPE_HAS_FW_1)
176 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700177
178 return 0;
179}
180EXPORT_SYMBOL(dst_pio_disable);
181
182int dst_wait_dst_ready(struct dst_state *state, u8 delay_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 u8 reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 for (i = 0; i < 200; i++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700188 if (dst_gpio_inb(state, &reply) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700189 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700190 return -1;
191 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700192 if ((reply & RDC_8820_PIO_0_ENABLE) == 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700193 dprintk(verbose, DST_INFO, 1, "dst wait ready after %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return 1;
195 }
Johannes Stezenbachb46dd442005-05-16 21:54:44 -0700196 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Manu Abrahama427de62005-09-09 13:03:00 -0700198 dprintk(verbose, DST_NOTICE, 1, "dst wait NOT ready after %d", i);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return 0;
201}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700202EXPORT_SYMBOL(dst_wait_dst_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700204int dst_error_recovery(struct dst_state *state)
205{
Manu Abrahama427de62005-09-09 13:03:00 -0700206 dprintk(verbose, DST_NOTICE, 1, "Trying to return from previous errors.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700207 dst_pio_disable(state);
208 msleep(10);
209 dst_pio_enable(state);
210 msleep(10);
211
212 return 0;
213}
214EXPORT_SYMBOL(dst_error_recovery);
215
216int dst_error_bailout(struct dst_state *state)
217{
Manu Abrahama427de62005-09-09 13:03:00 -0700218 dprintk(verbose, DST_INFO, 1, "Trying to bailout from previous error.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700219 rdc_8820_reset(state);
220 dst_pio_disable(state);
221 msleep(10);
222
223 return 0;
224}
225EXPORT_SYMBOL(dst_error_bailout);
226
Manu Abrahama427de62005-09-09 13:03:00 -0700227int dst_comm_init(struct dst_state *state)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700228{
Manu Abrahama427de62005-09-09 13:03:00 -0700229 dprintk(verbose, DST_INFO, 1, "Initializing DST.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700230 if ((dst_pio_enable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700231 dprintk(verbose, DST_ERROR, 1, "PIO Enable Failed");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700232 return -1;
233 }
234 if ((rdc_reset_state(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700235 dprintk(verbose, DST_ERROR, 1, "RDC 8820 State RESET Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700236 return -1;
237 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700238 if (state->type_flags & DST_TYPE_HAS_FW_1)
239 msleep(100);
240 else
241 msleep(5);
242
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700243 return 0;
244}
245EXPORT_SYMBOL(dst_comm_init);
246
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700247int write_dst(struct dst_state *state, u8 *data, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct i2c_msg msg = {
Manu Abrahama427de62005-09-09 13:03:00 -0700250 .addr = state->config->demod_address,
251 .flags = 0,
252 .buf = data,
253 .len = len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 };
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 int err;
Manu Abrahama427de62005-09-09 13:03:00 -0700257 u8 cnt, i;
258
259 dprintk(verbose, DST_NOTICE, 0, "writing [ ");
260 for (i = 0; i < len; i++)
261 dprintk(verbose, DST_NOTICE, 0, "%02x ", data[i]);
262 dprintk(verbose, DST_NOTICE, 0, "]\n");
263
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700264 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700266 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 -0700267 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 continue;
269 } else
270 break;
271 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700272 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700273 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700274 dst_error_bailout(state);
275
276 return -1;
277 }
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return 0;
280}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700281EXPORT_SYMBOL(write_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Manu Abrahama427de62005-09-09 13:03:00 -0700283int read_dst(struct dst_state *state, u8 *ret, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Manu Abrahama427de62005-09-09 13:03:00 -0700285 struct i2c_msg msg = {
286 .addr = state->config->demod_address,
287 .flags = I2C_M_RD,
288 .buf = ret,
289 .len = len
290 };
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int err;
293 int cnt;
294
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700295 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700297 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 -0700298 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 continue;
300 } else
301 break;
302 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700303 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700304 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700305 dst_error_bailout(state);
306
307 return -1;
308 }
Manu Abrahama427de62005-09-09 13:03:00 -0700309 dprintk(verbose, DST_DEBUG, 1, "reply is 0x%x", ret[0]);
310 for (err = 1; err < len; err++)
311 dprintk(verbose, DST_DEBUG, 0, " 0x%x", ret[err]);
312 if (err > 1)
313 dprintk(verbose, DST_DEBUG, 0, "\n");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return 0;
316}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700317EXPORT_SYMBOL(read_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Manu Abraham7d534212005-07-07 17:57:50 -0700319static int dst_set_polarization(struct dst_state *state)
320{
321 switch (state->voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -0700322 case SEC_VOLTAGE_13: /* Vertical */
323 dprintk(verbose, DST_INFO, 1, "Polarization=[Vertical]");
324 state->tx_tuna[8] &= ~0x40;
325 break;
326 case SEC_VOLTAGE_18: /* Horizontal */
327 dprintk(verbose, DST_INFO, 1, "Polarization=[Horizontal]");
328 state->tx_tuna[8] |= 0x40;
329 break;
330 case SEC_VOLTAGE_OFF:
331 break;
Manu Abraham7d534212005-07-07 17:57:50 -0700332 }
333
334 return 0;
335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337static int dst_set_freq(struct dst_state *state, u32 freq)
338{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 state->frequency = freq;
Manu Abrahama427de62005-09-09 13:03:00 -0700340 dprintk(verbose, DST_INFO, 1, "set Frequency %u", freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (state->dst_type == DST_TYPE_IS_SAT) {
343 freq = freq / 1000;
344 if (freq < 950 || freq > 2150)
345 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700346 state->tx_tuna[2] = (freq >> 8);
347 state->tx_tuna[3] = (u8) freq;
348 state->tx_tuna[4] = 0x01;
349 state->tx_tuna[8] &= ~0x04;
350 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
351 if (freq < 1531)
352 state->tx_tuna[8] |= 0x04;
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 } else if (state->dst_type == DST_TYPE_IS_TERR) {
355 freq = freq / 1000;
356 if (freq < 137000 || freq > 858000)
357 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700358 state->tx_tuna[2] = (freq >> 16) & 0xff;
359 state->tx_tuna[3] = (freq >> 8) & 0xff;
360 state->tx_tuna[4] = (u8) freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
Manu Abraham62867422005-09-09 13:03:02 -0700362 freq = freq / 1000;
Manu Abraham7d534212005-07-07 17:57:50 -0700363 state->tx_tuna[2] = (freq >> 16) & 0xff;
364 state->tx_tuna[3] = (freq >> 8) & 0xff;
365 state->tx_tuna[4] = (u8) freq;
Manu Abrahamed3d1062006-06-21 10:27:15 -0300366 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
367 freq = freq / 1000;
368 if (freq < 51000 || freq > 858000)
369 return -EINVAL;
370 state->tx_tuna[2] = (freq >> 16) & 0xff;
371 state->tx_tuna[3] = (freq >> 8) & 0xff;
372 state->tx_tuna[4] = (u8) freq;
373 state->tx_tuna[5] = 0x00; /* ATSC */
374 state->tx_tuna[6] = 0x00;
375 if (state->dst_hw_cap & DST_TYPE_HAS_ANALOG)
376 state->tx_tuna[7] = 0x00; /* Digital */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 } else
378 return -EINVAL;
Manu Abrahama427de62005-09-09 13:03:00 -0700379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return 0;
381}
382
Manu Abrahama427de62005-09-09 13:03:00 -0700383static int dst_set_bandwidth(struct dst_state *state, fe_bandwidth_t bandwidth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 state->bandwidth = bandwidth;
386
387 if (state->dst_type != DST_TYPE_IS_TERR)
388 return 0;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 switch (bandwidth) {
Manu Abrahama427de62005-09-09 13:03:00 -0700391 case BANDWIDTH_6_MHZ:
392 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
393 state->tx_tuna[7] = 0x06;
394 else {
395 state->tx_tuna[6] = 0x06;
396 state->tx_tuna[7] = 0x00;
397 }
398 break;
399 case BANDWIDTH_7_MHZ:
400 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
401 state->tx_tuna[7] = 0x07;
402 else {
403 state->tx_tuna[6] = 0x07;
404 state->tx_tuna[7] = 0x00;
405 }
406 break;
407 case BANDWIDTH_8_MHZ:
408 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
409 state->tx_tuna[7] = 0x08;
410 else {
411 state->tx_tuna[6] = 0x08;
412 state->tx_tuna[7] = 0x00;
413 }
414 break;
415 default:
416 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Manu Abrahama427de62005-09-09 13:03:00 -0700418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return 0;
420}
421
Manu Abrahama427de62005-09-09 13:03:00 -0700422static int dst_set_inversion(struct dst_state *state, fe_spectral_inversion_t inversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 state->inversion = inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 switch (inversion) {
Manu Abrahama427de62005-09-09 13:03:00 -0700426 case INVERSION_OFF: /* Inversion = Normal */
427 state->tx_tuna[8] &= ~0x80;
428 break;
429 case INVERSION_ON:
430 state->tx_tuna[8] |= 0x80;
431 break;
432 default:
433 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Manu Abrahama427de62005-09-09 13:03:00 -0700435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
Manu Abrahama427de62005-09-09 13:03:00 -0700439static int dst_set_fec(struct dst_state *state, fe_code_rate_t fec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 state->fec = fec;
442 return 0;
443}
444
Manu Abrahama427de62005-09-09 13:03:00 -0700445static fe_code_rate_t dst_get_fec(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 return state->fec;
448}
449
Manu Abrahama427de62005-09-09 13:03:00 -0700450static int dst_set_symbolrate(struct dst_state *state, u32 srate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 u32 symcalc;
453 u64 sval;
454
455 state->symbol_rate = srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (state->dst_type == DST_TYPE_IS_TERR) {
457 return 0;
458 }
Manu Abrahama427de62005-09-09 13:03:00 -0700459 dprintk(verbose, DST_INFO, 1, "set symrate %u", srate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 srate /= 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
462 sval = srate;
463 sval <<= 20;
464 do_div(sval, 88000);
465 symcalc = (u32) sval;
Manu Abrahama427de62005-09-09 13:03:00 -0700466 dprintk(verbose, DST_INFO, 1, "set symcalc %u", symcalc);
Manu Abrahamf612c572005-09-09 13:02:58 -0700467 state->tx_tuna[5] = (u8) (symcalc >> 12);
468 state->tx_tuna[6] = (u8) (symcalc >> 4);
469 state->tx_tuna[7] = (u8) (symcalc << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 } else {
Manu Abrahamf612c572005-09-09 13:02:58 -0700471 state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
472 state->tx_tuna[6] = (u8) (srate >> 8);
473 state->tx_tuna[7] = (u8) srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Manu Abrahamf612c572005-09-09 13:02:58 -0700475 state->tx_tuna[8] &= ~0x20;
476 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
477 if (srate > 8000)
478 state->tx_tuna[8] |= 0x20;
479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return 0;
481}
482
Manu Abraham7d534212005-07-07 17:57:50 -0700483
484static int dst_set_modulation(struct dst_state *state, fe_modulation_t modulation)
485{
486 if (state->dst_type != DST_TYPE_IS_CABLE)
487 return 0;
488
489 state->modulation = modulation;
490 switch (modulation) {
Manu Abrahama427de62005-09-09 13:03:00 -0700491 case QAM_16:
492 state->tx_tuna[8] = 0x10;
493 break;
494 case QAM_32:
495 state->tx_tuna[8] = 0x20;
496 break;
497 case QAM_64:
498 state->tx_tuna[8] = 0x40;
499 break;
500 case QAM_128:
501 state->tx_tuna[8] = 0x80;
502 break;
503 case QAM_256:
504 state->tx_tuna[8] = 0x00;
505 break;
506 case QPSK:
507 case QAM_AUTO:
508 case VSB_8:
509 case VSB_16:
510 default:
511 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700512
513 }
514
515 return 0;
516}
517
518static fe_modulation_t dst_get_modulation(struct dst_state *state)
519{
520 return state->modulation;
521}
522
523
Manu Abrahama427de62005-09-09 13:03:00 -0700524u8 dst_check_sum(u8 *buf, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 u32 i;
527 u8 val = 0;
528 if (!len)
529 return 0;
530 for (i = 0; i < len; i++) {
531 val += buf[i];
532 }
533 return ((~val) + 1);
534}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700535EXPORT_SYMBOL(dst_check_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537static void dst_type_flags_print(u32 type_flags)
538{
Manu Abrahama427de62005-09-09 13:03:00 -0700539 dprintk(verbose, DST_ERROR, 0, "DST type flags :");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (type_flags & DST_TYPE_HAS_NEWTUNE)
Manu Abrahama427de62005-09-09 13:03:00 -0700541 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner", DST_TYPE_HAS_NEWTUNE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (type_flags & DST_TYPE_HAS_TS204)
Manu Abrahama427de62005-09-09 13:03:00 -0700543 dprintk(verbose, DST_ERROR, 0, " 0x%x ts204", DST_TYPE_HAS_TS204);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (type_flags & DST_TYPE_HAS_SYMDIV)
Manu Abrahama427de62005-09-09 13:03:00 -0700545 dprintk(verbose, DST_ERROR, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700546 if (type_flags & DST_TYPE_HAS_FW_1)
Manu Abrahama427de62005-09-09 13:03:00 -0700547 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700548 if (type_flags & DST_TYPE_HAS_FW_2)
Manu Abrahama427de62005-09-09 13:03:00 -0700549 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700550 if (type_flags & DST_TYPE_HAS_FW_3)
Manu Abrahama427de62005-09-09 13:03:00 -0700551 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3);
552 dprintk(verbose, DST_ERROR, 0, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700555
Manu Abrahama427de62005-09-09 13:03:00 -0700556static int dst_type_print(u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 char *otype;
559 switch (type) {
560 case DST_TYPE_IS_SAT:
561 otype = "satellite";
562 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 case DST_TYPE_IS_TERR:
565 otype = "terrestrial";
566 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 case DST_TYPE_IS_CABLE:
569 otype = "cable";
570 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700571
Manu Abrahambc7386b2006-06-21 10:27:05 -0300572 case DST_TYPE_IS_ATSC:
573 otype = "atsc";
574 break;
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 default:
Manu Abrahama427de62005-09-09 13:03:00 -0700577 dprintk(verbose, DST_INFO, 1, "invalid dst type %d", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return -EINVAL;
579 }
Manu Abrahama427de62005-09-09 13:03:00 -0700580 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return 0;
583}
584
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700585/*
586 Known cards list
587 Satellite
588 -------------------
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700589 200103A
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700590 VP-1020 DST-MOT LG(old), TS=188
591
592 VP-1020 DST-03T LG(new), TS=204
593 VP-1022 DST-03T LG(new), TS=204
594 VP-1025 DST-03T LG(new), TS=204
595
596 VP-1030 DSTMCI, LG(new), TS=188
597 VP-1032 DSTMCI, LG(new), TS=188
598
599 Cable
600 -------------------
601 VP-2030 DCT-CI, Samsung, TS=204
602 VP-2021 DCT-CI, Unknown, TS=204
603 VP-2031 DCT-CI, Philips, TS=188
604 VP-2040 DCT-CI, Philips, TS=188, with CA daughter board
605 VP-2040 DCT-CI, Philips, TS=204, without CA daughter board
606
607 Terrestrial
608 -------------------
609 VP-3050 DTTNXT TS=188
610 VP-3040 DTT-CI, Philips, TS=188
611 VP-3040 DTT-CI, Philips, TS=204
612
613 ATSC
614 -------------------
615 VP-3220 ATSCDI, TS=188
616 VP-3250 ATSCAD, TS=188
617
618*/
619
Adrian Bunk47a9e502006-02-27 00:07:55 -0300620static struct dst_types dst_tlist[] = {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700621 {
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700622 .device_id = "200103A",
623 .offset = 0,
624 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700625 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS,
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700626 .dst_feature = 0
627 }, /* obsolete */
628
629 {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700630 .device_id = "DST-020",
631 .offset = 0,
632 .dst_type = DST_TYPE_IS_SAT,
633 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
634 .dst_feature = 0
635 }, /* obsolete */
636
637 {
638 .device_id = "DST-030",
639 .offset = 0,
640 .dst_type = DST_TYPE_IS_SAT,
641 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
642 .dst_feature = 0
643 }, /* obsolete */
644
645 {
646 .device_id = "DST-03T",
647 .offset = 0,
648 .dst_type = DST_TYPE_IS_SAT,
649 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
650 .dst_feature = DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 | DST_TYPE_HAS_DISEQC5
651 | DST_TYPE_HAS_MAC | DST_TYPE_HAS_MOTO
652 },
653
654 {
655 .device_id = "DST-MOT",
656 .offset = 0,
657 .dst_type = DST_TYPE_IS_SAT,
658 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
659 .dst_feature = 0
660 }, /* obsolete */
661
662 {
663 .device_id = "DST-CI",
664 .offset = 1,
665 .dst_type = DST_TYPE_IS_SAT,
666 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
667 .dst_feature = DST_TYPE_HAS_CA
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700668 }, /* An OEM board */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700669
670 {
671 .device_id = "DSTMCI",
672 .offset = 1,
673 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700674 .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 -0700675 .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4
676 | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC
677 },
678
679 {
680 .device_id = "DSTFCI",
681 .offset = 1,
682 .dst_type = DST_TYPE_IS_SAT,
683 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
684 .dst_feature = 0
685 }, /* unknown to vendor */
686
687 {
688 .device_id = "DCT-CI",
689 .offset = 1,
690 .dst_type = DST_TYPE_IS_CABLE,
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700691 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1
Manu Abraham62121b12005-09-09 13:03:01 -0700692 | DST_TYPE_HAS_FW_2,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700693 .dst_feature = DST_TYPE_HAS_CA
694 },
695
696 {
697 .device_id = "DCTNEW",
698 .offset = 1,
699 .dst_type = DST_TYPE_IS_CABLE,
Manu Abraham62121b12005-09-09 13:03:01 -0700700 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_3 | DST_TYPE_HAS_FW_BUILD,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700701 .dst_feature = 0
702 },
703
704 {
705 .device_id = "DTT-CI",
706 .offset = 1,
707 .dst_type = DST_TYPE_IS_TERR,
Manu Abraham29b2f782005-11-08 21:35:09 -0800708 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_MULTI_FE,
709 .dst_feature = DST_TYPE_HAS_CA
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700710 },
711
712 {
713 .device_id = "DTTDIG",
714 .offset = 1,
715 .dst_type = DST_TYPE_IS_TERR,
716 .type_flags = DST_TYPE_HAS_FW_2,
717 .dst_feature = 0
718 },
719
720 {
721 .device_id = "DTTNXT",
722 .offset = 1,
723 .dst_type = DST_TYPE_IS_TERR,
724 .type_flags = DST_TYPE_HAS_FW_2,
725 .dst_feature = DST_TYPE_HAS_ANALOG
726 },
727
728 {
729 .device_id = "ATSCDI",
730 .offset = 1,
731 .dst_type = DST_TYPE_IS_ATSC,
732 .type_flags = DST_TYPE_HAS_FW_2,
733 .dst_feature = 0
734 },
735
736 {
737 .device_id = "ATSCAD",
738 .offset = 1,
739 .dst_type = DST_TYPE_IS_ATSC,
Manu Abrahamed3d1062006-06-21 10:27:15 -0300740 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD,
741 .dst_feature = DST_TYPE_HAS_MAC | DST_TYPE_HAS_ANALOG
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700742 },
743
744 { }
745
746};
747
Manu Abraham62121b12005-09-09 13:03:01 -0700748static int dst_get_mac(struct dst_state *state)
749{
750 u8 get_mac[] = { 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
751 get_mac[7] = dst_check_sum(get_mac, 7);
752 if (dst_command(state, get_mac, 8) < 0) {
753 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
754 return -1;
755 }
756 memset(&state->mac_address, '\0', 8);
757 memcpy(&state->mac_address, &state->rxbuffer, 6);
758 dprintk(verbose, DST_ERROR, 1, "MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]",
759 state->mac_address[0], state->mac_address[1], state->mac_address[2],
760 state->mac_address[4], state->mac_address[5], state->mac_address[6]);
761
762 return 0;
763}
764
765static int dst_fw_ver(struct dst_state *state)
766{
767 u8 get_ver[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
768 get_ver[7] = dst_check_sum(get_ver, 7);
769 if (dst_command(state, get_ver, 8) < 0) {
770 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
771 return -1;
772 }
773 memset(&state->fw_version, '\0', 8);
774 memcpy(&state->fw_version, &state->rxbuffer, 8);
775 dprintk(verbose, DST_ERROR, 1, "Firmware Ver = %x.%x Build = %02x, on %x:%x, %x-%x-20%02x",
776 state->fw_version[0] >> 4, state->fw_version[0] & 0x0f,
777 state->fw_version[1],
778 state->fw_version[5], state->fw_version[6],
779 state->fw_version[4], state->fw_version[3], state->fw_version[2]);
780
781 return 0;
782}
783
784static int dst_card_type(struct dst_state *state)
785{
786 u8 get_type[] = { 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
787 get_type[7] = dst_check_sum(get_type, 7);
788 if (dst_command(state, get_type, 8) < 0) {
789 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
790 return -1;
791 }
792 memset(&state->card_info, '\0', 8);
793 memcpy(&state->card_info, &state->rxbuffer, 8);
794 dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
795
796 return 0;
797}
798
799static int dst_get_vendor(struct dst_state *state)
800{
801 u8 get_vendor[] = { 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
802 get_vendor[7] = dst_check_sum(get_vendor, 7);
803 if (dst_command(state, get_vendor, 8) < 0) {
804 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
805 return -1;
806 }
807 memset(&state->vendor, '\0', 8);
808 memcpy(&state->vendor, &state->rxbuffer, 8);
809 dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
810
811 return 0;
812}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700813
Manu Abraham29b2f782005-11-08 21:35:09 -0800814static int dst_get_tuner_info(struct dst_state *state)
815{
816 u8 get_tuner_1[] = { 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
817 u8 get_tuner_2[] = { 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
818
819 get_tuner_1[7] = dst_check_sum(get_tuner_1, 7);
820 get_tuner_2[7] = dst_check_sum(get_tuner_2, 7);
821 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
822 if (dst_command(state, get_tuner_2, 8) < 0) {
823 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
824 return -1;
825 }
826 } else {
827 if (dst_command(state, get_tuner_1, 8) < 0) {
828 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
829 return -1;
830 }
831 }
832 memset(&state->board_info, '\0', 8);
833 memcpy(&state->board_info, &state->rxbuffer, 8);
834 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
835 if (state->board_info[1] == 0x0b) {
836 if (state->type_flags & DST_TYPE_HAS_TS204)
837 state->type_flags &= ~DST_TYPE_HAS_TS204;
838 state->type_flags |= DST_TYPE_HAS_NEWTUNE;
839 dprintk(verbose, DST_INFO, 1, "DST type has TS=188");
840 } else {
841 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
842 state->type_flags &= ~DST_TYPE_HAS_NEWTUNE;
843 state->type_flags |= DST_TYPE_HAS_TS204;
844 dprintk(verbose, DST_INFO, 1, "DST type has TS=204");
845 }
846 } else {
847 if (state->board_info[0] == 0xbc) {
848 if (state->type_flags & DST_TYPE_HAS_TS204)
849 state->type_flags &= ~DST_TYPE_HAS_TS204;
850 state->type_flags |= DST_TYPE_HAS_NEWTUNE;
851 dprintk(verbose, DST_INFO, 1, "DST type has TS=188, Daughterboard=[%d]", state->board_info[1]);
852
853 } else if (state->board_info[0] == 0xcc) {
854 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
855 state->type_flags &= ~DST_TYPE_HAS_NEWTUNE;
856 state->type_flags |= DST_TYPE_HAS_TS204;
857 dprintk(verbose, DST_INFO, 1, "DST type has TS=204 Daughterboard=[%d]", state->board_info[1]);
858 }
859 }
860
861 return 0;
862}
863
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700864static int dst_get_device_id(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700866 u8 reply;
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700869 struct dst_types *p_dst_type;
870 u8 use_dst_type = 0;
871 u32 use_type_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700873 static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700875 device_type[7] = dst_check_sum(device_type, 7);
876
877 if (write_dst(state, device_type, FIXED_COMM))
878 return -1; /* Write failed */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700879 if ((dst_pio_disable(state)) < 0)
880 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700881 if (read_dst(state, &reply, GET_ACK))
882 return -1; /* Read failure */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700883 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -0700884 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700885 return -1; /* Unack'd write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700887 if (!dst_wait_dst_ready(state, DEVICE_INIT))
888 return -1; /* DST not ready yet */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700889 if (read_dst(state, state->rxbuffer, FIXED_COMM))
890 return -1;
891
892 dst_pio_disable(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700893 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700894 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700895 return -1; /* Checksum failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700897 state->rxbuffer[7] = '\0';
898
Manu Abrahama427de62005-09-09 13:03:00 -0700899 for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700900 if (!strncmp (&state->rxbuffer[p_dst_type->offset], p_dst_type->device_id, strlen (p_dst_type->device_id))) {
901 use_type_flags = p_dst_type->type_flags;
902 use_dst_type = p_dst_type->dst_type;
903
904 /* Card capabilities */
905 state->dst_hw_cap = p_dst_type->dst_feature;
Manu Abrahama427de62005-09-09 13:03:00 -0700906 dprintk(verbose, DST_ERROR, 1, "Recognise [%s]\n", p_dst_type->device_id);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 break;
909 }
910 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700911
912 if (i >= sizeof (dst_tlist) / sizeof (dst_tlist [0])) {
Manu Abrahama427de62005-09-09 13:03:00 -0700913 dprintk(verbose, DST_ERROR, 1, "Unable to recognize %s or %s", &state->rxbuffer[0], &state->rxbuffer[1]);
914 dprintk(verbose, DST_ERROR, 1, "please email linux-dvb@linuxtv.org with this type in");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 use_dst_type = DST_TYPE_IS_SAT;
916 use_type_flags = DST_TYPE_HAS_SYMDIV;
917 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700918 dst_type_print(use_dst_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 state->type_flags = use_type_flags;
920 state->dst_type = use_dst_type;
921 dst_type_flags_print(state->type_flags);
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return 0;
924}
925
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700926static int dst_probe(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Ingo Molnar3593cab2006-02-07 06:49:14 -0200928 mutex_init(&state->dst_mutex);
Manu Abraham2e506a02006-06-21 10:27:20 -0300929 if (dst_addons & DST_TYPE_HAS_CA) {
930 if ((rdc_8820_reset(state)) < 0) {
931 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
932 return -1;
933 }
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -0700934 msleep(4000);
Manu Abraham2e506a02006-06-21 10:27:20 -0300935 } else {
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -0700936 msleep(100);
Manu Abraham2e506a02006-06-21 10:27:20 -0300937 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700938 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700939 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700940 return -1;
941 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700942 msleep(100);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700943 if (dst_get_device_id(state) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700944 dprintk(verbose, DST_ERROR, 1, "unknown device.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700945 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Manu Abraham62121b12005-09-09 13:03:01 -0700947 if (dst_get_mac(state) < 0) {
948 dprintk(verbose, DST_INFO, 1, "MAC: Unsupported command");
949 return 0;
950 }
Manu Abraham29b2f782005-11-08 21:35:09 -0800951 if ((state->type_flags & DST_TYPE_HAS_MULTI_FE) || (state->type_flags & DST_TYPE_HAS_FW_BUILD)) {
952 if (dst_get_tuner_info(state) < 0)
953 dprintk(verbose, DST_INFO, 1, "Tuner: Unsupported command");
954 }
Manu Abraham4c09aa72005-11-08 21:35:20 -0800955 if (state->type_flags & DST_TYPE_HAS_TS204) {
956 dst_packsize(state, 204);
957 }
Manu Abraham62121b12005-09-09 13:03:01 -0700958 if (state->type_flags & DST_TYPE_HAS_FW_BUILD) {
959 if (dst_fw_ver(state) < 0) {
960 dprintk(verbose, DST_INFO, 1, "FW: Unsupported command");
961 return 0;
962 }
963 if (dst_card_type(state) < 0) {
964 dprintk(verbose, DST_INFO, 1, "Card: Unsupported command");
965 return 0;
966 }
967 if (dst_get_vendor(state) < 0) {
968 dprintk(verbose, DST_INFO, 1, "Vendor: Unsupported command");
969 return 0;
970 }
971 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700972
973 return 0;
974}
975
Manu Abrahama427de62005-09-09 13:03:00 -0700976int dst_command(struct dst_state *state, u8 *data, u8 len)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700977{
978 u8 reply;
Manu Abrahamd28d5762005-11-08 21:35:36 -0800979
Ingo Molnar3593cab2006-02-07 06:49:14 -0200980 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700981 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700982 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -0800983 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700985 if (write_dst(state, data, len)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700986 dprintk(verbose, DST_INFO, 1, "Tring to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700987 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700988 dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -0800989 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700990 }
Manu Abrahamd28d5762005-11-08 21:35:36 -0800991 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700992 }
993 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700994 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -0800995 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700996 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700997 if (state->type_flags & DST_TYPE_HAS_FW_1)
998 udelay(3000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700999 if (read_dst(state, &reply, GET_ACK)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001000 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001001 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001002 dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001003 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001004 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001005 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001006 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001007 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001008 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001009 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011 if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001012 goto error;
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001013 if (state->type_flags & DST_TYPE_HAS_FW_1)
1014 udelay(3000);
1015 else
1016 udelay(2000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001017 if (!dst_wait_dst_ready(state, NO_DELAY))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001018 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001019 if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001020 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001021 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001022 dprintk(verbose, DST_INFO, 1, "Recovery failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001023 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001024 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001025 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001028 dprintk(verbose, DST_INFO, 1, "checksum failure");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001029 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Ingo Molnar3593cab2006-02-07 06:49:14 -02001031 mutex_unlock(&state->dst_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return 0;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001033
1034error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001035 mutex_unlock(&state->dst_mutex);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001036 return -EIO;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001039EXPORT_SYMBOL(dst_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Manu Abrahama427de62005-09-09 13:03:00 -07001041static int dst_get_signal(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 int retval;
1044 u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
Johannes Stezenbach5b5b5342005-09-09 13:02:52 -07001045 //dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
1047 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1048 return 0;
1049 }
1050 if (0 == (state->diseq_flags & HAS_LOCK)) {
1051 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1052 return 0;
1053 }
1054 if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
1055 retval = dst_command(state, get_signal, 8);
1056 if (retval < 0)
1057 return retval;
1058 if (state->dst_type == DST_TYPE_IS_SAT) {
1059 state->decode_lock = ((state->rxbuffer[6] & 0x10) == 0) ? 1 : 0;
1060 state->decode_strength = state->rxbuffer[5] << 8;
1061 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
1062 } else if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE)) {
1063 state->decode_lock = (state->rxbuffer[1]) ? 1 : 0;
1064 state->decode_strength = state->rxbuffer[4] << 8;
1065 state->decode_snr = state->rxbuffer[3] << 8;
Manu Abrahamed3d1062006-06-21 10:27:15 -03001066 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
1067 state->decode_lock = (state->rxbuffer[6] == 0x00) ? 1 : 0;
1068 state->decode_strength = state->rxbuffer[4] << 8;
1069 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
1071 state->cur_jiff = jiffies;
1072 }
1073 return 0;
1074}
1075
Manu Abrahama427de62005-09-09 13:03:00 -07001076static int dst_tone_power_cmd(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
1079
1080 if (state->dst_type == DST_TYPE_IS_TERR)
1081 return 0;
Manu Abraham8f6da8f2005-05-28 15:51:51 -07001082 paket[4] = state->tx_tuna[4];
Manu Abraham86360a32005-05-28 15:51:51 -07001083 paket[2] = state->tx_tuna[2];
Manu Abraham203fe8b2005-05-28 15:51:48 -07001084 paket[3] = state->tx_tuna[3];
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001085 paket[7] = dst_check_sum (paket, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 dst_command(state, paket, 8);
Manu Abraham203fe8b2005-05-28 15:51:48 -07001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return 0;
1089}
1090
Manu Abrahama427de62005-09-09 13:03:00 -07001091static int dst_get_tuna(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 int retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
1096 return 0;
1097 state->diseq_flags &= ~(HAS_LOCK);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001098 if (!dst_wait_dst_ready(state, NO_DELAY))
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001099 return -EIO;
Manu Abrahama427de62005-09-09 13:03:00 -07001100 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /* how to get variable length reply ???? */
1102 retval = read_dst(state, state->rx_tuna, 10);
Manu Abrahama427de62005-09-09 13:03:00 -07001103 else
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001104 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (retval < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001106 dprintk(verbose, DST_DEBUG, 1, "read not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001107 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
1109 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
1110 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001111 dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001112 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114 } else {
1115 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001116 dprintk(verbose, DST_INFO, 1, "checksum failure? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001117 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 }
1120 if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
1121 return 0;
Tom Hughesf5648e82005-11-08 21:35:22 -08001122 if (state->dst_type == DST_TYPE_IS_SAT) {
1123 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
1124 } else {
1125 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 16) + (state->rx_tuna[3] << 8) + state->rx_tuna[4];
1126 }
1127 state->decode_freq = state->decode_freq * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 state->decode_lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 state->diseq_flags |= HAS_LOCK;
Manu Abraham7d534212005-07-07 17:57:50 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return 1;
1132}
1133
Manu Abrahama427de62005-09-09 13:03:00 -07001134static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Manu Abrahama427de62005-09-09 13:03:00 -07001136static int dst_write_tuna(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Manu Abrahama427de62005-09-09 13:03:00 -07001138 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 int retval;
1140 u8 reply;
1141
Manu Abrahama427de62005-09-09 13:03:00 -07001142 dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 state->decode_freq = 0;
1144 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1145 if (state->dst_type == DST_TYPE_IS_SAT) {
1146 if (!(state->diseq_flags & HAS_POWER))
1147 dst_set_voltage(fe, SEC_VOLTAGE_13);
1148 }
1149 state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001150 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001151 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001152 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001153 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
1157 retval = write_dst(state, &state->tx_tuna[0], 10);
1158 } else {
1159 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001160 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 if (retval < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001163 dst_pio_disable(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001164 dprintk(verbose, DST_DEBUG, 1, "write not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001165 goto werr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001167 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001168 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001169 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001171 if ((read_dst(state, &reply, GET_ACK) < 0)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001172 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001173 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001174 }
1175 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001176 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001177 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179 state->diseq_flags |= ATTEMPT_TUNE;
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001180 retval = dst_get_tuna(state);
1181werr:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001182 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001183 return retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001184
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001185error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001186 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001187 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
1190/*
1191 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1192 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1193 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1194 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1195 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1196 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1197 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1198 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1199 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1200 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1201 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1202 */
1203
Manu Abrahama427de62005-09-09 13:03:00 -07001204static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Manu Abrahama427de62005-09-09 13:03:00 -07001206 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1208
Manu Abraham226d97e2005-05-28 15:51:52 -07001209 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (cmd->msg_len == 0 || cmd->msg_len > 4)
1212 return -EINVAL;
1213 memcpy(&paket[3], cmd->msg, cmd->msg_len);
1214 paket[7] = dst_check_sum(&paket[0], 7);
1215 dst_command(state, paket, 8);
1216 return 0;
1217}
1218
Manu Abrahama427de62005-09-09 13:03:00 -07001219static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 int need_cmd;
Manu Abrahama427de62005-09-09 13:03:00 -07001222 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 state->voltage = voltage;
Manu Abraham226d97e2005-05-28 15:51:52 -07001225 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return 0;
1227
1228 need_cmd = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 switch (voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -07001231 case SEC_VOLTAGE_13:
1232 case SEC_VOLTAGE_18:
1233 if ((state->diseq_flags & HAS_POWER) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 need_cmd = 1;
Manu Abrahama427de62005-09-09 13:03:00 -07001235 state->diseq_flags |= HAS_POWER;
1236 state->tx_tuna[4] = 0x01;
1237 break;
1238 case SEC_VOLTAGE_OFF:
1239 need_cmd = 1;
1240 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1241 state->tx_tuna[4] = 0x00;
1242 break;
1243 default:
1244 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
Manu Abrahama427de62005-09-09 13:03:00 -07001246
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001247 if (need_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return 0;
1251}
1252
Manu Abrahama427de62005-09-09 13:03:00 -07001253static int dst_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Manu Abrahama427de62005-09-09 13:03:00 -07001255 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 state->tone = tone;
Manu Abraham226d97e2005-05-28 15:51:52 -07001258 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return 0;
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 switch (tone) {
Manu Abrahama427de62005-09-09 13:03:00 -07001262 case SEC_TONE_OFF:
1263 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1264 state->tx_tuna[2] = 0x00;
1265 else
1266 state->tx_tuna[2] = 0xff;
1267 break;
Steffen Motzer4b2bd302005-07-07 17:58:31 -07001268
Manu Abrahama427de62005-09-09 13:03:00 -07001269 case SEC_TONE_ON:
1270 state->tx_tuna[2] = 0x02;
1271 break;
1272 default:
1273 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
1278}
1279
Manu Abraham203fe8b2005-05-28 15:51:48 -07001280static int dst_send_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t minicmd)
1281{
1282 struct dst_state *state = fe->demodulator_priv;
1283
Manu Abraham226d97e2005-05-28 15:51:52 -07001284 if (state->dst_type != DST_TYPE_IS_SAT)
Manu Abraham203fe8b2005-05-28 15:51:48 -07001285 return 0;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001286 state->minicmd = minicmd;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001287 switch (minicmd) {
Manu Abrahama427de62005-09-09 13:03:00 -07001288 case SEC_MINI_A:
1289 state->tx_tuna[3] = 0x02;
1290 break;
1291 case SEC_MINI_B:
1292 state->tx_tuna[3] = 0xff;
1293 break;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001294 }
1295 dst_tone_power_cmd(state);
1296
1297 return 0;
1298}
1299
1300
Manu Abrahama427de62005-09-09 13:03:00 -07001301static int dst_init(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Manu Abrahama427de62005-09-09 13:03:00 -07001303 struct dst_state *state = fe->demodulator_priv;
1304
1305 static u8 sat_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1306 static u8 sat_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1307 static u8 ter_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1308 static u8 ter_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1309 static u8 cab_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1310 static u8 cab_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1311
Manu Abraham7d534212005-07-07 17:57:50 -07001312 state->inversion = INVERSION_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 state->voltage = SEC_VOLTAGE_13;
1314 state->tone = SEC_TONE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 state->diseq_flags = 0;
1316 state->k22 = 0x02;
1317 state->bandwidth = BANDWIDTH_7_MHZ;
1318 state->cur_jiff = jiffies;
Manu Abrahama427de62005-09-09 13:03:00 -07001319 if (state->dst_type == DST_TYPE_IS_SAT)
1320 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? sat_tuna_188 : sat_tuna_204), sizeof (sat_tuna_204));
1321 else if (state->dst_type == DST_TYPE_IS_TERR)
1322 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? ter_tuna_188 : ter_tuna_204), sizeof (ter_tuna_204));
1323 else if (state->dst_type == DST_TYPE_IS_CABLE)
1324 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 -07001325
1326 return 0;
1327}
1328
Manu Abrahama427de62005-09-09 13:03:00 -07001329static int dst_read_status(struct dvb_frontend *fe, fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Manu Abrahama427de62005-09-09 13:03:00 -07001331 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 *status = 0;
1334 if (state->diseq_flags & HAS_LOCK) {
Manu Abraham7d534212005-07-07 17:57:50 -07001335// dst_get_signal(state); // don't require(?) to ask MCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (state->decode_lock)
1337 *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1338 }
1339
1340 return 0;
1341}
1342
Manu Abrahama427de62005-09-09 13:03:00 -07001343static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Manu Abrahama427de62005-09-09 13:03:00 -07001345 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 dst_get_signal(state);
1348 *strength = state->decode_strength;
1349
1350 return 0;
1351}
1352
Manu Abrahama427de62005-09-09 13:03:00 -07001353static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
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 *snr = state->decode_snr;
1359
1360 return 0;
1361}
1362
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001363static int dst_set_frontend(struct dvb_frontend* fe,
1364 struct dvb_frontend_parameters* p,
1365 unsigned int mode_flags,
1366 int *delay,
1367 fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Manu Abrahama427de62005-09-09 13:03:00 -07001369 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001371 if (p != NULL) {
1372 dst_set_freq(state, p->frequency);
1373 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001374
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001375 if (state->dst_type == DST_TYPE_IS_SAT) {
1376 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1377 dst_set_inversion(state, p->inversion);
1378 dst_set_fec(state, p->u.qpsk.fec_inner);
1379 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1380 dst_set_polarization(state);
1381 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001382
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001383 } else if (state->dst_type == DST_TYPE_IS_TERR)
1384 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1385 else if (state->dst_type == DST_TYPE_IS_CABLE) {
1386 dst_set_fec(state, p->u.qam.fec_inner);
1387 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1388 dst_set_modulation(state, p->u.qam.modulation);
1389 }
1390 dst_write_tuna(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001393 if (!(mode_flags & FE_TUNE_MODE_ONESHOT))
1394 dst_read_status(fe, status);
1395
1396 *delay = HZ/10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return 0;
1398}
1399
Manu Abrahama427de62005-09-09 13:03:00 -07001400static int dst_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Manu Abrahama427de62005-09-09 13:03:00 -07001402 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 p->frequency = state->decode_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001406 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1407 p->inversion = state->inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 p->u.qpsk.symbol_rate = state->symbol_rate;
1409 p->u.qpsk.fec_inner = dst_get_fec(state);
1410 } else if (state->dst_type == DST_TYPE_IS_TERR) {
1411 p->u.ofdm.bandwidth = state->bandwidth;
1412 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
1413 p->u.qam.symbol_rate = state->symbol_rate;
1414 p->u.qam.fec_inner = dst_get_fec(state);
Manu Abraham7d534212005-07-07 17:57:50 -07001415 p->u.qam.modulation = dst_get_modulation(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
1418 return 0;
1419}
1420
Manu Abrahama427de62005-09-09 13:03:00 -07001421static void dst_release(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Manu Abrahama427de62005-09-09 13:03:00 -07001423 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 kfree(state);
1425}
1426
1427static struct dvb_frontend_ops dst_dvbt_ops;
1428static struct dvb_frontend_ops dst_dvbs_ops;
1429static struct dvb_frontend_ops dst_dvbc_ops;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001430static struct dvb_frontend_ops dst_atsc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Manu Abrahama427de62005-09-09 13:03:00 -07001432struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001434 /* check if the ASIC is there */
1435 if (dst_probe(state) < 0) {
Jesper Juhl2ea75332005-11-07 01:01:31 -08001436 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001437 return NULL;
1438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* determine settings based on type */
Patrick Boettcherdea74862006-05-14 05:01:31 -03001440 /* create dvb_frontend */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 switch (state->dst_type) {
1442 case DST_TYPE_IS_TERR:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001443 memcpy(&state->frontend.ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 break;
1445 case DST_TYPE_IS_CABLE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001446 memcpy(&state->frontend.ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 break;
1448 case DST_TYPE_IS_SAT:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001449 memcpy(&state->frontend.ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 break;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001451 case DST_TYPE_IS_ATSC:
1452 memcpy(&state->frontend.ops, &dst_atsc_ops, sizeof(struct dvb_frontend_ops));
1453 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 default:
Manu Abrahama427de62005-09-09 13:03:00 -07001455 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
Jesper Juhl2ea75332005-11-07 01:01:31 -08001456 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001457 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 state->frontend.demodulator_priv = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001461 return state; /* Manu (DST is a card not a frontend) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001464EXPORT_SYMBOL(dst_attach);
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466static struct dvb_frontend_ops dst_dvbt_ops = {
1467
1468 .info = {
1469 .name = "DST DVB-T",
1470 .type = FE_OFDM,
1471 .frequency_min = 137000000,
1472 .frequency_max = 858000000,
1473 .frequency_stepsize = 166667,
1474 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
1475 },
1476
1477 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 .init = dst_init,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001479 .tune = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 .read_status = dst_read_status,
1482 .read_signal_strength = dst_read_signal_strength,
1483 .read_snr = dst_read_snr,
1484};
1485
1486static struct dvb_frontend_ops dst_dvbs_ops = {
1487
1488 .info = {
1489 .name = "DST DVB-S",
1490 .type = FE_QPSK,
1491 .frequency_min = 950000,
1492 .frequency_max = 2150000,
1493 .frequency_stepsize = 1000, /* kHz for QPSK frontends */
1494 .frequency_tolerance = 29500,
1495 .symbol_rate_min = 1000000,
1496 .symbol_rate_max = 45000000,
1497 /* . symbol_rate_tolerance = ???,*/
1498 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1499 },
1500
1501 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 .init = dst_init,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001503 .tune = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 .read_status = dst_read_status,
1506 .read_signal_strength = dst_read_signal_strength,
1507 .read_snr = dst_read_snr,
Manu Abraham203fe8b2005-05-28 15:51:48 -07001508 .diseqc_send_burst = dst_send_burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 .diseqc_send_master_cmd = dst_set_diseqc,
1510 .set_voltage = dst_set_voltage,
1511 .set_tone = dst_set_tone,
1512};
1513
1514static struct dvb_frontend_ops dst_dvbc_ops = {
1515
1516 .info = {
1517 .name = "DST DVB-C",
1518 .type = FE_QAM,
1519 .frequency_stepsize = 62500,
1520 .frequency_min = 51000000,
1521 .frequency_max = 858000000,
1522 .symbol_rate_min = 1000000,
1523 .symbol_rate_max = 45000000,
1524 /* . symbol_rate_tolerance = ???,*/
1525 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO
1526 },
1527
1528 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 .init = dst_init,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001530 .tune = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 .read_status = dst_read_status,
1533 .read_signal_strength = dst_read_signal_strength,
1534 .read_snr = dst_read_snr,
1535};
1536
Manu Abrahambc7386b2006-06-21 10:27:05 -03001537static struct dvb_frontend_ops dst_atsc_ops = {
1538 .info = {
1539 .name = "DST ATSC",
1540 .type = FE_ATSC,
1541 .frequency_stepsize = 62500,
1542 .frequency_min = 510000000,
1543 .frequency_max = 858000000,
1544 .symbol_rate_min = 1000000,
1545 .symbol_rate_max = 45000000,
1546 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
1547 },
1548
1549 .release = dst_release,
1550 .init = dst_init,
1551 .tune = dst_set_frontend,
1552 .get_frontend = dst_get_frontend,
1553 .read_status = dst_read_status,
1554 .read_signal_strength = dst_read_signal_strength,
1555 .read_snr = dst_read_snr,
1556};
1557
1558MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001559MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1560MODULE_LICENSE("GPL");