Re: TT Budget S2-3200 CI: failure with CAM module

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Jaap Crezee wrote:
Again, when I remove the CAM module, everything works fine (as for FTA channels...). Tools like dvbdate, dvbtraffic and mplayer /dev/dvb/adapter0/dvr0 work fine.

I just created a patch to add a budget-ci module param to the driver to disable the CI interface at module load time. This way I can still use the card when the CAM module is inserted.
Maybe it is good enough to integrated it with the current hg tree?

I've got SkystarHD+CI Slot+Aston 2.18 and it works OK (for decoding some channels like HBO/MINIMINI I must wait very long time, but it works)

I have waited long enough (more than 6 hours) and still no results.
Anyone got it working with a TT S2-3200 and AstonCrypt CAM module?

regards,


Jaap Crezee

--- /kernel/multiproto/linux/drivers/media/dvb/ttpci/budget-ci.c	2008-09-23 11:30:25.000000000 +0200
+++ linux/drivers/media/dvb/ttpci/budget-ci.c	2008-09-23 11:38:24.000000000 +0200
@@ -101,6 +101,10 @@
 module_param(ir_debug, int, 0644);
 MODULE_PARM_DESC(ir_debug, "enable debugging information for IR decoding");
 
+static int ci_disable = 0;
+module_param(ci_disable, int, 0644);
+MODULE_PARM_DESC(ci_disable, "disable CI interface (default: 0, enable...)");
+
 struct budget_ci_ir {
 	struct input_dev *dev;
 	struct tasklet_struct msp430_irq_tasklet;
@@ -1509,7 +1513,11 @@
 	if (err)
 		goto out3;
 
-	ciintf_init(budget_ci);
+	if (ci_disable == 0) {
+		ciintf_init(budget_ci);
+	} else {
+	        printk("buget-ci: disabled CI interface!\n");
+	}
 
 	budget_ci->budget.dvb_adapter.priv = budget_ci;
 	frontend_init(budget_ci);
_______________________________________________
linux-dvb mailing list
linux-dvb@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

[Index of Archives]     [Linux Media]     [Video 4 Linux]     [Asterisk]     [Samba]     [Xorg]     [Xfree86]     [Linux USB]

  Powered by Linux