blob: 2e0c6e73d4ae8864b4140da04326b8a234505c3c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07002 Frontend/Card driver for TwinHan DST Frontend
3 Copyright (C) 2003 Jamie Honan
4 Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07006 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070011 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070016 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019*/
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/string.h>
25#include <linux/slab.h>
26#include <linux/vmalloc.h>
27#include <linux/delay.h>
28#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "dvb_frontend.h"
30#include "dst_priv.h"
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070031#include "dst_common.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070033static unsigned int verbose = 1;
34module_param(verbose, int, 0644);
35MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070037static unsigned int dst_addons;
38module_param(dst_addons, int, 0644);
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -070039MODULE_PARM_DESC(dst_addons, "CA daughterboard, default is 0 (No addons)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Manu Abraham8cfba632006-06-21 10:27:26 -030041static unsigned int dst_algo;
42module_param(dst_algo, int, 0644);
43MODULE_PARM_DESC(dst_algo, "tuning algo: default is 0=(SW), 1=(HW)");
44
Manu Abrahama427de62005-09-09 13:03:00 -070045#define HAS_LOCK 1
46#define ATTEMPT_TUNE 2
47#define HAS_POWER 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Manu Abrahama427de62005-09-09 13:03:00 -070049#define DST_ERROR 0
50#define DST_NOTICE 1
51#define DST_INFO 2
52#define DST_DEBUG 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Manu Abraham9500c7b2006-06-21 10:28:23 -030054#define dprintk(x, y, z, format, arg...) do { \
55 if (z) { \
56 if ((x > DST_ERROR) && (x > y)) \
57 printk(KERN_ERR "dst(%d) %s: " format "\n", \
58 state->bt->nr, __func__ , ##arg); \
59 else if ((x > DST_NOTICE) && (x > y)) \
60 printk(KERN_NOTICE "dst(%d) %s: " format "\n", \
61 state->bt->nr, __func__ , ##arg); \
62 else if ((x > DST_INFO) && (x > y)) \
63 printk(KERN_INFO "dst(%d) %s: " format "\n", \
64 state->bt->nr, __func__ , ##arg); \
65 else if ((x > DST_DEBUG) && (x > y)) \
66 printk(KERN_DEBUG "dst(%d) %s: " format "\n", \
67 state->bt->nr, __func__ , ##arg); \
68 } else { \
69 if (x > y) \
70 printk(format, ##arg); \
71 } \
Manu Abrahama427de62005-09-09 13:03:00 -070072} while(0)
73
74
75static void dst_packsize(struct dst_state *state, int psize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 union dst_gpio_packet bits;
78
79 bits.psize = psize;
80 bt878_device_control(state->bt, DST_IG_TS, &bits);
81}
82
Manu Abrahama427de62005-09-09 13:03:00 -070083int dst_gpio_outb(struct dst_state *state, u32 mask, u32 enbb, u32 outhigh, int delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 union dst_gpio_packet enb;
86 union dst_gpio_packet bits;
87 int err;
88
89 enb.enb.mask = mask;
90 enb.enb.enable = enbb;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -070091
Manu Abrahama427de62005-09-09 13:03:00 -070092 dprintk(verbose, DST_INFO, 1, "mask=[%04x], enbb=[%04x], outhigh=[%04x]", mask, enbb, outhigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if ((err = bt878_device_control(state->bt, DST_IG_ENABLE, &enb)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -070094 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 -070095 return -EREMOTEIO;
96 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -070097 udelay(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* because complete disabling means no output, no need to do output packet */
99 if (enbb == 0)
100 return 0;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700101 if (delay)
102 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 bits.outp.mask = enbb;
104 bits.outp.highvals = outhigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if ((err = bt878_device_control(state->bt, DST_IG_WRITE, &bits)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700106 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 -0700107 return -EREMOTEIO;
108 }
Manu Abrahama427de62005-09-09 13:03:00 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return 0;
111}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700112EXPORT_SYMBOL(dst_gpio_outb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Manu Abrahama427de62005-09-09 13:03:00 -0700114int dst_gpio_inb(struct dst_state *state, u8 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 union dst_gpio_packet rd_packet;
117 int err;
118
119 *result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if ((err = bt878_device_control(state->bt, DST_IG_READ, &rd_packet)) < 0) {
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300121 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb error (err == %i)", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return -EREMOTEIO;
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *result = (u8) rd_packet.rd.value;
Manu Abrahama427de62005-09-09 13:03:00 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return 0;
127}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700128EXPORT_SYMBOL(dst_gpio_inb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700130int rdc_reset_state(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Manu Abrahama427de62005-09-09 13:03:00 -0700132 dprintk(verbose, DST_INFO, 1, "Resetting state machine");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700133 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700134 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700135 return -1;
136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 msleep(10);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700138 if (dst_gpio_outb(state, RDC_8820_INT, RDC_8820_INT, RDC_8820_INT, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700139 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700140 msleep(10);
141 return -1;
142 }
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
145}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700146EXPORT_SYMBOL(rdc_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700148int rdc_8820_reset(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Manu Abrahama427de62005-09-09 13:03:00 -0700150 dprintk(verbose, DST_DEBUG, 1, "Resetting DST");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700151 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700152 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700153 return -1;
154 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700155 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700156 if (dst_gpio_outb(state, RDC_8820_RESET, RDC_8820_RESET, RDC_8820_RESET, DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700157 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700158 return -1;
159 }
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
162}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700163EXPORT_SYMBOL(rdc_8820_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700165int dst_pio_enable(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700167 if (dst_gpio_outb(state, ~0, RDC_8820_PIO_0_ENABLE, 0, NO_DELAY) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700168 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700169 return -1;
170 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700171 udelay(1000);
Manu Abrahama427de62005-09-09 13:03:00 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return 0;
174}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700175EXPORT_SYMBOL(dst_pio_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700177int dst_pio_disable(struct dst_state *state)
178{
179 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 -0700180 dprintk(verbose, DST_ERROR, 1, "dst_gpio_outb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700181 return -1;
182 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700183 if (state->type_flags & DST_TYPE_HAS_FW_1)
184 udelay(1000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700185
186 return 0;
187}
188EXPORT_SYMBOL(dst_pio_disable);
189
190int dst_wait_dst_ready(struct dst_state *state, u8 delay_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 u8 reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int i;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 for (i = 0; i < 200; i++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700196 if (dst_gpio_inb(state, &reply) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700197 dprintk(verbose, DST_ERROR, 1, "dst_gpio_inb ERROR !");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700198 return -1;
199 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700200 if ((reply & RDC_8820_PIO_0_ENABLE) == 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700201 dprintk(verbose, DST_INFO, 1, "dst wait ready after %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 1;
203 }
Johannes Stezenbachb46dd442005-05-16 21:54:44 -0700204 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
Manu Abrahama427de62005-09-09 13:03:00 -0700206 dprintk(verbose, DST_NOTICE, 1, "dst wait NOT ready after %d", i);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return 0;
209}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700210EXPORT_SYMBOL(dst_wait_dst_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700212int dst_error_recovery(struct dst_state *state)
213{
Manu Abrahama427de62005-09-09 13:03:00 -0700214 dprintk(verbose, DST_NOTICE, 1, "Trying to return from previous errors.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700215 dst_pio_disable(state);
216 msleep(10);
217 dst_pio_enable(state);
218 msleep(10);
219
220 return 0;
221}
222EXPORT_SYMBOL(dst_error_recovery);
223
224int dst_error_bailout(struct dst_state *state)
225{
Manu Abrahama427de62005-09-09 13:03:00 -0700226 dprintk(verbose, DST_INFO, 1, "Trying to bailout from previous error.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700227 rdc_8820_reset(state);
228 dst_pio_disable(state);
229 msleep(10);
230
231 return 0;
232}
233EXPORT_SYMBOL(dst_error_bailout);
234
Manu Abrahama427de62005-09-09 13:03:00 -0700235int dst_comm_init(struct dst_state *state)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700236{
Manu Abrahama427de62005-09-09 13:03:00 -0700237 dprintk(verbose, DST_INFO, 1, "Initializing DST.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700238 if ((dst_pio_enable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700239 dprintk(verbose, DST_ERROR, 1, "PIO Enable Failed");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700240 return -1;
241 }
242 if ((rdc_reset_state(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700243 dprintk(verbose, DST_ERROR, 1, "RDC 8820 State RESET Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700244 return -1;
245 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700246 if (state->type_flags & DST_TYPE_HAS_FW_1)
247 msleep(100);
248 else
249 msleep(5);
250
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700251 return 0;
252}
253EXPORT_SYMBOL(dst_comm_init);
254
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700255int write_dst(struct dst_state *state, u8 *data, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct i2c_msg msg = {
Manu Abrahama427de62005-09-09 13:03:00 -0700258 .addr = state->config->demod_address,
259 .flags = 0,
260 .buf = data,
261 .len = len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 };
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 int err;
Manu Abrahama427de62005-09-09 13:03:00 -0700265 u8 cnt, i;
266
267 dprintk(verbose, DST_NOTICE, 0, "writing [ ");
268 for (i = 0; i < len; i++)
269 dprintk(verbose, DST_NOTICE, 0, "%02x ", data[i]);
270 dprintk(verbose, DST_NOTICE, 0, "]\n");
271
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700272 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700274 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 -0700275 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 continue;
277 } else
278 break;
279 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700280 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700281 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700282 dst_error_bailout(state);
283
284 return -1;
285 }
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700289EXPORT_SYMBOL(write_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Manu Abrahama427de62005-09-09 13:03:00 -0700291int read_dst(struct dst_state *state, u8 *ret, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Manu Abrahama427de62005-09-09 13:03:00 -0700293 struct i2c_msg msg = {
294 .addr = state->config->demod_address,
295 .flags = I2C_M_RD,
296 .buf = ret,
297 .len = len
298 };
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 int err;
301 int cnt;
302
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700303 for (cnt = 0; cnt < 2; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if ((err = i2c_transfer(state->i2c, &msg, 1)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -0700305 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 -0700306 dst_error_recovery(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 continue;
308 } else
309 break;
310 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700311 if (cnt >= 2) {
Manu Abrahama427de62005-09-09 13:03:00 -0700312 dprintk(verbose, DST_INFO, 1, "RDC 8820 RESET");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700313 dst_error_bailout(state);
314
315 return -1;
316 }
Manu Abrahama427de62005-09-09 13:03:00 -0700317 dprintk(verbose, DST_DEBUG, 1, "reply is 0x%x", ret[0]);
318 for (err = 1; err < len; err++)
319 dprintk(verbose, DST_DEBUG, 0, " 0x%x", ret[err]);
320 if (err > 1)
321 dprintk(verbose, DST_DEBUG, 0, "\n");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 0;
324}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700325EXPORT_SYMBOL(read_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Manu Abraham7d534212005-07-07 17:57:50 -0700327static int dst_set_polarization(struct dst_state *state)
328{
329 switch (state->voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -0700330 case SEC_VOLTAGE_13: /* Vertical */
331 dprintk(verbose, DST_INFO, 1, "Polarization=[Vertical]");
332 state->tx_tuna[8] &= ~0x40;
333 break;
334 case SEC_VOLTAGE_18: /* Horizontal */
335 dprintk(verbose, DST_INFO, 1, "Polarization=[Horizontal]");
336 state->tx_tuna[8] |= 0x40;
337 break;
338 case SEC_VOLTAGE_OFF:
339 break;
Manu Abraham7d534212005-07-07 17:57:50 -0700340 }
341
342 return 0;
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static int dst_set_freq(struct dst_state *state, u32 freq)
346{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 state->frequency = freq;
Manu Abrahama427de62005-09-09 13:03:00 -0700348 dprintk(verbose, DST_INFO, 1, "set Frequency %u", freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (state->dst_type == DST_TYPE_IS_SAT) {
351 freq = freq / 1000;
352 if (freq < 950 || freq > 2150)
353 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700354 state->tx_tuna[2] = (freq >> 8);
355 state->tx_tuna[3] = (u8) freq;
356 state->tx_tuna[4] = 0x01;
357 state->tx_tuna[8] &= ~0x04;
358 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
359 if (freq < 1531)
360 state->tx_tuna[8] |= 0x04;
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 } else if (state->dst_type == DST_TYPE_IS_TERR) {
363 freq = freq / 1000;
364 if (freq < 137000 || freq > 858000)
365 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700366 state->tx_tuna[2] = (freq >> 16) & 0xff;
367 state->tx_tuna[3] = (freq >> 8) & 0xff;
368 state->tx_tuna[4] = (u8) freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
Manu Abraham62867422005-09-09 13:03:02 -0700370 freq = freq / 1000;
Manu Abraham7d534212005-07-07 17:57:50 -0700371 state->tx_tuna[2] = (freq >> 16) & 0xff;
372 state->tx_tuna[3] = (freq >> 8) & 0xff;
373 state->tx_tuna[4] = (u8) freq;
Manu Abrahamed3d1062006-06-21 10:27:15 -0300374 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
375 freq = freq / 1000;
376 if (freq < 51000 || freq > 858000)
377 return -EINVAL;
378 state->tx_tuna[2] = (freq >> 16) & 0xff;
379 state->tx_tuna[3] = (freq >> 8) & 0xff;
380 state->tx_tuna[4] = (u8) freq;
381 state->tx_tuna[5] = 0x00; /* ATSC */
382 state->tx_tuna[6] = 0x00;
383 if (state->dst_hw_cap & DST_TYPE_HAS_ANALOG)
384 state->tx_tuna[7] = 0x00; /* Digital */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 } else
386 return -EINVAL;
Manu Abrahama427de62005-09-09 13:03:00 -0700387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 0;
389}
390
Manu Abrahama427de62005-09-09 13:03:00 -0700391static int dst_set_bandwidth(struct dst_state *state, fe_bandwidth_t bandwidth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 state->bandwidth = bandwidth;
394
395 if (state->dst_type != DST_TYPE_IS_TERR)
396 return 0;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 switch (bandwidth) {
Manu Abrahama427de62005-09-09 13:03:00 -0700399 case BANDWIDTH_6_MHZ:
400 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
401 state->tx_tuna[7] = 0x06;
402 else {
403 state->tx_tuna[6] = 0x06;
404 state->tx_tuna[7] = 0x00;
405 }
406 break;
407 case BANDWIDTH_7_MHZ:
408 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
409 state->tx_tuna[7] = 0x07;
410 else {
411 state->tx_tuna[6] = 0x07;
412 state->tx_tuna[7] = 0x00;
413 }
414 break;
415 case BANDWIDTH_8_MHZ:
416 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
417 state->tx_tuna[7] = 0x08;
418 else {
419 state->tx_tuna[6] = 0x08;
420 state->tx_tuna[7] = 0x00;
421 }
422 break;
423 default:
424 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
Manu Abrahama427de62005-09-09 13:03:00 -0700426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428}
429
Manu Abrahama427de62005-09-09 13:03:00 -0700430static int dst_set_inversion(struct dst_state *state, fe_spectral_inversion_t inversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 state->inversion = inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 switch (inversion) {
Manu Abrahama427de62005-09-09 13:03:00 -0700434 case INVERSION_OFF: /* Inversion = Normal */
435 state->tx_tuna[8] &= ~0x80;
436 break;
437 case INVERSION_ON:
438 state->tx_tuna[8] |= 0x80;
439 break;
440 default:
441 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
Manu Abrahama427de62005-09-09 13:03:00 -0700443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return 0;
445}
446
Manu Abrahama427de62005-09-09 13:03:00 -0700447static int dst_set_fec(struct dst_state *state, fe_code_rate_t fec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 state->fec = fec;
450 return 0;
451}
452
Manu Abrahama427de62005-09-09 13:03:00 -0700453static fe_code_rate_t dst_get_fec(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 return state->fec;
456}
457
Manu Abrahama427de62005-09-09 13:03:00 -0700458static int dst_set_symbolrate(struct dst_state *state, u32 srate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 u32 symcalc;
461 u64 sval;
462
463 state->symbol_rate = srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (state->dst_type == DST_TYPE_IS_TERR) {
465 return 0;
466 }
Manu Abrahama427de62005-09-09 13:03:00 -0700467 dprintk(verbose, DST_INFO, 1, "set symrate %u", srate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 srate /= 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
470 sval = srate;
471 sval <<= 20;
472 do_div(sval, 88000);
473 symcalc = (u32) sval;
Manu Abrahama427de62005-09-09 13:03:00 -0700474 dprintk(verbose, DST_INFO, 1, "set symcalc %u", symcalc);
Manu Abrahamf612c572005-09-09 13:02:58 -0700475 state->tx_tuna[5] = (u8) (symcalc >> 12);
476 state->tx_tuna[6] = (u8) (symcalc >> 4);
477 state->tx_tuna[7] = (u8) (symcalc << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 } else {
Manu Abrahamf612c572005-09-09 13:02:58 -0700479 state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
480 state->tx_tuna[6] = (u8) (srate >> 8);
481 state->tx_tuna[7] = (u8) srate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Manu Abrahamf612c572005-09-09 13:02:58 -0700483 state->tx_tuna[8] &= ~0x20;
484 if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
485 if (srate > 8000)
486 state->tx_tuna[8] |= 0x20;
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return 0;
489}
490
Manu Abraham7d534212005-07-07 17:57:50 -0700491
492static int dst_set_modulation(struct dst_state *state, fe_modulation_t modulation)
493{
494 if (state->dst_type != DST_TYPE_IS_CABLE)
495 return 0;
496
497 state->modulation = modulation;
498 switch (modulation) {
Manu Abrahama427de62005-09-09 13:03:00 -0700499 case QAM_16:
500 state->tx_tuna[8] = 0x10;
501 break;
502 case QAM_32:
503 state->tx_tuna[8] = 0x20;
504 break;
505 case QAM_64:
506 state->tx_tuna[8] = 0x40;
507 break;
508 case QAM_128:
509 state->tx_tuna[8] = 0x80;
510 break;
511 case QAM_256:
512 state->tx_tuna[8] = 0x00;
513 break;
514 case QPSK:
515 case QAM_AUTO:
516 case VSB_8:
517 case VSB_16:
518 default:
519 return -EINVAL;
Manu Abraham7d534212005-07-07 17:57:50 -0700520
521 }
522
523 return 0;
524}
525
526static fe_modulation_t dst_get_modulation(struct dst_state *state)
527{
528 return state->modulation;
529}
530
531
Manu Abrahama427de62005-09-09 13:03:00 -0700532u8 dst_check_sum(u8 *buf, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 u32 i;
535 u8 val = 0;
536 if (!len)
537 return 0;
538 for (i = 0; i < len; i++) {
539 val += buf[i];
540 }
541 return ((~val) + 1);
542}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700543EXPORT_SYMBOL(dst_check_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300545static void dst_type_flags_print(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300547 u32 type_flags = state->type_flags;
548
Manu Abrahama427de62005-09-09 13:03:00 -0700549 dprintk(verbose, DST_ERROR, 0, "DST type flags :");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (type_flags & DST_TYPE_HAS_NEWTUNE)
Manu Abrahama427de62005-09-09 13:03:00 -0700551 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner", DST_TYPE_HAS_NEWTUNE);
Manu Abraham1da5e8d2006-06-21 10:28:05 -0300552 if (type_flags & DST_TYPE_HAS_NEWTUNE_2)
553 dprintk(verbose, DST_ERROR, 0, " 0x%x newtuner 2", DST_TYPE_HAS_NEWTUNE_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (type_flags & DST_TYPE_HAS_TS204)
Manu Abrahama427de62005-09-09 13:03:00 -0700555 dprintk(verbose, DST_ERROR, 0, " 0x%x ts204", DST_TYPE_HAS_TS204);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (type_flags & DST_TYPE_HAS_SYMDIV)
Manu Abrahama427de62005-09-09 13:03:00 -0700557 dprintk(verbose, DST_ERROR, 0, " 0x%x symdiv", DST_TYPE_HAS_SYMDIV);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700558 if (type_flags & DST_TYPE_HAS_FW_1)
Manu Abrahama427de62005-09-09 13:03:00 -0700559 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 1", DST_TYPE_HAS_FW_1);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700560 if (type_flags & DST_TYPE_HAS_FW_2)
Manu Abrahama427de62005-09-09 13:03:00 -0700561 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 2", DST_TYPE_HAS_FW_2);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700562 if (type_flags & DST_TYPE_HAS_FW_3)
Manu Abrahama427de62005-09-09 13:03:00 -0700563 dprintk(verbose, DST_ERROR, 0, " 0x%x firmware version = 3", DST_TYPE_HAS_FW_3);
564 dprintk(verbose, DST_ERROR, 0, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700567
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300568static int dst_type_print(struct dst_state *state, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 char *otype;
571 switch (type) {
572 case DST_TYPE_IS_SAT:
573 otype = "satellite";
574 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 case DST_TYPE_IS_TERR:
577 otype = "terrestrial";
578 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 case DST_TYPE_IS_CABLE:
581 otype = "cable";
582 break;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700583
Manu Abrahambc7386b2006-06-21 10:27:05 -0300584 case DST_TYPE_IS_ATSC:
585 otype = "atsc";
586 break;
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 default:
Manu Abrahama427de62005-09-09 13:03:00 -0700589 dprintk(verbose, DST_INFO, 1, "invalid dst type %d", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return -EINVAL;
591 }
Manu Abrahama427de62005-09-09 13:03:00 -0700592 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return 0;
595}
596
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300597struct tuner_types tuner_list[] = {
598 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300599 .tuner_type = TUNER_TYPE_L64724,
Manu Abraham364f2552006-06-21 10:28:01 -0300600 .tuner_name = "L 64724",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300601 .board_name = "UNKNOWN",
602 .fw_name = "UNKNOWN"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300603 },
604
605 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300606 .tuner_type = TUNER_TYPE_STV0299,
Manu Abraham364f2552006-06-21 10:28:01 -0300607 .tuner_name = "STV 0299",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300608 .board_name = "VP1020",
609 .fw_name = "DST-MOT"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300610 },
611
612 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300613 .tuner_type = TUNER_TYPE_STV0299,
614 .tuner_name = "STV 0299",
615 .board_name = "VP1020",
616 .fw_name = "DST-03T"
617 },
618
619 {
620 .tuner_type = TUNER_TYPE_MB86A15,
Manu Abraham364f2552006-06-21 10:28:01 -0300621 .tuner_name = "MB 86A15",
Manu Abraham4e7024b2006-06-21 10:28:09 -0300622 .board_name = "VP1022",
623 .fw_name = "DST-03T"
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300624 },
Manu Abraham364f2552006-06-21 10:28:01 -0300625
626 {
Manu Abraham4e7024b2006-06-21 10:28:09 -0300627 .tuner_type = TUNER_TYPE_MB86A15,
628 .tuner_name = "MB 86A15",
629 .board_name = "VP1025",
630 .fw_name = "DST-03T"
631 },
632
633 {
634 .tuner_type = TUNER_TYPE_STV0299,
635 .tuner_name = "STV 0299",
636 .board_name = "VP1030",
637 .fw_name = "DST-CI"
638 },
639
640 {
641 .tuner_type = TUNER_TYPE_STV0299,
642 .tuner_name = "STV 0299",
643 .board_name = "VP1030",
644 .fw_name = "DSTMCI"
645 },
646
647 {
648 .tuner_type = TUNER_TYPE_UNKNOWN,
649 .tuner_name = "UNKNOWN",
650 .board_name = "VP2030",
651 .fw_name = "DCT-CI"
652 },
653
654 {
655 .tuner_type = TUNER_TYPE_UNKNOWN,
656 .tuner_name = "UNKNOWN",
657 .board_name = "VP2031",
658 .fw_name = "DCT-CI"
659 },
660
661 {
662 .tuner_type = TUNER_TYPE_UNKNOWN,
663 .tuner_name = "UNKNOWN",
664 .board_name = "VP2040",
665 .fw_name = "DCT-CI"
666 },
667
668 {
669 .tuner_type = TUNER_TYPE_UNKNOWN,
670 .tuner_name = "UNKNOWN",
671 .board_name = "VP3020",
672 .fw_name = "DTTFTA"
673 },
674
675 {
676 .tuner_type = TUNER_TYPE_UNKNOWN,
677 .tuner_name = "UNKNOWN",
678 .board_name = "VP3021",
679 .fw_name = "DTTFTA"
680 },
681
682 {
683 .tuner_type = TUNER_TYPE_TDA10046,
684 .tuner_name = "TDA10046",
685 .board_name = "VP3040",
686 .fw_name = "DTT-CI"
687 },
688
689 {
690 .tuner_type = TUNER_TYPE_UNKNOWN,
691 .tuner_name = "UNKNOWN",
692 .board_name = "VP3051",
693 .fw_name = "DTTNXT"
694 },
695
696 {
697 .tuner_type = TUNER_TYPE_NXT200x,
698 .tuner_name = "NXT200x",
699 .board_name = "VP3220",
700 .fw_name = "ATSCDI"
701 },
702
703 {
704 .tuner_type = TUNER_TYPE_NXT200x,
705 .tuner_name = "NXT200x",
706 .board_name = "VP3250",
707 .fw_name = "ATSCAD"
708 },
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300709};
710
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700711/*
712 Known cards list
713 Satellite
714 -------------------
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700715 200103A
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700716 VP-1020 DST-MOT LG(old), TS=188
717
718 VP-1020 DST-03T LG(new), TS=204
719 VP-1022 DST-03T LG(new), TS=204
720 VP-1025 DST-03T LG(new), TS=204
721
722 VP-1030 DSTMCI, LG(new), TS=188
723 VP-1032 DSTMCI, LG(new), TS=188
724
725 Cable
726 -------------------
727 VP-2030 DCT-CI, Samsung, TS=204
728 VP-2021 DCT-CI, Unknown, TS=204
729 VP-2031 DCT-CI, Philips, TS=188
730 VP-2040 DCT-CI, Philips, TS=188, with CA daughter board
731 VP-2040 DCT-CI, Philips, TS=204, without CA daughter board
732
733 Terrestrial
734 -------------------
735 VP-3050 DTTNXT TS=188
736 VP-3040 DTT-CI, Philips, TS=188
737 VP-3040 DTT-CI, Philips, TS=204
738
739 ATSC
740 -------------------
741 VP-3220 ATSCDI, TS=188
742 VP-3250 ATSCAD, TS=188
743
744*/
745
Adrian Bunk47a9e502006-02-27 00:07:55 -0300746static struct dst_types dst_tlist[] = {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700747 {
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700748 .device_id = "200103A",
749 .offset = 0,
750 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700751 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS,
Manu Abraham396cffd2006-06-21 10:27:49 -0300752 .dst_feature = 0,
753 .tuner_type = 0
Johannes Stezenbache6ac6992005-05-16 21:54:42 -0700754 }, /* obsolete */
755
756 {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700757 .device_id = "DST-020",
758 .offset = 0,
759 .dst_type = DST_TYPE_IS_SAT,
760 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300761 .dst_feature = 0,
762 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700763 }, /* obsolete */
764
765 {
766 .device_id = "DST-030",
767 .offset = 0,
768 .dst_type = DST_TYPE_IS_SAT,
769 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300770 .dst_feature = 0,
771 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700772 }, /* obsolete */
773
774 {
775 .device_id = "DST-03T",
776 .offset = 0,
777 .dst_type = DST_TYPE_IS_SAT,
778 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_2,
779 .dst_feature = DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 | DST_TYPE_HAS_DISEQC5
Manu Abraham396cffd2006-06-21 10:27:49 -0300780 | DST_TYPE_HAS_MAC | DST_TYPE_HAS_MOTO,
Manu Abrahamb633c6d2006-06-21 10:27:53 -0300781 .tuner_type = TUNER_TYPE_MULTI
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700782 },
783
784 {
785 .device_id = "DST-MOT",
786 .offset = 0,
787 .dst_type = DST_TYPE_IS_SAT,
788 .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300789 .dst_feature = 0,
790 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700791 }, /* obsolete */
792
793 {
794 .device_id = "DST-CI",
795 .offset = 1,
796 .dst_type = DST_TYPE_IS_SAT,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300797 .type_flags = DST_TYPE_HAS_TS204 | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300798 .dst_feature = DST_TYPE_HAS_CA,
799 .tuner_type = 0
Johannes Stezenbach8385e462005-05-16 21:54:43 -0700800 }, /* An OEM board */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700801
802 {
803 .device_id = "DSTMCI",
804 .offset = 1,
805 .dst_type = DST_TYPE_IS_SAT,
Manu Abraham7d534212005-07-07 17:57:50 -0700806 .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 -0700807 .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4
Manu Abraham396cffd2006-06-21 10:27:49 -0300808 | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC,
809 .tuner_type = TUNER_TYPE_MULTI
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700810 },
811
812 {
813 .device_id = "DSTFCI",
814 .offset = 1,
815 .dst_type = DST_TYPE_IS_SAT,
816 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_1,
Manu Abraham396cffd2006-06-21 10:27:49 -0300817 .dst_feature = 0,
818 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700819 }, /* unknown to vendor */
820
821 {
822 .device_id = "DCT-CI",
823 .offset = 1,
824 .dst_type = DST_TYPE_IS_CABLE,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300825 .type_flags = DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300826 .dst_feature = DST_TYPE_HAS_CA,
827 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700828 },
829
830 {
831 .device_id = "DCTNEW",
832 .offset = 1,
833 .dst_type = DST_TYPE_IS_CABLE,
Manu Abraham62121b12005-09-09 13:03:01 -0700834 .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_3 | DST_TYPE_HAS_FW_BUILD,
Manu Abraham396cffd2006-06-21 10:27:49 -0300835 .dst_feature = 0,
836 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700837 },
838
839 {
840 .device_id = "DTT-CI",
841 .offset = 1,
842 .dst_type = DST_TYPE_IS_TERR,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300843 .type_flags = DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_MULTI_FE,
Manu Abraham396cffd2006-06-21 10:27:49 -0300844 .dst_feature = DST_TYPE_HAS_CA,
845 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700846 },
847
848 {
849 .device_id = "DTTDIG",
850 .offset = 1,
851 .dst_type = DST_TYPE_IS_TERR,
852 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300853 .dst_feature = 0,
854 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700855 },
856
857 {
858 .device_id = "DTTNXT",
859 .offset = 1,
860 .dst_type = DST_TYPE_IS_TERR,
861 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300862 .dst_feature = DST_TYPE_HAS_ANALOG,
863 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700864 },
865
866 {
867 .device_id = "ATSCDI",
868 .offset = 1,
869 .dst_type = DST_TYPE_IS_ATSC,
870 .type_flags = DST_TYPE_HAS_FW_2,
Manu Abraham396cffd2006-06-21 10:27:49 -0300871 .dst_feature = 0,
872 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700873 },
874
875 {
876 .device_id = "ATSCAD",
877 .offset = 1,
878 .dst_type = DST_TYPE_IS_ATSC,
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300879 .type_flags = DST_TYPE_HAS_MULTI_FE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD,
Manu Abraham396cffd2006-06-21 10:27:49 -0300880 .dst_feature = DST_TYPE_HAS_MAC | DST_TYPE_HAS_ANALOG,
881 .tuner_type = 0
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700882 },
883
884 { }
885
886};
887
Manu Abraham62121b12005-09-09 13:03:01 -0700888static int dst_get_mac(struct dst_state *state)
889{
890 u8 get_mac[] = { 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
891 get_mac[7] = dst_check_sum(get_mac, 7);
892 if (dst_command(state, get_mac, 8) < 0) {
893 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
894 return -1;
895 }
896 memset(&state->mac_address, '\0', 8);
897 memcpy(&state->mac_address, &state->rxbuffer, 6);
898 dprintk(verbose, DST_ERROR, 1, "MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]",
899 state->mac_address[0], state->mac_address[1], state->mac_address[2],
900 state->mac_address[4], state->mac_address[5], state->mac_address[6]);
901
902 return 0;
903}
904
905static int dst_fw_ver(struct dst_state *state)
906{
907 u8 get_ver[] = { 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
908 get_ver[7] = dst_check_sum(get_ver, 7);
909 if (dst_command(state, get_ver, 8) < 0) {
910 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
911 return -1;
912 }
913 memset(&state->fw_version, '\0', 8);
914 memcpy(&state->fw_version, &state->rxbuffer, 8);
915 dprintk(verbose, DST_ERROR, 1, "Firmware Ver = %x.%x Build = %02x, on %x:%x, %x-%x-20%02x",
916 state->fw_version[0] >> 4, state->fw_version[0] & 0x0f,
917 state->fw_version[1],
918 state->fw_version[5], state->fw_version[6],
919 state->fw_version[4], state->fw_version[3], state->fw_version[2]);
920
921 return 0;
922}
923
924static int dst_card_type(struct dst_state *state)
925{
Manu Abraham364f2552006-06-21 10:28:01 -0300926 int j;
927 struct tuner_types *p_tuner_list = NULL;
928
Manu Abraham62121b12005-09-09 13:03:01 -0700929 u8 get_type[] = { 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
930 get_type[7] = dst_check_sum(get_type, 7);
931 if (dst_command(state, get_type, 8) < 0) {
932 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
933 return -1;
934 }
935 memset(&state->card_info, '\0', 8);
Manu Abraham351634d2006-06-21 10:27:57 -0300936 memcpy(&state->card_info, &state->rxbuffer, 7);
Manu Abraham62121b12005-09-09 13:03:01 -0700937 dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
938
Manu Abraham364f2552006-06-21 10:28:01 -0300939 for (j = 0, p_tuner_list = tuner_list; j < ARRAY_SIZE(tuner_list); j++, p_tuner_list++) {
940 if (!strcmp(&state->card_info[0], p_tuner_list->board_name)) {
941 state->tuner_type = p_tuner_list->tuner_type;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -0300942 dprintk(verbose, DST_ERROR, 1, "DST has [%s] tuner, tuner type=[%d]",
Manu Abraham364f2552006-06-21 10:28:01 -0300943 p_tuner_list->tuner_name, p_tuner_list->tuner_type);
944 }
945 }
946
Manu Abraham62121b12005-09-09 13:03:01 -0700947 return 0;
948}
949
950static int dst_get_vendor(struct dst_state *state)
951{
952 u8 get_vendor[] = { 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
953 get_vendor[7] = dst_check_sum(get_vendor, 7);
954 if (dst_command(state, get_vendor, 8) < 0) {
955 dprintk(verbose, DST_INFO, 1, "Unsupported Command");
956 return -1;
957 }
958 memset(&state->vendor, '\0', 8);
Manu Abraham351634d2006-06-21 10:27:57 -0300959 memcpy(&state->vendor, &state->rxbuffer, 7);
Manu Abraham62121b12005-09-09 13:03:01 -0700960 dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
961
962 return 0;
963}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700964
Manu Abraham29b2f782005-11-08 21:35:09 -0800965static int dst_get_tuner_info(struct dst_state *state)
966{
967 u8 get_tuner_1[] = { 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
968 u8 get_tuner_2[] = { 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
969
970 get_tuner_1[7] = dst_check_sum(get_tuner_1, 7);
971 get_tuner_2[7] = dst_check_sum(get_tuner_2, 7);
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300972 dprintk(verbose, DST_ERROR, 1, "DST TYpe = MULTI FE");
Manu Abraham29b2f782005-11-08 21:35:09 -0800973 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300974 if (dst_command(state, get_tuner_1, 8) < 0) {
975 dprintk(verbose, DST_INFO, 1, "Cmd=[0x13], Unsupported");
Manu Abraham29b2f782005-11-08 21:35:09 -0800976 return -1;
977 }
978 } else {
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300979 if (dst_command(state, get_tuner_2, 8) < 0) {
980 dprintk(verbose, DST_INFO, 1, "Cmd=[0xb], Unsupported");
Manu Abraham29b2f782005-11-08 21:35:09 -0800981 return -1;
982 }
983 }
984 memset(&state->board_info, '\0', 8);
985 memcpy(&state->board_info, &state->rxbuffer, 8);
986 if (state->type_flags & DST_TYPE_HAS_MULTI_FE) {
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300987 dprintk(verbose, DST_ERROR, 1, "DST type has TS=188");
Manu Abraham29b2f782005-11-08 21:35:09 -0800988 }
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300989 if (state->board_info[0] == 0xbc) {
Manu Abraham5aef20a2006-06-21 10:28:16 -0300990 if (state->type_flags != DST_TYPE_IS_ATSC)
Manu Abraham1da5e8d2006-06-21 10:28:05 -0300991 state->type_flags |= DST_TYPE_HAS_NEWTUNE;
Bryan Scott3da2f4c2006-06-21 10:28:12 -0300992 else
Manu Abraham1da5e8d2006-06-21 10:28:05 -0300993 state->type_flags |= DST_TYPE_HAS_NEWTUNE_2;
Bryan Scott3da2f4c2006-06-21 10:28:12 -0300994
Manu Abraham5aef20a2006-06-21 10:28:16 -0300995 if (state->board_info[1] == 0x01) {
996 state->dst_hw_cap |= DST_TYPE_HAS_DBOARD;
997 dprintk(verbose, DST_ERROR, 1, "DST has Daughterboard");
998 }
Manu Abrahamc65f1c52006-06-21 10:27:40 -0300999 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001000
1001 return 0;
1002}
1003
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001004static int dst_get_device_id(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001006 u8 reply;
1007
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001008 int i, j;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001009 struct dst_types *p_dst_type;
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001010 struct tuner_types *p_tuner_list;
1011
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001012 u8 use_dst_type = 0;
1013 u32 use_type_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001015 static u8 device_type[8] = {0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001017 device_type[7] = dst_check_sum(device_type, 7);
1018
1019 if (write_dst(state, device_type, FIXED_COMM))
1020 return -1; /* Write failed */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001021 if ((dst_pio_disable(state)) < 0)
1022 return -1;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001023 if (read_dst(state, &reply, GET_ACK))
1024 return -1; /* Read failure */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001025 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001026 dprintk(verbose, DST_INFO, 1, "Write not Acknowledged! [Reply=0x%02x]", reply);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001027 return -1; /* Unack'd write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001029 if (!dst_wait_dst_ready(state, DEVICE_INIT))
1030 return -1; /* DST not ready yet */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001031 if (read_dst(state, state->rxbuffer, FIXED_COMM))
1032 return -1;
1033
1034 dst_pio_disable(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001035 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001036 dprintk(verbose, DST_INFO, 1, "Checksum failure!");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001037 return -1; /* Checksum failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001039 state->rxbuffer[7] = '\0';
1040
Manu Abrahama427de62005-09-09 13:03:00 -07001041 for (i = 0, p_dst_type = dst_tlist; i < ARRAY_SIZE(dst_tlist); i++, p_dst_type++) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001042 if (!strncmp (&state->rxbuffer[p_dst_type->offset], p_dst_type->device_id, strlen (p_dst_type->device_id))) {
1043 use_type_flags = p_dst_type->type_flags;
1044 use_dst_type = p_dst_type->dst_type;
1045
1046 /* Card capabilities */
1047 state->dst_hw_cap = p_dst_type->dst_feature;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001048 dprintk(verbose, DST_ERROR, 1, "Recognise [%s]", p_dst_type->device_id);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001049
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001050 if (p_dst_type->tuner_type != TUNER_TYPE_MULTI) {
1051 state->tuner_type = p_dst_type->tuner_type;
1052
1053 for (j = 0, p_tuner_list = tuner_list; j < ARRAY_SIZE(tuner_list); j++, p_tuner_list++) {
1054 if (p_dst_type->tuner_type == p_tuner_list->tuner_type) {
Manu Abraham364f2552006-06-21 10:28:01 -03001055 state->tuner_type = p_tuner_list->tuner_type;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001056 dprintk(verbose, DST_ERROR, 1, "DST has a [%s] based tuner", p_tuner_list->tuner_name);
Manu Abrahamb633c6d2006-06-21 10:27:53 -03001057 }
1058 }
1059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 break;
1061 }
1062 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001063
1064 if (i >= sizeof (dst_tlist) / sizeof (dst_tlist [0])) {
Manu Abrahama427de62005-09-09 13:03:00 -07001065 dprintk(verbose, DST_ERROR, 1, "Unable to recognize %s or %s", &state->rxbuffer[0], &state->rxbuffer[1]);
1066 dprintk(verbose, DST_ERROR, 1, "please email linux-dvb@linuxtv.org with this type in");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 use_dst_type = DST_TYPE_IS_SAT;
1068 use_type_flags = DST_TYPE_HAS_SYMDIV;
1069 }
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001070 dst_type_print(state, use_dst_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 state->type_flags = use_type_flags;
1072 state->dst_type = use_dst_type;
Sigmund Augdal Helberg6cd94742006-06-21 10:28:19 -03001073 dst_type_flags_print(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return 0;
1076}
1077
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001078static int dst_probe(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Ingo Molnar3593cab2006-02-07 06:49:14 -02001080 mutex_init(&state->dst_mutex);
Manu Abraham2e506a02006-06-21 10:27:20 -03001081 if (dst_addons & DST_TYPE_HAS_CA) {
1082 if ((rdc_8820_reset(state)) < 0) {
1083 dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
1084 return -1;
1085 }
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -07001086 msleep(4000);
Manu Abraham2e506a02006-06-21 10:27:20 -03001087 } else {
Johannes Stezenbach4a2cc122005-05-16 21:54:45 -07001088 msleep(100);
Manu Abraham2e506a02006-06-21 10:27:20 -03001089 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001090 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001091 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001092 return -1;
1093 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001094 msleep(100);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001095 if (dst_get_device_id(state) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001096 dprintk(verbose, DST_ERROR, 1, "unknown device.");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001097 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 }
Manu Abraham62121b12005-09-09 13:03:01 -07001099 if (dst_get_mac(state) < 0) {
1100 dprintk(verbose, DST_INFO, 1, "MAC: Unsupported command");
1101 return 0;
1102 }
Manu Abraham29b2f782005-11-08 21:35:09 -08001103 if ((state->type_flags & DST_TYPE_HAS_MULTI_FE) || (state->type_flags & DST_TYPE_HAS_FW_BUILD)) {
1104 if (dst_get_tuner_info(state) < 0)
1105 dprintk(verbose, DST_INFO, 1, "Tuner: Unsupported command");
1106 }
Manu Abraham4c09aa72005-11-08 21:35:20 -08001107 if (state->type_flags & DST_TYPE_HAS_TS204) {
1108 dst_packsize(state, 204);
1109 }
Manu Abraham62121b12005-09-09 13:03:01 -07001110 if (state->type_flags & DST_TYPE_HAS_FW_BUILD) {
1111 if (dst_fw_ver(state) < 0) {
1112 dprintk(verbose, DST_INFO, 1, "FW: Unsupported command");
1113 return 0;
1114 }
1115 if (dst_card_type(state) < 0) {
1116 dprintk(verbose, DST_INFO, 1, "Card: Unsupported command");
1117 return 0;
1118 }
1119 if (dst_get_vendor(state) < 0) {
1120 dprintk(verbose, DST_INFO, 1, "Vendor: Unsupported command");
1121 return 0;
1122 }
1123 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001124
1125 return 0;
1126}
1127
Manu Abrahama427de62005-09-09 13:03:00 -07001128int dst_command(struct dst_state *state, u8 *data, u8 len)
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001129{
1130 u8 reply;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001131
Ingo Molnar3593cab2006-02-07 06:49:14 -02001132 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001133 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001134 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001135 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001137 if (write_dst(state, data, len)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001138 dprintk(verbose, DST_INFO, 1, "Tring to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001139 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001140 dprintk(verbose, DST_ERROR, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001141 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001142 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001143 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001144 }
1145 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001146 dprintk(verbose, DST_ERROR, 1, "PIO Disable Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001147 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001148 }
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001149 if (state->type_flags & DST_TYPE_HAS_FW_1)
1150 udelay(3000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001151 if (read_dst(state, &reply, GET_ACK)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001152 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001153 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001154 dprintk(verbose, DST_INFO, 1, "Recovery Failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001155 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001156 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001157 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001158 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001159 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001160 dprintk(verbose, DST_INFO, 1, "write not acknowledged 0x%02x ", reply);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001161 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163 if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001164 goto error;
Johannes Stezenbach8385e462005-05-16 21:54:43 -07001165 if (state->type_flags & DST_TYPE_HAS_FW_1)
1166 udelay(3000);
1167 else
1168 udelay(2000);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001169 if (!dst_wait_dst_ready(state, NO_DELAY))
Manu Abrahamd28d5762005-11-08 21:35:36 -08001170 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001171 if (read_dst(state, state->rxbuffer, FIXED_COMM)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001172 dprintk(verbose, DST_DEBUG, 1, "Trying to recover.. ");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001173 if ((dst_error_recovery(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001174 dprintk(verbose, DST_INFO, 1, "Recovery failed.");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001175 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001176 }
Manu Abrahamd28d5762005-11-08 21:35:36 -08001177 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179 if (state->rxbuffer[7] != dst_check_sum(state->rxbuffer, 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001180 dprintk(verbose, DST_INFO, 1, "checksum failure");
Manu Abrahamd28d5762005-11-08 21:35:36 -08001181 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Ingo Molnar3593cab2006-02-07 06:49:14 -02001183 mutex_unlock(&state->dst_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return 0;
Manu Abrahamd28d5762005-11-08 21:35:36 -08001185
1186error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001187 mutex_unlock(&state->dst_mutex);
Manu Abrahamd28d5762005-11-08 21:35:36 -08001188 return -EIO;
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001191EXPORT_SYMBOL(dst_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Manu Abrahama427de62005-09-09 13:03:00 -07001193static int dst_get_signal(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
1195 int retval;
1196 u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
Johannes Stezenbach5b5b5342005-09-09 13:02:52 -07001197 //dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
1199 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1200 return 0;
1201 }
1202 if (0 == (state->diseq_flags & HAS_LOCK)) {
1203 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1204 return 0;
1205 }
1206 if (time_after_eq(jiffies, state->cur_jiff + (HZ / 5))) {
1207 retval = dst_command(state, get_signal, 8);
1208 if (retval < 0)
1209 return retval;
1210 if (state->dst_type == DST_TYPE_IS_SAT) {
1211 state->decode_lock = ((state->rxbuffer[6] & 0x10) == 0) ? 1 : 0;
1212 state->decode_strength = state->rxbuffer[5] << 8;
1213 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
1214 } else if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE)) {
1215 state->decode_lock = (state->rxbuffer[1]) ? 1 : 0;
1216 state->decode_strength = state->rxbuffer[4] << 8;
1217 state->decode_snr = state->rxbuffer[3] << 8;
Manu Abrahamed3d1062006-06-21 10:27:15 -03001218 } else if (state->dst_type == DST_TYPE_IS_ATSC) {
1219 state->decode_lock = (state->rxbuffer[6] == 0x00) ? 1 : 0;
1220 state->decode_strength = state->rxbuffer[4] << 8;
1221 state->decode_snr = state->rxbuffer[2] << 8 | state->rxbuffer[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223 state->cur_jiff = jiffies;
1224 }
1225 return 0;
1226}
1227
Manu Abrahama427de62005-09-09 13:03:00 -07001228static int dst_tone_power_cmd(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 u8 paket[8] = { 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 };
1231
1232 if (state->dst_type == DST_TYPE_IS_TERR)
1233 return 0;
Manu Abraham8f6da8f2005-05-28 15:51:51 -07001234 paket[4] = state->tx_tuna[4];
Manu Abraham86360a32005-05-28 15:51:51 -07001235 paket[2] = state->tx_tuna[2];
Manu Abraham203fe8b2005-05-28 15:51:48 -07001236 paket[3] = state->tx_tuna[3];
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001237 paket[7] = dst_check_sum (paket, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 dst_command(state, paket, 8);
Manu Abraham203fe8b2005-05-28 15:51:48 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return 0;
1241}
1242
Manu Abrahama427de62005-09-09 13:03:00 -07001243static int dst_get_tuna(struct dst_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 int retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if ((state->diseq_flags & ATTEMPT_TUNE) == 0)
1248 return 0;
1249 state->diseq_flags &= ~(HAS_LOCK);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001250 if (!dst_wait_dst_ready(state, NO_DELAY))
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001251 return -EIO;
Manu Abrahama427de62005-09-09 13:03:00 -07001252 if (state->type_flags & DST_TYPE_HAS_NEWTUNE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /* how to get variable length reply ???? */
1254 retval = read_dst(state, state->rx_tuna, 10);
Manu Abrahama427de62005-09-09 13:03:00 -07001255 else
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001256 retval = read_dst(state, &state->rx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 if (retval < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001258 dprintk(verbose, DST_DEBUG, 1, "read not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001259 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
1262 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[0], 9)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001263 dprintk(verbose, DST_INFO, 1, "checksum failure ? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001264 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
1266 } else {
1267 if (state->rx_tuna[9] != dst_check_sum(&state->rx_tuna[2], 7)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001268 dprintk(verbose, DST_INFO, 1, "checksum failure? ");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001269 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 }
1272 if (state->rx_tuna[2] == 0 && state->rx_tuna[3] == 0)
1273 return 0;
Tom Hughesf5648e82005-11-08 21:35:22 -08001274 if (state->dst_type == DST_TYPE_IS_SAT) {
1275 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3];
1276 } else {
1277 state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 16) + (state->rx_tuna[3] << 8) + state->rx_tuna[4];
1278 }
1279 state->decode_freq = state->decode_freq * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 state->decode_lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 state->diseq_flags |= HAS_LOCK;
Manu Abraham7d534212005-07-07 17:57:50 -07001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return 1;
1284}
1285
Manu Abrahama427de62005-09-09 13:03:00 -07001286static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Manu Abrahama427de62005-09-09 13:03:00 -07001288static int dst_write_tuna(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Manu Abrahama427de62005-09-09 13:03:00 -07001290 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 int retval;
1292 u8 reply;
1293
Manu Abrahama427de62005-09-09 13:03:00 -07001294 dprintk(verbose, DST_INFO, 1, "type_flags 0x%x ", state->type_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 state->decode_freq = 0;
1296 state->decode_lock = state->decode_strength = state->decode_snr = 0;
1297 if (state->dst_type == DST_TYPE_IS_SAT) {
1298 if (!(state->diseq_flags & HAS_POWER))
1299 dst_set_voltage(fe, SEC_VOLTAGE_13);
1300 }
1301 state->diseq_flags &= ~(HAS_LOCK | ATTEMPT_TUNE);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001302 mutex_lock(&state->dst_mutex);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001303 if ((dst_comm_init(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001304 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001305 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (state->type_flags & DST_TYPE_HAS_NEWTUNE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[0], 9);
1309 retval = write_dst(state, &state->tx_tuna[0], 10);
1310 } else {
1311 state->tx_tuna[9] = dst_check_sum(&state->tx_tuna[2], 7);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001312 retval = write_dst(state, &state->tx_tuna[2], FIXED_COMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314 if (retval < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001315 dst_pio_disable(state);
Manu Abrahama427de62005-09-09 13:03:00 -07001316 dprintk(verbose, DST_DEBUG, 1, "write not successful");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001317 goto werr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001319 if ((dst_pio_disable(state)) < 0) {
Manu Abrahama427de62005-09-09 13:03:00 -07001320 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001321 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001323 if ((read_dst(state, &reply, GET_ACK) < 0)) {
Manu Abrahama427de62005-09-09 13:03:00 -07001324 dprintk(verbose, DST_DEBUG, 1, "read verify not successful.");
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001325 goto error;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001326 }
1327 if (reply != ACK) {
Manu Abrahama427de62005-09-09 13:03:00 -07001328 dprintk(verbose, DST_DEBUG, 1, "write not acknowledged 0x%02x ", reply);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001329 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331 state->diseq_flags |= ATTEMPT_TUNE;
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001332 retval = dst_get_tuna(state);
1333werr:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001334 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001335 return retval;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001336
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001337error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001338 mutex_unlock(&state->dst_mutex);
Henrik Sjobergf1016de2005-11-08 21:35:38 -08001339 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342/*
1343 * line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
1344 * line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
1345 * line22k2 0x00, 0x09, 0x02, 0xff, 0x01, 0x00, 0x00, 0x00
1346 * tone 0x00, 0x09, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00
1347 * data 0x00, 0x09, 0xff, 0x01, 0x01, 0x00, 0x00, 0x00
1348 * power_off 0x00, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
1349 * power_on 0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00
1350 * Diseqc 1 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec
1351 * Diseqc 2 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf4, 0xe8
1352 * Diseqc 3 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf8, 0xe4
1353 * Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
1354 */
1355
Manu Abrahama427de62005-09-09 13:03:00 -07001356static int dst_set_diseqc(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Manu Abrahama427de62005-09-09 13:03:00 -07001358 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
1360
Manu Abraham226d97e2005-05-28 15:51:52 -07001361 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (cmd->msg_len == 0 || cmd->msg_len > 4)
1364 return -EINVAL;
1365 memcpy(&paket[3], cmd->msg, cmd->msg_len);
1366 paket[7] = dst_check_sum(&paket[0], 7);
1367 dst_command(state, paket, 8);
1368 return 0;
1369}
1370
Manu Abrahama427de62005-09-09 13:03:00 -07001371static int dst_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 int need_cmd;
Manu Abrahama427de62005-09-09 13:03:00 -07001374 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 state->voltage = voltage;
Manu Abraham226d97e2005-05-28 15:51:52 -07001377 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return 0;
1379
1380 need_cmd = 0;
Manu Abrahama427de62005-09-09 13:03:00 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 switch (voltage) {
Manu Abrahama427de62005-09-09 13:03:00 -07001383 case SEC_VOLTAGE_13:
1384 case SEC_VOLTAGE_18:
1385 if ((state->diseq_flags & HAS_POWER) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 need_cmd = 1;
Manu Abrahama427de62005-09-09 13:03:00 -07001387 state->diseq_flags |= HAS_POWER;
1388 state->tx_tuna[4] = 0x01;
1389 break;
1390 case SEC_VOLTAGE_OFF:
1391 need_cmd = 1;
1392 state->diseq_flags &= ~(HAS_POWER | HAS_LOCK | ATTEMPT_TUNE);
1393 state->tx_tuna[4] = 0x00;
1394 break;
1395 default:
1396 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Manu Abrahama427de62005-09-09 13:03:00 -07001398
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001399 if (need_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return 0;
1403}
1404
Manu Abrahama427de62005-09-09 13:03:00 -07001405static int dst_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Manu Abrahama427de62005-09-09 13:03:00 -07001407 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 state->tone = tone;
Manu Abraham226d97e2005-05-28 15:51:52 -07001410 if (state->dst_type != DST_TYPE_IS_SAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return 0;
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 switch (tone) {
Manu Abrahama427de62005-09-09 13:03:00 -07001414 case SEC_TONE_OFF:
1415 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1416 state->tx_tuna[2] = 0x00;
1417 else
1418 state->tx_tuna[2] = 0xff;
1419 break;
Steffen Motzer4b2bd302005-07-07 17:58:31 -07001420
Manu Abrahama427de62005-09-09 13:03:00 -07001421 case SEC_TONE_ON:
1422 state->tx_tuna[2] = 0x02;
1423 break;
1424 default:
1425 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427 dst_tone_power_cmd(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return 0;
1430}
1431
Manu Abraham203fe8b2005-05-28 15:51:48 -07001432static int dst_send_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t minicmd)
1433{
1434 struct dst_state *state = fe->demodulator_priv;
1435
Manu Abraham226d97e2005-05-28 15:51:52 -07001436 if (state->dst_type != DST_TYPE_IS_SAT)
Manu Abraham203fe8b2005-05-28 15:51:48 -07001437 return 0;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001438 state->minicmd = minicmd;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001439 switch (minicmd) {
Manu Abrahama427de62005-09-09 13:03:00 -07001440 case SEC_MINI_A:
1441 state->tx_tuna[3] = 0x02;
1442 break;
1443 case SEC_MINI_B:
1444 state->tx_tuna[3] = 0xff;
1445 break;
Manu Abraham203fe8b2005-05-28 15:51:48 -07001446 }
1447 dst_tone_power_cmd(state);
1448
1449 return 0;
1450}
1451
1452
Manu Abrahama427de62005-09-09 13:03:00 -07001453static int dst_init(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Manu Abrahama427de62005-09-09 13:03:00 -07001455 struct dst_state *state = fe->demodulator_priv;
1456
1457 static u8 sat_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x00, 0x73, 0x21, 0x00, 0x00 };
1458 static u8 sat_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x55, 0xbd, 0x50, 0x00, 0x00 };
1459 static u8 ter_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1460 static u8 ter_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1461 static u8 cab_tuna_204[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
1462 static u8 cab_tuna_188[] = { 0x09, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001463 static u8 atsc_tuner[] = { 0x00, 0x00, 0x03, 0xb6, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 };
Manu Abrahama427de62005-09-09 13:03:00 -07001464
Manu Abraham7d534212005-07-07 17:57:50 -07001465 state->inversion = INVERSION_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 state->voltage = SEC_VOLTAGE_13;
1467 state->tone = SEC_TONE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 state->diseq_flags = 0;
1469 state->k22 = 0x02;
1470 state->bandwidth = BANDWIDTH_7_MHZ;
1471 state->cur_jiff = jiffies;
Manu Abrahama427de62005-09-09 13:03:00 -07001472 if (state->dst_type == DST_TYPE_IS_SAT)
1473 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? sat_tuna_188 : sat_tuna_204), sizeof (sat_tuna_204));
1474 else if (state->dst_type == DST_TYPE_IS_TERR)
1475 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? ter_tuna_188 : ter_tuna_204), sizeof (ter_tuna_204));
1476 else if (state->dst_type == DST_TYPE_IS_CABLE)
1477 memcpy(state->tx_tuna, ((state->type_flags & DST_TYPE_HAS_NEWTUNE) ? cab_tuna_188 : cab_tuna_204), sizeof (cab_tuna_204));
Manu Abraham1c4e7332006-06-21 10:27:46 -03001478 else if (state->dst_type == DST_TYPE_IS_ATSC)
Manu Abraham1da5e8d2006-06-21 10:28:05 -03001479 memcpy(state->tx_tuna, atsc_tuner, sizeof (atsc_tuner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 return 0;
1482}
1483
Manu Abrahama427de62005-09-09 13:03:00 -07001484static int dst_read_status(struct dvb_frontend *fe, fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Manu Abrahama427de62005-09-09 13:03:00 -07001486 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 *status = 0;
1489 if (state->diseq_flags & HAS_LOCK) {
Manu Abraham7d534212005-07-07 17:57:50 -07001490// dst_get_signal(state); // don't require(?) to ask MCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (state->decode_lock)
1492 *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
1493 }
1494
1495 return 0;
1496}
1497
Manu Abrahama427de62005-09-09 13:03:00 -07001498static int dst_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Manu Abrahama427de62005-09-09 13:03:00 -07001500 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 dst_get_signal(state);
1503 *strength = state->decode_strength;
1504
1505 return 0;
1506}
1507
Manu Abrahama427de62005-09-09 13:03:00 -07001508static int dst_read_snr(struct dvb_frontend *fe, u16 *snr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Manu Abrahama427de62005-09-09 13:03:00 -07001510 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 dst_get_signal(state);
1513 *snr = state->decode_snr;
1514
1515 return 0;
1516}
1517
Manu Abraham8cfba632006-06-21 10:27:26 -03001518static int dst_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
1519{
1520 struct dst_state *state = fe->demodulator_priv;
1521
1522 if (p != NULL) {
1523 dst_set_freq(state, p->frequency);
1524 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
1525
1526 if (state->dst_type == DST_TYPE_IS_SAT) {
1527 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1528 dst_set_inversion(state, p->inversion);
1529 dst_set_fec(state, p->u.qpsk.fec_inner);
1530 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1531 dst_set_polarization(state);
1532 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
1533
1534 } else if (state->dst_type == DST_TYPE_IS_TERR)
1535 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1536 else if (state->dst_type == DST_TYPE_IS_CABLE) {
1537 dst_set_fec(state, p->u.qam.fec_inner);
1538 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1539 dst_set_modulation(state, p->u.qam.modulation);
1540 }
1541 dst_write_tuna(fe);
1542 }
1543
1544 return 0;
1545}
1546
1547static int dst_tune_frontend(struct dvb_frontend* fe,
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001548 struct dvb_frontend_parameters* p,
1549 unsigned int mode_flags,
1550 int *delay,
1551 fe_status_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Manu Abrahama427de62005-09-09 13:03:00 -07001553 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001555 if (p != NULL) {
1556 dst_set_freq(state, p->frequency);
1557 dprintk(verbose, DST_DEBUG, 1, "Set Frequency=[%d]", p->frequency);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001558
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001559 if (state->dst_type == DST_TYPE_IS_SAT) {
1560 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1561 dst_set_inversion(state, p->inversion);
1562 dst_set_fec(state, p->u.qpsk.fec_inner);
1563 dst_set_symbolrate(state, p->u.qpsk.symbol_rate);
1564 dst_set_polarization(state);
1565 dprintk(verbose, DST_DEBUG, 1, "Set Symbolrate=[%d]", p->u.qpsk.symbol_rate);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001566
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001567 } else if (state->dst_type == DST_TYPE_IS_TERR)
1568 dst_set_bandwidth(state, p->u.ofdm.bandwidth);
1569 else if (state->dst_type == DST_TYPE_IS_CABLE) {
1570 dst_set_fec(state, p->u.qam.fec_inner);
1571 dst_set_symbolrate(state, p->u.qam.symbol_rate);
1572 dst_set_modulation(state, p->u.qam.modulation);
1573 }
1574 dst_write_tuna(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Andrew de Quincey36cb5572006-01-09 15:25:07 -02001577 if (!(mode_flags & FE_TUNE_MODE_ONESHOT))
1578 dst_read_status(fe, status);
1579
1580 *delay = HZ/10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return 0;
1582}
1583
Manu Abraham8cfba632006-06-21 10:27:26 -03001584static int dst_get_tuning_algo(struct dvb_frontend *fe)
1585{
1586 return dst_algo;
1587}
1588
Manu Abrahama427de62005-09-09 13:03:00 -07001589static int dst_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Manu Abrahama427de62005-09-09 13:03:00 -07001591 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 p->frequency = state->decode_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (state->dst_type == DST_TYPE_IS_SAT) {
Manu Abraham7d534212005-07-07 17:57:50 -07001595 if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
1596 p->inversion = state->inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 p->u.qpsk.symbol_rate = state->symbol_rate;
1598 p->u.qpsk.fec_inner = dst_get_fec(state);
1599 } else if (state->dst_type == DST_TYPE_IS_TERR) {
1600 p->u.ofdm.bandwidth = state->bandwidth;
1601 } else if (state->dst_type == DST_TYPE_IS_CABLE) {
1602 p->u.qam.symbol_rate = state->symbol_rate;
1603 p->u.qam.fec_inner = dst_get_fec(state);
Manu Abraham7d534212005-07-07 17:57:50 -07001604 p->u.qam.modulation = dst_get_modulation(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
1606
1607 return 0;
1608}
1609
Manu Abrahama427de62005-09-09 13:03:00 -07001610static void dst_release(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
Manu Abrahama427de62005-09-09 13:03:00 -07001612 struct dst_state *state = fe->demodulator_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 kfree(state);
1614}
1615
1616static struct dvb_frontend_ops dst_dvbt_ops;
1617static struct dvb_frontend_ops dst_dvbs_ops;
1618static struct dvb_frontend_ops dst_dvbc_ops;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001619static struct dvb_frontend_ops dst_atsc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Manu Abrahama427de62005-09-09 13:03:00 -07001621struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001623 /* check if the ASIC is there */
1624 if (dst_probe(state) < 0) {
Jesper Juhl2ea75332005-11-07 01:01:31 -08001625 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001626 return NULL;
1627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 /* determine settings based on type */
Patrick Boettcherdea74862006-05-14 05:01:31 -03001629 /* create dvb_frontend */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 switch (state->dst_type) {
1631 case DST_TYPE_IS_TERR:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001632 memcpy(&state->frontend.ops, &dst_dvbt_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 break;
1634 case DST_TYPE_IS_CABLE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001635 memcpy(&state->frontend.ops, &dst_dvbc_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 break;
1637 case DST_TYPE_IS_SAT:
Patrick Boettcherdea74862006-05-14 05:01:31 -03001638 memcpy(&state->frontend.ops, &dst_dvbs_ops, sizeof(struct dvb_frontend_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 break;
Manu Abrahambc7386b2006-06-21 10:27:05 -03001640 case DST_TYPE_IS_ATSC:
1641 memcpy(&state->frontend.ops, &dst_atsc_ops, sizeof(struct dvb_frontend_ops));
1642 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 default:
Manu Abrahama427de62005-09-09 13:03:00 -07001644 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist.");
Jesper Juhl2ea75332005-11-07 01:01:31 -08001645 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001646 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 state->frontend.demodulator_priv = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001650 return state; /* Manu (DST is a card not a frontend) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001653EXPORT_SYMBOL(dst_attach);
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655static struct dvb_frontend_ops dst_dvbt_ops = {
1656
1657 .info = {
1658 .name = "DST DVB-T",
1659 .type = FE_OFDM,
1660 .frequency_min = 137000000,
1661 .frequency_max = 858000000,
1662 .frequency_stepsize = 166667,
1663 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
1664 },
1665
1666 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001668 .tune = dst_tune_frontend,
1669 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001671 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 .read_status = dst_read_status,
1673 .read_signal_strength = dst_read_signal_strength,
1674 .read_snr = dst_read_snr,
1675};
1676
1677static struct dvb_frontend_ops dst_dvbs_ops = {
1678
1679 .info = {
1680 .name = "DST DVB-S",
1681 .type = FE_QPSK,
1682 .frequency_min = 950000,
1683 .frequency_max = 2150000,
1684 .frequency_stepsize = 1000, /* kHz for QPSK frontends */
1685 .frequency_tolerance = 29500,
1686 .symbol_rate_min = 1000000,
1687 .symbol_rate_max = 45000000,
1688 /* . symbol_rate_tolerance = ???,*/
1689 .caps = FE_CAN_FEC_AUTO | FE_CAN_QPSK
1690 },
1691
1692 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001694 .tune = dst_tune_frontend,
1695 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001697 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 .read_status = dst_read_status,
1699 .read_signal_strength = dst_read_signal_strength,
1700 .read_snr = dst_read_snr,
Manu Abraham203fe8b2005-05-28 15:51:48 -07001701 .diseqc_send_burst = dst_send_burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 .diseqc_send_master_cmd = dst_set_diseqc,
1703 .set_voltage = dst_set_voltage,
1704 .set_tone = dst_set_tone,
1705};
1706
1707static struct dvb_frontend_ops dst_dvbc_ops = {
1708
1709 .info = {
1710 .name = "DST DVB-C",
1711 .type = FE_QAM,
1712 .frequency_stepsize = 62500,
1713 .frequency_min = 51000000,
1714 .frequency_max = 858000000,
1715 .symbol_rate_min = 1000000,
1716 .symbol_rate_max = 45000000,
1717 /* . symbol_rate_tolerance = ???,*/
1718 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO
1719 },
1720
1721 .release = dst_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001723 .tune = dst_tune_frontend,
1724 .set_frontend = dst_set_frontend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001726 .get_frontend_algo = dst_get_tuning_algo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 .read_status = dst_read_status,
1728 .read_signal_strength = dst_read_signal_strength,
1729 .read_snr = dst_read_snr,
1730};
1731
Manu Abrahambc7386b2006-06-21 10:27:05 -03001732static struct dvb_frontend_ops dst_atsc_ops = {
1733 .info = {
1734 .name = "DST ATSC",
1735 .type = FE_ATSC,
1736 .frequency_stepsize = 62500,
1737 .frequency_min = 510000000,
1738 .frequency_max = 858000000,
1739 .symbol_rate_min = 1000000,
1740 .symbol_rate_max = 45000000,
1741 .caps = FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
1742 },
1743
1744 .release = dst_release,
1745 .init = dst_init,
Manu Abraham8cfba632006-06-21 10:27:26 -03001746 .tune = dst_tune_frontend,
1747 .set_frontend = dst_set_frontend,
Manu Abrahambc7386b2006-06-21 10:27:05 -03001748 .get_frontend = dst_get_frontend,
Manu Abrahamcdd393c2006-06-21 10:27:36 -03001749 .get_frontend_algo = dst_get_tuning_algo,
Manu Abrahambc7386b2006-06-21 10:27:05 -03001750 .read_status = dst_read_status,
1751 .read_signal_strength = dst_read_signal_strength,
1752 .read_snr = dst_read_snr,
1753};
1754
1755MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07001756MODULE_AUTHOR("Jamie Honan, Manu Abraham");
1757MODULE_LICENSE("GPL");