Michael Krufky wrote:
The dvb-bt8xx driver is the one that is meant for your card.
Unfortunately, you have a newer version of this board, not yet
supported by the linux drivers. The current dvb-bt8xx driver only
supports the FusionHDTV Lite based on the mt352, and the FusionHDTV5
Lite, based on lgdt3303 -- The driver needs to be updated in order to
support your card with the zl10353.
The change that would be required should be a relatively minor one.
I'll put together a patch for you to test... If it works correctly,
then I can add it to the official sources for you.
Martin-
Please try the attached patch and let me know if it works on your
FusionHDTV Lite.
Thanks,
Michael Krufky
diff -r b909c6ce52e3 linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c
--- a/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c Mon Apr 10 12:40:40 2006
+++ b/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c Mon Apr 10 13:08:02 2006
@@ -182,6 +182,11 @@
static struct mt352_config thomson_dtt7579_config = {
.demod_address = 0x0f,
.demod_init = thomson_dtt7579_demod_init,
+ .pll_set = thomson_dtt7579_pll_set,
+};
+
+static struct zl10353_config thomson_dtt7579_zl10353_config = {
+ .demod_address = 0x0f,
.pll_set = thomson_dtt7579_pll_set,
};
@@ -618,6 +623,9 @@
switch(type) {
case BTTV_BOARD_DVICO_DVBT_LITE:
card->fe = mt352_attach(&thomson_dtt7579_config, card->i2c_adapter);
+ if (card->fe = NULL) {
+ card->fe = zl10353_attach(&thomson_dtt7579_zl10353_config, card->i2c_adapter);
+ }
if (card->fe != NULL) {
card->fe->ops->info.frequency_min = 174000000;
card->fe->ops->info.frequency_max = 862000000;
diff -r b909c6ce52e3 linux/drivers/media/dvb/bt8xx/dvb-bt8xx.h
--- a/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.h Mon Apr 10 12:40:40 2006
+++ b/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.h Mon Apr 10 13:08:02 2006
@@ -40,6 +40,7 @@
#include "cx24110.h"
#include "or51211.h"
#include "lgdt330x.h"
+#include "zl10353.h"
struct dvb_bt8xx_card {
#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,15)
_______________________________________________
linux-dvb@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb