summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/frontends/dst.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux/drivers/media/dvb/frontends/dst.c')
-rw-r--r--linux/drivers/media/dvb/frontends/dst.c595
1 files changed, 394 insertions, 201 deletions
diff --git a/linux/drivers/media/dvb/frontends/dst.c b/linux/drivers/media/dvb/frontends/dst.c
index 240e131b0..a82fdc404 100644
--- a/linux/drivers/media/dvb/frontends/dst.c
+++ b/linux/drivers/media/dvb/frontends/dst.c
@@ -33,8 +33,7 @@
#include "dvb_frontend.h"
#include "dvb_functions.h"
-#include "dst.h"
-
+#include "dst-bt878.h"
unsigned int dst_debug = 0;
unsigned int dst_verbose = 0;
@@ -46,15 +45,23 @@ MODULE_PARM_DESC(dst_debug, "debug messages, default is 0 (no)");
#define dprintk if (dst_debug) printk
-#define HAS_CI 1
-#define HAS_LOCK 2
-#define ATTEMPT_TUNE 4
-#define HAS_POWER 8
+#define DST_TYPE_HAS_TERR 1
+#define DST_TYPE_HAS_SAT 2
+#define DST_TYPE_HAS_CABLE 4
+#define DST_TYPE_HAS_NEWTUNE 8
+#define DST_TYPE_HAS_TS204 0x10
+#define DST_TYPE_HAS_SYMDIV 0x20
+
+#define HAS_LOCK 1
+#define ATTEMPT_TUNE 2
+#define HAS_POWER 4
struct dst_data {
u8 tx_tuna[10];
u8 rx_tuna[10];
- u8 flags;
+ u8 rxbuffer[10];
+ u8 diseq_flags;
+ u32 type_flags;
u32 frequency; /* intermediate frequency in kHz for QPSK */
fe_spectral_inversion_t inversion;
u32 symbol_rate; /* symbol rate in Symbols per second */
@@ -62,13 +69,18 @@ struct dst_data {
fe_sec_voltage_t voltage;
fe_sec_tone_mode_t tone;
u32 decode_freq;
- u32 decode_n1;
- u32 decode_n2;
+ u8 decode_lock;
+ u16 decode_strength;
+ u16 decode_snr;
+ unsigned long cur_jiff;
u8 k22;
+ fe_bandwidth_t bandwidth;
+ struct bt878 *bt;
+ struct dvb_i2c_bus *i2c;
} ;
-static struct dvb_frontend_info dst_info = {
- .name = "DST FTA",
+static struct dvb_frontend_info dst_info_sat = {
+ .name = "DST SAT",
.type = FE_QPSK,
.frequency_min = 950000,
.frequency_max = 2150000,
@@ -83,60 +95,66 @@ static struct dvb_frontend_info dst_info = {
FE_CAN_QPSK
};
-static void dst_packsize(struct dvb_i2c_bus *i2c)
+static struct dvb_frontend_info dst_info_tv = {
+ .name = "DST TERR",
+ .type = FE_OFDM,
+ .frequency_min = 137000000,
+ .frequency_max = 858000000,
+ .frequency_stepsize = 166667,
+ .caps = FE_CAN_INVERSION_AUTO |
+ FE_CAN_FEC_AUTO |
+ FE_CAN_QAM_AUTO |
+ FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
+};
+
+static void dst_packsize(struct dst_data *dst, int psize)
{
- struct dst_gpio_packet bits;
- struct i2c_msg msg = {
- .addr = DST_IG_ADDR, .flags = 0, .buf = (u8*)(&bits), .len = sizeof(struct dst_gpio_packet) };
- bits.cmd = DST_IG_TS;
- i2c->xfer (i2c, &msg, 1);
+ union dst_gpio_packet bits;
+
+ bits.psize = psize;
+ bt878_device_control(dst->bt, DST_IG_TS, &bits);
}
-static int dst_gpio_outb(struct dvb_i2c_bus *i2c, u32 mask, u32 enbb, u32 outhigh)
+static int dst_gpio_outb(struct dst_data *dst, u32 mask, u32 enbb, u32 outhigh)
{
- struct dst_gpio_packet enb;
- struct dst_gpio_packet bits;
- struct i2c_msg msgs[2] = {
- { .addr = DST_IG_ADDR, .flags = 0, .buf = (u8*)(&enb), .len = sizeof(struct dst_gpio_packet) },
- { .addr = DST_IG_ADDR, .flags = 0, .buf = (u8*)(&bits), .len = sizeof(struct dst_gpio_packet) } };
+ union dst_gpio_packet enb;
+ union dst_gpio_packet bits;
int err;
- int msg_cnt;
- enb.cmd = DST_IG_ENABLE;
- enb.dstg.enb.mask = mask;
- enb.dstg.enb.enable = enbb;
- bits.cmd = DST_IG_WRITE;
- bits.dstg.outp.mask = enbb;
- bits.dstg.outp.highvals = outhigh;
+ enb.enb.mask = mask;
+ enb.enb.enable = enbb;
+ if ((err = bt878_device_control(dst->bt, DST_IG_ENABLE, &enb)) < 0) {
+ dprintk ("%s: dst_gpio_enb error (err == %i, mask == 0x%02x, enb == 0x%02x)\n", __FUNCTION__, err, mask, enbb);
+ return -EREMOTEIO;
+ }
/* because complete disabling means no output, no need to do
* output packet */
- msg_cnt = 2;
if (enbb == 0)
- msg_cnt = 1;
- if ((err = i2c->xfer (i2c, &msgs[0], msg_cnt)) < 0) {
- dprintk ("%s: dst_gpio_outb error (err == %i, mask == 0x%02x, enb == 0x%02x, outhigh == 0x%02x)\n", __FUNCTION__, err, mask, enbb, outhigh);
+ return 0;
+
+ bits.outp.mask = enbb;
+ bits.outp.highvals = outhigh;
+
+ if ((err = bt878_device_control(dst->bt, DST_IG_WRITE, &bits)) < 0) {
+ dprintk ("%s: dst_gpio_outb error (err == %i, enbb == 0x%02x, outhigh == 0x%02x)\n", __FUNCTION__, err, enbb, outhigh);
return -EREMOTEIO;
}
return 0;
}
-static int dst_gpio_inb(struct dvb_i2c_bus *i2c, u8 *result)
+static int dst_gpio_inb(struct dst_data *dst, u8 *result)
{
- struct dst_gpio_packet rd_packet;
- struct i2c_msg msg = {
- .addr = DST_IG_ADDR, .flags = 0, .buf = (u8*)(&rd_packet), .len = sizeof(struct dst_gpio_packet) };
+ union dst_gpio_packet rd_packet;
int err;
*result = 0;
- rd_packet.cmd = DST_IG_READ;
-
- if ((err = i2c->xfer (i2c, &msg, 1)) < 0) {
+ if ((err = bt878_device_control(dst->bt, DST_IG_READ, &rd_packet)) < 0) {
dprintk ("%s: dst_gpio_inb error (err == %i)\n", __FUNCTION__, err);
return -EREMOTEIO;
}
- *result = (u8)rd_packet.dstg.rd.value;
+ *result = (u8)rd_packet.rd.value;
return 0;
}
@@ -144,28 +162,28 @@ static int dst_gpio_inb(struct dvb_i2c_bus *i2c, u8 *result)
#define DST_8820 2
static int
-dst_reset8820(struct dvb_i2c_bus *i2c)
+dst_reset8820(struct dst_data *dst)
{
int retval;
/* pull 8820 gpio pin low, wait, then release it */
// dprintk ("%s: reset 8820\n", __FUNCTION__);
- retval = dst_gpio_outb(i2c, DST_8820, DST_8820, 0);
+ retval = dst_gpio_outb(dst, DST_8820, DST_8820, 0);
if (retval < 0)
return retval;
udelay(10);
- retval = dst_gpio_outb(i2c, DST_8820, DST_8820, DST_8820);
+ retval = dst_gpio_outb(dst, DST_8820, DST_8820, DST_8820);
if (retval < 0)
return retval;
return 0;
}
static int
-dst_i2c_enable(struct dvb_i2c_bus *i2c)
+dst_i2c_enable(struct dst_data *dst)
{
int retval;
/* pull I2C enable gpio pin low, wait */
// dprintk ("%s: i2c enable\n", __FUNCTION__);
- retval = dst_gpio_outb(i2c, ~0, DST_I2C_ENABLE, 0);
+ retval = dst_gpio_outb(dst, ~0, DST_I2C_ENABLE, 0);
if (retval < 0)
return retval;
// dprintk ("%s: i2c enable delay\n", __FUNCTION__);
@@ -174,12 +192,12 @@ int retval;
}
static int
-dst_i2c_disable(struct dvb_i2c_bus *i2c)
+dst_i2c_disable(struct dst_data *dst)
{
int retval;
/* release I2C enable gpio pin, wait */
// dprintk ("%s: i2c disable\n", __FUNCTION__);
- retval = dst_gpio_outb(i2c, ~0, 0, 0);
+ retval = dst_gpio_outb(dst, ~0, 0, 0);
if (retval < 0)
return retval;
// dprintk ("%s: i2c disable delay\n", __FUNCTION__);
@@ -188,13 +206,13 @@ int retval;
}
static int
-dst_wait_dst_ready(struct dvb_i2c_bus *i2c)
+dst_wait_dst_ready(struct dst_data *dst)
{
u8 reply;
int retval;
int i;
for (i = 0; i < 200; i++) {
- retval = dst_gpio_inb(i2c, &reply);
+ retval = dst_gpio_inb(dst, &reply);
if (retval < 0)
return retval;
if ((reply & DST_I2C_ENABLE) == 0) {
@@ -209,7 +227,7 @@ int i;
#define DST_I2C_ADDR 0x55
-static int write_dst (struct dvb_i2c_bus *i2c, u8 *data, u8 len)
+static int write_dst (struct dst_data *dst, u8 *data, u8 len)
{
struct i2c_msg msg = {
.addr = DST_I2C_ADDR, .flags = 0, .buf = data, .len = len };
@@ -226,11 +244,11 @@ static int write_dst (struct dvb_i2c_bus *i2c, u8 *data, u8 len)
}
dvb_delay(30);
for (cnt = 0; cnt < 4; cnt++) {
- if ((err = i2c->xfer (i2c, &msg, 1)) < 0) {
+ if ((err = dst->i2c->xfer (dst->i2c, &msg, 1)) < 0) {
dprintk ("%s: write_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)\n", __FUNCTION__, err, len, data[0]);
- dst_i2c_disable(i2c);
+ dst_i2c_disable(dst);
dvb_delay(500);
- dst_i2c_enable(i2c);
+ dst_i2c_enable(dst);
dvb_delay(500);
continue;
} else
@@ -241,7 +259,7 @@ static int write_dst (struct dvb_i2c_bus *i2c, u8 *data, u8 len)
return 0;
}
-static int read_dst (struct dvb_i2c_bus *i2c, u8 *ret, u8 len)
+static int read_dst (struct dst_data *dst, u8 *ret, u8 len)
{
struct i2c_msg msg =
{ .addr = DST_I2C_ADDR, .flags = I2C_M_RD, .buf = ret, .len = len };
@@ -249,10 +267,10 @@ static int read_dst (struct dvb_i2c_bus *i2c, u8 *ret, u8 len)
int cnt;
for (cnt = 0; cnt < 4; cnt++) {
- if ((err = i2c->xfer (i2c, &msg, 1)) < 0) {
+ if ((err = dst->i2c->xfer (dst->i2c, &msg, 1)) < 0) {
dprintk ("%s: read_dst error (err == %i, len == 0x%02x, b0 == 0x%02x)\n", __FUNCTION__, err, len, ret[0]);
- dst_i2c_disable(i2c);
- dst_i2c_enable(i2c);
+ dst_i2c_disable(dst);
+ dst_i2c_enable(dst);
continue;
} else
break;
@@ -274,17 +292,82 @@ static int dst_set_freq(struct dst_data *dst, u32 freq)
u8 *val;
dst->frequency = freq;
- freq = freq / 1000;
+
// dprintk("%s: set frequency %u\n", __FUNCTION__, freq);
- if (freq < 950 || freq > 2150)
- return -EINVAL;
+ if (dst->type_flags & DST_TYPE_HAS_SAT) {
+ freq = freq / 1000;
+ if (freq < 950 || freq > 2150)
+ return -EINVAL;
+ val = &dst->tx_tuna[0];
+ val[2] = (freq >> 8) & 0x7f;
+ val[3] = (u8)freq;
+ val[4] = 1;
+ val[8] &= ~4;
+ if (freq < 1531)
+ val[8] |= 4;
+ } else if (dst->type_flags & DST_TYPE_HAS_TERR) {
+ freq = freq / 1000;
+ if (freq < 137000 || freq > 858000)
+ return -EINVAL;
+ val = &dst->tx_tuna[0];
+ val[2] = (freq >> 16) & 0xff;
+ val[3] = (freq >> 8) & 0xff;
+ val[4] = (u8)freq;
+ val[5] = 0;
+ switch (dst->bandwidth) {
+ case BANDWIDTH_6_MHZ:
+ val[6] = 6;
+ break;
+
+ case BANDWIDTH_7_MHZ:
+ case BANDWIDTH_AUTO:
+ val[6] = 7;
+ break;
+
+ case BANDWIDTH_8_MHZ:
+ val[6] = 8;
+ break;
+ }
+
+ val[7] = 0;
+ val[8] = 0;
+ } else if (dst->type_flags & DST_TYPE_HAS_CABLE) {
+ /* guess till will get one */
+ freq = freq / 1000;
+ val = &dst->tx_tuna[0];
+ val[2] = (freq >> 16) & 0xff;
+ val[3] = (freq >> 8) & 0xff;
+ val[4] = (u8)freq;
+ }
+ return 0;
+}
+
+static int dst_set_bandwidth(struct dst_data *dst, fe_bandwidth_t bandwidth)
+{
+ u8 *val;
+
+ dst->bandwidth = bandwidth;
+
+ if (0 == (dst->type_flags & DST_TYPE_HAS_TERR))
+ return 0;
+
val = &dst->tx_tuna[0];
- val[2] = (freq >> 8) & 0x7f;
- val[3] = (u8)freq;
- val[4] = 1;
- val[8] &= ~4;
- if (freq < 1531)
- val[8] |= 4;
+ switch (bandwidth) {
+ case BANDWIDTH_6_MHZ:
+ val[6] = 6;
+ break;
+
+ case BANDWIDTH_7_MHZ:
+ val[6] = 7;
+ break;
+
+ case BANDWIDTH_8_MHZ:
+ val[6] = 8;
+ break;
+
+ default:
+ return -EINVAL;
+ }
return 0;
}
@@ -332,15 +415,15 @@ static int dst_set_symbolrate (struct dst_data *dst, u32 srate)
dst->symbol_rate = srate;
+ if (dst->type_flags & DST_TYPE_HAS_TERR) {
+ return 0;
+ }
+
// dprintk("%s: set srate %u\n", __FUNCTION__, srate);
srate /= 1000;
val = &dst->tx_tuna[0];
- if (dst->flags & HAS_CI) {
- val[5] = (u8)(srate >> 16) & 0x7f;
- val[6] = (u8)(srate >> 8);
- val[7] = (u8)srate;
- } else {
+ if (dst->type_flags & DST_TYPE_HAS_SYMDIV) {
sval = srate;
sval <<= 20;
do_div(sval, 88000);
@@ -349,6 +432,10 @@ static int dst_set_symbolrate (struct dst_data *dst, u32 srate)
val[5] = (u8)(symcalc >> 12);
val[6] = (u8)(symcalc >> 4);
val[7] = (u8)(symcalc << 4);
+ } else {
+ val[5] = (u8)(srate >> 16) & 0x7f;
+ val[6] = (u8)(srate >> 8);
+ val[7] = (u8)srate;
}
val[8] &= ~0x20;
if (srate > 8000)
@@ -369,27 +456,49 @@ static u8 dst_check_sum(u8 *buf, u32 len)
return ((~val) + 1);
}
-static int dst_check_ci (struct dvb_i2c_bus *i2c)
+
+typedef struct dst_types {
+ char *mstr;
+ int offs;
+ u32 type_flags;
+} DST_TYPES;
+
+struct dst_types dst_tlist[] = {
+ { "DST-020", 0, DST_TYPE_HAS_SAT|DST_TYPE_HAS_SYMDIV },
+ { "DST-030", 0, DST_TYPE_HAS_SAT|DST_TYPE_HAS_TS204|DST_TYPE_HAS_NEWTUNE },
+ { "DST-03T", 0, DST_TYPE_HAS_SAT|DST_TYPE_HAS_SYMDIV},
+ { "DST-M0T", 0, DST_TYPE_HAS_SAT|DST_TYPE_HAS_TS204|DST_TYPE_HAS_NEWTUNE },
+ { "DST-CI", 1, DST_TYPE_HAS_SAT|DST_TYPE_HAS_TS204|DST_TYPE_HAS_NEWTUNE },
+ { "DSTMCI", 1, DST_TYPE_HAS_SAT|DST_TYPE_HAS_NEWTUNE },
+ { "DSTFCI", 1, DST_TYPE_HAS_SAT|DST_TYPE_HAS_NEWTUNE },
+ { "DCTNEW", 1, DST_TYPE_HAS_CABLE|DST_TYPE_HAS_NEWTUNE },
+ { "DCT_CI", 1, DST_TYPE_HAS_CABLE|DST_TYPE_HAS_NEWTUNE|DST_TYPE_HAS_TS204 },
+ { "DTTDIG" , 1, DST_TYPE_HAS_TERR} };
+/* DCTNEW and DCT-CI are guesses */
+
+static int dst_check_ci (struct dst_data *dst)
{
u8 txbuf[8];
u8 rxbuf[8];
int retval;
+ int i;
+ struct dst_types *dsp;
memset(txbuf, 0, sizeof(txbuf));
txbuf[1] = 6;
txbuf[7] = dst_check_sum (txbuf, 7);
- dst_i2c_enable(i2c);
- dst_reset8820(i2c);
- retval = write_dst (i2c, txbuf, 8);
+ dst_i2c_enable(dst);
+ dst_reset8820(dst);
+ retval = write_dst (dst, txbuf, 8);
if (retval < 0) {
- dst_i2c_disable(i2c);
+ dst_i2c_disable(dst);
dprintk("%s: write not successful, maybe no card?\n", __FUNCTION__);
return retval;
}
dvb_delay(3);
- retval = read_dst (i2c, rxbuf, 1);
- dst_i2c_disable(i2c);
+ retval = read_dst (dst, rxbuf, 1);
+ dst_i2c_disable(dst);
if (retval < 0) {
dprintk("%s: read not successful, maybe no card?\n", __FUNCTION__);
return retval;
@@ -398,11 +507,11 @@ static int dst_check_ci (struct dvb_i2c_bus *i2c)
dprintk("%s: write reply not 0xff, not ci (%02x)\n", __FUNCTION__, rxbuf[0]);
return retval;
}
- if (!dst_wait_dst_ready(i2c))
+ if (!dst_wait_dst_ready(dst))
return 0;
- dst_i2c_enable(i2c);
- retval = read_dst (i2c, rxbuf, 8);
- dst_i2c_disable(i2c);
+ // dst_i2c_enable(i2c); Dimitri
+ retval = read_dst (dst, rxbuf, 8);
+ dst_i2c_disable(dst);
if (retval < 0) {
dprintk("%s: read not successful\n", __FUNCTION__);
return retval;
@@ -412,33 +521,42 @@ static int dst_check_ci (struct dvb_i2c_bus *i2c)
return retval;
}
rxbuf[7] = '\0';
- if (!strncmp(&rxbuf[1], "DST-CI", 6)) {
- printk("%s: IS DST-CI\n", __FUNCTION__);
- dst_packsize(i2c);
- return 1;
+ for (i = 0, dsp = &dst_tlist[0]; i < sizeof(dst_tlist) / sizeof(dst_tlist[0]); i++, dsp++) {
+ if (!strncmp(&rxbuf[dsp->offs],
+ dsp->mstr,
+ strlen(dsp->mstr))) {
+ dst->type_flags = dsp->type_flags;
+ printk("%s: recognize %s\n", __FUNCTION__, dsp->mstr);
+ break;
+ }
+ }
+ if (i >= sizeof(dst_tlist) / sizeof(dst_tlist[0])) {
+ printk("%s: unable to recognize %s or %s, guessing CI satellite\n", __FUNCTION__, &rxbuf[0], &rxbuf[1]);
+ printk("%s please email dvb-kernel@linuxtv.org with this type info\n", __FUNCTION__);
+ dst->type_flags = DST_TYPE_HAS_SAT|DST_TYPE_HAS_SYMDIV;
+ }
+ if (dst->type_flags & DST_TYPE_HAS_TS204) {
+ dst_packsize(dst, 204);
}
- printk("%s: IS NOT DST-CI, but %s\n", __FUNCTION__, rxbuf);
return 0;
}
-static int dst_command (struct dst_data *dst, struct dvb_i2c_bus *i2c, u8 *data, u8 len)
-
+static int dst_command (struct dst_data *dst, u8 *data, u8 len)
{
int retval;
u8 reply;
- u8 rxbuf[8];
- dst_i2c_enable(i2c);
- dst_reset8820(i2c);
- retval = write_dst (i2c, data, len);
+ dst_i2c_enable(dst);
+ dst_reset8820(dst);
+ retval = write_dst (dst, data, len);
if (retval < 0) {
- dst_i2c_disable(i2c);
+ dst_i2c_disable(dst);
dprintk("%s: write not successful\n", __FUNCTION__);
return retval;
}
dvb_delay(33);
- retval = read_dst (i2c, &reply, 1);
- dst_i2c_disable(i2c);
+ retval = read_dst (dst, &reply, 1);
+ dst_i2c_disable(dst);
if (retval < 0) {
dprintk("%s: read verify not successful\n", __FUNCTION__);
return retval;
@@ -449,22 +567,57 @@ static int dst_command (struct dst_data *dst, struct dvb_i2c_bus *i2c, u8 *data,
}
if (len >= 2 && data[0] == 0 && (data[1] == 1 || data[1] == 3))
return 0;
- if (!dst_wait_dst_ready(i2c))
+ if (!dst_wait_dst_ready(dst))
return 0;
- dst_i2c_enable(i2c);
- retval = read_dst (i2c, rxbuf, 8);
- dst_i2c_disable(i2c);
+ // dst_i2c_enable(i2c); Per dimitri
+ retval = read_dst (dst, dst->rxbuffer, 8);
+ dst_i2c_disable(dst);
if (retval < 0) {
dprintk("%s: read not successful\n", __FUNCTION__);
return 0;
}
- if (rxbuf[7] != dst_check_sum (rxbuf, 7)) {
+ if (dst->rxbuffer[7] != dst_check_sum (dst->rxbuffer, 7)) {
dprintk("%s: checksum failure\n", __FUNCTION__);
return 0;
}
return 0;
}
+static int dst_get_signal(struct dst_data *dst)
+{
+ int retval;
+ u8 get_signal[] = {0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb};
+
+ if ((dst->diseq_flags & ATTEMPT_TUNE) == 0) {
+ dst->decode_lock = dst->decode_strength = dst->decode_snr = 0;
+ return 0;
+ }
+ if (0 == (dst->diseq_flags & HAS_LOCK)) {
+ dst->decode_lock = dst->decode_strength = dst->decode_snr = 0;
+ return 0;
+ }
+ if (time_after_eq(jiffies, dst->cur_jiff + (HZ/5))) {
+ retval = dst_command(dst, get_signal, 8);
+ if (retval < 0)
+ return retval;
+ if (dst->type_flags & DST_TYPE_HAS_SAT) {
+ dst->decode_lock = ((dst->rxbuffer[6] & 0x10) == 0) ?
+ 1 : 0;
+ dst->decode_strength = dst->rxbuffer[5] << 8;
+ dst->decode_snr = dst->rxbuffer[2] << 8 |
+ dst->rxbuffer[3];
+ } else if (dst->type_flags &
+ (DST_TYPE_HAS_TERR|DST_TYPE_HAS_CABLE)) {
+ dst->decode_lock = (dst->rxbuffer[2]) ?
+ 1 : 0;
+ dst->decode_strength = dst->rxbuffer[6] << 8;
+ dst->decode_snr = dst->rxbuffer[4] << 8;
+ }
+ dst->cur_jiff = jiffies;
+ }
+ return 0;
+}
+
/*
* line22k0 0x00, 0x09, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00
* line22k1 0x00, 0x09, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00
@@ -479,22 +632,28 @@ static int dst_command (struct dst_data *dst, struct dvb_i2c_bus *i2c, u8 *data,
* Diseqc 4 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xfc, 0xe0
*/
-static int dst_set_diseqc (struct dst_data *dst, struct dvb_i2c_bus *i2c, u8 *cmd, u8 len)
+static int dst_set_diseqc (struct dst_data *dst, u8 *cmd, u8 len)
{
u8 paket[8] = {0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };
+ if (dst->type_flags & DST_TYPE_HAS_TERR)
+ return 0;
+
if (len == 0 || len > 4)
return -EINVAL;
memcpy(&paket[3], cmd, len);
paket[7] = dst_check_sum (&paket[0], 7);
- dst_command(dst, i2c, paket, 8);
+ dst_command(dst, paket, 8);
return 0;
}
-static int dst_tone_power_cmd (struct dst_data *dst, struct dvb_i2c_bus *i2c)
+static int dst_tone_power_cmd (struct dst_data *dst)
{
u8 paket[8] = {0x00, 0x09, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00};
+ if (dst->type_flags & DST_TYPE_HAS_TERR)
+ return 0;
+
if (dst->voltage == SEC_VOLTAGE_OFF)
paket[4] = 0;
else
@@ -504,52 +663,58 @@ static int dst_tone_power_cmd (struct dst_data *dst, struct dvb_i2c_bus *i2c)
else
paket[2] = 0;
paket[7] = dst_check_sum (&paket[0], 7);
- dst_command(dst, i2c, paket, 8);
+ dst_command(dst, paket, 8);
return 0;
}
-static int dst_set_voltage (struct dst_data *dst, struct dvb_i2c_bus *i2c, fe_sec_voltage_t voltage)
+static int dst_set_voltage (struct dst_data *dst, fe_sec_voltage_t voltage)
{
u8 *val;
int need_cmd;
dst->voltage = voltage;
+ if (dst->type_flags & DST_TYPE_HAS_TERR)
+ return 0;
+
need_cmd = 0;
val = &dst->tx_tuna[0];
val[8] &= ~0x40;
switch (voltage) {
case SEC_VOLTAGE_13:
- if ((dst->flags & HAS_POWER) == 0)
+ if ((dst->diseq_flags & HAS_POWER) == 0)
need_cmd = 1;
- dst->flags |= HAS_POWER;
+ dst->diseq_flags |= HAS_POWER;
break;
case SEC_VOLTAGE_18:
- if ((dst->flags & HAS_POWER) == 0)
+ if ((dst->diseq_flags & HAS_POWER) == 0)
need_cmd = 1;
- dst->flags |= HAS_POWER;
+ dst->diseq_flags |= HAS_POWER;
val[8] |= 0x40;
break;
case SEC_VOLTAGE_OFF:
need_cmd = 1;
- dst->flags &= ~(HAS_POWER|HAS_LOCK|ATTEMPT_TUNE);
+ dst->diseq_flags &= ~(HAS_POWER|HAS_LOCK|ATTEMPT_TUNE);
break;
default:
return -EINVAL;
}
if (need_cmd) {
- dst_tone_power_cmd(dst, i2c);
+ dst_tone_power_cmd(dst);
}
return 0;
}
-static int dst_set_tone (struct dst_data *dst, struct dvb_i2c_bus *i2c, fe_sec_tone_mode_t tone)
+static int dst_set_tone (struct dst_data *dst, fe_sec_tone_mode_t tone)
{
u8 *val;
dst->tone = tone;
+ if (dst->type_flags & DST_TYPE_HAS_TERR)
+ return 0;
+
val = &dst->tx_tuna[0];
val[8] &= ~0x1;
@@ -563,29 +728,29 @@ static int dst_set_tone (struct dst_data *dst, struct dvb_i2c_bus *i2c, fe_sec_t
default:
return -EINVAL;
}
- dst_tone_power_cmd(dst, i2c);
+ dst_tone_power_cmd(dst);
return 0;
}
-static int dst_get_tuna (struct dst_data *dst, struct dvb_i2c_bus *i2c)
+static int dst_get_tuna (struct dst_data *dst)
{
int retval;
- if ((dst->flags & ATTEMPT_TUNE) == 0)
+ if ((dst->diseq_flags & ATTEMPT_TUNE) == 0)
return 0;
- dst->flags &= ~(HAS_LOCK);
- if (!dst_wait_dst_ready(i2c))
+ dst->diseq_flags &= ~(HAS_LOCK);
+ if (!dst_wait_dst_ready(dst))
return 0;
- if (dst->flags & HAS_CI) {
+ if (dst->type_flags & DST_TYPE_HAS_NEWTUNE) {
/* how to get variable length reply ???? */
- retval = read_dst (i2c, dst->rx_tuna, 10);
+ retval = read_dst (dst, dst->rx_tuna, 10);
} else {
- retval = read_dst (i2c, &dst->rx_tuna[2], 8);
+ retval = read_dst (dst, &dst->rx_tuna[2], 8);
}
if (retval < 0) {
dprintk("%s: read not successful\n", __FUNCTION__);
return 0;
}
- if (dst->flags & HAS_CI) {
+ if (dst->type_flags & DST_TYPE_HAS_NEWTUNE) {
if (dst->rx_tuna[9] != dst_check_sum (&dst->rx_tuna[0], 9)) {
dprintk("%s: checksum failure?\n", __FUNCTION__);
return 0;
@@ -600,45 +765,49 @@ int retval;
return 0;
dst->decode_freq = ((dst->rx_tuna[2] & 0x7f) << 8) + dst->rx_tuna[3];
+ dst->decode_lock = 1;
+ /*
dst->decode_n1 = (dst->rx_tuna[4] << 8) +
(dst->rx_tuna[5]);
dst->decode_n2 = (dst->rx_tuna[8] << 8) +
(dst->rx_tuna[7]);
- dst->flags |= HAS_LOCK;
+ */
+ dst->diseq_flags |= HAS_LOCK;
+ /* dst->cur_jiff = jiffies; */
return 1;
}
-static int dst_write_tuna (struct dst_data *dst, struct dvb_i2c_bus *i2c)
+static int dst_write_tuna (struct dst_data *dst)
{
int retval;
u8 reply;
- dprintk("%s: flags 0x%x \n", __FUNCTION__, dst->flags);
+ dprintk("%s: type_flags 0x%x \n", __FUNCTION__, dst->type_flags);
dst->decode_freq = 0;
- dst->decode_n1 = 0;
- dst->decode_n2 = 0;
- if (!(dst->flags & HAS_POWER))
- dst_set_voltage (dst, i2c, SEC_VOLTAGE_13);
-
- dst->flags &= ~(HAS_LOCK|ATTEMPT_TUNE);
- dst_i2c_enable(i2c);
- if (dst->flags & HAS_CI) {
- dst_reset8820(i2c);
+ dst->decode_lock = dst->decode_strength = dst->decode_snr = 0;
+ if (dst->type_flags & DST_TYPE_HAS_SAT) {
+ if (!(dst->diseq_flags & HAS_POWER))
+ dst_set_voltage (dst, SEC_VOLTAGE_13);
+ }
+ dst->diseq_flags &= ~(HAS_LOCK|ATTEMPT_TUNE);
+ dst_i2c_enable(dst);
+ if (dst->type_flags & DST_TYPE_HAS_NEWTUNE) {
+ dst_reset8820(dst);
dst->tx_tuna[9] = dst_check_sum (&dst->tx_tuna[0], 9);
- retval = write_dst (i2c, &dst->tx_tuna[0], 10);
+ retval = write_dst (dst, &dst->tx_tuna[0], 10);
} else {
dst->tx_tuna[9] = dst_check_sum (&dst->tx_tuna[2], 7);
- retval = write_dst (i2c, &dst->tx_tuna[2], 8);
+ retval = write_dst (dst, &dst->tx_tuna[2], 8);
}
if (retval < 0) {
- dst_i2c_disable(i2c);
+ dst_i2c_disable(dst);
dprintk("%s: write not successful\n", __FUNCTION__);
return retval;
}
dvb_delay(3);
- retval = read_dst (i2c, &reply, 1);
- dst_i2c_disable(i2c);
+ retval = read_dst (dst, &reply, 1);
+ dst_i2c_disable(dst);
if (retval < 0) {
dprintk("%s: read verify not successful\n", __FUNCTION__);
return retval;
@@ -647,26 +816,38 @@ static int dst_write_tuna (struct dst_data *dst, struct dvb_i2c_bus *i2c)
dprintk("%s: write reply not 0xff 0x%02x \n", __FUNCTION__, reply);
return 0;
}
- dst->flags |= ATTEMPT_TUNE;
- return dst_get_tuna(dst, i2c);
+ dst->diseq_flags |= ATTEMPT_TUNE;
+ return dst_get_tuna(dst);
}
-static void dst_init (struct dst_data *dst, int is_ci, struct dvb_i2c_bus *i2c)
+static void dst_init (struct dst_data *dst)
{
-static u8 ini_ci_tuna[] = { 9, 0, 3, 0xb6, 1, 0, 0x73, 0x21, 0, 0 };
-static u8 ini_fta_tuna[] = { 0, 0, 3, 0xb6, 1, 0x55, 0xbd, 0x50, 0, 0 };
- memset(dst, 0, sizeof(*dst));
- dst->frequency = 950000;
+static u8 ini_satci_tuna[] = { 9, 0, 3, 0xb6, 1, 0, 0x73, 0x21, 0, 0 };
+static u8 ini_satfta_tuna[] = { 0, 0, 3, 0xb6, 1, 0x55, 0xbd, 0x50, 0, 0 };
+static u8 ini_tvfta_tuna[] = { 0, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 };
+static u8 ini_tvci_tuna[] = { 9, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 };
dst->inversion = INVERSION_ON;
dst->voltage = SEC_VOLTAGE_13;
dst->tone = SEC_TONE_OFF;
dst->symbol_rate = 29473000;
dst->fec = FEC_AUTO;
- dst->flags = (is_ci ? HAS_CI : 0);
+ dst->diseq_flags = 0;
dst->k22 = 0x02;
- memcpy(dst->tx_tuna, (is_ci ? ini_ci_tuna : ini_fta_tuna),
- sizeof(ini_fta_tuna));
+ dst->bandwidth = BANDWIDTH_7_MHZ;
+ dst->cur_jiff = jiffies;
+ if (dst->type_flags & DST_TYPE_HAS_SAT) {
+ dst->frequency = 950000;
+ memcpy(dst->tx_tuna, ((dst->type_flags & DST_TYPE_HAS_NEWTUNE )?
+ ini_satci_tuna : ini_satfta_tuna),
+ sizeof(ini_satfta_tuna));
+ } else if (dst->type_flags & DST_TYPE_HAS_TERR) {
+ dst->frequency = 137000000;
+ memcpy(dst->tx_tuna, ((dst->type_flags & DST_TYPE_HAS_NEWTUNE )?
+ ini_tvci_tuna : ini_tvfta_tuna),
+ sizeof(ini_tvfta_tuna));
+ }
}
+
struct lkup {
unsigned int cmd;
char *desc;
@@ -688,7 +869,6 @@ struct lkup {
static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
{
- struct dvb_i2c_bus *i2c = fe->i2c;
struct dst_data *dst = fe->data;
int retval;
/*
@@ -703,9 +883,15 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
}
dprintk("%s cmd %s (0x%x)\n",__FUNCTION__, cc, cmd);
*/
+ // printk("%s: dst %8.8x bt %8.8x i2c %8.8x\n", __FUNCTION__, dst, dst->bt, dst->i2c);
+ /* should be set by attach, but just in case */
+ dst->i2c = fe->i2c;
switch (cmd) {
case FE_GET_INFO:
- memcpy (arg, &dst_info, sizeof(struct dvb_frontend_info));
+ memcpy (arg,
+ ((dst->type_flags & DST_TYPE_HAS_TERR) ?
+ &dst_info_tv : &dst_info_sat),
+ sizeof(struct dvb_frontend_info));
break;
case FE_READ_STATUS:
@@ -713,27 +899,15 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
fe_status_t *status = arg;
*status = 0;
- if (dst->flags & HAS_LOCK) {
- *status |= FE_HAS_LOCK | FE_HAS_SIGNAL |FE_HAS_CARRIER|
- FE_HAS_SYNC|FE_HAS_VITERBI;
+ if (dst->diseq_flags & HAS_LOCK) {
+ dst_get_signal(dst);
+ if (dst->decode_lock)
+ *status |= FE_HAS_LOCK
+ | FE_HAS_SIGNAL
+ | FE_HAS_CARRIER
+ | FE_HAS_SYNC
+ | FE_HAS_VITERBI;
}
- /*
- if (sync & 1)
- *status |= FE_HAS_SIGNAL;
-
- if (sync & 2)
- *status |= FE_HAS_CARRIER;
-
- if (sync & 4)
- *status |= FE_HAS_VITERBI;
-
- if (sync & 8)
- *status |= FE_HAS_SYNC;
-
- if ((sync & 0x1f) == 0x1f)
- *status |= FE_HAS_LOCK;
- */
-
break;
}
@@ -742,21 +916,20 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
/* guess */
// *(u32*) arg = dst->decode_n1;
*(u32*) arg = 0;
-
- break;
+ return -EOPNOTSUPP;
}
case FE_READ_SIGNAL_STRENGTH:
{
- /* guess */
- // *((u16*) arg) = (u16)dst->decode_n2;
- *((u16*) arg) = 0;
+ dst_get_signal(dst);
+ *((u16*) arg) = dst->decode_strength;
break;
}
case FE_READ_SNR:
{
- *(u16*) arg = 0;
+ dst_get_signal(dst);
+ *((u16*) arg) = dst->decode_snr;
break;
}
@@ -772,9 +945,14 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
dst_set_freq (dst, p->frequency);
dst_set_inversion (dst, p->inversion);
- dst_set_fec (dst, p->u.qpsk.fec_inner);
- dst_set_symbolrate (dst, p->u.qpsk.symbol_rate);
- dst_write_tuna (dst, i2c);
+ if (dst->type_flags & DST_TYPE_HAS_SAT) {
+ dst_set_fec (dst, p->u.qpsk.fec_inner);
+ dst_set_symbolrate (dst, p->u.qpsk.symbol_rate);
+ } else
+ if (dst->type_flags & DST_TYPE_HAS_TERR) {
+ dst_set_bandwidth(dst, p->u.ofdm.bandwidth);
+ }
+ dst_write_tuna (dst);
break;
}
@@ -786,8 +964,12 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
p->frequency = dst->decode_freq;
p->inversion = dst->inversion;
- p->u.qpsk.symbol_rate = dst->symbol_rate;
- p->u.qpsk.fec_inner = dst_get_fec (dst);
+ if (dst->type_flags & DST_TYPE_HAS_SAT) {
+ p->u.qpsk.symbol_rate = dst->symbol_rate;
+ p->u.qpsk.fec_inner = dst_get_fec (dst);
+ } else if (dst->type_flags & DST_TYPE_HAS_TERR) {
+ p->u.ofdm.bandwidth = dst->bandwidth;
+ }
break;
}
@@ -795,7 +977,7 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
return 0;
case FE_INIT:
- dst_init (dst, dst->flags & HAS_CI, i2c);
+ dst_init(dst);
break;
case FE_RESET:
@@ -804,18 +986,18 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
case FE_DISEQC_SEND_MASTER_CMD:
{
struct dvb_diseqc_master_cmd *cmd = (struct dvb_diseqc_master_cmd *)arg;
- retval = dst_set_diseqc (dst, i2c, cmd->msg, cmd->msg_len);
+ retval = dst_set_diseqc (dst, cmd->msg, cmd->msg_len);
if (retval < 0)
return retval;
break;
}
case FE_SET_TONE:
- retval = dst_set_tone (dst, i2c, (fe_sec_tone_mode_t) arg);
+ retval = dst_set_tone (dst, (fe_sec_tone_mode_t) arg);
if (retval < 0)
return retval;
break;
case FE_SET_VOLTAGE:
- retval = dst_set_voltage (dst, i2c, (fe_sec_voltage_t) arg);
+ retval = dst_set_voltage (dst, (fe_sec_voltage_t) arg);
if (retval < 0)
return retval;
break;
@@ -829,43 +1011,54 @@ static int dst_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *arg)
static int dst_attach (struct dvb_i2c_bus *i2c, void **data)
{
- int is_ci;
- static struct dst_data sdst;
struct dst_data *dst;
+ struct bt878 *bt;
+ struct dvb_frontend_info *info;
dprintk("%s: check ci\n", __FUNCTION__);
- is_ci = dst_check_ci (i2c);
- if (is_ci < 0)
+ bt = bt878_find_by_dvb_adap(i2c->adapter);
+ if (!bt)
return -ENODEV;
-#if 0
dst = kmalloc(sizeof(struct dst_data), GFP_KERNEL);
if (dst == NULL) {
printk(KERN_INFO "%s: Out of memory.\n", __FUNCTION__);
return -ENOMEM;
}
-#else
- dst = &sdst;
-#endif
- dst_init (dst, is_ci, i2c);
+ memset(dst, 0, sizeof(*dst));
+ *data = dst;
+ dst->bt = bt;
+ dst->i2c = i2c;
+ if (dst_check_ci(dst) < 0) {
+ kfree(dst);
+ return -ENODEV;
+ }
+
+ dst_init (dst);
+ dprintk("%s: register dst %8.8x bt %8.8x i2c %8.8x\n", __FUNCTION__,
+ (u32)dst, (u32)(dst->bt), (u32)(dst->i2c));
- dvb_register_frontend (dst_ioctl, i2c, dst, &dst_info);
+ info = &dst_info_sat;
+ if (dst->type_flags & DST_TYPE_HAS_TERR)
+ info = &dst_info_tv;
+
+ dvb_register_frontend (dst_ioctl, i2c, dst, info);
return 0;
}
static void dst_detach (struct dvb_i2c_bus *i2c, void *data)
{
- /* kfree dst at this point ???? */
dvb_unregister_frontend (dst_ioctl, i2c);
+ dprintk("%s: unregister dst %8.8x\n", __FUNCTION__, (u32)(data));
+ if (data)
+ kfree(data);
}
-
static int __init init_dst (void)
{
return dvb_register_i2c_device (THIS_MODULE, dst_attach, dst_detach);
}
-
static void __exit exit_dst (void)
{
dvb_unregister_i2c_device (dst_attach);