From: John Donoghue <jdonog01@eircom.net>
To: linux-dvb@linuxtv.org
Subject: [linux-dvb] Hi, hauppauge win tv Nova-s plus won't tune
Date: Sat, 22 Nov 2008 12:00:15 +0000 [thread overview]
Message-ID: <1227355215.10535.30.camel@john-desktop> (raw)
In-Reply-To:
Roland HAMON wrote:
> Under ubuntu intrepid 64 bits (2.6.27 kernel) vdr fails to tune any
> channel. I tried dvb-apps 'scan' with no success:
> scanning Hotbird-13.0E
> using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
> initial transponder 12539000 H 27500000 3
> initial transponder 10892000 H 27500000 3
> >>> tune to: 12539:h:0:27500
> DiSEqC: switch pos 0, 18V, hiband (index 3)
> >>> tuning status == 0x01
> >>> tuning status == 0x01
There is a bug in the cx24123 driver. It does not generate the 22KHz
tone for high-band. This seems to date back to changeset 4012. This
removed the code which used the ISL6421 tone generator. I presume the
intention was to transfer this function to the isl6421 module, but
this wasn't done. I tested this with a function as follows:
static int isl6421_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone)
{
struct isl6421 *isl6421 = (struct isl6421 *) fe->sec_priv;
struct i2c_msg msg = { .addr = isl6421->i2c_addr, .flags = 0,
.buf = &isl6421->config,
.len = sizeof(isl6421->config) };
switch (tone) {
case SEC_TONE_ON:
isl6421->config |= ISL6421_ENT1;
break;
case SEC_TONE_OFF:
isl6421->config &= ~ISL6421_ENT1;
break;
default:
return -EINVAL;
}
isl6421->config |= isl6421->override_or;
isl6421->config &= isl6421->override_and;
return (i2c_transfer(isl6421->i2c, &msg, 1) == 1) ? 0 : -EIO;
}
and added it to the override ops. This works fine for me and I am now
getting lock on high-band transponders, but it is probably just the
easy part as I have no idea how DiSEqC Encoding should be handled, nor
how to manage overrides for other cards which use this driver, but may
not want it to generate tones.
Roland, if your low-band transponders are also failing, that is another
issue!
> Then when I poweroff my computer hangs and the motherboards beeps
> repeatedly until I hard switch it off.
This is a known bug in latest Ubuntu release and not related to DVB.
Regards, John
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
next reply other threads:[~2008-11-22 12:00 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-22 12:00 John Donoghue [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-11-17 20:37 [linux-dvb] Hi, hauppauge win tv Nova-s plus won't tune Roland HAMON
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=1227355215.10535.30.camel@john-desktop \
--to=jdonog01@eircom.net \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox