All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-dvb] dib0700 "buggy sfn workaround" or equivalent
       [not found] <e021c7c00902090411j4df14a69me568a6022a5bc4d2@mail.gmail.com>
@ 2009-02-09 12:13 ` Brett
  2009-02-09 13:25   ` Alan Knowles
  2009-02-09 14:28   ` Patrick Boettcher
  0 siblings, 2 replies; 5+ messages in thread
From: Brett @ 2009-02-09 12:13 UTC (permalink / raw)
  To: linux-dvb

Hello,

I have a dvb_usb_dib0700 (Nova 500 dual) card and it shows similar
issues to the dvb_usb_dib3000mc card, ie:

"This card has an issue (which particularly manifests itself in
Australia where a bandwidth of 7MHz is used) with jittery reception -
artifacts and choppy sound throughout recordings despite having full
signal strength. Australian users will typically see this behaviour on
SBS and ABC channels"

The fix for the dib3000mc is to enable the 'buggy sfn workaround' but
there is no such option for the dib 0700 :

The buggy sfn workaround workaround does "dib7000p_write_word(state,
166, 0x4000);" if it is active, or "dib7000p_write_word(state, 166,
0x0000)" if it inactive, in the dib3000mc driver. I presume this
tweaks a bandwidth filter or something similar for the dib3000mc, is
there  such an equivalent feature for the dib0700 chipset ?

Does anybody have specs on the dib0700 that describes registers, or
how to set tuner bandwidth etc., during tuning ?

Cheers
Brett

_______________________________________________
linux-dvb users mailing list
For V4L/DVB development, please use instead linux-media@vger.kernel.org
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [linux-dvb] dib0700 "buggy sfn workaround" or equivalent
  2009-02-09 12:13 ` [linux-dvb] dib0700 "buggy sfn workaround" or equivalent Brett
@ 2009-02-09 13:25   ` Alan Knowles
  2009-02-09 14:28   ` Patrick Boettcher
  1 sibling, 0 replies; 5+ messages in thread
From: Alan Knowles @ 2009-02-09 13:25 UTC (permalink / raw)
  To: linux-media; +Cc: linux-dvb

Not sure if it's the same issue, but we had the similar problem with the 
ASUS 3100 mycinema DVB-TH card

killing off this function appeared to fix it..

int dvb_usb_remote_init(struct dvb_usb_device *d)
{
        struct input_dev *input_dev;
	return 0;
}

Regards
Alan

Brett wrote:
> Hello,
>
> I have a dvb_usb_dib0700 (Nova 500 dual) card and it shows similar
> issues to the dvb_usb_dib3000mc card, ie:
>
> "This card has an issue (which particularly manifests itself in
> Australia where a bandwidth of 7MHz is used) with jittery reception -
> artifacts and choppy sound throughout recordings despite having full
> signal strength. Australian users will typically see this behaviour on
> SBS and ABC channels"
>
> The fix for the dib3000mc is to enable the 'buggy sfn workaround' but
> there is no such option for the dib 0700 :
>
> The buggy sfn workaround workaround does "dib7000p_write_word(state,
> 166, 0x4000);" if it is active, or "dib7000p_write_word(state, 166,
> 0x0000)" if it inactive, in the dib3000mc driver. I presume this
> tweaks a bandwidth filter or something similar for the dib3000mc, is
> there  such an equivalent feature for the dib0700 chipset ?
>
> Does anybody have specs on the dib0700 that describes registers, or
> how to set tuner bandwidth etc., during tuning ?
>
> Cheers
> Brett
>
> _______________________________________________
> linux-dvb users mailing list
> For V4L/DVB development, please use instead linux-media@vger.kernel.org
> linux-dvb@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
>   


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [linux-dvb] dib0700 "buggy sfn workaround" or equivalent
  2009-02-09 12:13 ` [linux-dvb] dib0700 "buggy sfn workaround" or equivalent Brett
  2009-02-09 13:25   ` Alan Knowles
@ 2009-02-09 14:28   ` Patrick Boettcher
  2009-02-10  2:45     ` DAB SFN (was: Re: [linux-dvb] dib0700 "buggy sfn workaround" or equivalent) BOUWSMA Barry
  1 sibling, 1 reply; 5+ messages in thread
From: Patrick Boettcher @ 2009-02-09 14:28 UTC (permalink / raw)
  To: linux-media; +Cc: linux-dvb

Hi,

On Mon, 9 Feb 2009, Brett wrote:
> I have a dvb_usb_dib0700 (Nova 500 dual) card and it shows similar
> issues to the dvb_usb_dib3000mc card, ie:
>
> "This card has an issue (which particularly manifests itself in
> Australia where a bandwidth of 7MHz is used) with jittery reception -
> artifacts and choppy sound throughout recordings despite having full
> signal strength. Australian users will typically see this behaviour on
> SBS and ABC channels"


