blob: 39835edba1d961cfab58cb9c14ee27760231f3dc [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
676 | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD,
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,
684 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_3,
685 .dst_feature = 0
686 },
687
688 {
689 .device_id = "DTT-CI",
690 .offset = 1,
691 .dst_type = DST_TYPE_IS_TERR,
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700692 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD,
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
732
733static int dst_get_device_id(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700735 u8 reply;
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700738 struct dst_types *p_dst_type;
739 u8 use_dst_type = 0;
740 u32 use_type_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700742 static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700744 device_type[7] = dst_check_sum(device_type, 7);
745
746 if (write_dst(state, device_type, FIXED_COMM))
747 return -1; /* Write failed */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700748 if ((dst_pio_disable(state)) < 0)
749 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700750 if (read_dst(state, &reply, GET_ACK))
751 return -1; /* Read failure */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700752 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -0700753 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700754 return -1; /* Unack'd write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700756 if (!dst_wait_dst_ready(state, DEVICE_INIT))
757 return -1; /* DST not ready yet */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700758 if (read_dst(state, state->rxbuffer, FIXED_COMM))
759 return -1;
760
761 dst_pio_disable(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700762 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700763 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700764 return -1; /* Checksum failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700766 state->rxbuffer[7] = '\0';
767
Manu Abrahama427de62005-09-09 13:03:00 -0700768 for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700769 if (!strncmp (&state->rxbuffer[p_dst_type->offset], p_dst_type->device_id, strlen (p_dst_type->device_id))) {
770 use_type_flags = p_dst_type->type_flags;
771 use_dst_type = p_dst_type->dst_type;
772
773 /* Card capabilities */
774 state->dst_hw_cap = p_dst_type->dst_feature;
Manu Abrahama427de62005-09-09 13:03:00 -0700775 dprintk(verbose, DST_ERROR, 1, "Recognise [%s]\n", p_dst_type->device_id);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 break;
778 }
779 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700780
781 if (i >= sizeof (dst_tlist) / sizeof (dst_tlist [0])) {
Manu Abrahama427de62005-09-09 13:03:00 -0700782 dprintk(verbose, DST_ERROR, 1, "Unable to recognize %s or %s", &state->rxbuffer[0], &state->rxbuffer[1]);
783 dprintk(verbose, DST_ERROR, 1, "please email linux-dvb@linuxtv.org with this type in");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 use_dst_type = DST_TYPE_IS_SAT;
785 use_type_flags = DST_TYPE_HAS_SYMDIV;
786 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700787 dst_type_print(use_dst_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 state->type_flags = use_type_flags;
789 state->dst_type = use_dst_type;
790 dst_type_flags_print(state->type_flags);
791
792 if (state->type_flags & DST_TYPE_HAS_TS204) {
793 dst_packsize(state, 204);
794 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return 0;
797}
798
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700799static int dst_probe(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700801 if ((rdc_8820_reset(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700802 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700803 return -1;
804 }
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -0700805 if (dst_addons & DST_TYPE_HAS_CA)
806 msleep(4000);
807 else
808 msleep(100);
809
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700810 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700811 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700812 return -1;
813 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700814 msleep(100);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700815 if (dst_get_device_id(state) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700816 dprintk(verbose, DST_ERROR, 1, "unknown device.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700817 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700819
820 return 0;
821}
822
Manu Abrahama427de62005-09-09 13:03:00 -0700823int dst_command(struct dst_state *state, u8 *data, u8 len)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700824{
825 u8 reply;
826 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700827 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700828 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700830 if (write_dst(state, data, len)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700831 dprintk(verbose, DST_INFO, 1, "Tring to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700832 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700833 dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700834 return -1;
835 }
836 return -1;
837 }
838 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700839 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700840 return -1;
841 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700842 if (state->type_flags & DST_TYPE_HAS_FW_1)
843 udelay(3000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700844 if (read_dst(state, &reply, GET_ACK)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700845 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700846 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700847 dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700848 return -1;
849 }
850 return -1;
851 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700852 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -0700853 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700854 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856 if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
857 return 0;
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700858 if (state->type_flags & DST_TYPE_HAS_FW_1)
859 udelay(3000);
860 else
861 udelay(2000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700862 if (!dst_wait_dst_ready(state, NO_DELAY))
863 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700864 if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700865 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700866 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700867 dprintk(verbose, DST_INFO, 1, "Recovery failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700868 return -1;
869 }
870 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700873 dprintk(verbose, DST_INFO, 1, "checksum failure");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700874 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return 0;
878}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700879EXPORT_SYMBOL(dst_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Manu Abrahama427de62005-09-09 13:03:00 -0700881static int dst_get_signal(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 int retval;
884 u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
Johannes Stezenbach5b5b5342005-09-09 13:02:52 -0700885 //dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
887 state->decode_lock = state->decode_strength = state->decode_snr = 0;
888 return 0;
889 }
890 if (0 == (state->diseq_flags & HAS_LOCK)) {
891 state->decode_lock = state->decode_strength = state->decode_snr = 0;
892 return 0;
893 }
894 if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
895 retval = dst_command(state, get_signal, 8);
896 if (retval < 0)
897 return retval;
898 if (state->dst_type == DST_TYPE_IS_SAT) {
899 state->decode_lock = ((state->rxbuffer[6] & 0x10) == 0) ? 1 : 0;
900 state->decode_strength = state->rxbuffer[5] << 8;
901 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
902 } else if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE)) {
903 state->decode_lock = (state->rxbuffer[1]) ? 1 : 0;
904 state->decode_strength = state->rxbuffer[4] << 8;
905 state->decode_snr = state->rxbuffer[3] << 8;
906 }
907 state->cur_jiff = jiffies;
908 }
909 return 0;
910}
911
Manu Abrahama427de62005-09-09 13:03:00 -0700912static int dst_tone_power_cmd(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
915
916 if (state->dst_type == DST_TYPE_IS_TERR)
917 return 0;
Manu Abraham8f6da8f2005-05-28 15:51:51 -0700918 paket[4] = state->tx_tuna[4];
Manu Abraham86360a32005-05-28 15:51:51 -0700919 paket[2] = state->tx_tuna[2];
Manu Abraham203fe8b2005-05-28 15:51:48 -0700920 paket[3] = state->tx_tuna[3];
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700921 paket[7] = dst_check_sum (paket, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 dst_command(state, paket, 8);
Manu Abraham203fe8b2005-05-28 15:51:48 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return 0;
925}
926
Manu Abrahama427de62005-09-09 13:03:00 -0700927static int dst_get_tuna(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 int retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
932 return 0;
933 state->diseq_flags &= ~(HAS_LOCK);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700934 if (!dst_wait_dst_ready(state, NO_DELAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
Manu Abrahama427de62005-09-09 13:03:00 -0700936 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /* how to get variable length reply ???? */
938 retval = read_dst(state, state->rx_tuna, 10);
Manu Abrahama427de62005-09-09 13:03:00 -0700939 else
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700940 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (retval < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700942 dprintk(verbose, DST_DEBUG, 1, "read not successful");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
944 }
945 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
946 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700947 dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return 0;
949 }
950 } else {
951 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -0700952 dprintk(verbose, DST_INFO, 1, "checksum failure? ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return 0;
954 }
955 }
956 if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
957 return 0;
958 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 state->decode_lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 state->diseq_flags |= HAS_LOCK;
Manu Abraham7d534212005-07-07 17:57:50 -0700961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return 1;
963}
964
Manu Abrahama427de62005-09-09 13:03:00 -0700965static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Manu Abrahama427de62005-09-09 13:03:00 -0700967static int dst_write_tuna(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Manu Abrahama427de62005-09-09 13:03:00 -0700969 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int retval;
971 u8 reply;
972
Manu Abrahama427de62005-09-09 13:03:00 -0700973 dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 state->decode_freq = 0;
975 state->decode_lock = state->decode_strength = state->decode_snr = 0;
976 if (state->dst_type == DST_TYPE_IS_SAT) {
977 if (!(state->diseq_flags & HAS_POWER))
978 dst_set_voltage(fe, SEC_VOLTAGE_13);
979 }
980 state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700981
982 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700983 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700984 return -1;
985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
988 retval = write_dst(state, &state->tx_tuna[0], 10);
989 } else {
990 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700991 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993 if (retval < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700994 dst_pio_disable(state);
Manu Abrahama427de62005-09-09 13:03:00 -0700995 dprintk(verbose, DST_DEBUG, 1, "write not successful");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return retval;
997 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700998 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700999 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001000 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001002 if ((read_dst(state, &reply, GET_ACK) < 0)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001003 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001004 return -1;
1005 }
1006 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001007 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return 0;
1009 }
1010 state->diseq_flags |= ATTEMPT_TUNE;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return dst_get_tuna(state);
1013}
1014
1015/*
1016 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1017 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1018 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1019 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1020 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1021 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1022 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1023 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1024 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1025 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1026 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1027 */
1028
Manu Abrahama427de62005-09-09 13:03:00 -07001029static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Manu Abrahama427de62005-09-09 13:03:00 -07001031 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1033
Manu Abraham226d97e2005-05-28 15:51:52 -07001034 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (cmd->msg_len == 0 || cmd->msg_len > 4)
1037 return -EINVAL;
1038 memcpy(&paket[3], cmd->msg, cmd->msg_len);
1039 paket[7] = dst_check_sum(&paket[0], 7);
1040 dst_command(state, paket, 8);
1041 return 0;
1042}
1043
Manu Abrahama427de62005-09-09 13:03:00 -07001044static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 int need_cmd;
Manu Abrahama427de62005-09-09 13:03:00 -07001047 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 state->voltage = voltage;
Manu Abraham226d97e2005-05-28 15:51:52 -07001050 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return 0;
1052
1053 need_cmd = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 switch (voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -07001056 case SEC_VOLTAGE_13:
1057 case SEC_VOLTAGE_18:
1058 if ((state->diseq_flags & HAS_POWER) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 need_cmd = 1;
Manu Abrahama427de62005-09-09 13:03:00 -07001060 state->diseq_flags |= HAS_POWER;
1061 state->tx_tuna[4] = 0x01;
1062 break;
1063 case SEC_VOLTAGE_OFF:
1064 need_cmd = 1;
1065 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1066 state->tx_tuna[4] = 0x00;
1067 break;
1068 default:
1069 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
Manu Abrahama427de62005-09-09 13:03:00 -07001071
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001072 if (need_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return 0;
1076}
1077
Manu Abrahama427de62005-09-09 13:03:00 -07001078static int dst_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Manu Abrahama427de62005-09-09 13:03:00 -07001080 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 state->tone = tone;
Manu Abraham226d97e2005-05-28 15:51:52 -07001083 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return 0;
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 switch (tone) {
Manu Abrahama427de62005-09-09 13:03:00 -07001087 case SEC_TONE_OFF:
1088 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1089 state->tx_tuna[2] = 0x00;
1090 else
1091 state->tx_tuna[2] = 0xff;
1092 break;
Steffen Motzer4b2bd302005-07-07 17:58:31 -07001093
Manu Abrahama427de62005-09-09 13:03:00 -07001094 case SEC_TONE_ON:
1095 state->tx_tuna[2] = 0x02;
1096 break;
1097 default:
1098 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return 0;
1103}
1104
Manu Abraham203fe8b2005-05-28 15:51:48 -07001105static int dst_send_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t minicmd)
1106{
1107 struct dst_state *state = fe->demodulator_priv;
1108
Manu Abraham226d97e2005-05-28 15:51:52 -07001109 if (state->dst_type != DST_TYPE_IS_SAT)
Manu Abraham203fe8b2005-05-28 15:51:48 -07001110 return 0;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001111 state->minicmd = minicmd;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001112 switch (minicmd) {
Manu Abrahama427de62005-09-09 13:03:00 -07001113 case SEC_MINI_A:
1114 state->tx_tuna[3] = 0x02;
1115 break;
1116 case SEC_MINI_B:
1117 state->tx_tuna[3] = 0xff;
1118 break;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001119 }
1120 dst_tone_power_cmd(state);
1121
1122 return 0;
1123}
1124
1125
Manu Abrahama427de62005-09-09 13:03:00 -07001126static int dst_init(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Manu Abrahama427de62005-09-09 13:03:00 -07001128 struct dst_state *state = fe->demodulator_priv;
1129
1130 static u8 sat_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1131 static u8 sat_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1132 static u8 ter_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1133 static u8 ter_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1134 static u8 cab_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1135 static u8 cab_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1136
Manu Abraham7d534212005-07-07 17:57:50 -07001137 state->inversion = INVERSION_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 state->voltage = SEC_VOLTAGE_13;
1139 state->tone = SEC_TONE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 state->diseq_flags = 0;
1141 state->k22 = 0x02;
1142 state->bandwidth = BANDWIDTH_7_MHZ;
1143 state->cur_jiff = jiffies;
Manu Abrahama427de62005-09-09 13:03:00 -07001144 if (state->dst_type == DST_TYPE_IS_SAT)
1145 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? sat_tuna_188 : sat_tuna_204), sizeof (sat_tuna_204));
1146 else if (state->dst_type == DST_TYPE_IS_TERR)
1147 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? ter_tuna_188 : ter_tuna_204), sizeof (ter_tuna_204));
1148 else if (state->dst_type == DST_TYPE_IS_CABLE)
1149 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 -07001150
1151 return 0;
1152}
1153
Manu Abrahama427de62005-09-09 13:03:00 -07001154static int dst_read_status(struct dvb_frontend *fe, fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Manu Abrahama427de62005-09-09 13:03:00 -07001156 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 *status = 0;
1159 if (state->diseq_flags & HAS_LOCK) {
Manu Abraham7d534212005-07-07 17:57:50 -07001160// dst_get_signal(state); // don't require(?) to ask MCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (state->decode_lock)
1162 *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1163 }
1164
1165 return 0;
1166}
1167
Manu Abrahama427de62005-09-09 13:03:00 -07001168static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Manu Abrahama427de62005-09-09 13:03:00 -07001170 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 dst_get_signal(state);
1173 *strength = state->decode_strength;
1174
1175 return 0;
1176}
1177
Manu Abrahama427de62005-09-09 13:03:00 -07001178static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
Manu Abrahama427de62005-09-09 13:03:00 -07001180 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 dst_get_signal(state);
1183 *snr = state->decode_snr;
1184
1185 return 0;
1186}
1187
Manu Abrahama427de62005-09-09 13:03:00 -07001188static int dst_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Manu Abrahama427de62005-09-09 13:03:00 -07001190 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 dst_set_freq(state, p->frequency);
Manu Abrahama427de62005-09-09 13:03:00 -07001193 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001196 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1197 dst_set_inversion(state, p->inversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 dst_set_fec(state, p->u.qpsk.fec_inner);
1199 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
Manu Abraham7d534212005-07-07 17:57:50 -07001200 dst_set_polarization(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001201 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001202
Manu Abrahama427de62005-09-09 13:03:00 -07001203 } else if (state->dst_type == DST_TYPE_IS_TERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
Manu Abrahama427de62005-09-09 13:03:00 -07001205 else if (state->dst_type == DST_TYPE_IS_CABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 dst_set_fec(state, p->u.qam.fec_inner);
1207 dst_set_symbolrate(state, p->u.qam.symbol_rate);
Manu Abraham7d534212005-07-07 17:57:50 -07001208 dst_set_modulation(state, p->u.qam.modulation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210 dst_write_tuna(fe);
1211
1212 return 0;
1213}
1214
Manu Abrahama427de62005-09-09 13:03:00 -07001215static int dst_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Manu Abrahama427de62005-09-09 13:03:00 -07001217 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 p->frequency = state->decode_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001221 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1222 p->inversion = state->inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 p->u.qpsk.symbol_rate = state->symbol_rate;
1224 p->u.qpsk.fec_inner = dst_get_fec(state);
1225 } else if (state->dst_type == DST_TYPE_IS_TERR) {
1226 p->u.ofdm.bandwidth = state->bandwidth;
1227 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
1228 p->u.qam.symbol_rate = state->symbol_rate;
1229 p->u.qam.fec_inner = dst_get_fec(state);
Manu Abraham7d534212005-07-07 17:57:50 -07001230 p->u.qam.modulation = dst_get_modulation(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232
1233 return 0;
1234}
1235
Manu Abrahama427de62005-09-09 13:03:00 -07001236static void dst_release(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Manu Abrahama427de62005-09-09 13:03:00 -07001238 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 kfree(state);
1240}
1241
1242static struct dvb_frontend_ops dst_dvbt_ops;
1243static struct dvb_frontend_ops dst_dvbs_ops;
1244static struct dvb_frontend_ops dst_dvbc_ops;
1245
Manu Abrahama427de62005-09-09 13:03:00 -07001246struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001248 /* check if the ASIC is there */
1249 if (dst_probe(state) < 0) {
1250 if (state)
1251 kfree(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001253 return NULL;
1254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 /* determine settings based on type */
1256 switch (state->dst_type) {
1257 case DST_TYPE_IS_TERR:
1258 memcpy(&state->ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
1259 break;
1260 case DST_TYPE_IS_CABLE:
1261 memcpy(&state->ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
1262 break;
1263 case DST_TYPE_IS_SAT:
1264 memcpy(&state->ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
1265 break;
1266 default:
Manu Abrahama427de62005-09-09 13:03:00 -07001267 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001268 if (state)
1269 kfree(state);
1270
1271 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273
1274 /* create dvb_frontend */
1275 state->frontend.ops = &state->ops;
1276 state->frontend.demodulator_priv = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001278 return state; /* Manu (DST is a card not a frontend) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001281EXPORT_SYMBOL(dst_attach);
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283static struct dvb_frontend_ops dst_dvbt_ops = {
1284
1285 .info = {
1286 .name = "DST DVB-T",
1287 .type = FE_OFDM,
1288 .frequency_min = 137000000,
1289 .frequency_max = 858000000,
1290 .frequency_stepsize = 166667,
1291 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
1292 },
1293
1294 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 .init = dst_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 .set_frontend = dst_set_frontend,
1297 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 .read_status = dst_read_status,
1299 .read_signal_strength = dst_read_signal_strength,
1300 .read_snr = dst_read_snr,
1301};
1302
1303static struct dvb_frontend_ops dst_dvbs_ops = {
1304
1305 .info = {
1306 .name = "DST DVB-S",
1307 .type = FE_QPSK,
1308 .frequency_min = 950000,
1309 .frequency_max = 2150000,
1310 .frequency_stepsize = 1000, /* kHz for QPSK frontends */
1311 .frequency_tolerance = 29500,
1312 .symbol_rate_min = 1000000,
1313 .symbol_rate_max = 45000000,
1314 /* . symbol_rate_tolerance = ???,*/
1315 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1316 },
1317
1318 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 .init = dst_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 .set_frontend = dst_set_frontend,
1321 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 .read_status = dst_read_status,
1323 .read_signal_strength = dst_read_signal_strength,
1324 .read_snr = dst_read_snr,
Manu Abraham203fe8b2005-05-28 15:51:48 -07001325 .diseqc_send_burst = dst_send_burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .diseqc_send_master_cmd = dst_set_diseqc,
1327 .set_voltage = dst_set_voltage,
1328 .set_tone = dst_set_tone,
1329};
1330
1331static struct dvb_frontend_ops dst_dvbc_ops = {
1332
1333 .info = {
1334 .name = "DST DVB-C",
1335 .type = FE_QAM,
1336 .frequency_stepsize = 62500,
1337 .frequency_min = 51000000,
1338 .frequency_max = 858000000,
1339 .symbol_rate_min = 1000000,
1340 .symbol_rate_max = 45000000,
1341 /* . symbol_rate_tolerance = ???,*/
1342 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO
1343 },
1344
1345 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 .init = dst_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 .set_frontend = dst_set_frontend,
1348 .get_frontend = dst_get_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 .read_status = dst_read_status,
1350 .read_signal_strength = dst_read_signal_strength,
1351 .read_snr = dst_read_snr,
1352};
1353
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001354MODULE_DESCRIPTION("DST DVB-S/T/C Combo Frontend driver");
1355MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1356MODULE_LICENSE("GPL");