From: Jaap Crezee <jaap@jcz.nl>
To: linux-dvb@linuxtv.org
Subject: Re: [linux-dvb] TT Budget S2-3200 CI: failure with CAM module
Date: Tue, 23 Sep 2008 11:50:37 +0200 [thread overview]
Message-ID: <48D8BBED.3010109@jcz.nl> (raw)
In-Reply-To: <48D8B08B.6090602@konto.pl>
[-- Attachment #1: Type: text/plain, Size: 757 bytes --]
> 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
[-- Attachment #2: buget-ci-disable-ci-interface-mod-param.patch --]
[-- Type: text/plain, Size: 837 bytes --]
--- /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);
[-- Attachment #3: Type: text/plain, Size: 150 bytes --]
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
next prev parent reply other threads:[~2008-09-23 9:50 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-23 8:12 [linux-dvb] TT Budget S2-3200 CI: failure with CAM module Jaap Crezee
2008-09-23 9:02 ` Gasiu
2008-09-23 9:50 ` Jaap Crezee [this message]
2008-09-23 10:15 ` Jo Heremans
2008-09-23 18:48 ` [linux-dvb] Re : " manu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=48D8BBED.3010109@jcz.nl \
--to=jaap@jcz.nl \
--cc=linux-dvb@linuxtv.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.