It has nothing to with the channel bandwidth. In Australia, and maybe in 
other places too, the DVB-T radio-channels (not to mix up with a radio 
service) which are used in single-frequency-networks (SFNs) are 
transmitted buggy: different transmitters are not using the same tps-data 
(cellid IIRC). The dibcom-demods are using this information to improve the 
reception robustness. This leads to synchronization losses, when the SFN 
is not set up correctly...

> The fix for the dib3000mc is to enable the 'buggy sfn workaround' but
> there is no such option for the dib 0700 :
>
> The buggy sfn workaround workaround does "dib7000p_write_word(state,
> 166, 0x4000);" if it is active, or "dib7000p_write_word(state, 166,
> 0x0000)" if it inactive, in the dib3000mc driver. I presume this
> tweaks a bandwidth filter or something similar for the dib3000mc, is
> there  such an equivalent feature for the dib0700 chipset ?

Your report here is mixing up several things: dib3000mc and dib7000p have 
this work-around implemented. To activate it you need to load the dib3000p 
resp. the dib7000p-module with buggy_sfn_workaround=1.

The dib0700-driver is only the USB driver here - nothing is missing there 
to avoid the SFN problem.

Patrick.

--
   Mail: patrick.boettcher@desy.de
   WWW:  http://www.wi-bw.tfh-wildau.de/~pboettch/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* DAB SFN (was: Re: [linux-dvb] dib0700 "buggy sfn workaround" or equivalent)
  2009-02-09 14:28   ` Patrick Boettcher
@ 2009-02-10  2:45     ` BOUWSMA Barry
  2009-02-10  9:45       ` Patrick Boettcher
  0 siblings, 1 reply; 5+ messages in thread
From: BOUWSMA Barry @ 2009-02-10  2:45 UTC (permalink / raw)
  To: Patrick Boettcher; +Cc: linux-media, DVB mailin' list thingy

On Mon, 9 Feb 2009, Patrick Boettcher wrote:

> It has nothing to with the channel bandwidth. In Australia, and maybe in 
> other places too, the DVB-T radio-channels (not to mix up with a radio 
> service) which are used in single-frequency-networks (SFNs) are 
> transmitted buggy: different transmitters are not using the same tps-data 
> (cellid IIRC). The dibcom-demods are using this information to improve the 
> reception robustness. This leads to synchronization losses, when the SFN 
> is not set up correctly...

Hijacking this bit of information...

Is it in theory possible that this may be the source of some
problems I experience receiving DAB radio, using a multi-
element directional antenna, regardless of orientation, in
a location with reception from at least two and possibly more
than four senders within eyesight, or close to that?

It's a completely different manufacturer (Siano) and the
problem disappears when I simply use a short indoor whip
antenna with adequate S/N ratio.

Note that so far, I haven't been able to extract more than
a subset of the metainformation which accompanies the
different audio streams, and I've had other hardware
problems, but I've been puzzled why I had not been able
to overcome the regular periodic mangling of the audio.


My knowledge of DAB is dismal, to start with, anyway.
So be gentle.  Unless you don't feel like it, or need
to let off steam.  Or whatever, treat me like a dog...

thanks,
barry bouwsma

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: DAB SFN (was: Re: [linux-dvb] dib0700 "buggy sfn workaround" or equivalent)
  2009-02-10  2:45     ` DAB SFN (was: Re: [linux-dvb] dib0700 "buggy sfn workaround" or equivalent) BOUWSMA Barry
@ 2009-02-10  9:45       ` Patrick Boettcher
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick Boettcher @ 2009-02-10  9:45 UTC (permalink / raw)
  To: BOUWSMA Barry; +Cc: linux-media, DVB mailin' list thingy

Hi Barry,

On Tue, 10 Feb 2009, BOUWSMA Barry wrote:
> Is it in theory possible that this may be the source of some
> problems I experience receiving DAB radio, using a multi-
> element directional antenna, regardless of orientation, in
> a location with reception from at least two and possibly more
> than four senders within eyesight, or close to that?
>
> It's a completely different manufacturer (Siano) and the
> problem disappears when I simply use a short indoor whip
> antenna with adequate S/N ratio.

I'm not sure how Siano's demodulator is working (not to say, I don't know 
it at all) for SFNs.

Your scenario could also be explained with a too strong signal. When the 
ADC is saturated the reception is bad. Especially when not using in-can 
tuners (but silicon ones) you can face the issue easily.

But your problem could also be explained by a 100 of different things I 
don't know.

Patrick.

--
   Mail: patrick.boettcher@desy.de
   WWW:  http://www.wi-bw.tfh-wildau.de/~pboettch/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-02-10  9:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <e021c7c00902090411j4df14a69me568a6022a5bc4d2@mail.gmail.com>
2009-02-09 12:13 ` [linux-dvb] dib0700 "buggy sfn workaround" or equivalent Brett
2009-02-09 13:25   ` Alan Knowles
2009-02-09 14:28   ` Patrick Boettcher
2009-02-10  2:45     ` DAB SFN (was: Re: [linux-dvb] dib0700 "buggy sfn workaround" or equivalent) BOUWSMA Barry
2009-02-10  9:45       ` Patrick Boettcher

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.