blob: eef34481d535f8b4a85b4128a49d63ff0fd14b8e [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 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
366 return -EINVAL;
Manu Abrahama427de62005-09-09 13:03:00 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return 0;
369}
370
Manu Abrahama427de62005-09-09 13:03:00 -0700371static int dst_set_bandwidth(struct dst_state *state, fe_bandwidth_t bandwidth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 state->bandwidth = bandwidth;
374
375 if (state->dst_type != DST_TYPE_IS_TERR)
376 return 0;
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 switch (bandwidth) {
Manu Abrahama427de62005-09-09 13:03:00 -0700379 case BANDWIDTH_6_MHZ:
380 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
381 state->tx_tuna[7] = 0x06;
382 else {
383 state->tx_tuna[6] = 0x06;
384 state->tx_tuna[7] = 0x00;
385 }
386 break;
387 case BANDWIDTH_7_MHZ:
388 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
389 state->tx_tuna[7] = 0x07;
390 else {
391 state->tx_tuna[6] = 0x07;
392 state->tx_tuna[7] = 0x00;
393 }
394 break;
395 case BANDWIDTH_8_MHZ:
396 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
397 state->tx_tuna[7] = 0x08;
398 else {
399 state->tx_tuna[6] = 0x08;
400 state->tx_tuna[7] = 0x00;
401 }
402 break;
403 default:
404 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
Manu Abrahama427de62005-09-09 13:03:00 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
408}
409
Manu Abrahama427de62005-09-09 13:03:00 -0700410static int dst_set_inversion(struct dst_state *state, fe_spectral_inversion_t inversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 state->inversion = inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 switch (inversion) {
Manu Abrahama427de62005-09-09 13:03:00 -0700414 case INVERSION_OFF: /* Inversion = Normal */
415 state->tx_tuna[8] &= ~0x80;
416 break;
417 case INVERSION_ON:
418 state->tx_tuna[8] |= 0x80;
419 break;
420 default:
421 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Manu Abrahama427de62005-09-09 13:03:00 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
426
Manu Abrahama427de62005-09-09 13:03:00 -0700427static int dst_set_fec(struct dst_state *state, fe_code_rate_t fec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 state->fec = fec;
430 return 0;
431}
432
Manu Abrahama427de62005-09-09 13:03:00 -0700433static fe_code_rate_t dst_get_fec(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 return state->fec;
436}
437
Manu Abrahama427de62005-09-09 13:03:00 -0700438static int dst_set_symbolrate(struct dst_state *state, u32 srate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 u32 symcalc;
441 u64 sval;
442
443 state->symbol_rate = srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (state->dst_type == DST_TYPE_IS_TERR) {
445 return 0;
446 }
Manu Abrahama427de62005-09-09 13:03:00 -0700447 dprintk(verbose, DST_INFO, 1, "set symrate %u", srate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 srate /= 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
450 sval = srate;
451 sval <<= 20;
452 do_div(sval, 88000);
453 symcalc = (u32) sval;
Manu Abrahama427de62005-09-09 13:03:00 -0700454 dprintk(verbose, DST_INFO, 1, "set symcalc %u", symcalc);
Manu Abrahamf612c572005-09-09 13:02:58 -0700455 state->tx_tuna[5] = (u8) (symcalc >> 12);
456 state->tx_tuna[6] = (u8) (symcalc >> 4);
457 state->tx_tuna[7] = (u8) (symcalc << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 } else {
Manu Abrahamf612c572005-09-09 13:02:58 -0700459 state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
460 state->tx_tuna[6] = (u8) (srate >> 8);
461 state->tx_tuna[7] = (u8) srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
Manu Abrahamf612c572005-09-09 13:02:58 -0700463 state->tx_tuna[8] &= ~0x20;
464 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
465 if (srate > 8000)
466 state->tx_tuna[8] |= 0x20;
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 0;
469}
470
Manu Abraham7d534212005-07-07 17:57:50 -0700471
472static int dst_set_modulation(struct dst_state *state, fe_modulation_t modulation)
473{
474 if (state->dst_type != DST_TYPE_IS_CABLE)
475 return 0;
476
477 state->modulation = modulation;
478 switch (modulation) {
Manu Abrahama427de62005-09-09 13:03:00 -0700479 case QAM_16:
480 state->tx_tuna[8] = 0x10;
481 break;
482 case QAM_32:
483 state->tx_tuna[8] = 0x20;
484 break;
485 case QAM_64:
486 state->tx_tuna[8] = 0x40;
487 break;
488 case QAM_128:
489 state->tx_tuna[8] = 0x80;
490 break;
491 case QAM_256:
492 state->tx_tuna[8] = 0x00;
493 break;
494 case QPSK:
495 case QAM_AUTO:
496 case VSB_8:
497 case VSB_16:
498 default:
499 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700500
501 }
502
503 return 0;
504}
505
506static fe_modulation_t dst_get_modulation(struct dst_state *state)
507{
508 return state->modulation;
509}
510
511
Manu Abrahama427de62005-09-09 13:03:00 -0700512u8 dst_check_sum(u8 *buf, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 u32 i;
515 u8 val = 0;
516 if (!len)
517 return 0;
518 for (i = 0; i < len; i++) {
519 val += buf[i];
520 }
521 return ((~val) + 1);
522}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700523EXPORT_SYMBOL(dst_check_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525static void dst_type_flags_print(u32 type_flags)
526{
Manu Abrahama427de62005-09-09 13:03:00 -0700527 dprintk(verbose, DST_ERROR, 0, "DST type flags :");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (type_flags & DST_TYPE_HAS_NEWTUNE)
Manu Abrahama427de62005-09-09 13:03:00 -0700529 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner", DST_TYPE_HAS_NEWTUNE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (type_flags & DST_TYPE_HAS_TS204)
Manu Abrahama427de62005-09-09 13:03:00 -0700531 dprintk(verbose, DST_ERROR, 0, " 0x%x ts204", DST_TYPE_HAS_TS204);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (type_flags & DST_TYPE_HAS_SYMDIV)
Manu Abrahama427de62005-09-09 13:03:00 -0700533 dprintk(verbose, DST_ERROR, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700534 if (type_flags & DST_TYPE_HAS_FW_1)
Manu Abrahama427de62005-09-09 13:03:00 -0700535 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700536 if (type_flags & DST_TYPE_HAS_FW_2)
Manu Abrahama427de62005-09-09 13:03:00 -0700537 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700538 if (type_flags & DST_TYPE_HAS_FW_3)
Manu Abrahama427de62005-09-09 13:03:00 -0700539 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3);
540 dprintk(verbose, DST_ERROR, 0, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700543
Manu Abrahama427de62005-09-09 13:03:00 -0700544static int dst_type_print(u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 char *otype;
547 switch (type) {
548 case DST_TYPE_IS_SAT:
549 otype = "satellite";
550 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 case DST_TYPE_IS_TERR:
553 otype = "terrestrial";
554 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 case DST_TYPE_IS_CABLE:
557 otype = "cable";
558 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 default:
Manu Abrahama427de62005-09-09 13:03:00 -0700561 dprintk(verbose, DST_INFO, 1, "invalid dst type %d", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return -EINVAL;
563 }
Manu Abrahama427de62005-09-09 13:03:00 -0700564 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return 0;
567}
568
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700569/*
570 Known cards list
571 Satellite
572 -------------------
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700573 200103A
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700574 VP-1020 DST-MOT LG(old), TS=188
575
576 VP-1020 DST-03T LG(new), TS=204
577 VP-1022 DST-03T LG(new), TS=204
578 VP-1025 DST-03T LG(new), TS=204
579
580 VP-1030 DSTMCI, LG(new), TS=188
581 VP-1032 DSTMCI, LG(new), TS=188
582
583 Cable
584 -------------------
585 VP-2030 DCT-CI, Samsung, TS=204
586 VP-2021 DCT-CI, Unknown, TS=204
587 VP-2031 DCT-CI, Philips, TS=188
588 VP-2040 DCT-CI, Philips, TS=188, with CA daughter board
589 VP-2040 DCT-CI, Philips, TS=204, without CA daughter board
590
591 Terrestrial
592 -------------------
593 VP-3050 DTTNXT TS=188
594 VP-3040 DTT-CI, Philips, TS=188
595 VP-3040 DTT-CI, Philips, TS=204
596
597 ATSC
598 -------------------
599 VP-3220 ATSCDI, TS=188
600 VP-3250 ATSCAD, TS=188
601
602*/
603
604struct dst_types dst_tlist[] = {
605 {
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700606 .device_id = "200103A",
607 .offset = 0,
608 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700609 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS,
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700610 .dst_feature = 0
611 }, /* obsolete */
612
613 {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700614 .device_id = "DST-020",
615 .offset = 0,
616 .dst_type = DST_TYPE_IS_SAT,
617 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
618 .dst_feature = 0
619 }, /* obsolete */
620
621 {
622 .device_id = "DST-030",
623 .offset = 0,
624 .dst_type = DST_TYPE_IS_SAT,
625 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
626 .dst_feature = 0
627 }, /* obsolete */
628
629 {
630 .device_id = "DST-03T",
631 .offset = 0,
632 .dst_type = DST_TYPE_IS_SAT,
633 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
634 .dst_feature = DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 | DST_TYPE_HAS_DISEQC5
635 | DST_TYPE_HAS_MAC | DST_TYPE_HAS_MOTO
636 },
637
638 {
639 .device_id = "DST-MOT",
640 .offset = 0,
641 .dst_type = DST_TYPE_IS_SAT,
642 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
643 .dst_feature = 0
644 }, /* obsolete */
645
646 {
647 .device_id = "DST-CI",
648 .offset = 1,
649 .dst_type = DST_TYPE_IS_SAT,
650 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
651 .dst_feature = DST_TYPE_HAS_CA
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700652 }, /* An OEM board */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700653
654 {
655 .device_id = "DSTMCI",
656 .offset = 1,
657 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700658 .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 -0700659 .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4
660 | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC
661 },
662
663 {
664 .device_id = "DSTFCI",
665 .offset = 1,
666 .dst_type = DST_TYPE_IS_SAT,
667 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
668 .dst_feature = 0
669 }, /* unknown to vendor */
670
671 {
672 .device_id = "DCT-CI",
673 .offset = 1,
674 .dst_type = DST_TYPE_IS_CABLE,
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700675 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1
Manu Abraham62121b12005-09-09 13:03:01 -0700676 | DST_TYPE_HAS_FW_2,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700677 .dst_feature = DST_TYPE_HAS_CA
678 },
679
680 {
681 .device_id = "DCTNEW",
682 .offset = 1,
683 .dst_type = DST_TYPE_IS_CABLE,
Manu Abraham62121b12005-09-09 13:03:01 -0700684 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_3 | DST_TYPE_HAS_FW_BUILD,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700685 .dst_feature = 0
686 },
687
688 {
689 .device_id = "DTT-CI",
690 .offset = 1,
691 .dst_type = DST_TYPE_IS_TERR,
Manu Abraham62121b12005-09-09 13:03:01 -0700692 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700693 .dst_feature = 0
694 },
695
696 {
697 .device_id = "DTTDIG",
698 .offset = 1,
699 .dst_type = DST_TYPE_IS_TERR,
700 .type_flags = DST_TYPE_HAS_FW_2,
701 .dst_feature = 0
702 },
703
704 {
705 .device_id = "DTTNXT",
706 .offset = 1,
707 .dst_type = DST_TYPE_IS_TERR,
708 .type_flags = DST_TYPE_HAS_FW_2,
709 .dst_feature = DST_TYPE_HAS_ANALOG
710 },
711
712 {
713 .device_id = "ATSCDI",
714 .offset = 1,
715 .dst_type = DST_TYPE_IS_ATSC,
716 .type_flags = DST_TYPE_HAS_FW_2,
717 .dst_feature = 0
718 },
719
720 {
721 .device_id = "ATSCAD",
722 .offset = 1,
723 .dst_type = DST_TYPE_IS_ATSC,
724 .type_flags = DST_TYPE_HAS_FW_2,
725 .dst_feature = 0
726 },
727
728 { }
729
730};
731
Manu Abraham62121b12005-09-09 13:03:01 -0700732static int dst_get_mac(struct dst_state *state)
733{
734 u8 get_mac[] = { 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
735 get_mac[7] = dst_check_sum(get_mac, 7);
736 if (dst_command(state, get_mac, 8) < 0) {
737 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
738 return -1;
739 }
740 memset(&state->mac_address, '\0', 8);
741 memcpy(&state->mac_address, &state->rxbuffer, 6);
742 dprintk(verbose, DST_ERROR, 1, "MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]",
743 state->mac_address[0], state->mac_address[1], state->mac_address[2],
744 state->mac_address[4], state->mac_address[5], state->mac_address[6]);
745
746 return 0;
747}
748
749static int dst_fw_ver(struct dst_state *state)
750{
751 u8 get_ver[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
752 get_ver[7] = dst_check_sum(get_ver, 7);
753 if (dst_command(state, get_ver, 8) < 0) {
754 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
755 return -1;
756 }
757 memset(&state->fw_version, '\0', 8);
758 memcpy(&state->fw_version, &state->rxbuffer, 8);
759 dprintk(verbose, DST_ERROR, 1, "Firmware Ver = %x.%x Build = %02x, on %x:%x, %x-%x-20%02x",
760 state->fw_version[0] >> 4, state->fw_version[0] & 0x0f,
761 state->fw_version[1],
762 state->fw_version[5], state->fw_version[6],
763 state->fw_version[4], state->fw_version[3], state->fw_version[2]);
764
765 return 0;
766}
767
768static int dst_card_type(struct dst_state *state)
769{
770 u8 get_type[] = { 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
771 get_type[7] = dst_check_sum(get_type, 7);
772 if (dst_command(state, get_type, 8) < 0) {
773 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
774 return -1;
775 }
776 memset(&state->card_info, '\0', 8);
777 memcpy(&state->card_info, &state->rxbuffer, 8);
778 dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
779
780 return 0;
781}
782
783static int dst_get_vendor(struct dst_state *state)
784{
785 u8 get_vendor[] = { 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
786 get_vendor[7] = dst_check_sum(get_vendor, 7);
787 if (dst_command(state, get_vendor, 8) < 0) {
788 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
789 return -1;
790 }
791 memset(&state->vendor, '\0', 8);
792 memcpy(&state->vendor, &state->rxbuffer, 8);
793 dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
794
795 return 0;
796}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700797
798static int dst_get_device_id(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700800 u8 reply;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700803 struct dst_types *p_dst_type;
804 u8 use_dst_type = 0;
805 u32 use_type_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700807 static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700809 device_type[7] = dst_check_sum(device_type, 7);
810
811 if (write_dst(state, device_type, FIXED_COMM))
812 return -1; /* Write failed */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700813 if ((dst_pio_disable(state)) < 0)
814 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700815 if (read_dst(state, &reply, GET_ACK))
816 return -1; /* Read failure */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700817 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -0700818 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700819 return -1; /* Unack'd write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700821 if (!dst_wait_dst_ready(state, DEVICE_INIT))
822 return -1; /* DST not ready yet */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700823 if (read_dst(state, state->rxbuffer, FIXED_COMM))
824 return -1;
825
826 dst_pio_disable(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700827 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700828 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700829 return -1; /* Checksum failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700831 state->rxbuffer[7] = '\0';
832
Manu Abrahama427de62005-09-09 13:03:00 -0700833 for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700834 if (!strncmp (&state->rxbuffer[p_dst_type->offset], p_dst_type->device_id, strlen (p_dst_type->device_id))) {
835 use_type_flags = p_dst_type->type_flags;
836 use_dst_type = p_dst_type->dst_type;
837
838 /* Card capabilities */
839 state->dst_hw_cap = p_dst_type->dst_feature;
Manu Abrahama427de62005-09-09 13:03:00 -0700840 dprintk(verbose, DST_ERROR, 1, "Recognise [%s]\n", p_dst_type->device_id);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 break;
843 }
844 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700845
846 if (i >= sizeof (dst_tlist) / sizeof (dst_tlist [0])) {
Manu Abrahama427de62005-09-09 13:03:00 -0700847 dprintk(verbose, DST_ERROR, 1, "Unable to recognize %s or %s", &state->rxbuffer[0], &state->rxbuffer[1]);
848 dprintk(verbose, DST_ERROR, 1, "please email linux-dvb@linuxtv.org with this type in");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 use_dst_type = DST_TYPE_IS_SAT;
850 use_type_flags = DST_TYPE_HAS_SYMDIV;
851 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700852 dst_type_print(use_dst_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 state->type_flags = use_type_flags;
854 state->dst_type = use_dst_type;
855 dst_type_flags_print(state->type_flags);
856
857 if (state->type_flags & DST_TYPE_HAS_TS204) {
858 dst_packsize(state, 204);
859 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return 0;
862}
863
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700864static int dst_probe(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700866 if ((rdc_8820_reset(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700867 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700868 return -1;
869 }
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -0700870 if (dst_addons & DST_TYPE_HAS_CA)
871 msleep(4000);
872 else
873 msleep(100);
874
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700875 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700876 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700877 return -1;
878 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700879 msleep(100);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700880 if (dst_get_device_id(state) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700881 dprintk(verbose, DST_ERROR, 1, "unknown device.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700882 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Manu Abraham62121b12005-09-09 13:03:01 -0700884 if (dst_get_mac(state) < 0) {
885 dprintk(verbose, DST_INFO, 1, "MAC: Unsupported command");
886 return 0;
887 }
888 if (state->type_flags & DST_TYPE_HAS_FW_BUILD) {
889 if (dst_fw_ver(state) < 0) {
890 dprintk(verbose, DST_INFO, 1, "FW: Unsupported command");
891 return 0;
892 }
893 if (dst_card_type(state) < 0) {
894 dprintk(verbose, DST_INFO, 1, "Card: Unsupported command");
895 return 0;
896 }
897 if (dst_get_vendor(state) < 0) {
898 dprintk(verbose, DST_INFO, 1, "Vendor: Unsupported command");
899 return 0;
900 }
901 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700902
903 return 0;
904}
905
Manu Abrahama427de62005-09-09 13:03:00 -0700906int dst_command(struct dst_state *state, u8 *data, u8 len)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700907{
908 u8 reply;
909 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700910 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700911 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700913 if (write_dst(state, data, len)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700914 dprintk(verbose, DST_INFO, 1, "Tring to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700915 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700916 dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700917 return -1;
918 }
919 return -1;
920 }
921 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700922 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700923 return -1;
924 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700925 if (state->type_flags & DST_TYPE_HAS_FW_1)
926 udelay(3000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700927 if (read_dst(state, &reply, GET_ACK)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700928 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700929 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700930 dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700931 return -1;
932 }
933 return -1;
934 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700935 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -0700936 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700937 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939 if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
940 return 0;
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700941 if (state->type_flags & DST_TYPE_HAS_FW_1)
942 udelay(3000);
943 else
944 udelay(2000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700945 if (!dst_wait_dst_ready(state, NO_DELAY))
946 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700947 if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700948 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700949 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700950 dprintk(verbose, DST_INFO, 1, "Recovery failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700951 return -1;
952 }
953 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700956 dprintk(verbose, DST_INFO, 1, "checksum failure");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700957 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return 0;
961}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700962EXPORT_SYMBOL(dst_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Manu Abrahama427de62005-09-09 13:03:00 -0700964static int dst_get_signal(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 int retval;
967 u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
Johannes Stezenbach5b5b5342005-09-09 13:02:52 -0700968 //dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
970 state->decode_lock = state->decode_strength = state->decode_snr = 0;
971 return 0;
972 }
973 if (0 == (state->diseq_flags & HAS_LOCK)) {
974 state->decode_lock = state->decode_strength = state->decode_snr = 0;
975 return 0;
976 }
977 if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
978 retval = dst_command(state, get_signal, 8);
979 if (retval < 0)
980 return retval;
981 if (state->dst_type == DST_TYPE_IS_SAT) {
982 state->decode_lock = ((state->rxbuffer[6] & 0x10) == 0) ? 1 : 0;
983 state->decode_strength = state->rxbuffer[5] << 8;
984 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
985 } else if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE)) {
986 state->decode_lock = (state->rxbuffer[1]) ? 1 : 0;
987 state->decode_strength = state->rxbuffer[4] << 8;
988 state->decode_snr = state->rxbuffer[3] << 8;
989 }
990 state->cur_jiff = jiffies;
991 }
992 return 0;
993}
994
Manu Abrahama427de62005-09-09 13:03:00 -0700995static int dst_tone_power_cmd(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
997 u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
998
999 if (state->dst_type == DST_TYPE_IS_TERR)
1000 return 0;
Manu Abraham8f6da8f2005-05-28 15:51:51 -07001001 paket[4] = state->tx_tuna[4];
Manu Abraham86360a32005-05-28 15:51:51 -07001002 paket[2] = state->tx_tuna[2];
Manu Abraham203fe8b2005-05-28 15:51:48 -07001003 paket[3] = state->tx_tuna[3];
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001004 paket[7] = dst_check_sum (paket, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 dst_command(state, paket, 8);
Manu Abraham203fe8b2005-05-28 15:51:48 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return 0;
1008}
1009
Manu Abrahama427de62005-09-09 13:03:00 -07001010static int dst_get_tuna(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 int retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
1015 return 0;
1016 state->diseq_flags &= ~(HAS_LOCK);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001017 if (!dst_wait_dst_ready(state, NO_DELAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001019 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* how to get variable length reply ???? */
1021 retval = read_dst(state, state->rx_tuna, 10);
Manu Abrahama427de62005-09-09 13:03:00 -07001022 else
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001023 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (retval < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001025 dprintk(verbose, DST_DEBUG, 1, "read not successful");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return 0;
1027 }
1028 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
1029 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001030 dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return 0;
1032 }
1033 } else {
1034 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001035 dprintk(verbose, DST_INFO, 1, "checksum failure? ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
1037 }
1038 }
1039 if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
1040 return 0;
1041 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 state->decode_lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 state->diseq_flags |= HAS_LOCK;
Manu Abraham7d534212005-07-07 17:57:50 -07001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return 1;
1046}
1047
Manu Abrahama427de62005-09-09 13:03:00 -07001048static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Manu Abrahama427de62005-09-09 13:03:00 -07001050static int dst_write_tuna(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Manu Abrahama427de62005-09-09 13:03:00 -07001052 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int retval;
1054 u8 reply;
1055
Manu Abrahama427de62005-09-09 13:03:00 -07001056 dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 state->decode_freq = 0;
1058 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1059 if (state->dst_type == DST_TYPE_IS_SAT) {
1060 if (!(state->diseq_flags & HAS_POWER))
1061 dst_set_voltage(fe, SEC_VOLTAGE_13);
1062 }
1063 state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001064
1065 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001066 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001067 return -1;
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
1071 retval = write_dst(state, &state->tx_tuna[0], 10);
1072 } else {
1073 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001074 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076 if (retval < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001077 dst_pio_disable(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001078 dprintk(verbose, DST_DEBUG, 1, "write not successful");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return retval;
1080 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001081 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001082 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001083 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001085 if ((read_dst(state, &reply, GET_ACK) < 0)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001086 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001087 return -1;
1088 }
1089 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001090 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return 0;
1092 }
1093 state->diseq_flags |= ATTEMPT_TUNE;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return dst_get_tuna(state);
1096}
1097
1098/*
1099 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1100 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1101 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1102 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1103 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1104 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1105 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1106 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1107 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1108 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1109 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1110 */
1111
Manu Abrahama427de62005-09-09 13:03:00 -07001112static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Manu Abrahama427de62005-09-09 13:03:00 -07001114 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1116
Manu Abraham226d97e2005-05-28 15:51:52 -07001117 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (cmd->msg_len == 0 || cmd->msg_len > 4)
1120 return -EINVAL;
1121 memcpy(&paket[3], cmd->msg, cmd->msg_len);
1122 paket[7] = dst_check_sum(&paket[0], 7);
1123 dst_command(state, paket, 8);
1124 return 0;
1125}
1126
Manu Abrahama427de62005-09-09 13:03:00 -07001127static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 int need_cmd;
Manu Abrahama427de62005-09-09 13:03:00 -07001130 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 state->voltage = voltage;
Manu Abraham226d97e2005-05-28 15:51:52 -07001133 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return 0;
1135
1136 need_cmd = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 switch (voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -07001139 case SEC_VOLTAGE_13:
1140 case SEC_VOLTAGE_18:
1141 if ((state->diseq_flags & HAS_POWER) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 need_cmd = 1;
Manu Abrahama427de62005-09-09 13:03:00 -07001143 state->diseq_flags |= HAS_POWER;
1144 state->tx_tuna[4] = 0x01;
1145 break;
1146 case SEC_VOLTAGE_OFF:
1147 need_cmd = 1;
1148 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1149 state->tx_tuna[4] = 0x00;
1150 break;
1151 default:
1152 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Manu Abrahama427de62005-09-09 13:03:00 -07001154
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001155 if (need_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return 0;
1159}
1160
Manu Abrahama427de62005-09-09 13:03:00 -07001161static int dst_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Manu Abrahama427de62005-09-09 13:03:00 -07001163 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 state->tone = tone;
Manu Abraham226d97e2005-05-28 15:51:52 -07001166 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return 0;
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 switch (tone) {
Manu Abrahama427de62005-09-09 13:03:00 -07001170 case SEC_TONE_OFF:
1171 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1172 state->tx_tuna[2] = 0x00;
1173 else
1174 state->tx_tuna[2] = 0xff;
1175 break;
Steffen Motzer4b2bd302005-07-07 17:58:31 -07001176
Manu Abrahama427de62005-09-09 13:03:00 -07001177 case SEC_TONE_ON:
1178 state->tx_tuna[2] = 0x02;
1179 break;
1180 default:
1181 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return 0;
1186}
1187
Manu Abraham203fe8b2005-05-28 15:51:48 -07001188static int dst_send_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t minicmd)
1189{
1190 struct dst_state *state = fe->demodulator_priv;
1191
Manu Abraham226d97e2005-05-28 15:51:52 -07001192 if (state->dst_type != DST_TYPE_IS_SAT)
Manu Abraham203fe8b2005-05-28 15:51:48 -07001193 return 0;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001194 state->minicmd = minicmd;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001195 switch (minicmd) {
Manu Abrahama427de62005-09-09 13:03:00 -07001196 case SEC_MINI_A:
1197 state->tx_tuna[3] = 0x02;
1198 break;
1199 case SEC_MINI_B:
1200 state->tx_tuna[3] = 0xff;
1201 break;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001202 }
1203 dst_tone_power_cmd(state);
1204
1205 return 0;
1206}
1207
1208
Manu Abrahama427de62005-09-09 13:03:00 -07001209static int dst_init(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Manu Abrahama427de62005-09-09 13:03:00 -07001211 struct dst_state *state = fe->demodulator_priv;
1212
1213 static u8 sat_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1214 static u8 sat_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1215 static u8 ter_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1216 static u8 ter_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1217 static u8 cab_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1218 static u8 cab_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1219
Manu Abraham7d534212005-07-07 17:57:50 -07001220 state->inversion = INVERSION_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 state->voltage = SEC_VOLTAGE_13;
1222 state->tone = SEC_TONE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 state->diseq_flags = 0;
1224 state->k22 = 0x02;
1225 state->bandwidth = BANDWIDTH_7_MHZ;
1226 state->cur_jiff = jiffies;
Manu Abrahama427de62005-09-09 13:03:00 -07001227 if (state->dst_type == DST_TYPE_IS_SAT)
1228 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? sat_tuna_188 : sat_tuna_204), sizeof (sat_tuna_204));
1229 else if (state->dst_type == DST_TYPE_IS_TERR)
1230 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? ter_tuna_188 : ter_tuna_204), sizeof (ter_tuna_204));
1231 else if (state->dst_type == DST_TYPE_IS_CABLE)
1232 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? cab_tuna_188 : cab_tuna_204), sizeof (cab_tuna_204));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 return 0;
1235}
1236
Manu Abrahama427de62005-09-09 13:03:00 -07001237static int dst_read_status(struct dvb_frontend *fe, fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Manu Abrahama427de62005-09-09 13:03:00 -07001239 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 *status = 0;
1242 if (state->diseq_flags & HAS_LOCK) {
Manu Abraham7d534212005-07-07 17:57:50 -07001243// dst_get_signal(state); // don't require(?) to ask MCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (state->decode_lock)
1245 *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1246 }
1247
1248 return 0;
1249}
1250
Manu Abrahama427de62005-09-09 13:03:00 -07001251static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Manu Abrahama427de62005-09-09 13:03:00 -07001253 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 dst_get_signal(state);
1256 *strength = state->decode_strength;
1257
1258 return 0;
1259}
1260
Manu Abrahama427de62005-09-09 13:03:00 -07001261static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Manu Abrahama427de62005-09-09 13:03:00 -07001263 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 dst_get_signal(state);
1266 *snr = state->decode_snr;
1267
1268 return 0;
1269}
1270
Manu Abrahama427de62005-09-09 13:03:00 -07001271static int dst_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Manu Abrahama427de62005-09-09 13:03:00 -07001273 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 dst_set_freq(state, p->frequency);
Manu Abrahama427de62005-09-09 13:03:00 -07001276 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001279 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1280 dst_set_inversion(state, p->inversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 dst_set_fec(state, p->u.qpsk.fec_inner);
1282 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
Manu Abraham7d534212005-07-07 17:57:50 -07001283 dst_set_polarization(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001284 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001285
Manu Abrahama427de62005-09-09 13:03:00 -07001286 } else if (state->dst_type == DST_TYPE_IS_TERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
Manu Abrahama427de62005-09-09 13:03:00 -07001288 else if (state->dst_type == DST_TYPE_IS_CABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 dst_set_fec(state, p->u.qam.fec_inner);
1290 dst_set_symbolrate(state, p->u.qam.symbol_rate);
Manu Abraham7d534212005-07-07 17:57:50 -07001291 dst_set_modulation(state, p->u.qam.modulation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293 dst_write_tuna(fe);
1294
1295 return 0;
1296}
1297
Manu Abrahama427de62005-09-09 13:03:00 -07001298static int dst_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Manu Abrahama427de62005-09-09 13:03:00 -07001300 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 p->frequency = state->decode_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001304 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1305 p->inversion = state->inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 p->u.qpsk.symbol_rate = state->symbol_rate;
1307 p->u.qpsk.fec_inner = dst_get_fec(state);
1308 } else if (state->dst_type == DST_TYPE_IS_TERR) {
1309 p->u.ofdm.bandwidth = state->bandwidth;
1310 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
1311 p->u.qam.symbol_rate = state->symbol_rate;
1312 p->u.qam.fec_inner = dst_get_fec(state);
Manu Abraham7d534212005-07-07 17:57:50 -07001313 p->u.qam.modulation = dst_get_modulation(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315
1316 return 0;
1317}
1318
Manu Abrahama427de62005-09-09 13:03:00 -07001319static void dst_release(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Manu Abrahama427de62005-09-09 13:03:00 -07001321 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 kfree(state);
1323}
1324
1325static struct dvb_frontend_ops dst_dvbt_ops;
1326static struct dvb_frontend_ops dst_dvbs_ops;
1327static struct dvb_frontend_ops dst_dvbc_ops;
1328
Manu Abrahama427de62005-09-09 13:03:00 -07001329struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001331 /* check if the ASIC is there */
1332 if (dst_probe(state) < 0) {
1333 if (state)
1334 kfree(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001336 return NULL;
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /* determine settings based on type */
1339 switch (state->dst_type) {
1340 case DST_TYPE_IS_TERR:
1341 memcpy(&state->ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
1342 break;
1343 case DST_TYPE_IS_CABLE:
1344 memcpy(&state->ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
1345 break;
1346 case DST_TYPE_IS_SAT:
1347 memcpy(&state->ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
1348 break;
1349 default:
Manu Abrahama427de62005-09-09 13:03:00 -07001350 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001351 if (state)
1352 kfree(state);
1353
1354 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356
1357 /* create dvb_frontend */
1358 state->frontend.ops = &state->ops;
1359 state->frontend.demodulator_priv = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001361 return state; /* Manu (DST is a card not a frontend) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001364EXPORT_SYMBOL(dst_attach);
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366static struct dvb_frontend_ops dst_dvbt_ops = {
1367
1368 .info = {
1369 .name = "DST DVB-T",
1370 .type = FE_OFDM,
1371 .frequency_min = 137000000,
1372 .frequency_max = 858000000,
1373 .frequency_stepsize = 166667,
1374 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
1375 },
1376
1377 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 .init = dst_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 .set_frontend = dst_set_frontend,
1380 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 .read_status = dst_read_status,
1382 .read_signal_strength = dst_read_signal_strength,
1383 .read_snr = dst_read_snr,
1384};
1385
1386static struct dvb_frontend_ops dst_dvbs_ops = {
1387
1388 .info = {
1389 .name = "DST DVB-S",
1390 .type = FE_QPSK,
1391 .frequency_min = 950000,
1392 .frequency_max = 2150000,
1393 .frequency_stepsize = 1000, /* kHz for QPSK frontends */
1394 .frequency_tolerance = 29500,
1395 .symbol_rate_min = 1000000,
1396 .symbol_rate_max = 45000000,
1397 /* . symbol_rate_tolerance = ???,*/
1398 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1399 },
1400
1401 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 .init = dst_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 .set_frontend = dst_set_frontend,
1404 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 .read_status = dst_read_status,
1406 .read_signal_strength = dst_read_signal_strength,
1407 .read_snr = dst_read_snr,
Manu Abraham203fe8b2005-05-28 15:51:48 -07001408 .diseqc_send_burst = dst_send_burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 .diseqc_send_master_cmd = dst_set_diseqc,
1410 .set_voltage = dst_set_voltage,
1411 .set_tone = dst_set_tone,
1412};
1413
1414static struct dvb_frontend_ops dst_dvbc_ops = {
1415
1416 .info = {
1417 .name = "DST DVB-C",
1418 .type = FE_QAM,
1419 .frequency_stepsize = 62500,
1420 .frequency_min = 51000000,
1421 .frequency_max = 858000000,
1422 .symbol_rate_min = 1000000,
1423 .symbol_rate_max = 45000000,
1424 /* . symbol_rate_tolerance = ???,*/
1425 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO
1426 },
1427
1428 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 .init = dst_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 .set_frontend = dst_set_frontend,
1431 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 .read_status = dst_read_status,
1433 .read_signal_strength = dst_read_signal_strength,
1434 .read_snr = dst_read_snr,
1435};
1436
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001437MODULE_DESCRIPTION("DST DVB-S/T/C Combo Frontend driver");
1438MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1439MODULE_LICENSE("GPL");