All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: Hauppauge HVR-930C problems
       [not found] <CALJK-QhGrjC9K8CasrUJ-aisZh8U_4-O3uh_-dq6cNBWUx_4WA@mail.gmail.com>
@ 2011-12-15  8:04 ` Fredrik Lingvall
  2011-12-15  9:54   ` Mauro Carvalho Chehab
       [not found]   ` <CALJK-QjxDpC8Y_gPXeAJaT2si_pRREiuTW=T8CWSTxGprRhfkg@mail.gmail.com>
  0 siblings, 2 replies; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-15  8:04 UTC (permalink / raw)
  To: Mihai Dobrescu; +Cc: linux-media

On 12/14/11 17:33, Mihai Dobrescu wrote:
> Hello,
>
> I need to make my tunner working too.
> Did you make it work?
> Where did you get the firmware (dvb-usb-hauppauge-hvr930c-drxk.fw)?
> I have Sabayon 7 64 bit, which is sort of Gentoo, as I've seen you have.
>
> Thank you.
Hi Mihai,

There is a perl script  get_dvb_firmware that downloads the firmware and 
extract it (from the Windows driver I think). You need a version of 
get_dvb_firmware where this has been added:

+sub drxk_hauppauge_hvr930c {
+    my $url = "http://www.wintvcd.co.uk/drivers/";
+    my $zipfile = "HVR-9x0_5_10_325_28153_SIGNED.zip";
+    my $hash = "83ab82e7e9480ec8bf1ae0155ca63c88";
+    my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
+    my $drvfile = "HVR-900/emOEM.sys";
+    my $fwfile = "dvb-usb-hauppauge-hvr930c-drxk.fw";
+
+    checkstandard();
+
+    wgetfile($zipfile, $url . $zipfile);
+    verify($zipfile, $hash);
+    unzip($zipfile, $tmpdir);
+    extract("$tmpdir/$drvfile", 0x117b0, 42692, "$fwfile");
+
+    "$fwfile"
+}
+

Do a git checkout of the linux-media tree to get it (I think).

Also, before I found the perl script I did it "manually" using:

1)

wget http://www.wintvcd.co.uk/drivers/HVR-9x0_5_10_325_28153_SIGNED.zip

2) unzip it

3) extact it with dd [0x117b (hex)  =  71600 (dec)]:

dd if=HVR-900/emOEM.sys of=dvb-usb-hauppauge-hvr930c-drxk.fw bs=1 
skip=71600 count=42692

4) copy it to the firmware dir

cp dvb-usb-hauppauge-hvr930c-drxk.fw /lib/firmware/'

HTH

/Fredrik


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

* Re: Hauppauge HVR-930C problems
  2011-12-15  8:04 ` Hauppauge HVR-930C problems Fredrik Lingvall
@ 2011-12-15  9:54   ` Mauro Carvalho Chehab
       [not found]   ` <CALJK-QjxDpC8Y_gPXeAJaT2si_pRREiuTW=T8CWSTxGprRhfkg@mail.gmail.com>
  1 sibling, 0 replies; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-15  9:54 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: Mihai Dobrescu, linux-media

On 15-12-2011 06:04, Fredrik Lingvall wrote:
> On 12/14/11 17:33, Mihai Dobrescu wrote:
>> Hello,
>>
>> I need to make my tunner working too.
>> Did you make it work?
>> Where did you get the firmware (dvb-usb-hauppauge-hvr930c-drxk.fw)?
>> I have Sabayon 7 64 bit, which is sort of Gentoo, as I've seen you have.
>>
>> Thank you.
> Hi Mihai,
> 
> There is a perl script  get_dvb_firmware that downloads the firmware and extract it (from the Windows driver I think). You need a version of get_dvb_firmware where this has been added:
> 
> +sub drxk_hauppauge_hvr930c {
> +    my $url = "http://www.wintvcd.co.uk/drivers/";
> +    my $zipfile = "HVR-9x0_5_10_325_28153_SIGNED.zip";
> +    my $hash = "83ab82e7e9480ec8bf1ae0155ca63c88";
> +    my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
> +    my $drvfile = "HVR-900/emOEM.sys";
> +    my $fwfile = "dvb-usb-hauppauge-hvr930c-drxk.fw";
> +
> +    checkstandard();
> +
> +    wgetfile($zipfile, $url . $zipfile);
> +    verify($zipfile, $hash);
> +    unzip($zipfile, $tmpdir);
> +    extract("$tmpdir/$drvfile", 0x117b0, 42692, "$fwfile");
> +
> +    "$fwfile"
> +}
> +
> 
> Do a git checkout of the linux-media tree to get it (I think).
> 
> Also, before I found the perl script I did it "manually" using:
> 
> 1)
> 
> wget http://www.wintvcd.co.uk/drivers/HVR-9x0_5_10_325_28153_SIGNED.zip
> 
> 2) unzip it
> 
> 3) extact it with dd [0x117b (hex)  =  71600 (dec)]:
> 
> dd if=HVR-900/emOEM.sys of=dvb-usb-hauppauge-hvr930c-drxk.fw bs=1 skip=71600 count=42692

This is basically what the script does, with one difference:
it will double check if the extracted binary blob is really a firmware,
by comparing it with a known hash value. This way, if the driver there gots
updated, the script will fail, instead of writing some random values to a
.fw file.

> 
> 4) copy it to the firmware dir
> 
> cp dvb-usb-hauppauge-hvr930c-drxk.fw /lib/firmware/'

> 
> HTH
> 
> /Fredrik
> 
> -- 
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


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

* Re: Hauppauge HVR-930C problems
       [not found]   ` <CALJK-QjxDpC8Y_gPXeAJaT2si_pRREiuTW=T8CWSTxGprRhfkg@mail.gmail.com>
@ 2011-12-16  8:20     ` Fredrik Lingvall
       [not found]       ` <CALJK-Qhpk7NtSezrft_6+4FZ7Y35k=41xrc6ebxf2DzEH6KCWw@mail.gmail.com>
  0 siblings, 1 reply; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-16  8:20 UTC (permalink / raw)
  To: Mihai Dobrescu; +Cc: linux-media

On 12/15/11 10:08, Mihai Dobrescu wrote:
> Hello Fredrik,
>
> I have extracted the firmware, but I've noticed there are 2 versions,
> one for 32 bit and one for 64 bit. Which one should it be?
There is probably a 64-bit and a 32-bit Windows driver but the firmware 
should be the same I think.
> My OS is 64 bit, I use the kernel sys-kernel/linux-sabayon-3.1-r2:
>
> uname --all
> Linux USC 3.1.0-sabayon #1 SMP Wed Nov 30 10:37:12 UTC 2011 x86_64
> Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz GenuineIntel GNU/Linux
>
> I have successfully compiled the sources from media_build taking the
> latest sources I've found, using:
>
> git clone git://linuxtv.org/media_build.git
>
> Also, what to do next?
>
> I've tried w_scan:
>
> w_scan -fc -c RO -k
> w_scan version 20101204 (compiled for DVB API 5.2)
> using settings for ROMANIA
> Country identifier RO not defined. Using defaults.
> frontend_type DVB-C, channellist 4
> output format kaffeine channels.dvb
> Info: using DVB adapter auto detection.
>          /dev/dvb/adapter0/frontend0 ->  DVB-C "DRXK DVB-C": good :-)
>          /dev/dvb/adapter0/frontend1 ->  DVB-T "DRXK DVB-T": specified
> was DVB-C ->  SEARCH NEXT ONE.
> Using DVB-C frontend (adapter /dev/dvb/adapter0/frontend0)
> -_-_-_-_ Getting frontend capabilities-_-_-_-_
> Using DVB API 5.5
> frontend DRXK DVB-C supports
> INVERSION_AUTO
> QAM_AUTO not supported, trying QAM_64.
> FEC_AUTO
> -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
> searching QAM64...
> 177500: sr6900 (time: 00:07) sr6875 (time: 00:10)
> 184500: sr6900 (time: 00:12) sr6875 (time: 00:15)
> 191500: sr6900 (time: 00:18) sr6875 (time: 00:20)
> 198500: sr6900 (time: 00:23) sr6875 (time: 00:25)
> 205500: sr6900 (time: 00:28) sr6875 (time: 00:30)
> 212500: sr6900 (time: 00:33) sr6875 (time: 00:35)
> 219500: sr6900 (time: 00:38) sr6875 (time: 00:40)
> 226500: sr6900 (time: 00:43) sr6875 (time: 00:46)
> 474000: sr6900 (time: 00:48) sr6875 (time: 00:51)
> 482000: sr6900 (time: 00:53) sr6875 (time: 00:56)
> 490000: sr6900 (time: 00:58) sr6875 (time: 01:01)
> 498000: sr6900 (time: 01:03) sr6875 (time: 01:06)
> 506000: sr6900 (time: 01:08) sr6875 (time: 01:11)
> 514000: sr6900 (time: 01:13) sr6875 (time: 01:16)
> 522000: sr6900 (time: 01:19) sr6875 (time: 01:21)
> 530000: sr6900 (time: 01:24) sr6875 (time: 01:26)
> 538000: sr6900 (time: 01:29) sr6875 (time: 01:31)
> 546000: sr6900 (time: 01:34) sr6875 (time: 01:36)
> 554000: sr6900 (time: 01:39) sr6875 (time: 01:41)
> 562000: sr6900 (time: 01:44) sr6875 (time: 01:46)
> 570000: sr6900 (time: 01:49) sr6875 (time: 01:52)
> 578000: sr6900 (time: 01:54) sr6875 (time: 01:57)
> 586000: sr6900 (time: 01:59) sr6875 (time: 02:02)
> 594000: sr6900 (time: 02:04) sr6875 (time: 02:07)
> 602000: sr6900 (time: 02:09) sr6875 (time: 02:12)
> 610000: sr6900 (time: 02:14) sr6875 (time: 02:17)
> 618000: sr6900 (time: 02:19) sr6875 (time: 02:22)
> 626000: sr6900 (time: 02:25) sr6875 (time: 02:27)
> 634000: sr6900 (time: 02:30) sr6875 (time: 02:32)
> 642000: sr6900 (time: 02:35) sr6875 (time: 02:37)
> 650000: sr6900 (time: 02:40) sr6875 (time: 02:42)
> 658000: sr6900 (time: 02:45) sr6875 (time: 02:47)
> 666000: sr6900 (time: 02:50) sr6875 (time: 02:53)
> 674000: sr6900 (time: 02:55) sr6875 (time: 02:58)
> 682000: sr6900 (time: 03:00) sr6875 (time: 03:03)
> 690000: sr6900 (time: 03:05) sr6875 (time: 03:08)
> 698000: sr6900 (time: 03:10) sr6875 (time: 03:13)
> 706000: sr6900 (time: 03:15) sr6875 (time: 03:18)
> 714000: sr6900 (time: 03:20) sr6875 (time: 03:23)
> 722000: sr6900 (time: 03:26) sr6875 (time: 03:28)
> 730000: sr6900 (time: 03:31) sr6875 (time: 03:33)
> 738000: sr6900 (time: 03:36) sr6875 (time: 03:38)
> 746000: sr6900 (time: 03:41) sr6875 (time: 03:43)
> 754000: sr6900 (time: 03:46) sr6875 (time: 03:48)
> 762000: sr6900 (time: 03:51) sr6875 (time: 03:53)
> 770000: sr6900 (time: 03:56) sr6875 (time: 03:59)
> 778000: sr6900 (time: 04:01) sr6875 (time: 04:04)
> 786000: sr6900 (time: 04:06) sr6875 (time: 04:09)
> 794000: sr6900 (time: 04:11) sr6875 (time: 04:14)
> 802000: sr6900 (time: 04:16) sr6875 (time: 04:19)
> 810000: sr6900 (time: 04:21) sr6875 (time: 04:24)
> 818000: sr6900 (time: 04:27) sr6875 (time: 04:29)
> 826000: sr6900 (time: 04:32) sr6875 (time: 04:34)
> 834000: sr6900 (time: 04:37) sr6875 (time: 04:39)
> 842000: sr6900 (time: 04:42) sr6875 (time: 04:44)
> 850000: sr6900 (time: 04:47) sr6875 (time: 04:49)
> 858000: sr6900 (time: 04:52) sr6875 (time: 04:54)
>
> ERROR: Sorry - i couldn't get any working frequency/transponder
>   Nothing to scan!!
>
> There are unencrypted channels, as I receive them under Windows.


I have had the same problem with scanning on the 930C. There has been several new patches commited to the git tree the last couple of weeks so try the latest driver from git. I had no time this week to test it but I will test this too next week.

And, I recommend that you CC the linux-media list with as detailed reports as possible of your tests so the poeple working on it get the test results.

Regards,

/Fredrik


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

* Re: Hauppauge HVR-930C problems
       [not found]         ` <4EECB2C2.8050701@gmail.com>
@ 2011-12-17 19:09           ` Mihai Dobrescu
       [not found]           ` <4EECE392.5080000@gmail.com>
  1 sibling, 0 replies; 31+ messages in thread
From: Mihai Dobrescu @ 2011-12-17 19:09 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On Sat, Dec 17, 2011 at 5:18 PM, Fredrik Lingvall
<fredrik.lingvall@gmail.com> wrote:
> On 12/16/11 19:35, Mihai Dobrescu wrote:
>
> Please excuse the dumbness of the question, but, could you direct me
> to the repository having these patches applied?
>
>
> No it's not a dumpness question - I have struggeled with this too.
>
> First I got confused which kernel source to use. There are two git repos
> mentioned on the linuxtv.org site:
>
> 1) on http://linuxtv.org/repo/
>
> ~ # git clone
> git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git v4l-dvb
>
> and 2) on http://git.linuxtv.org/media_tree.git
>
> ~ # git clone git://github.com/torvalds/linux.git v4l-dvb
>
>
> I'm also a bit confused on how to get the linux-media tree. My guess was to
> do a
>
>  # cd v4l-dvb
>  # git remote add linuxtv git://linuxtv.org/media_tree.git
>  # git remote update
>
>
> They also now and then create tar-files, and right know I'm testing the one
> from 2011-12-13, That is,
>
> ~ # cd /usr/src
> src # git clone git://github.com/torvalds/linux.git v4l-dvb
> src # wget
> http://linuxtv.org/downloads/drivers/linux-media-2011-12-13.tar.bz2
> src # cd v4l-dvb
> v4l-dvb # tar xvjf ../linux-media-2011-12-13.tar.bz2
>
> Then configure and build the kernel:make menuconfig (enable the drivers
> etc), make -j2 && make modules_install & make install
> and add the new kernel to lilo/grub etc and reboot.
>
> The media tree don't build cleanly on the stock Gentoo kernel (3.0.6) so
> that's why I'm using Linux' dev kernel (which is the one recommended on
> Linuxtv). However, not everything works with this kernel (I can't emerge
> virtualbox for example).
>
> /Fredrik
>

Thank you.
So, there would be no success on Sabayon 7 64 bit having kernel version 3.1?
I would not rebuild all the kernel, just the media.
Does this suffice?

Mike

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

* Re: Hauppauge HVR-930C problems
       [not found]             ` <CALJK-QjChFbX7NH0qNhvaz=Hp8JfKENJMsLOsETiYO9ZyV_BOg@mail.gmail.com>
@ 2011-12-17 19:59               ` Mihai Dobrescu
  2011-12-18  9:20               ` Fredrik Lingvall
  1 sibling, 0 replies; 31+ messages in thread
From: Mihai Dobrescu @ 2011-12-17 19:59 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On Sat, Dec 17, 2011 at 9:53 PM, Mihai Dobrescu <msdobrescu@gmail.com> wrote:
> On Sat, Dec 17, 2011 at 8:46 PM, Fredrik Lingvall
> <fredrik.lingvall@gmail.com> wrote:
>> On 12/17/11 16:18, Fredrik Lingvall wrote:
>>
>> On 12/16/11 19:35, Mihai Dobrescu wrote:
>>
>> Please excuse the dumbness of the question, but, could you direct me
>> to the repository having these patches applied?
>>
>>
>> No it's not a dumpness question - I have struggeled with this too.
>>
>> First I got confused which kernel source to use. There are two git repos
>> mentioned on the linuxtv.org site:
>>
>> 1) on http://linuxtv.org/repo/
>>
>> ~ # git clone
>> git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git v4l-dvb
>>
>> and 2) on http://git.linuxtv.org/media_tree.git
>>
>> ~ # git clone git://github.com/torvalds/linux.git v4l-dvb
>>
>>
>> I'm also a bit confused on how to get the linux-media tree. My guess was to
>> do a
>>
>>  # cd v4l-dvb
>>  # git remote add linuxtv git://linuxtv.org/media_tree.git
>>  # git remote update
>>
>>
>> They also now and then create tar-files, and right know I'm testing the one
>> from 2011-12-13, That is,
>>
>> ~ # cd /usr/src
>> src # git clone git://github.com/torvalds/linux.git v4l-dvb
>> src # wget
>> http://linuxtv.org/downloads/drivers/linux-media-2011-12-13.tar.bz2
>> src # cd v4l-dvb
>> v4l-dvb # tar xvjf ../linux-media-2011-12-13.tar.bz2
>>
>> Then configure and build the kernel:make menuconfig (enable the drivers
>> etc), make -j2 && make modules_install & make install
>> and add the new kernel to lilo/grub etc and reboot.
>>
>> The media tree don't build cleanly on the stock Gentoo kernel (3.0.6) so
>> that's why I'm using Linux' dev kernel (which is the one recommended on
>> Linuxtv). However, not everything works with this kernel (I can't emerge
>> virtualbox for example).
>>
>> /Fredrik
>>
>> Mihai,
>>
>> I got some success. I did this,
>>
>> # cd /usr/src (for example)
>>
>> # git clone git://linuxtv.org/media_build.git
>>
>> # emerge dev-util/patchutils
>> # emerge Proc-ProcessTable
>>
>> # cd media_build
>> # ./build
>> # make install
>>
>> Which will install the latest driver on your running kernel (just in case
>> make sure /usr/src/linux points to your running kernel sources). Then
>> reboot.
>>
>> You should now see that (among other) modules have loaded:
>>
>> # lsmod
>>
>> <snip>
>>
>> em28xx                 93528  1 em28xx_dvb
>> v4l2_common             5254  1 em28xx
>> videobuf_vmalloc        4167  1 em28xx
>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>
>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There were
>> some warnings and timeouts and I'm not sure if this is normal or not.
>>
>> You can also do a dmesg -c while scanning to monitor the changes en the
>> kernel log.
>>
>> Regards,
>>
>> /Fredrik
>>
>>
>
> In my case I have:
>
> lsmod |grep em2
> em28xx_dvb             12608  0
> dvb_core               76187  1 em28xx_dvb
> em28xx                 82436  1 em28xx_dvb
> v4l2_common             5087  1 em28xx
> videodev               70123  2 em28xx,v4l2_common
> videobuf_vmalloc        3783  1 em28xx
> videobuf_core          12991  2 em28xx,videobuf_vmalloc
> rc_core                11695  11
> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
> tveeprom               12441  1 em28xx
> i2c_core               14232  9
> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>
> yet, w_scan founds nothing.

Additionally: dmesg -c

[139676.064539] usb 1-4: new high speed USB device number 8 using ehci_hcd
[139676.180076] usb 1-4: New USB device found, idVendor=2040, idProduct=1605
[139676.180081] usb 1-4: New USB device strings: Mfr=0, Product=1,
SerialNumber=2
[139676.180085] usb 1-4: Product: WinTV HVR-930C
[139676.180087] usb 1-4: SerialNumber: 4034564214
[139676.646185] WARNING: You are using an experimental version of the
media stack.
[139676.646187]         As the driver is backported to an older
kernel, it doesn't offer
[139676.646188]         enough quality for its usage in production.
[139676.646189]         Use it with care.
[139676.646190] Latest git patches (needed if you report a bug to
linux-media@vger.kernel.org):
[139676.646192]         bcc072756e4467dc30e502a311b1c3adec96a0e4
[media] STV0900: Query DVB frontend delivery capabilities
[139676.646193]         6bad3aeb8cc542b90ae62b35caca44305cd93ef5
[media] STV090x: Query DVB frontend delivery capabilities
[139676.646195]         61d4f9c918c591e4f7970ef29bafb302664be466
[media] STB0899: Query DVB frontend delivery capabilities
[139676.660297] IR NEC protocol handler initialized
[139676.680225] Linux media interface: v0.10
[139676.683437] Linux video capture interface: v2.00
[139676.683440] WARNING: You are using an experimental version of the
media stack.
[139676.683442]         As the driver is backported to an older
kernel, it doesn't offer
[139676.683443]         enough quality for its usage in production.
[139676.683444]         Use it with care.
[139676.683444] Latest git patches (needed if you report a bug to
linux-media@vger.kernel.org):
[139676.683446]         bcc072756e4467dc30e502a311b1c3adec96a0e4
[media] STV0900: Query DVB frontend delivery capabilities
[139676.683447]         6bad3aeb8cc542b90ae62b35caca44305cd93ef5
[media] STV090x: Query DVB frontend delivery capabilities
[139676.683449]         61d4f9c918c591e4f7970ef29bafb302664be466
[media] STB0899: Query DVB frontend delivery capabilities
[139676.696111] em28xx: New device WinTV HVR-930C @ 480 Mbps
(2040:1605, interface 0, class 0)
[139676.696114] em28xx: Audio Vendor Class interface 0 found
[139676.696194] em28xx #0: chip ID is em2884
[139676.703415] IR RC5(x) protocol handler initialized
[139676.705418] IR RC6 protocol handler initialized
[139676.710803] IR JVC protocol handler initialized
[139676.712494] IR Sony protocol handler initialized
[139676.714320] IR SANYO protocol handler initialized
[139676.716281] IR MCE Keyboard/mouse protocol handler initialized
[139676.718857] lirc_dev: IR Remote Control driver registered, major 242
[139676.719402] IR LIRC bridge handler initialized
[139676.748897] em28xx #0: Identified as Hauppauge WinTV HVR 930C (card=81)
[139676.774076] Registered IR keymap rc-hauppauge
[139676.774197] input: em28xx IR (em28xx #0) as
/devices/pci0000:00/0000:00:1a.7/usb1/1-4/rc/rc0/input11
[139676.774296] rc0: em28xx IR (em28xx #0) as
/devices/pci0000:00/0000:00:1a.7/usb1/1-4/rc/rc0
[139676.774774] em28xx #0: Config register raw data: 0x80
[139676.774777] em28xx #0: v4l2 driver version 0.1.3
[139676.779864] em28xx #0: V4L2 video device registered as video0
[139676.779930] usbcore: registered new interface driver em28xx
[139676.779933] em28xx driver loaded
[139676.797250] WARNING: You are using an experimental version of the
media stack.
[139676.797251]         As the driver is backported to an older
kernel, it doesn't offer
[139676.797252]         enough quality for its usage in production.
[139676.797253]         Use it with care.
[139676.797253] Latest git patches (needed if you report a bug to
linux-media@vger.kernel.org):
[139676.797254]         bcc072756e4467dc30e502a311b1c3adec96a0e4
[media] STV0900: Query DVB frontend delivery capabilities
[139676.797255]         6bad3aeb8cc542b90ae62b35caca44305cd93ef5
[media] STV090x: Query DVB frontend delivery capabilities
[139676.797256]         61d4f9c918c591e4f7970ef29bafb302664be466
[media] STB0899: Query DVB frontend delivery capabilities
[139677.984918] drxk: detected a drx-3913k, spin A2, xtal 20.250 MHz
[139678.023334] drxk: Could not load firmware file
dvb-usb-hauppauge-hvr930c-drxk.fw.
[139678.023339] drxk: Copy dvb-usb-hauppauge-hvr930c-drxk.fw to your
hotplug directory!
[139678.060239] DRXK driver version 0.9.4300
[139678.085891] xc5000 5-0061: creating new instance
[139678.086696] xc5000: Successfully identified at address 0x61
[139678.086699] xc5000: Firmware has not been loaded previously
[139678.086703] DVB: registering new adapter (em28xx #0)
[139678.086707] DVB: registering adapter 0 frontend 0 (DRXK DVB-C)...
[139678.086814] DVB: registering adapter 0 frontend 1 (DRXK DVB-T)...
[139678.087344] em28xx #0: Successfully loaded em28xx-dvb
[139678.087351] Em28xx: Initialized (Em28xx dvb Extension) extension

[139814.622283] xc5000: waiting for firmware upload
(dvb-fe-xc5000-1.6.114.fw)...
[139814.656121] xc5000: firmware read 12401 bytes.
[139814.656125] xc5000: firmware uploading...
[139815.023695] xc5000: firmware upload complete...

...  and many lines like this:

[139821.805077] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139821.805081] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139824.283290] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139824.283295] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139826.832503] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139826.832508] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139829.358709] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139829.358714] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139831.903899] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139831.903904] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139834.436225] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139834.436230] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139836.973273] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139836.973279] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139839.512616] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139839.512621] drxk: 02 00 00 00 10 00 05 00 03 02
..........
[139842.050811] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[139842.050816] drxk: 02 00 00 00 10 00 05 00 03 02
..........

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

* Re: Hauppauge HVR-930C problems
       [not found]             ` <CALJK-QjChFbX7NH0qNhvaz=Hp8JfKENJMsLOsETiYO9ZyV_BOg@mail.gmail.com>
  2011-12-17 19:59               ` Mihai Dobrescu
@ 2011-12-18  9:20               ` Fredrik Lingvall
  2011-12-25 15:56                 ` Fredrik Lingvall
  1 sibling, 1 reply; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-18  9:20 UTC (permalink / raw)
  To: Mihai Dobrescu; +Cc: linux-media

On 12/17/11 20:53, Mihai Dobrescu wrote:
>
>
>
> Mihai,
>
> I got some success. I did this,
>
> # cd /usr/src (for example)
>
> # git clone git://linuxtv.org/media_build.git
>
> # emerge dev-util/patchutils
> # emerge Proc-ProcessTable
>
> # cd media_build
> # ./build
> # make install
>
> Which will install the latest driver on your running kernel (just in case
> make sure /usr/src/linux points to your running kernel sources). Then
> reboot.
>
> You should now see that (among other) modules have loaded:
>
> # lsmod
>
> <snip>
>
> em28xx                 93528  1 em28xx_dvb
> v4l2_common             5254  1 em28xx
> videobuf_vmalloc        4167  1 em28xx
> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>
> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There were
> some warnings and timeouts and I'm not sure if this is normal or not.
>
> You can also do a dmesg -c while scanning to monitor the changes en the
> kernel log.
>
> Regards,
>
> /Fredrik
>
>
> In my case I have:
>
> lsmod |grep em2
> em28xx_dvb             12608  0
> dvb_core               76187  1 em28xx_dvb
> em28xx                 82436  1 em28xx_dvb
> v4l2_common             5087  1 em28xx
> videodev               70123  2 em28xx,v4l2_common
> videobuf_vmalloc        3783  1 em28xx
> videobuf_core          12991  2 em28xx,videobuf_vmalloc
> rc_core                11695  11
> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
> tveeprom               12441  1 em28xx
> i2c_core               14232  9
> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>
> yet, w_scan founds nothing.

I was able to scan using the "media_build" install method described 
above but when trying to watch a free channel the image and sound was 
stuttering severly. I have tried both MythTV and mplayer with similar 
results.

I created the channel list for mplayer with:

lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap > 
.mplayer/channels.conf

And, for example,  I get this output from mplayer plus a very (blocky) 
stuttering image and sound:

lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack

MPlayer SVN-r33094-4.5.3 (C) 2000-2011 MPlayer Team
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote 
control.

Playing dvb://1@TV8 Oslo.
dvb_tune Freq: 306000000
TS file format detected.
VIDEO MPEG2(pid=1585) AUDIO MPA(pid=1586) NO SUBS (yet)!  PROGRAM N. 0
VIDEO:  MPEG2  720x576  (aspect 3)  25.000 fps  15000.0 kbps (1875.0 
kbyte/s)
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffmpeg2] vfm: ffmpeg (FFmpeg MPEG-2)
==========================================================================
==========================================================================
Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
AUDIO: 48000 Hz, 2 ch, s16le, 192.0 kbit/12.50% (ratio: 24000->192000)
Selected audio codec: [mp3] afm: mp3lib (mp3lib MPEG layer-2, layer-3)
==========================================================================
AO: [jack] 48000Hz 2ch floatle (4 bytes per sample)
Starting playback...
Movie-Aspect is 1.78:1 - prescaling to correct movie aspect.
VO: [xv] 720x576 => 1024x576 Planar YV12
[VO_XV] Shared memory not supported
Reverting to normal Xv.
[VO_XV] Shared memory not supported
Reverting to normal Xv.
[mpeg2video @ 0xac0bc0]ac-tex damaged at 10 0
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 16 1
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 26 3
[mpeg2video @ 0xac0bc0]ac-tex damaged at 26 6
[mpeg2video @ 0xac0bc0]ac-tex damaged at 12 10
[mpeg2video @ 0xac0bc0]invalid mb type in I Frame at 22 12
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 44 13
[mpeg2video @ 0xac0bc0]ac-tex damaged at 28 16
[mpeg2video @ 0xac0bc0]ac-tex damaged at 4 17
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 16 19
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 14 20
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 5 22
[mpeg2video @ 0xac0bc0]invalid mb type in I Frame at 6 23
[mpeg2video @ 0xac0bc0]ac-tex damaged at 16 24
[mpeg2video @ 0xac0bc0]ac-tex damaged at 5 25
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 21 27
[mpeg2video @ 0xac0bc0]skipped MB in I frame at 42 28
[mpeg2video @ 0xac0bc0]ac-tex damaged at 24 31
[mpeg2video @ 0xac0bc0]invalid mb type in I Frame at 7 34
[mpeg2video @ 0xac0bc0]ac-tex damaged at 43 35
[mpeg2video @ 0xac0bc0]Warning MVs not available
[mpeg2video @ 0xac0bc0]concealing 1296 DC, 1296 AC, 1296 MV errors
[mpeg2video @ 0xac0bc0]concealing 1320 DC, 1320 AC, 1320 MV errors
[mpeg2video @ 0xac0bc0]concealing 1320 DC, 1320 AC, 1320 MV errors
[mpeg2video @ 0xac0bc0]concealing 1320 DC, 1320 AC, 1320 MV errors
[mpeg2video @ 0xac0bc0]concealing 1320 DC, 1320 AC, 1320 MV errors
[mpeg2video @ 0xac0bc0]ac-tex damaged at 44 7
[mpeg2video @ 0xac0bc0]invalid mb type in P Frame at 11 13
[mpeg2video @ 0xac0bc0]ac-tex damaged at 20 17
[mpeg2video @ 0xac0bc0]invalid mb type in P Frame at 32 21
[mpeg2video @ 0xac0bc0]ac-tex damaged at 31 22
[mpeg2video @ 0xac0bc0]ac-tex damaged at 5 30
[mpeg2video @ 0xac0bc0]ac-tex damaged at 20 31
[mpeg2video @ 0xac0bc0]invalid mb type in P Frame at 43 32
[mpeg2video @ 0xac0bc0]invalid cbp at 12 2
[mpeg2video @ 0xac0bc0]ac-tex damaged at 7 3
[mpeg2video @ 0xac0bc0]invalid cbp at 31 4
[mpeg2video @ 0xac0bc0]ac-tex damaged at 8 5
[mpeg2video @ 0xac0bc0]ac-tex damaged at 7 9
[mpeg2video @ 0xac0bc0]ac-tex damaged at 16 10
[mpeg2video @ 0xac0bc0]ac-tex damaged at 7 12
[mpeg2video @ 0xac0bc0]ac-tex damaged at 22 12
[mpeg2video @ 0xac0bc0]slice mismatch
[mpeg2video @ 0xac0bc0]ac-tex damaged at 6 17
[mpeg2video @ 0xac0bc0]slice mismatch
[mpeg2video @ 0xac0bc0]mb incr damaged
[mpeg2video @ 0xac0bc0]slice mismatch
[mpeg2video @ 0xac0bc0]ac-tex damaged at 29 22
[mpeg2video @ 0xac0bc0]invalid mb type in P Frame at 5 22
[mpeg2video @ 0xac0bc0]ac-tex damaged at 11 23
[mpeg2video @ 0xac0bc0]ac-tex damaged at 29 25
[mpeg2video @ 0xac0bc0]invalid mb type in P Frame at 7 26
[mpeg2video @ 0xac0bc0]ac-tex damaged at 12 27
[mpeg2video @ 0xac0bc0]ac-tex damaged at 1 31
[mpeg2video @ 0xac0bc0]ac-tex damaged at 28 32
[mpeg2video @ 0xac0bc0]mb incr damaged
[mpeg2video @ 0xac0bc0]Warning MVs not available
[mpeg2video @ 0xac0bc0]concealing 1312 DC, 1312 AC, 1312 MV errors
A:91547.6 V:91546.8 A-V:  0.787 ct:  0.000   6/  6 ??% ??% ??,?% 2 0
[mpeg2video @ 0xac0bc0]invalid cbp at 34 6
[mpeg2video @ 0xac0bc0]slice mismatch
[mpeg2video @ 0xac0bc0]ac-tex damaged at 5 13
[mpeg2video @ 0xac0bc0]ac-tex damaged at 42 15
[mpeg2video @ 0xac0bc0]invalid cbp at 13 17
[mpeg2video @ 0xac0bc0]invalid cbp at 5 23
[mpeg2video @ 0xac0bc0]Warning MVs not available
[mpeg2video @ 0xac0bc0]concealing 631 DC, 631 AC, 631 MV errors
A:91548.6 V:91546.9 A-V:  1.699 ct:  0.004   7/  7 ??% ??% ??,?% 3 0
[mpeg2video @ 0xac0bc0]invalid cbp at 29 8
[mpeg2video @ 0xac0bc0]invalid cbp at 26 9
[mpeg2video @ 0xac0bc0]ac-tex damaged at 0 10
[mpeg2video @ 0xac0bc0]mb incr damaged
[mpeg2video @ 0xac0bc0]ac-tex damaged at 18 17
[mpeg2video @ 0xac0bc0]ac-tex damaged at 20 18
[mpeg2video @ 0xac0bc0]ac-tex damaged at 2 20
[mpeg2video @ 0xac0bc0]ac-tex damaged at 4 22
[mpeg2video @ 0xac0bc0]invalid mb type in P Frame at 26 23
[mpeg2video @ 0xac0bc0]ac-tex damaged at 29 25
[mpeg2video @ 0xac0bc0]ac-tex damaged at 15 27
[mpeg2video @ 0xac0bc0]invalid mb type in P Frame at 8 28
[mpeg2video @ 0xac0bc0]slice mismatch
[mpeg2video @ 0xac0bc0]ac-tex damaged at 16 32
[mpeg2video @ 0xac0bc0]concealing 980 DC, 980 AC, 980 MV errors
A:91549.3 V:91546.9 A-V:  2.444 ct:  0.008   8/  8 ??% ??% ??,?% 4 0
[mpeg2video @ 0xac0bc0]ac-tex damaged at 28 2
[mpeg2video @ 0xac0bc0]slice mismatch
[mpeg2video @ 0xac0bc0]ac-tex damaged at 29 20
[mpeg2video @ 0xac0bc0]ac-tex damaged at 35 24
[mpeg2video @ 0xac0bc0]slice mismatch
[mpeg2video @ 0xac0bc0]mb incr damaged
[mpeg2video @ 0xac0bc0]



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

* Re: Hauppauge HVR-930C problems
  2011-12-18  9:20               ` Fredrik Lingvall
@ 2011-12-25 15:56                 ` Fredrik Lingvall
  2012-01-10 14:42                   ` Fredrik Lingvall
  0 siblings, 1 reply; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-25 15:56 UTC (permalink / raw)
  To: linux-media; +Cc: Mihai Dobrescu, Mauro Carvalho Chehab

On 12/18/11 10:20, Fredrik Lingvall wrote:
> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>
>>
>>
>> Mihai,
>>
>> I got some success. I did this,
>>
>> # cd /usr/src (for example)
>>
>> # git clone git://linuxtv.org/media_build.git
>>
>> # emerge dev-util/patchutils
>> # emerge Proc-ProcessTable
>>
>> # cd media_build
>> # ./build
>> # make install
>>
>> Which will install the latest driver on your running kernel (just in 
>> case
>> make sure /usr/src/linux points to your running kernel sources). Then
>> reboot.
>>
>> You should now see that (among other) modules have loaded:
>>
>> # lsmod
>>
>> <snip>
>>
>> em28xx                 93528  1 em28xx_dvb
>> v4l2_common             5254  1 em28xx
>> videobuf_vmalloc        4167  1 em28xx
>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>
>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There 
>> were
>> some warnings and timeouts and I'm not sure if this is normal or not.
>>
>> You can also do a dmesg -c while scanning to monitor the changes en the
>> kernel log.
>>
>> Regards,
>>
>> /Fredrik
>>
>>
>> In my case I have:
>>
>> lsmod |grep em2
>> em28xx_dvb             12608  0
>> dvb_core               76187  1 em28xx_dvb
>> em28xx                 82436  1 em28xx_dvb
>> v4l2_common             5087  1 em28xx
>> videodev               70123  2 em28xx,v4l2_common
>> videobuf_vmalloc        3783  1 em28xx
>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>> rc_core                11695  11
>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder 
>>
>> tveeprom               12441  1 em28xx
>> i2c_core               14232  9
>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801 
>>
>>
>> yet, w_scan founds nothing.
>
> I was able to scan using the "media_build" install method described 
> above but when trying to watch a free channel the image and sound was 
> stuttering severly. I have tried both MythTV and mplayer with similar 
> results.
>
> I created the channel list for mplayer with:
>
> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap > 
> .mplayer/channels.conf
>
> And, for example,  I get this output from mplayer plus a very (blocky) 
> stuttering image and sound:
>
> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>

I did some more tests with release snapshots 2011-12-13, 2011-12-21, and 
2011-12-25, respectively. I did this by changing

LATEST_TAR := 
http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
LATEST_TAR_MD5 := 
http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5

in linux/Makefile to the corresponding release.

Results:

* linux-media-2011-12-13.tar.bz2

The ./build script builds the drivers cleanly, scanning works, but  
watching video does not work correctly.

* linux-media-2011-12-21.tar.bz2

The ./build script fails at the as3645a.c file (on this machine but I 
can build it on two other machines using the same kernel and kernel 
2.6.39-gentoo-r3, respectively). I can build it with make menuconfig etc 
(where I disabled stuff I don't need, eg. disabling [ ] Media Controller 
API (EXPERIMENTAL) ). The em28xx generate a kernel core dump though [1].

* linux-media-2011-12-25.tar.bz2

Same problem as 2011-12-21.

Regards,

/Fredrik

[1]

[ 2231.881231] em28xx #0: chip ID is em2884
[ 2231.933025] em28xx #0: Identified as Hauppauge WinTV HVR 930C (card=81)
[ 2231.933132] em28xx #0: Config register raw data: 0xcb
[ 2231.933139] BUG: unable to handle kernel NULL pointer dereference at 
0000000000000028
[ 2231.933325] IP: [<ffffffffa0df4538>] em28xx_wake_i2c+0x28/0xe0 [em28xx]
[ 2231.933425] PGD 1181ef067 PUD 118383067 PMD 0
[ 2231.933513] Oops: 0000 [#1] PREEMPT SMP
[ 2231.933601] CPU 0
[ 2231.933607] Modules linked in: em28xx(+) xc5000 coretemp drxk 
nvidia(P) dvb_core rc_hauppauge ir_lirc_codec lirc_dev 
ir_mce_kbd_decoder ir_sanyo_decoder ir_sony_decoder ir_jvc_decoder 
ir_rc6_decoder ir_rc5_decoder ir_nec_decoder v4l2_common 
videobuf_vmalloc videobuf_core uvcvideo rc_core videobuf2_core videodev 
tveeprom media v4l2_compat_ioctl32 videobuf2_vmalloc videobuf2_memops 
firewire_ohci iwlagn firewire_core mac80211 crc_itu_t snd_hdsp 
snd_rawmidi e1000e [last unloaded: em28xx]
[ 2231.934117]
[ 2231.934117] Pid: 20150, comm: modprobe Tainted: P            
3.0.6-gentoo #2 Dell Inc. Precision M2400                 /0HT029
[ 2231.934117] RIP: 0010:[<ffffffffa0df4538>]  [<ffffffffa0df4538>] 
em28xx_wake_i2c+0x28/0xe0 [em28xx]
[ 2231.934117] RSP: 0018:ffff88011a34fbc8  EFLAGS: 00010213
[ 2231.934117] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 
0000000000000000
[ 2231.934117] RDX: ffffffff81c13468 RSI: 0000000000000082 RDI: 
ffff8801184ca000
[ 2231.934117] RBP: ffff88011a34fbe8 R08: 0000000000000000 R09: 
0000000000000000
[ 2231.934117] R10: 0000000000000000 R11: 0000000000000000 R12: 
ffff8801184ca038
[ 2231.934117] R13: ffff8801184ca000 R14: ffff8801184ca000 R15: 
ffff880119db0800
[ 2231.934117] FS:  00007f1b79fc2700(0000) GS:ffff88011fc00000(0000) 
knlGS:0000000000000000
[ 2231.934117] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
[ 2231.934117] CR2: 0000000000000028 CR3: 000000011445f000 CR4: 
00000000000006f0
[ 2231.934117] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 
0000000000000000
[ 2231.934117] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 
0000000000000400
[ 2231.934117] Process modprobe (pid: 20150, threadinfo 
ffff88011a34e000, task ffff88011a9660b0)
[ 2231.934117] Stack:
[ 2231.934117]  0000000000000000 0000000000000000 ffff8801184ca948 
0000000000000000
[ 2231.934117]  ffff88011a34fd58 ffffffffa0df1f69 0000000f00000000 
ffff88011a34fc17
[ 2231.934117]  ffffffffa0dfe8b0 00205d3800000001 ffff8801184ca030 
ffff880119e2c430
[ 2231.934117] Call Trace:
[ 2231.934117]  [<ffffffffa0df1f69>] em28xx_usb_probe+0x619/0xb80 [em28xx]
[ 2231.934117]  [<ffffffff81495ec3>] usb_probe_interface+0x113/0x220
[ 2231.934117]  [<ffffffff813e6616>] driver_probe_device+0x96/0x1c0
[ 2231.934117]  [<ffffffff813e67db>] __driver_attach+0x9b/0xa0
[ 2231.934117]  [<ffffffff813e6740>] ? driver_probe_device+0x1c0/0x1c0
[ 2231.934117]  [<ffffffff813e565e>] bus_for_each_dev+0x5e/0x90
[ 2231.934117]  [<ffffffff813e62a9>] driver_attach+0x19/0x20
[ 2231.934117]  [<ffffffff813e5e40>] bus_add_driver+0xc0/0x280
[ 2231.934117]  [<ffffffff813e6d7f>] driver_register+0x6f/0x130
[ 2231.934117]  [<ffffffff814954d8>] usb_register_driver+0xb8/0x170
[ 2231.934117]  [<ffffffffa00cd000>] ? 0xffffffffa00ccfff
[ 2231.934117]  [<ffffffffa00cd023>] em28xx_module_init+0x23/0x4e [em28xx]
[ 2231.934117]  [<ffffffff810002bf>] do_one_initcall+0x3f/0x170
[ 2231.934117]  [<ffffffff81087a32>] sys_init_module+0x92/0x1e0
[ 2231.934117]  [<ffffffff8170627b>] system_call_fastpath+0x16/0x1b
[ 2231.934117] Code: 00 00 00 55 48 89 e5 41 55 49 89 fd 41 54 4c 8d 67 
38 53 48 83 ec 08 48 8b 5f 38 4c 39 e3 0f 84 ac 00 00 00 0f 1f 80 00 00 
00 00
[ 2231.934117]  8b 43 28 48 8b 00 48 85 c0 74 10 48 8b 40 28 48 85 c0 74 07
[ 2231.934117] RIP  [<ffffffffa0df4538>] em28xx_wake_i2c+0x28/0xe0 [em28xx]
[ 2231.934117]  RSP <ffff88011a34fbc8>
[ 2231.934117] CR2: 0000000000000028
[ 2231.939276] ---[ end trace f190e9cb70245d0a ]---
lin-tv media_build #



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

* Re: Hauppauge HVR-930C problems
  2011-12-25 15:56                 ` Fredrik Lingvall
@ 2012-01-10 14:42                   ` Fredrik Lingvall
  2012-01-10 19:30                     ` Mihai Dobrescu
  2012-01-11  9:21                     ` Fredrik Lingvall
  0 siblings, 2 replies; 31+ messages in thread
From: Fredrik Lingvall @ 2012-01-10 14:42 UTC (permalink / raw)
  To: linux-media; +Cc: Mihai Dobrescu, Mauro Carvalho Chehab

On 12/25/11 16:56, Fredrik Lingvall wrote:
> On 12/18/11 10:20, Fredrik Lingvall wrote:
>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>
>>>
>>>
>>> Mihai,
>>>
>>> I got some success. I did this,
>>>
>>> # cd /usr/src (for example)
>>>
>>> # git clone git://linuxtv.org/media_build.git
>>>
>>> # emerge dev-util/patchutils
>>> # emerge Proc-ProcessTable
>>>
>>> # cd media_build
>>> # ./build
>>> # make install
>>>
>>> Which will install the latest driver on your running kernel (just in 
>>> case
>>> make sure /usr/src/linux points to your running kernel sources). Then
>>> reboot.
>>>
>>> You should now see that (among other) modules have loaded:
>>>
>>> # lsmod
>>>
>>> <snip>
>>>
>>> em28xx                 93528  1 em28xx_dvb
>>> v4l2_common             5254  1 em28xx
>>> videobuf_vmalloc        4167  1 em28xx
>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>
>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There 
>>> were
>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>
>>> You can also do a dmesg -c while scanning to monitor the changes en the
>>> kernel log.
>>>
>>> Regards,
>>>
>>> /Fredrik
>>>
>>>
>>> In my case I have:
>>>
>>> lsmod |grep em2
>>> em28xx_dvb             12608  0
>>> dvb_core               76187  1 em28xx_dvb
>>> em28xx                 82436  1 em28xx_dvb
>>> v4l2_common             5087  1 em28xx
>>> videodev               70123  2 em28xx,v4l2_common
>>> videobuf_vmalloc        3783  1 em28xx
>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>> rc_core                11695  11
>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder 
>>>
>>> tveeprom               12441  1 em28xx
>>> i2c_core               14232  9
>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801 
>>>
>>>
>>> yet, w_scan founds nothing.
>>
>> I was able to scan using the "media_build" install method described 
>> above but when trying to watch a free channel the image and sound was 
>> stuttering severly. I have tried both MythTV and mplayer with similar 
>> results.
>>
>> I created the channel list for mplayer with:
>>
>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap > 
>> .mplayer/channels.conf
>>
>> And, for example,  I get this output from mplayer plus a very 
>> (blocky) stuttering image and sound:
>>
>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>
>
> I did some more tests with release snapshots 2011-12-13, 2011-12-21, 
> and 2011-12-25, respectively. I did this by changing
>
> LATEST_TAR := 
> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
> LATEST_TAR_MD5 := 
> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>
> in linux/Makefile to the corresponding release.
>
> Results:
>
> * linux-media-2011-12-13.tar.bz2
>
> The ./build script builds the drivers cleanly, scanning works, but  
> watching video does not work correctly.
>
> * linux-media-2011-12-21.tar.bz2
>
> The ./build script fails at the as3645a.c file (on this machine but I 
> can build it on two other machines using the same kernel and kernel 
> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig 
> etc (where I disabled stuff I don't need, eg. disabling [ ] Media 
> Controller API (EXPERIMENTAL) ). The em28xx generate a kernel core 
> dump though [1].
>
> * linux-media-2011-12-25.tar.bz2
>
> Same problem as 2011-12-21.
>
> Regards,
>
> /Fredrik
>

Here's some more test results.

I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I 
build the kernel). Both

http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2

and

http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2

now builds using the

lin-tv ~ # cd /usr/src
lin-tv src # git clone git://linuxtv.org/media_build.git
lin-tv src # cd media_build
lin-tv media_build # ./build
lin-tv media_build # make install

method. Scanning and (finally) watching video works but not flawlessly.

I also suspect that I don't find all channels when I scan. I have 
scanned using,

* dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > 
.mplayer/channels.conf
* Kaffeine  (1.2.2)
* MythTV (0.25_pre20120103)

respectively. Both kaffeine and mythtv reports a very low signal level 
(0%) and an SNR of only 1%. (kaffeine). I'm not sure if the driver 
reports this correctly though.

Whatching live TV works on some channels but not all. HD channels seems 
more difficult than SD channels,  and I have not figured out why some 
channels work and some don't. I get

Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock

and no video on many channels in mythtv.

Regards,

/Fredrik






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

* Re: Hauppauge HVR-930C problems
  2012-01-10 14:42                   ` Fredrik Lingvall
@ 2012-01-10 19:30                     ` Mihai Dobrescu
  2012-01-10 19:41                       ` Mauro Carvalho Chehab
  2012-01-11 12:24                       ` Fredrik Lingvall
  2012-01-11  9:21                     ` Fredrik Lingvall
  1 sibling, 2 replies; 31+ messages in thread
From: Mihai Dobrescu @ 2012-01-10 19:30 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media, Mauro Carvalho Chehab

Hello,

Just compiled the latest again, but still no difference.
kaffeine doesn't see any source in channels dialog, two devices are in
'Configure Television' dialog: DRXK DVB-C - device not connected - as
Device 1 and DRXK DVB-C DVB-T as Device 2. Concerning the last one, no
source is selected, as I am in Romania, which is not in the list
scan_w finds nothing.

What should I do next?

Regards, Mike.

On Tue, Jan 10, 2012 at 4:42 PM, Fredrik Lingvall
<fredrik.lingvall@gmail.com> wrote:
> On 12/25/11 16:56, Fredrik Lingvall wrote:
>>
>> On 12/18/11 10:20, Fredrik Lingvall wrote:
>>>
>>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>>
>>>>
>>>>
>>>>
>>>> Mihai,
>>>>
>>>> I got some success. I did this,
>>>>
>>>> # cd /usr/src (for example)
>>>>
>>>> # git clone git://linuxtv.org/media_build.git
>>>>
>>>> # emerge dev-util/patchutils
>>>> # emerge Proc-ProcessTable
>>>>
>>>> # cd media_build
>>>> # ./build
>>>> # make install
>>>>
>>>> Which will install the latest driver on your running kernel (just in
>>>> case
>>>> make sure /usr/src/linux points to your running kernel sources). Then
>>>> reboot.
>>>>
>>>> You should now see that (among other) modules have loaded:
>>>>
>>>> # lsmod
>>>>
>>>> <snip>
>>>>
>>>> em28xx                 93528  1 em28xx_dvb
>>>> v4l2_common             5254  1 em28xx
>>>> videobuf_vmalloc        4167  1 em28xx
>>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>>
>>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There
>>>> were
>>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>>
>>>> You can also do a dmesg -c while scanning to monitor the changes en the
>>>> kernel log.
>>>>
>>>> Regards,
>>>>
>>>> /Fredrik
>>>>
>>>>
>>>> In my case I have:
>>>>
>>>> lsmod |grep em2
>>>> em28xx_dvb             12608  0
>>>> dvb_core               76187  1 em28xx_dvb
>>>> em28xx                 82436  1 em28xx_dvb
>>>> v4l2_common             5087  1 em28xx
>>>> videodev               70123  2 em28xx,v4l2_common
>>>> videobuf_vmalloc        3783  1 em28xx
>>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>>> rc_core                11695  11
>>>>
>>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
>>>> tveeprom               12441  1 em28xx
>>>> i2c_core               14232  9
>>>>
>>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>>>>
>>>> yet, w_scan founds nothing.
>>>
>>>
>>> I was able to scan using the "media_build" install method described above
>>> but when trying to watch a free channel the image and sound was stuttering
>>> severly. I have tried both MythTV and mplayer with similar results.
>>>
>>> I created the channel list for mplayer with:
>>>
>>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap >
>>> .mplayer/channels.conf
>>>
>>> And, for example,  I get this output from mplayer plus a very (blocky)
>>> stuttering image and sound:
>>>
>>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>>
>>
>> I did some more tests with release snapshots 2011-12-13, 2011-12-21, and
>> 2011-12-25, respectively. I did this by changing
>>
>> LATEST_TAR :=
>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
>> LATEST_TAR_MD5 :=
>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>>
>> in linux/Makefile to the corresponding release.
>>
>> Results:
>>
>> * linux-media-2011-12-13.tar.bz2
>>
>> The ./build script builds the drivers cleanly, scanning works, but
>>  watching video does not work correctly.
>>
>> * linux-media-2011-12-21.tar.bz2
>>
>> The ./build script fails at the as3645a.c file (on this machine but I can
>> build it on two other machines using the same kernel and kernel
>> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig etc
>> (where I disabled stuff I don't need, eg. disabling [ ] Media Controller API
>> (EXPERIMENTAL) ). The em28xx generate a kernel core dump though [1].
>>
>> * linux-media-2011-12-25.tar.bz2
>>
>> Same problem as 2011-12-21.
>>
>> Regards,
>>
>> /Fredrik
>>
>
> Here's some more test results.
>
> I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I build
> the kernel). Both
>
> http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
>
> and
>
> http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2
>
> now builds using the
>
> lin-tv ~ # cd /usr/src
> lin-tv src # git clone git://linuxtv.org/media_build.git
> lin-tv src # cd media_build
> lin-tv media_build # ./build
> lin-tv media_build # make install
>
> method. Scanning and (finally) watching video works but not flawlessly.
>
> I also suspect that I don't find all channels when I scan. I have scanned
> using,
>
> * dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > .mplayer/channels.conf
> * Kaffeine  (1.2.2)
> * MythTV (0.25_pre20120103)
>
> respectively. Both kaffeine and mythtv reports a very low signal level (0%)
> and an SNR of only 1%. (kaffeine). I'm not sure if the driver reports this
> correctly though.
>
> Whatching live TV works on some channels but not all. HD channels seems more
> difficult than SD channels,  and I have not figured out why some channels
> work and some don't. I get
>
> Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock
>
> and no video on many channels in mythtv.
>
> Regards,
>
> /Fredrik
>
>
>
>
>

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

* Re: Hauppauge HVR-930C problems
  2012-01-10 19:30                     ` Mihai Dobrescu
@ 2012-01-10 19:41                       ` Mauro Carvalho Chehab
  2012-01-10 20:23                         ` Mihai Dobrescu
  2012-01-11 12:24                       ` Fredrik Lingvall
  1 sibling, 1 reply; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2012-01-10 19:41 UTC (permalink / raw)
  To: Mihai Dobrescu; +Cc: Fredrik Lingvall, linux-media

On 10-01-2012 17:30, Mihai Dobrescu wrote:
> Hello,
> 
> Just compiled the latest again, but still no difference.
> kaffeine doesn't see any source in channels dialog, two devices are in
> 'Configure Television' dialog: DRXK DVB-C - device not connected - as
> Device 1 and DRXK DVB-C DVB-T as Device 2. Concerning the last one, no
> source is selected, as I am in Romania, which is not in the list
> scan_w finds nothing.
> 
> What should I do next?

Kaffeine doesn't work with MFE tuners (at least not the version I have). 
It only sees one delivery system.

If you're using the very latest version of the driver (the one at the
media-build tree), you can use the dvb-fe-util tool to change 
the delivery system to DVB-C or to DVB-T.

The tool is now part of the v4l-utils.

You may also request a Kaffeine developer or to submit a patch for it, 
in order to add support on it to detect the frontend supported
delivery systems and to change it dynamically.

> 
> Regards, Mike.
> 
> On Tue, Jan 10, 2012 at 4:42 PM, Fredrik Lingvall
> <fredrik.lingvall@gmail.com> wrote:
>> On 12/25/11 16:56, Fredrik Lingvall wrote:
>>>
>>> On 12/18/11 10:20, Fredrik Lingvall wrote:
>>>>
>>>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> Mihai,
>>>>>
>>>>> I got some success. I did this,
>>>>>
>>>>> # cd /usr/src (for example)
>>>>>
>>>>> # git clone git://linuxtv.org/media_build.git
>>>>>
>>>>> # emerge dev-util/patchutils
>>>>> # emerge Proc-ProcessTable
>>>>>
>>>>> # cd media_build
>>>>> # ./build
>>>>> # make install
>>>>>
>>>>> Which will install the latest driver on your running kernel (just in
>>>>> case
>>>>> make sure /usr/src/linux points to your running kernel sources). Then
>>>>> reboot.
>>>>>
>>>>> You should now see that (among other) modules have loaded:
>>>>>
>>>>> # lsmod
>>>>>
>>>>> <snip>
>>>>>
>>>>> em28xx                 93528  1 em28xx_dvb
>>>>> v4l2_common             5254  1 em28xx
>>>>> videobuf_vmalloc        4167  1 em28xx
>>>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>>>
>>>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There
>>>>> were
>>>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>>>
>>>>> You can also do a dmesg -c while scanning to monitor the changes en the
>>>>> kernel log.
>>>>>
>>>>> Regards,
>>>>>
>>>>> /Fredrik
>>>>>
>>>>>
>>>>> In my case I have:
>>>>>
>>>>> lsmod |grep em2
>>>>> em28xx_dvb             12608  0
>>>>> dvb_core               76187  1 em28xx_dvb
>>>>> em28xx                 82436  1 em28xx_dvb
>>>>> v4l2_common             5087  1 em28xx
>>>>> videodev               70123  2 em28xx,v4l2_common
>>>>> videobuf_vmalloc        3783  1 em28xx
>>>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>>>> rc_core                11695  11
>>>>>
>>>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
>>>>> tveeprom               12441  1 em28xx
>>>>> i2c_core               14232  9
>>>>>
>>>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>>>>>
>>>>> yet, w_scan founds nothing.
>>>>
>>>>
>>>> I was able to scan using the "media_build" install method described above
>>>> but when trying to watch a free channel the image and sound was stuttering
>>>> severly. I have tried both MythTV and mplayer with similar results.
>>>>
>>>> I created the channel list for mplayer with:
>>>>
>>>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap >
>>>> .mplayer/channels.conf
>>>>
>>>> And, for example,  I get this output from mplayer plus a very (blocky)
>>>> stuttering image and sound:
>>>>
>>>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>>>
>>>
>>> I did some more tests with release snapshots 2011-12-13, 2011-12-21, and
>>> 2011-12-25, respectively. I did this by changing
>>>
>>> LATEST_TAR :=
>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
>>> LATEST_TAR_MD5 :=
>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>>>
>>> in linux/Makefile to the corresponding release.
>>>
>>> Results:
>>>
>>> * linux-media-2011-12-13.tar.bz2
>>>
>>> The ./build script builds the drivers cleanly, scanning works, but
>>>  watching video does not work correctly.
>>>
>>> * linux-media-2011-12-21.tar.bz2
>>>
>>> The ./build script fails at the as3645a.c file (on this machine but I can
>>> build it on two other machines using the same kernel and kernel
>>> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig etc
>>> (where I disabled stuff I don't need, eg. disabling [ ] Media Controller API
>>> (EXPERIMENTAL) ). The em28xx generate a kernel core dump though [1].
>>>
>>> * linux-media-2011-12-25.tar.bz2
>>>
>>> Same problem as 2011-12-21.
>>>
>>> Regards,
>>>
>>> /Fredrik
>>>
>>
>> Here's some more test results.
>>
>> I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I build
>> the kernel). Both
>>
>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
>>
>> and
>>
>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2
>>
>> now builds using the
>>
>> lin-tv ~ # cd /usr/src
>> lin-tv src # git clone git://linuxtv.org/media_build.git
>> lin-tv src # cd media_build
>> lin-tv media_build # ./build
>> lin-tv media_build # make install
>>
>> method. Scanning and (finally) watching video works but not flawlessly.
>>
>> I also suspect that I don't find all channels when I scan. I have scanned
>> using,
>>
>> * dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > .mplayer/channels.conf
>> * Kaffeine  (1.2.2)
>> * MythTV (0.25_pre20120103)
>>
>> respectively. Both kaffeine and mythtv reports a very low signal level (0%)
>> and an SNR of only 1%. (kaffeine). I'm not sure if the driver reports this
>> correctly though.
>>
>> Whatching live TV works on some channels but not all. HD channels seems more
>> difficult than SD channels,  and I have not figured out why some channels
>> work and some don't. I get
>>
>> Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock
>>
>> and no video on many channels in mythtv.
>>
>> Regards,
>>
>> /Fredrik
>>
>>
>>
>>
>>


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

* Re: Hauppauge HVR-930C problems
  2012-01-10 19:41                       ` Mauro Carvalho Chehab
@ 2012-01-10 20:23                         ` Mihai Dobrescu
  2012-01-10 20:35                           ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 31+ messages in thread
From: Mihai Dobrescu @ 2012-01-10 20:23 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: Fredrik Lingvall, linux-media

I can't find dvb-fe-util tool.

On Tue, Jan 10, 2012 at 9:41 PM, Mauro Carvalho Chehab
<mchehab@redhat.com> wrote:
> On 10-01-2012 17:30, Mihai Dobrescu wrote:
>> Hello,
>>
>> Just compiled the latest again, but still no difference.
>> kaffeine doesn't see any source in channels dialog, two devices are in
>> 'Configure Television' dialog: DRXK DVB-C - device not connected - as
>> Device 1 and DRXK DVB-C DVB-T as Device 2. Concerning the last one, no
>> source is selected, as I am in Romania, which is not in the list
>> scan_w finds nothing.
>>
>> What should I do next?
>
> Kaffeine doesn't work with MFE tuners (at least not the version I have).
> It only sees one delivery system.
>
> If you're using the very latest version of the driver (the one at the
> media-build tree), you can use the dvb-fe-util tool to change
> the delivery system to DVB-C or to DVB-T.
>
> The tool is now part of the v4l-utils.
>
> You may also request a Kaffeine developer or to submit a patch for it,
> in order to add support on it to detect the frontend supported
> delivery systems and to change it dynamically.
>
>>
>> Regards, Mike.
>>
>> On Tue, Jan 10, 2012 at 4:42 PM, Fredrik Lingvall
>> <fredrik.lingvall@gmail.com> wrote:
>>> On 12/25/11 16:56, Fredrik Lingvall wrote:
>>>>
>>>> On 12/18/11 10:20, Fredrik Lingvall wrote:
>>>>>
>>>>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> Mihai,
>>>>>>
>>>>>> I got some success. I did this,
>>>>>>
>>>>>> # cd /usr/src (for example)
>>>>>>
>>>>>> # git clone git://linuxtv.org/media_build.git
>>>>>>
>>>>>> # emerge dev-util/patchutils
>>>>>> # emerge Proc-ProcessTable
>>>>>>
>>>>>> # cd media_build
>>>>>> # ./build
>>>>>> # make install
>>>>>>
>>>>>> Which will install the latest driver on your running kernel (just in
>>>>>> case
>>>>>> make sure /usr/src/linux points to your running kernel sources). Then
>>>>>> reboot.
>>>>>>
>>>>>> You should now see that (among other) modules have loaded:
>>>>>>
>>>>>> # lsmod
>>>>>>
>>>>>> <snip>
>>>>>>
>>>>>> em28xx                 93528  1 em28xx_dvb
>>>>>> v4l2_common             5254  1 em28xx
>>>>>> videobuf_vmalloc        4167  1 em28xx
>>>>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>>>>
>>>>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There
>>>>>> were
>>>>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>>>>
>>>>>> You can also do a dmesg -c while scanning to monitor the changes en the
>>>>>> kernel log.
>>>>>>
>>>>>> Regards,
>>>>>>
>>>>>> /Fredrik
>>>>>>
>>>>>>
>>>>>> In my case I have:
>>>>>>
>>>>>> lsmod |grep em2
>>>>>> em28xx_dvb             12608  0
>>>>>> dvb_core               76187  1 em28xx_dvb
>>>>>> em28xx                 82436  1 em28xx_dvb
>>>>>> v4l2_common             5087  1 em28xx
>>>>>> videodev               70123  2 em28xx,v4l2_common
>>>>>> videobuf_vmalloc        3783  1 em28xx
>>>>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>>>>> rc_core                11695  11
>>>>>>
>>>>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
>>>>>> tveeprom               12441  1 em28xx
>>>>>> i2c_core               14232  9
>>>>>>
>>>>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>>>>>>
>>>>>> yet, w_scan founds nothing.
>>>>>
>>>>>
>>>>> I was able to scan using the "media_build" install method described above
>>>>> but when trying to watch a free channel the image and sound was stuttering
>>>>> severly. I have tried both MythTV and mplayer with similar results.
>>>>>
>>>>> I created the channel list for mplayer with:
>>>>>
>>>>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap >
>>>>> .mplayer/channels.conf
>>>>>
>>>>> And, for example,  I get this output from mplayer plus a very (blocky)
>>>>> stuttering image and sound:
>>>>>
>>>>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>>>>
>>>>
>>>> I did some more tests with release snapshots 2011-12-13, 2011-12-21, and
>>>> 2011-12-25, respectively. I did this by changing
>>>>
>>>> LATEST_TAR :=
>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
>>>> LATEST_TAR_MD5 :=
>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>>>>
>>>> in linux/Makefile to the corresponding release.
>>>>
>>>> Results:
>>>>
>>>> * linux-media-2011-12-13.tar.bz2
>>>>
>>>> The ./build script builds the drivers cleanly, scanning works, but
>>>>  watching video does not work correctly.
>>>>
>>>> * linux-media-2011-12-21.tar.bz2
>>>>
>>>> The ./build script fails at the as3645a.c file (on this machine but I can
>>>> build it on two other machines using the same kernel and kernel
>>>> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig etc
>>>> (where I disabled stuff I don't need, eg. disabling [ ] Media Controller API
>>>> (EXPERIMENTAL) ). The em28xx generate a kernel core dump though [1].
>>>>
>>>> * linux-media-2011-12-25.tar.bz2
>>>>
>>>> Same problem as 2011-12-21.
>>>>
>>>> Regards,
>>>>
>>>> /Fredrik
>>>>
>>>
>>> Here's some more test results.
>>>
>>> I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I build
>>> the kernel). Both
>>>
>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
>>>
>>> and
>>>
>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2
>>>
>>> now builds using the
>>>
>>> lin-tv ~ # cd /usr/src
>>> lin-tv src # git clone git://linuxtv.org/media_build.git
>>> lin-tv src # cd media_build
>>> lin-tv media_build # ./build
>>> lin-tv media_build # make install
>>>
>>> method. Scanning and (finally) watching video works but not flawlessly.
>>>
>>> I also suspect that I don't find all channels when I scan. I have scanned
>>> using,
>>>
>>> * dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > .mplayer/channels.conf
>>> * Kaffeine  (1.2.2)
>>> * MythTV (0.25_pre20120103)
>>>
>>> respectively. Both kaffeine and mythtv reports a very low signal level (0%)
>>> and an SNR of only 1%. (kaffeine). I'm not sure if the driver reports this
>>> correctly though.
>>>
>>> Whatching live TV works on some channels but not all. HD channels seems more
>>> difficult than SD channels,  and I have not figured out why some channels
>>> work and some don't. I get
>>>
>>> Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock
>>>
>>> and no video on many channels in mythtv.
>>>
>>> Regards,
>>>
>>> /Fredrik
>>>
>>>
>>>
>>>
>>>
>

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

* Re: Hauppauge HVR-930C problems
  2012-01-10 20:23                         ` Mihai Dobrescu
@ 2012-01-10 20:35                           ` Mauro Carvalho Chehab
  2012-01-11  5:28                             ` Mihai Dobrescu
  0 siblings, 1 reply; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2012-01-10 20:35 UTC (permalink / raw)
  To: Mihai Dobrescu; +Cc: Fredrik Lingvall, linux-media

On 10-01-2012 18:23, Mihai Dobrescu wrote:
> I can't find dvb-fe-util tool.

http://git.linuxtv.org/v4l-utils.git/blob/ad284d9ef6600e091515b0abd7cec64736097265:/utils/dvb/dvb-fe-tool.c

Regards,
Mauro

> 
> On Tue, Jan 10, 2012 at 9:41 PM, Mauro Carvalho Chehab
> <mchehab@redhat.com> wrote:
>> On 10-01-2012 17:30, Mihai Dobrescu wrote:
>>> Hello,
>>>
>>> Just compiled the latest again, but still no difference.
>>> kaffeine doesn't see any source in channels dialog, two devices are in
>>> 'Configure Television' dialog: DRXK DVB-C - device not connected - as
>>> Device 1 and DRXK DVB-C DVB-T as Device 2. Concerning the last one, no
>>> source is selected, as I am in Romania, which is not in the list
>>> scan_w finds nothing.
>>>
>>> What should I do next?
>>
>> Kaffeine doesn't work with MFE tuners (at least not the version I have).
>> It only sees one delivery system.
>>
>> If you're using the very latest version of the driver (the one at the
>> media-build tree), you can use the dvb-fe-util tool to change
>> the delivery system to DVB-C or to DVB-T.
>>
>> The tool is now part of the v4l-utils.
>>
>> You may also request a Kaffeine developer or to submit a patch for it,
>> in order to add support on it to detect the frontend supported
>> delivery systems and to change it dynamically.
>>
>>>
>>> Regards, Mike.
>>>
>>> On Tue, Jan 10, 2012 at 4:42 PM, Fredrik Lingvall
>>> <fredrik.lingvall@gmail.com> wrote:
>>>> On 12/25/11 16:56, Fredrik Lingvall wrote:
>>>>>
>>>>> On 12/18/11 10:20, Fredrik Lingvall wrote:
>>>>>>
>>>>>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Mihai,
>>>>>>>
>>>>>>> I got some success. I did this,
>>>>>>>
>>>>>>> # cd /usr/src (for example)
>>>>>>>
>>>>>>> # git clone git://linuxtv.org/media_build.git
>>>>>>>
>>>>>>> # emerge dev-util/patchutils
>>>>>>> # emerge Proc-ProcessTable
>>>>>>>
>>>>>>> # cd media_build
>>>>>>> # ./build
>>>>>>> # make install
>>>>>>>
>>>>>>> Which will install the latest driver on your running kernel (just in
>>>>>>> case
>>>>>>> make sure /usr/src/linux points to your running kernel sources). Then
>>>>>>> reboot.
>>>>>>>
>>>>>>> You should now see that (among other) modules have loaded:
>>>>>>>
>>>>>>> # lsmod
>>>>>>>
>>>>>>> <snip>
>>>>>>>
>>>>>>> em28xx                 93528  1 em28xx_dvb
>>>>>>> v4l2_common             5254  1 em28xx
>>>>>>> videobuf_vmalloc        4167  1 em28xx
>>>>>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>>>>>
>>>>>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There
>>>>>>> were
>>>>>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>>>>>
>>>>>>> You can also do a dmesg -c while scanning to monitor the changes en the
>>>>>>> kernel log.
>>>>>>>
>>>>>>> Regards,
>>>>>>>
>>>>>>> /Fredrik
>>>>>>>
>>>>>>>
>>>>>>> In my case I have:
>>>>>>>
>>>>>>> lsmod |grep em2
>>>>>>> em28xx_dvb             12608  0
>>>>>>> dvb_core               76187  1 em28xx_dvb
>>>>>>> em28xx                 82436  1 em28xx_dvb
>>>>>>> v4l2_common             5087  1 em28xx
>>>>>>> videodev               70123  2 em28xx,v4l2_common
>>>>>>> videobuf_vmalloc        3783  1 em28xx
>>>>>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>>>>>> rc_core                11695  11
>>>>>>>
>>>>>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
>>>>>>> tveeprom               12441  1 em28xx
>>>>>>> i2c_core               14232  9
>>>>>>>
>>>>>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>>>>>>>
>>>>>>> yet, w_scan founds nothing.
>>>>>>
>>>>>>
>>>>>> I was able to scan using the "media_build" install method described above
>>>>>> but when trying to watch a free channel the image and sound was stuttering
>>>>>> severly. I have tried both MythTV and mplayer with similar results.
>>>>>>
>>>>>> I created the channel list for mplayer with:
>>>>>>
>>>>>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap >
>>>>>> .mplayer/channels.conf
>>>>>>
>>>>>> And, for example,  I get this output from mplayer plus a very (blocky)
>>>>>> stuttering image and sound:
>>>>>>
>>>>>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>>>>>
>>>>>
>>>>> I did some more tests with release snapshots 2011-12-13, 2011-12-21, and
>>>>> 2011-12-25, respectively. I did this by changing
>>>>>
>>>>> LATEST_TAR :=
>>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
>>>>> LATEST_TAR_MD5 :=
>>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>>>>>
>>>>> in linux/Makefile to the corresponding release.
>>>>>
>>>>> Results:
>>>>>
>>>>> * linux-media-2011-12-13.tar.bz2
>>>>>
>>>>> The ./build script builds the drivers cleanly, scanning works, but
>>>>>  watching video does not work correctly.
>>>>>
>>>>> * linux-media-2011-12-21.tar.bz2
>>>>>
>>>>> The ./build script fails at the as3645a.c file (on this machine but I can
>>>>> build it on two other machines using the same kernel and kernel
>>>>> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig etc
>>>>> (where I disabled stuff I don't need, eg. disabling [ ] Media Controller API
>>>>> (EXPERIMENTAL) ). The em28xx generate a kernel core dump though [1].
>>>>>
>>>>> * linux-media-2011-12-25.tar.bz2
>>>>>
>>>>> Same problem as 2011-12-21.
>>>>>
>>>>> Regards,
>>>>>
>>>>> /Fredrik
>>>>>
>>>>
>>>> Here's some more test results.
>>>>
>>>> I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I build
>>>> the kernel). Both
>>>>
>>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
>>>>
>>>> and
>>>>
>>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2
>>>>
>>>> now builds using the
>>>>
>>>> lin-tv ~ # cd /usr/src
>>>> lin-tv src # git clone git://linuxtv.org/media_build.git
>>>> lin-tv src # cd media_build
>>>> lin-tv media_build # ./build
>>>> lin-tv media_build # make install
>>>>
>>>> method. Scanning and (finally) watching video works but not flawlessly.
>>>>
>>>> I also suspect that I don't find all channels when I scan. I have scanned
>>>> using,
>>>>
>>>> * dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > .mplayer/channels.conf
>>>> * Kaffeine  (1.2.2)
>>>> * MythTV (0.25_pre20120103)
>>>>
>>>> respectively. Both kaffeine and mythtv reports a very low signal level (0%)
>>>> and an SNR of only 1%. (kaffeine). I'm not sure if the driver reports this
>>>> correctly though.
>>>>
>>>> Whatching live TV works on some channels but not all. HD channels seems more
>>>> difficult than SD channels,  and I have not figured out why some channels
>>>> work and some don't. I get
>>>>
>>>> Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock
>>>>
>>>> and no video on many channels in mythtv.
>>>>
>>>> Regards,
>>>>
>>>> /Fredrik
>>>>
>>>>
>>>>
>>>>
>>>>
>>


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

* Re: Hauppauge HVR-930C problems
  2012-01-10 20:35                           ` Mauro Carvalho Chehab
@ 2012-01-11  5:28                             ` Mihai Dobrescu
  2012-01-11 10:53                               ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 31+ messages in thread
From: Mihai Dobrescu @ 2012-01-11  5:28 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: Fredrik Lingvall, linux-media

I've got the sources, I've successfully built everything.
Where should I expect to have the binary files after the make install?

Thank you.

On Tue, Jan 10, 2012 at 10:35 PM, Mauro Carvalho Chehab
<mchehab@redhat.com> wrote:
> On 10-01-2012 18:23, Mihai Dobrescu wrote:
>> I can't find dvb-fe-util tool.
>
> http://git.linuxtv.org/v4l-utils.git/blob/ad284d9ef6600e091515b0abd7cec64736097265:/utils/dvb/dvb-fe-tool.c
>
> Regards,
> Mauro
>
>>
>> On Tue, Jan 10, 2012 at 9:41 PM, Mauro Carvalho Chehab
>> <mchehab@redhat.com> wrote:
>>> On 10-01-2012 17:30, Mihai Dobrescu wrote:
>>>> Hello,
>>>>
>>>> Just compiled the latest again, but still no difference.
>>>> kaffeine doesn't see any source in channels dialog, two devices are in
>>>> 'Configure Television' dialog: DRXK DVB-C - device not connected - as
>>>> Device 1 and DRXK DVB-C DVB-T as Device 2. Concerning the last one, no
>>>> source is selected, as I am in Romania, which is not in the list
>>>> scan_w finds nothing.
>>>>
>>>> What should I do next?
>>>
>>> Kaffeine doesn't work with MFE tuners (at least not the version I have).
>>> It only sees one delivery system.
>>>
>>> If you're using the very latest version of the driver (the one at the
>>> media-build tree), you can use the dvb-fe-util tool to change
>>> the delivery system to DVB-C or to DVB-T.
>>>
>>> The tool is now part of the v4l-utils.
>>>
>>> You may also request a Kaffeine developer or to submit a patch for it,
>>> in order to add support on it to detect the frontend supported
>>> delivery systems and to change it dynamically.
>>>
>>>>
>>>> Regards, Mike.
>>>>
>>>> On Tue, Jan 10, 2012 at 4:42 PM, Fredrik Lingvall
>>>> <fredrik.lingvall@gmail.com> wrote:
>>>>> On 12/25/11 16:56, Fredrik Lingvall wrote:
>>>>>>
>>>>>> On 12/18/11 10:20, Fredrik Lingvall wrote:
>>>>>>>
>>>>>>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> Mihai,
>>>>>>>>
>>>>>>>> I got some success. I did this,
>>>>>>>>
>>>>>>>> # cd /usr/src (for example)
>>>>>>>>
>>>>>>>> # git clone git://linuxtv.org/media_build.git
>>>>>>>>
>>>>>>>> # emerge dev-util/patchutils
>>>>>>>> # emerge Proc-ProcessTable
>>>>>>>>
>>>>>>>> # cd media_build
>>>>>>>> # ./build
>>>>>>>> # make install
>>>>>>>>
>>>>>>>> Which will install the latest driver on your running kernel (just in
>>>>>>>> case
>>>>>>>> make sure /usr/src/linux points to your running kernel sources). Then
>>>>>>>> reboot.
>>>>>>>>
>>>>>>>> You should now see that (among other) modules have loaded:
>>>>>>>>
>>>>>>>> # lsmod
>>>>>>>>
>>>>>>>> <snip>
>>>>>>>>
>>>>>>>> em28xx                 93528  1 em28xx_dvb
>>>>>>>> v4l2_common             5254  1 em28xx
>>>>>>>> videobuf_vmalloc        4167  1 em28xx
>>>>>>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>>>>>>
>>>>>>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There
>>>>>>>> were
>>>>>>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>>>>>>
>>>>>>>> You can also do a dmesg -c while scanning to monitor the changes en the
>>>>>>>> kernel log.
>>>>>>>>
>>>>>>>> Regards,
>>>>>>>>
>>>>>>>> /Fredrik
>>>>>>>>
>>>>>>>>
>>>>>>>> In my case I have:
>>>>>>>>
>>>>>>>> lsmod |grep em2
>>>>>>>> em28xx_dvb             12608  0
>>>>>>>> dvb_core               76187  1 em28xx_dvb
>>>>>>>> em28xx                 82436  1 em28xx_dvb
>>>>>>>> v4l2_common             5087  1 em28xx
>>>>>>>> videodev               70123  2 em28xx,v4l2_common
>>>>>>>> videobuf_vmalloc        3783  1 em28xx
>>>>>>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>>>>>>> rc_core                11695  11
>>>>>>>>
>>>>>>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
>>>>>>>> tveeprom               12441  1 em28xx
>>>>>>>> i2c_core               14232  9
>>>>>>>>
>>>>>>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>>>>>>>>
>>>>>>>> yet, w_scan founds nothing.
>>>>>>>
>>>>>>>
>>>>>>> I was able to scan using the "media_build" install method described above
>>>>>>> but when trying to watch a free channel the image and sound was stuttering
>>>>>>> severly. I have tried both MythTV and mplayer with similar results.
>>>>>>>
>>>>>>> I created the channel list for mplayer with:
>>>>>>>
>>>>>>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap >
>>>>>>> .mplayer/channels.conf
>>>>>>>
>>>>>>> And, for example,  I get this output from mplayer plus a very (blocky)
>>>>>>> stuttering image and sound:
>>>>>>>
>>>>>>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>>>>>>
>>>>>>
>>>>>> I did some more tests with release snapshots 2011-12-13, 2011-12-21, and
>>>>>> 2011-12-25, respectively. I did this by changing
>>>>>>
>>>>>> LATEST_TAR :=
>>>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
>>>>>> LATEST_TAR_MD5 :=
>>>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>>>>>>
>>>>>> in linux/Makefile to the corresponding release.
>>>>>>
>>>>>> Results:
>>>>>>
>>>>>> * linux-media-2011-12-13.tar.bz2
>>>>>>
>>>>>> The ./build script builds the drivers cleanly, scanning works, but
>>>>>>  watching video does not work correctly.
>>>>>>
>>>>>> * linux-media-2011-12-21.tar.bz2
>>>>>>
>>>>>> The ./build script fails at the as3645a.c file (on this machine but I can
>>>>>> build it on two other machines using the same kernel and kernel
>>>>>> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig etc
>>>>>> (where I disabled stuff I don't need, eg. disabling [ ] Media Controller API
>>>>>> (EXPERIMENTAL) ). The em28xx generate a kernel core dump though [1].
>>>>>>
>>>>>> * linux-media-2011-12-25.tar.bz2
>>>>>>
>>>>>> Same problem as 2011-12-21.
>>>>>>
>>>>>> Regards,
>>>>>>
>>>>>> /Fredrik
>>>>>>
>>>>>
>>>>> Here's some more test results.
>>>>>
>>>>> I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I build
>>>>> the kernel). Both
>>>>>
>>>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
>>>>>
>>>>> and
>>>>>
>>>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2
>>>>>
>>>>> now builds using the
>>>>>
>>>>> lin-tv ~ # cd /usr/src
>>>>> lin-tv src # git clone git://linuxtv.org/media_build.git
>>>>> lin-tv src # cd media_build
>>>>> lin-tv media_build # ./build
>>>>> lin-tv media_build # make install
>>>>>
>>>>> method. Scanning and (finally) watching video works but not flawlessly.
>>>>>
>>>>> I also suspect that I don't find all channels when I scan. I have scanned
>>>>> using,
>>>>>
>>>>> * dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > .mplayer/channels.conf
>>>>> * Kaffeine  (1.2.2)
>>>>> * MythTV (0.25_pre20120103)
>>>>>
>>>>> respectively. Both kaffeine and mythtv reports a very low signal level (0%)
>>>>> and an SNR of only 1%. (kaffeine). I'm not sure if the driver reports this
>>>>> correctly though.
>>>>>
>>>>> Whatching live TV works on some channels but not all. HD channels seems more
>>>>> difficult than SD channels,  and I have not figured out why some channels
>>>>> work and some don't. I get
>>>>>
>>>>> Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock
>>>>>
>>>>> and no video on many channels in mythtv.
>>>>>
>>>>> Regards,
>>>>>
>>>>> /Fredrik
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>
>

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

* Re: Hauppauge HVR-930C problems
  2012-01-10 14:42                   ` Fredrik Lingvall
  2012-01-10 19:30                     ` Mihai Dobrescu
@ 2012-01-11  9:21                     ` Fredrik Lingvall
  1 sibling, 0 replies; 31+ messages in thread
From: Fredrik Lingvall @ 2012-01-11  9:21 UTC (permalink / raw)
  To: linux-media; +Cc: Mihai Dobrescu, Mauro Carvalho Chehab

On 01/10/12 15:42, Fredrik Lingvall wrote:
> On 12/25/11 16:56, Fredrik Lingvall wrote:
>> On 12/18/11 10:20, Fredrik Lingvall wrote:
>>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>>
>>>>
>>>>
>>>> Mihai,
>>>>
>>>> I got some success. I did this,
>>>>
>>>> # cd /usr/src (for example)
>>>>
>>>> # git clone git://linuxtv.org/media_build.git
>>>>
>>>> # emerge dev-util/patchutils
>>>> # emerge Proc-ProcessTable
>>>>
>>>> # cd media_build
>>>> # ./build
>>>> # make install
>>>>
>>>> Which will install the latest driver on your running kernel (just 
>>>> in case
>>>> make sure /usr/src/linux points to your running kernel sources). Then
>>>> reboot.
>>>>
>>>> You should now see that (among other) modules have loaded:
>>>>
>>>> # lsmod
>>>>
>>>> <snip>
>>>>
>>>> em28xx                 93528  1 em28xx_dvb
>>>> v4l2_common             5254  1 em28xx
>>>> videobuf_vmalloc        4167  1 em28xx
>>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>>
>>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. 
>>>> There were
>>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>>
>>>> You can also do a dmesg -c while scanning to monitor the changes en 
>>>> the
>>>> kernel log.
>>>>
>>>> Regards,
>>>>
>>>> /Fredrik
>>>>
>>>>
>>>> In my case I have:
>>>>
>>>> lsmod |grep em2
>>>> em28xx_dvb             12608  0
>>>> dvb_core               76187  1 em28xx_dvb
>>>> em28xx                 82436  1 em28xx_dvb
>>>> v4l2_common             5087  1 em28xx
>>>> videodev               70123  2 em28xx,v4l2_common
>>>> videobuf_vmalloc        3783  1 em28xx
>>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>>> rc_core                11695  11
>>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder 
>>>>
>>>> tveeprom               12441  1 em28xx
>>>> i2c_core               14232  9
>>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801 
>>>>
>>>>
>>>> yet, w_scan founds nothing.
>>>
>>> I was able to scan using the "media_build" install method described 
>>> above but when trying to watch a free channel the image and sound 
>>> was stuttering severly. I have tried both MythTV and mplayer with 
>>> similar results.
>>>
>>> I created the channel list for mplayer with:
>>>
>>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap > 
>>> .mplayer/channels.conf
>>>
>>> And, for example,  I get this output from mplayer plus a very 
>>> (blocky) stuttering image and sound:
>>>
>>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>>
>>
>> I did some more tests with release snapshots 2011-12-13, 2011-12-21, 
>> and 2011-12-25, respectively. I did this by changing
>>
>> LATEST_TAR := 
>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
>> LATEST_TAR_MD5 := 
>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>>
>> in linux/Makefile to the corresponding release.
>>
>> Results:
>>
>> * linux-media-2011-12-13.tar.bz2
>>
>> The ./build script builds the drivers cleanly, scanning works, but  
>> watching video does not work correctly.
>>
>> * linux-media-2011-12-21.tar.bz2
>>
>> The ./build script fails at the as3645a.c file (on this machine but I 
>> can build it on two other machines using the same kernel and kernel 
>> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig 
>> etc (where I disabled stuff I don't need, eg. disabling [ ] Media 
>> Controller API (EXPERIMENTAL) ). The em28xx generate a kernel core 
>> dump though [1].
>>
>> * linux-media-2011-12-25.tar.bz2
>>
>> Same problem as 2011-12-21.
>>
>> Regards,
>>
>> /Fredrik
>>
>
> Here's some more test results.
>
> I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I 
> build the kernel). Both
>
> http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
>
> and
>
> http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2
>
> now builds using the
>
> lin-tv ~ # cd /usr/src
> lin-tv src # git clone git://linuxtv.org/media_build.git
> lin-tv src # cd media_build
> lin-tv media_build # ./build
> lin-tv media_build # make install
>
> method. Scanning and (finally) watching video works but not flawlessly.
>
> I also suspect that I don't find all channels when I scan. I have 
> scanned using,
>
> * dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > 
> .mplayer/channels.conf
> * Kaffeine  (1.2.2)
> * MythTV (0.25_pre20120103)
>
> respectively. Both kaffeine and mythtv reports a very low signal level 
> (0%) and an SNR of only 1%. (kaffeine). I'm not sure if the driver 
> reports this correctly though.
>
> Whatching live TV works on some channels but not all. HD channels 
> seems more difficult than SD channels,  and I have not figured out why 
> some channels work and some don't. I get
>
> Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock
>
> and no video on many channels in mythtv.
>
> Regards,
>
> /Fredrik
>

Tried the

http://linuxtv.org/downloads/drivers/linux-media-2012-01-11.tar.bz2

release and the scan setting now looks different in MythTV  (it has more 
parameters) and dvbscan fails (mythtv scanning fails too):

lin-tv ~ # dvbscan -xo -fc /usr/share/dvb/dvb-c/no-Oslo-Get
scanning /usr/share/dvb/dvb-c/no-Oslo-Get
using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
initial transponder 241000000 6900000 0 5
initial transponder 272000000 6900000 0 5
initial transponder 280000000 6900000 0 5
initial transponder 290000000 6900000 0 5
initial transponder 298000000 6900000 0 5
initial transponder 306000000 6900000 0 5
initial transponder 314000000 6900000 0 5
initial transponder 322000000 6900000 0 5
initial transponder 330000000 6900000 0 5
initial transponder 338000000 6900000 0 5
initial transponder 346000000 6900000 0 5
initial transponder 354000000 6900000 0 5
initial transponder 362000000 6900000 0 5
initial transponder 370000000 6900000 0 5
initial transponder 378000000 6900000 0 5
initial transponder 386000000 6900000 0 5
initial transponder 394000000 6900000 0 5
initial transponder 410000000 6900000 0 5
initial transponder 442000000 6952000 0 5
initial transponder 482000000 6900000 0 5
initial transponder 498000000 6900000 0 5
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
WARNING: frontend type (OFDM) is not compatible with requested tuning 
type (QAM)
ERROR: initial tuning failed
dumping lists (0 services)
Done.
lin-tv ~ #


/Fredrik


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

* Re: Hauppauge HVR-930C problems
  2012-01-11  5:28                             ` Mihai Dobrescu
@ 2012-01-11 10:53                               ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2012-01-11 10:53 UTC (permalink / raw)
  To: Mihai Dobrescu; +Cc: Fredrik Lingvall, linux-media

On 11-01-2012 03:28, Mihai Dobrescu wrote:
> I've got the sources, I've successfully built everything.
> Where should I expect to have the binary files after the make install?

By default, make install puts everything inside /usr/local.

So, the binaries should be at /usr/local/bin.

Regards,
Mauro
> 
> Thank you.
> 
> On Tue, Jan 10, 2012 at 10:35 PM, Mauro Carvalho Chehab
> <mchehab@redhat.com> wrote:
>> On 10-01-2012 18:23, Mihai Dobrescu wrote:
>>> I can't find dvb-fe-util tool.
>>
>> http://git.linuxtv.org/v4l-utils.git/blob/ad284d9ef6600e091515b0abd7cec64736097265:/utils/dvb/dvb-fe-tool.c
>>
>> Regards,
>> Mauro
>>
>>>
>>> On Tue, Jan 10, 2012 at 9:41 PM, Mauro Carvalho Chehab
>>> <mchehab@redhat.com> wrote:
>>>> On 10-01-2012 17:30, Mihai Dobrescu wrote:
>>>>> Hello,
>>>>>
>>>>> Just compiled the latest again, but still no difference.
>>>>> kaffeine doesn't see any source in channels dialog, two devices are in
>>>>> 'Configure Television' dialog: DRXK DVB-C - device not connected - as
>>>>> Device 1 and DRXK DVB-C DVB-T as Device 2. Concerning the last one, no
>>>>> source is selected, as I am in Romania, which is not in the list
>>>>> scan_w finds nothing.
>>>>>
>>>>> What should I do next?
>>>>
>>>> Kaffeine doesn't work with MFE tuners (at least not the version I have).
>>>> It only sees one delivery system.
>>>>
>>>> If you're using the very latest version of the driver (the one at the
>>>> media-build tree), you can use the dvb-fe-util tool to change
>>>> the delivery system to DVB-C or to DVB-T.
>>>>
>>>> The tool is now part of the v4l-utils.
>>>>
>>>> You may also request a Kaffeine developer or to submit a patch for it,
>>>> in order to add support on it to detect the frontend supported
>>>> delivery systems and to change it dynamically.
>>>>
>>>>>
>>>>> Regards, Mike.
>>>>>
>>>>> On Tue, Jan 10, 2012 at 4:42 PM, Fredrik Lingvall
>>>>> <fredrik.lingvall@gmail.com> wrote:
>>>>>> On 12/25/11 16:56, Fredrik Lingvall wrote:
>>>>>>>
>>>>>>> On 12/18/11 10:20, Fredrik Lingvall wrote:
>>>>>>>>
>>>>>>>> On 12/17/11 20:53, Mihai Dobrescu wrote:
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Mihai,
>>>>>>>>>
>>>>>>>>> I got some success. I did this,
>>>>>>>>>
>>>>>>>>> # cd /usr/src (for example)
>>>>>>>>>
>>>>>>>>> # git clone git://linuxtv.org/media_build.git
>>>>>>>>>
>>>>>>>>> # emerge dev-util/patchutils
>>>>>>>>> # emerge Proc-ProcessTable
>>>>>>>>>
>>>>>>>>> # cd media_build
>>>>>>>>> # ./build
>>>>>>>>> # make install
>>>>>>>>>
>>>>>>>>> Which will install the latest driver on your running kernel (just in
>>>>>>>>> case
>>>>>>>>> make sure /usr/src/linux points to your running kernel sources). Then
>>>>>>>>> reboot.
>>>>>>>>>
>>>>>>>>> You should now see that (among other) modules have loaded:
>>>>>>>>>
>>>>>>>>> # lsmod
>>>>>>>>>
>>>>>>>>> <snip>
>>>>>>>>>
>>>>>>>>> em28xx                 93528  1 em28xx_dvb
>>>>>>>>> v4l2_common             5254  1 em28xx
>>>>>>>>> videobuf_vmalloc        4167  1 em28xx
>>>>>>>>> videobuf_core          15151  2 em28xx,videobuf_vmalloc
>>>>>>>>>
>>>>>>>>> Then try w_scan and dvbscan etc. I got mythtv to scan too now. There
>>>>>>>>> were
>>>>>>>>> some warnings and timeouts and I'm not sure if this is normal or not.
>>>>>>>>>
>>>>>>>>> You can also do a dmesg -c while scanning to monitor the changes en the
>>>>>>>>> kernel log.
>>>>>>>>>
>>>>>>>>> Regards,
>>>>>>>>>
>>>>>>>>> /Fredrik
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> In my case I have:
>>>>>>>>>
>>>>>>>>> lsmod |grep em2
>>>>>>>>> em28xx_dvb             12608  0
>>>>>>>>> dvb_core               76187  1 em28xx_dvb
>>>>>>>>> em28xx                 82436  1 em28xx_dvb
>>>>>>>>> v4l2_common             5087  1 em28xx
>>>>>>>>> videodev               70123  2 em28xx,v4l2_common
>>>>>>>>> videobuf_vmalloc        3783  1 em28xx
>>>>>>>>> videobuf_core          12991  2 em28xx,videobuf_vmalloc
>>>>>>>>> rc_core                11695  11
>>>>>>>>>
>>>>>>>>> rc_hauppauge,ir_lirc_codec,ir_mce_kbd_decoder,ir_sanyo_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,em28xx,ir_nec_decoder
>>>>>>>>> tveeprom               12441  1 em28xx
>>>>>>>>> i2c_core               14232  9
>>>>>>>>>
>>>>>>>>> xc5000,drxk,em28xx_dvb,em28xx,v4l2_common,videodev,tveeprom,nvidia,i2c_i801
>>>>>>>>>
>>>>>>>>> yet, w_scan founds nothing.
>>>>>>>>
>>>>>>>>
>>>>>>>> I was able to scan using the "media_build" install method described above
>>>>>>>> but when trying to watch a free channel the image and sound was stuttering
>>>>>>>> severly. I have tried both MythTV and mplayer with similar results.
>>>>>>>>
>>>>>>>> I created the channel list for mplayer with:
>>>>>>>>
>>>>>>>> lintv ~ # dvbscan -x0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get -o zap >
>>>>>>>> .mplayer/channels.conf
>>>>>>>>
>>>>>>>> And, for example,  I get this output from mplayer plus a very (blocky)
>>>>>>>> stuttering image and sound:
>>>>>>>>
>>>>>>>> lin-tv ~ # mplayer dvb://1@"TV8 Oslo" -ao jack
>>>>>>>>
>>>>>>>
>>>>>>> I did some more tests with release snapshots 2011-12-13, 2011-12-21, and
>>>>>>> 2011-12-25, respectively. I did this by changing
>>>>>>>
>>>>>>> LATEST_TAR :=
>>>>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
>>>>>>> LATEST_TAR_MD5 :=
>>>>>>> http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5
>>>>>>>
>>>>>>> in linux/Makefile to the corresponding release.
>>>>>>>
>>>>>>> Results:
>>>>>>>
>>>>>>> * linux-media-2011-12-13.tar.bz2
>>>>>>>
>>>>>>> The ./build script builds the drivers cleanly, scanning works, but
>>>>>>>  watching video does not work correctly.
>>>>>>>
>>>>>>> * linux-media-2011-12-21.tar.bz2
>>>>>>>
>>>>>>> The ./build script fails at the as3645a.c file (on this machine but I can
>>>>>>> build it on two other machines using the same kernel and kernel
>>>>>>> 2.6.39-gentoo-r3, respectively). I can build it with make menuconfig etc
>>>>>>> (where I disabled stuff I don't need, eg. disabling [ ] Media Controller API
>>>>>>> (EXPERIMENTAL) ). The em28xx generate a kernel core dump though [1].
>>>>>>>
>>>>>>> * linux-media-2011-12-25.tar.bz2
>>>>>>>
>>>>>>> Same problem as 2011-12-21.
>>>>>>>
>>>>>>> Regards,
>>>>>>>
>>>>>>> /Fredrik
>>>>>>>
>>>>>>
>>>>>> Here's some more test results.
>>>>>>
>>>>>> I have upgraded the kernel to 3.1.6-gentoo (where I enabled DVB when I build
>>>>>> the kernel). Both
>>>>>>
>>>>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
>>>>>>
>>>>>> and
>>>>>>
>>>>>> http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2
>>>>>>
>>>>>> now builds using the
>>>>>>
>>>>>> lin-tv ~ # cd /usr/src
>>>>>> lin-tv src # git clone git://linuxtv.org/media_build.git
>>>>>> lin-tv src # cd media_build
>>>>>> lin-tv media_build # ./build
>>>>>> lin-tv media_build # make install
>>>>>>
>>>>>> method. Scanning and (finally) watching video works but not flawlessly.
>>>>>>
>>>>>> I also suspect that I don't find all channels when I scan. I have scanned
>>>>>> using,
>>>>>>
>>>>>> * dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get > .mplayer/channels.conf
>>>>>> * Kaffeine  (1.2.2)
>>>>>> * MythTV (0.25_pre20120103)
>>>>>>
>>>>>> respectively. Both kaffeine and mythtv reports a very low signal level (0%)
>>>>>> and an SNR of only 1%. (kaffeine). I'm not sure if the driver reports this
>>>>>> correctly though.
>>>>>>
>>>>>> Whatching live TV works on some channels but not all. HD channels seems more
>>>>>> difficult than SD channels,  and I have not figured out why some channels
>>>>>> work and some don't. I get
>>>>>>
>>>>>> Signal 0% | S/N 2.6dB | BE 0 | (_L_S) Partial Lock
>>>>>>
>>>>>> and no video on many channels in mythtv.
>>>>>>
>>>>>> Regards,
>>>>>>
>>>>>> /Fredrik
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>
>>


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

* Re: Hauppauge HVR-930C problems
  2012-01-10 19:30                     ` Mihai Dobrescu
  2012-01-10 19:41                       ` Mauro Carvalho Chehab
@ 2012-01-11 12:24                       ` Fredrik Lingvall
  1 sibling, 0 replies; 31+ messages in thread
From: Fredrik Lingvall @ 2012-01-11 12:24 UTC (permalink / raw)
  To: Mihai Dobrescu; +Cc: linux-media, Mauro Carvalho Chehab

On 01/10/12 20:30, Mihai Dobrescu wrote:
> Hello,
>
> Just compiled the latest again, but still no difference.
> kaffeine doesn't see any source in channels dialog, two devices are in
> 'Configure Television' dialog: DRXK DVB-C - device not connected - as
> Device 1 and DRXK DVB-C DVB-T as Device 2. Concerning the last one, no
> source is selected, as I am in Romania, which is not in the list
> scan_w finds nothing.
>
> What should I do next?
>
> Regards, Mike.

Mike,

I did some more w_scan and dvbscan tests with the last three releases, 
that is,

http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2,
http://linuxtv.org/downloads/drivers/linux-media-2012-01-08.tar.bz2,
and
http://linuxtv.org/downloads/drivers/linux-media-2012-01-11.tar.bz2

respectively. Using 2012-01-11 scanning don't work and using 2012-01-08 
scanning sort-of works but I need to use 2011-01-07 first, unload it, 
install 2011-01-08, load it (without rebooting) and then I can scan with 
2011-01-08.

w_scan finds significantly fewer channels with the default settings [1] 
than dvbscan [2]. However, I discovered that if I increase the filter 
timout for w_scan then I find much more channels. Try something like,

lin-tv media_build # w_scan -fc -t 3 -Q 1 -S 0 -c NO

The -t, -Q and -S parameters are so called "expert" paramaters (check 
the w_scan man page). Leave out the -Q and -S parameters if you don't 
know the symbol rate and modulation type.

To test it do something like:

lin-tv ~ # cd /usr/src
lin-tv src # git clone git://linuxtv.org/media_build.git
lin-tv src # cd media_build

Then edit the linux/Makefile and change

LATEST_TAR := 
http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2
LATEST_TAR_MD5 := 
http://linuxtv.org/downloads/drivers/linux-media-LATEST.tar.bz2.md5

to

LATEST_TAR := 
http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2
LATEST_TAR_MD5 := 
http://linuxtv.org/downloads/drivers/linux-media-2012-01-07.tar.bz2.md5

Then build, install, and reload the drivers.

lin-tv media_build # ./build
lin-tv media_build # make unload
lin-tv media_build # make install
lin-tv media_build # make load

You can also try scanning with MythTV. You only need a starting freq 
(and perhaps modulation type, for example I use QAM256). If you have a 
PVR-decoder, maybe you can find the freq. etc info there?

/Fredrik

[1]

lin-tv media_build # w_scan -fc -c NO
w_scan version 20111011 (compiled for DVB API 5.2)
using settings for NORWAY
DVB cable
DVB-C
frontend_type DVB-C, channellist 7
output format vdr-1.6
WARNING: could not guess your codepage. Falling back to 'UTF-8'
output charset 'UTF-8', use -C <charset> to override
Info: using DVB adapter auto detection.
         /dev/dvb/adapter0/frontend0 -> DVB-C "DRXK DVB-C DVB-T": good :-)
Using DVB-C frontend (adapter /dev/dvb/adapter0/frontend0)
-_-_-_-_ Getting frontend capabilities-_-_-_-_
Using DVB API 5.5
frontend 'DRXK DVB-C DVB-T' supports
INVERSION_AUTO
QAM_AUTO not supported, trying QAM_64 QAM_256.
FEC_AUTO
FREQ (47.00MHz ... 865.00MHz)
SRATE (0.870MBd ... 11.700MBd)
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
searching QAM64...
73000: sr6900 (time: 00:00) sr6875 (time: 00:03)
81000: sr6900 (time: 00:05) sr6875 (time: 00:08)
113000: sr6900 (time: 00:10) sr6875 (time: 00:13)
121000: sr6900 (time: 00:15) sr6875 (time: 00:18)
129000: sr6900 (time: 00:20) sr6875 (time: 00:23)
137000: sr6900 (time: 00:26) sr6875 (time: 00:28)
145000: sr6900 (time: 00:31) sr6875 (time: 00:33)
153000: sr6900 (time: 00:36) sr6875 (time: 00:38)
161000: sr6900 (time: 00:41) sr6875 (time: 00:43)
169000: sr6900 (time: 00:46) sr6875 (time: 00:48)
314000: sr6900 (time: 00:51) sr6875 (time: 00:53)
322000: sr6900 (time: 00:56) sr6875 (time: 00:59)

<snip>

858000: sr6900 (time: 06:36) sr6875 (time: 06:39)
searching QAM256...
73000: sr6900 (time: 06:41) sr6875 (time: 06:44)
81000: sr6900 (time: 06:47) sr6875 (time: 06:49)
113000: sr6900 (time: 06:52) sr6875 (time: 06:54)
121000: sr6900 (time: 06:57) sr6875 (time: 06:59)
129000: sr6900 (time: 07:02) sr6875 (time: 07:04)
137000: sr6900 (time: 07:07) sr6875 (time: 07:09)
145000: sr6900 (time: 07:12) sr6875 (time: 07:15)
153000: sr6900 (time: 07:17) sr6875 (time: 07:20)
161000: sr6900 (time: 07:22) sr6875 (time: 07:25)
169000: sr6900 (time: 07:27) sr6875 (time: 07:30)
314000: sr6900 (time: 07:32) (time: 07:33)
sr6875 (time: 07:34)
322000: sr6900 (time: 07:37) (time: 07:38)
sr6875 (time: 07:39)
330000: sr6900 (time: 07:42) (time: 07:43)
sr6875 (time: 07:44)
338000: sr6900 (time: 07:46) (time: 07:48)
sr6875 (time: 07:49)
346000: sr6900 (time: 07:51) (time: 07:52)
sr6875 (time: 07:53)
354000: sr6900 (time: 07:56) (time: 07:57)
sr6875 (time: 07:58)
362000: sr6900 (time: 08:01) (time: 08:02)
sr6875 (time: 08:03)
370000: sr6900 (time: 08:05) (time: 08:06)
sr6875 (time: 08:07)
378000: sr6900 (time: 08:10) (time: 08:11)
sr6875 (time: 08:12)
386000: sr6900 (time: 08:15) (time: 08:16)
sr6875 (time: 08:17)
394000: sr6900 (time: 08:19) sr6875 (time: 08:22)
402000: sr6900 (time: 08:25) sr6875 (time: 08:27)
410000: sr6900 (time: 08:30) sr6875 (time: 08:32)
418000: sr6900 (time: 08:35) sr6875 (time: 08:37)
426000: sr6900 (time: 08:40) sr6875 (time: 08:42)
434000: sr6900 (time: 08:45) sr6875 (time: 08:47)
442000: sr6900 (time: 08:50) sr6875 (time: 08:52)
450000: sr6900 (time: 08:55) sr6875 (time: 08:58)
458000: sr6900 (time: 09:00) sr6875 (time: 09:03)
466000: sr6900 (time: 09:05) sr6875 (time: 09:08)
474000: sr6900 (time: 09:10) sr6875 (time: 09:13)
482000: sr6900 (time: 09:15) sr6875 (time: 09:18)
490000: sr6900 (time: 09:20) sr6875 (time: 09:23)
498000: sr6900 (time: 09:26) sr6875 (time: 09:28)
506000: sr6900 (time: 09:31) sr6875 (time: 09:33)
514000: sr6900 (time: 09:36) sr6875 (time: 09:38)
522000: sr6900 (time: 09:41) sr6875 (time: 09:43)
530000: sr6900 (time: 09:46) sr6875 (time: 09:48)
538000: sr6900 (time: 09:51) sr6875 (time: 09:53)
546000: sr6900 (time: 09:56) sr6875 (time: 09:59)
554000: sr6900 (time: 10:01) sr6875 (time: 10:04)
562000: sr6900 (time: 10:06) sr6875 (time: 10:09)
570000: sr6900 (time: 10:11) sr6875 (time: 10:14)
578000: sr6900 (time: 10:16) sr6875 (time: 10:19)
586000: sr6900 (time: 10:21) sr6875 (time: 10:24)
594000: sr6900 (time: 10:26) sr6875 (time: 10:29)
602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
         QAM_256  f = 602000 kHz S6900C999
WARNING: section too short: network_id == 0x0056, section_length == 876, 
descriptors_loop_len == 874
610000: sr6900 (time: 10:44) sr6875 (time: 10:47)
618000: sr6900 (time: 10:49) sr6875 (time: 10:52)
626000: sr6900 (time: 10:54) sr6875 (time: 10:57)
634000: sr6900 (time: 11:00) sr6875 (time: 11:02)
642000: sr6900 (time: 11:05) sr6875 (time: 11:07)
650000: sr6900 (time: 11:10) sr6875 (time: 11:12)
658000: sr6900 (time: 11:15) sr6875 (time: 11:17)
666000: sr6900 (time: 11:20) sr6875 (time: 11:22)
674000: sr6900 (time: 11:25) sr6875 (time: 11:27)
682000: sr6900 (time: 11:30) sr6875 (time: 11:33)
690000: sr6900 (time: 11:35) sr6875 (time: 11:38)
698000: sr6900 (time: 11:40) sr6875 (time: 11:43)
706000: sr6900 (time: 11:45) sr6875 (time: 11:48)
714000: sr6900 (time: 11:50) sr6875 (time: 11:53)
722000: sr6900 (time: 11:55) sr6875 (time: 11:58)
730000: sr6900 (time: 12:00) sr6875 (time: 12:03)
738000: sr6900 (time: 12:06) sr6875 (time: 12:08)
746000: sr6900 (time: 12:11) sr6875 (time: 12:13)
754000: sr6900 (time: 12:16) sr6875 (time: 12:18)
762000: sr6900 (time: 12:21) sr6875 (time: 12:23)
770000: sr6900 (time: 12:26) sr6875 (time: 12:28)
778000: sr6900 (time: 12:31) sr6875 (time: 12:34)
786000: sr6900 (time: 12:36) sr6875 (time: 12:39)
794000: sr6900 (time: 12:41) sr6875 (time: 12:44)
802000: sr6900 (time: 12:46) sr6875 (time: 12:49)
810000: sr6900 (time: 12:51) sr6875 (time: 12:54)
818000: sr6900 (time: 12:56) sr6875 (time: 12:59)
826000: sr6900 (time: 13:01) sr6875 (time: 13:04)
834000: sr6900 (time: 13:07) sr6875 (time: 13:09)
842000: sr6900 (time: 13:12) sr6875 (time: 13:14)
850000: sr6900 (time: 13:17) sr6875 (time: 13:19)
858000: sr6900 (time: 13:22) sr6875 (time: 13:24)
tune to: QAM_256  f = 602000 kHz S6900C999
(time: 13:27)   service = CORE SI ((null))
         service = XSI_Data ((null))
         service = TV11 ((null))
         service = TV 2 Filmkanalen (Viasat)
         service = Ticket ((null))
         service = MTV NO ((null))
         service = Viasat History ((null))
         service = Viasat Sport Baltic ((null))
         service = Sjuan ((null))
         service = TV4 Film ((null))
         service = Viasat Nature East ((null))
WARNING: section too short: network_id == 0x0056, section_length == 876, 
descriptors_loop_len == 874
dumping lists (9 services)
TV11;(null):602000:M256:C:6900:6001:6002:6006:90f:6000:0:0:0
TV 2 Filmkanalen;Viasat:602000:M256:C:6900:6011:6012:6016:90f:6010:0:0:0
Ticket;(null):602000:M256:C:6900:6021:6022:0:90f:6020:0:0:0
Viasat Nature 
East;(null):602000:M256:C:6900:6031:6034,6032=cze,6035=rus,6033=eng,6036=pol:6131:90f,93e:6030:0:0:0
MTV NO;(null):602000:M256:C:6900:6041:6042:6046:90f:6040:0:0:0
Viasat 
History;(null):602000:M256:C:6900:6051:6052,6053=swe,6054=nor,6055=dan,6057=cze,6059=rus,6088=eng,6458=hun:6056:90f:6050:0:0:0
Viasat Sport 
Baltic;(null):602000:M256:C:6900:6061:6062,6063=est,6064=lav:0:90f:6060:0:0:0
Sjuan;(null):602000:M256:C:6900:6081:6082:6086:90f:6080:0:0:0
TV4 Film;(null):602000:M256:C:6900:6091:6092:6096:90f:6090:0:0:0
Done.

[2]

lin-tv media_build # dvbscan -x 0 -fc /usr/share/dvb/dvb-c/no-Oslo-Get
scanning /usr/share/dvb/dvb-c/no-Oslo-Get
using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
initial transponder 241000000 6900000 0 5
initial transponder 272000000 6900000 0 5
initial transponder 280000000 6900000 0 5
initial transponder 290000000 6900000 0 5
initial transponder 298000000 6900000 0 5
initial transponder 306000000 6900000 0 5
initial transponder 314000000 6900000 0 5
initial transponder 322000000 6900000 0 5
initial transponder 330000000 6900000 0 5
initial transponder 338000000 6900000 0 5
initial transponder 346000000 6900000 0 5
initial transponder 354000000 6900000 0 5
initial transponder 362000000 6900000 0 5
initial transponder 370000000 6900000 0 5
initial transponder 378000000 6900000 0 5
initial transponder 386000000 6900000 0 5
initial transponder 394000000 6900000 0 5
initial transponder 410000000 6900000 0 5
initial transponder 442000000 6952000 0 5
initial transponder 482000000 6900000 0 5
initial transponder 498000000 6900000 0 5
 >>> tune to: 241000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
0x0000 0x0026: pmt_pid 0x0270 Get -- CANAL9 (running)
0x0000 0x00b3: pmt_pid 0x0b40 (null) -- BBC HD (running)
0x0000 0x0c23: pmt_pid 0x01b0 (null) -- Silver HD (running)
0x0000 0x0c2c: pmt_pid 0x00d0 Get -- SVT1 HD (running)
Network Name 'Get.'
 >>> tune to: 272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0065 0x00a4: pmt_pid 0x0000 Get -- NRK1 Nordnytt (running)
0x0065 0x00a5: pmt_pid 0x0000 Get -- NRK1 Møre og Romsdal (running)
0x0065 0x00a6: pmt_pid 0x0000 Get -- NRK1 Nordland (running)
0x0065 0x00a7: pmt_pid 0x0000 Get -- TVA (running)
0x0065 0x00a8: pmt_pid 0x0000 Get -- TKTV (running)
0x0065 0x0001: pmt_pid 0x0000 Get -- NRK1 (running)
0x0065 0x0002: pmt_pid 0x0000 Get -- NRK2 (running)
0x0065 0x0003: pmt_pid 0x0000 Get -- TV2 (running)
0x0065 0x0004: pmt_pid 0x0000 Get -- TVNORGE (running)
0x0065 0x0005: pmt_pid 0x0000 Get -- TV3 (running)
0x0065 0x0018: pmt_pid 0x0190 Get -- Get Infokanal (running)
0x0065 0x006f: pmt_pid 0x0700 Get -- TV8 Asker&Bærum (running)
0x0065 0x0070: pmt_pid 0x0000 Get -- TV NORD (running)
0x0065 0x0071: pmt_pid 0x0000 Get -- TV Østfold (running)
0x0065 0x0072: pmt_pid 0x0000 Get -- TVNORGE/TV Haugaland (running)
0x0065 0x0073: pmt_pid 0x0000 Get -- TV8 Buskerud (running)
0x0065 0x0074: pmt_pid 0x0000 Get -- TVNORGE (running)
0x0065 0x0075: pmt_pid 0x0000 Get -- TVN /TV Aftenbladet (running)
0x0065 0x0078: pmt_pid 0x010a Get -- NRK1 Østafjells (running)
0x0065 0x007c: pmt_pid 0x0000 Get -- NRK1 Midtnytt (running)
0x0065 0x007d: pmt_pid 0x0000 Get -- TV Vest (running)
0x0065 0x007e: pmt_pid 0x0000 Get -- NRK1 Vestlandsrevyen (running)
0x0065 0x007f: pmt_pid 0x0000 Get -- NRK1 Rogaland (running)
0x0065 0x0080: pmt_pid 0x0000 Get -- NRK1 Sørlandet (running)
0x0065 0x0081: pmt_pid 0x0000 Get -- TV Haugaland (running)
0x0065 0x0082: pmt_pid 0x0000 Get -- NRK1 Østfold (running)
0x0065 0x0087: pmt_pid 0x0880 Get -- TV8 Follo (running)
0x0065 0x0089: pmt_pid 0x08a0 Get -- TV8 Romerike (running)
0x0065 0x008a: pmt_pid 0x0000 Get -- 3net Infokanal (running)
0x0065 0x008b: pmt_pid 0x0000 Get -- TV8 Sunnmøre (running)
0x0065 0x0091: pmt_pid 0x0100 Get -- NRK1 (running)
0x0065 0x0092: pmt_pid 0x0930 Get -- NRK2 (running)
0x0065 0x0093: pmt_pid 0x0940 Get -- TV2 (running)
0x0065 0x0094: pmt_pid 0x0950 Get -- TVNORGE (running)
0x0065 0x0095: pmt_pid 0x0960 Get -- TV3 (running)
0x0065 0x009e: pmt_pid 0x0000 Get -- Kanal opphørt (not running)
0x0065 0x009f: pmt_pid 0x0000 Get -- TVNORGE (running)
0x0065 0x00a3: pmt_pid 0x0000 Get -- NRK1 Østnytt (running)
Network Name 'Get.'
 >>> tune to: 280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0066 0x0166: pmt_pid 0x0111 Get -- NRK Alltid klassisk (running)
0x0066 0x0169: pmt_pid 0x010e Get -- NRK P1 (running)
0x0066 0x016a: pmt_pid 0x010b Get -- Scandinavian Sat Radio (running)
0x0066 0x0195: pmt_pid 0x0112 Get -- NRK Sami Radio (running)
0x0066 0x0196: pmt_pid 0x0116 Get -- NRK Folkemusikk (running)
0x0066 0x0197: pmt_pid 0x011c Get -- NRK Jazz (running)
0x0066 0x0198: pmt_pid 0x0119 Get -- NRK Super (running)
0x0066 0x0199: pmt_pid 0x011a Get -- NRK Gull (running)
0x0066 0xffdd: pmt_pid 0x1380 Get -- EPG DL HD PVR (running)
0x0066 0xffde: pmt_pid 0x1390 Get -- EPG DL HD Zapper (running)
0x0066 0xfffc: pmt_pid 0x1f50 (null) -- (null) (running)
0x0066 0xfffd: pmt_pid 0x1f60 (null) -- (null) (running)
0x0066 0x0006: pmt_pid 0x0070 Get -- Svensk TV1 (running)
0x0066 0x0007: pmt_pid 0x0080 Get -- Svensk TV2 (running)
0x0066 0x0008: pmt_pid 0x0090 Get -- Viasat 4 (running)
0x0066 0x000a: pmt_pid 0x00b0 Get -- TV2 Zebra (running)
0x0066 0x000f: pmt_pid 0x0100 Get -- MTV (running)
0x0066 0x0049: pmt_pid 0x04a0 Get -- Euronews (running)
0x0066 0x006b: pmt_pid 0x06c0 Get -- TV2 Nyhetskanalen (running)
0x0066 0x009b: pmt_pid 0x09c0 Get -- NRK Super/NRK 3 (running)
0x0066 0x009c: pmt_pid 0x09d0 Get -- FEM (running)
0x0066 0x0162: pmt_pid 0x010f Get -- NRK P2 (running)
0x0066 0x0163: pmt_pid 0x0110 Get -- NRK Petre (running)
0x0066 0x0164: pmt_pid 0x0115 Get -- NRK Alltid Nyheter (running)
0x0066 0x0165: pmt_pid 0x0114 Get -- NRK MP3 (running)
Network Name 'Get.'
 >>> tune to: 290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0067 0x0183: pmt_pid 0x0bd6 Get -- Ultimate Urban (running)
0x0067 0x0184: pmt_pid 0x0bc3 Get -- Hits (Germany) (running)
0x0067 0x0185: pmt_pid 0x0bc2 Get -- Schlager Greats (running)
0x0067 0x0186: pmt_pid 0x0bba Get -- Hits (Spain) (running)
0x0067 0x0187: pmt_pid 0x0bc1 Get -- Christmas (running)
0x0067 0x0188: pmt_pid 0x0bd3 Get -- World Carnival (running)
0x0067 0x0189: pmt_pid 0x0bbe Get -- Hits (France) (running)
0x0067 0x018a: pmt_pid 0x0bd8 Get -- Dance Floor (running)
0x0067 0x018b: pmt_pid 0x0bbb Get -- Hits (Nordic) (running)
0x0067 0x018c: pmt_pid 0x0bbd Get -- Hits (Italy) (running)
0x0067 0x018d: pmt_pid 0x0bbc Get -- Turk Musigi (running)
0x0067 0x018e: pmt_pid 0x0bb9 Get -- Classic Rock (running)
0x0067 0x018f: pmt_pid 0x0bb8 Get -- Rock n` Roll (running)
0x0067 0x0190: pmt_pid 0x0bdc Get -- The Alternative (running)
0x0067 0x0191: pmt_pid 0x0bcf Get -- Country Stars (running)
0x0067 0x0192: pmt_pid 0x0bd9 Get -- Magnificent 70s (running)
0x0067 0x0193: pmt_pid 0x0bd4 Get -- Reggae Beats (running)
0x0067 0x019a: pmt_pid 0x0000 Get -- NRK Extra (running)
0x0067 0x000c: pmt_pid 0x00d0 Get -- Travel (running)
0x0067 0x0011: pmt_pid 0x0120 Get -- Eurosport (running)
0x0067 0x0022: pmt_pid 0x0230 Get -- NRK1 Tegnspråk (running)
0x0067 0x0038: pmt_pid 0x0390 Get -- PlayboyTV (running)
0x0067 0x0039: pmt_pid 0x03a0 Get -- Viasat Nature & Crime (running)
0x0067 0x003e: pmt_pid 0x03f0 Get -- TV5 (running)
0x0067 0x0067: pmt_pid 0x0680 Get -- MAX (running)
0x0067 0x0069: pmt_pid 0x06a0 Get -- National Geographic (running)
0x0067 0x009a: pmt_pid 0x09b0 Get -- Star!/Showtime (running)
0x0067 0x00ba: pmt_pid 0x0bb0 Get -- TV2 Bliss (running)
0x0067 0x0167: pmt_pid 0x1680 Get -- Radio Norge (running)
0x0067 0x0168: pmt_pid 0x1690 Get -- P4 (running)
0x0067 0x016c: pmt_pid 0x0bdb Get -- Harder than... (running)
0x0067 0x016d: pmt_pid 0x0bcb Get -- Class. Orchestra (running)
0x0067 0x016e: pmt_pid 0x0bca Get -- Classical Calm (running)
0x0067 0x016f: pmt_pid 0x0bdf Get -- Total Hits (running)
0x0067 0x0170: pmt_pid 0x0bde Get -- Rock Anthems (running)
0x0067 0x0171: pmt_pid 0x0bdd Get -- Dinner Party (running)
0x0067 0x0172: pmt_pid 0x0bd7 Get -- Bass, Breaks and Beats (running)
0x0067 0x0173: pmt_pid 0x0bd5 Get -- Soul Classics (running)
0x0067 0x0174: pmt_pid 0x0bda Get -- Strictly 60s (running)
0x0067 0x0175: pmt_pid 0x0bd2 Get -- Jazz Classics (running)
0x0067 0x0176: pmt_pid 0x0bc0 Get -- Under a Groove (running)
Network Name 'Get.'
0x0067 0x0177: pmt_pid 0x0bc5 Get -- Cocktail Lounge (running)
0x0067 0x0178: pmt_pid 0x0bd0 Get -- Just Chillout (running)
0x0067 0x0179: pmt_pid 0x0bce Get -- Indie Classics (running)
0x0067 0x017a: pmt_pid 0x0bbf Get -- Revival (running)
0x0067 0x017b: pmt_pid 0x0bcd Get -- Got The Blues (running)
0x0067 0x017c: pmt_pid 0x0bcc Get -- Classical Greats (running)
0x0067 0x017d: pmt_pid 0x0bd1 Get -- Cool Jazz (running)
0x0067 0x017e: pmt_pid 0x0bc9 Get -- Killer 80s (running)
0x0067 0x017f: pmt_pid 0x0bc8 Get -- Nothing But 90s (running)
0x0067 0x0180: pmt_pid 0x0bc7 Get -- Silk (running)
0x0067 0x0181: pmt_pid 0x0bc6 Get -- Freedom (running)
0x0067 0x0182: pmt_pid 0x0bc4 Get -- All Day Party (running)
 >>> tune to: 298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0068 0x000d: pmt_pid 0x00e0 Get -- CNN International (running)
0x0068 0x000e: pmt_pid 0x00f0 Get -- Cartoon/TCM (running)
0x0068 0x0012: pmt_pid 0x0130 Get -- Discovery (running)
0x0068 0x0014: pmt_pid 0x0150 Get -- Disney Channel (running)
0x0068 0x001f: pmt_pid 0x0200 Get -- Canal+ Fotball (running)
0x0068 0x0034: pmt_pid 0x0350 Get -- TV2 SPORT 2 (running)
0x0068 0x0035: pmt_pid 0x0360 Get -- TV2 SPORT 3 (running)
0x0068 0x004a: pmt_pid 0x04b0 Get -- DR 1 (running)
0x0068 0x004b: pmt_pid 0x04c0 Get -- BBC World News (running)
0x0068 0x005b: pmt_pid 0x05c0 Get -- Voice TV (running)
0x0068 0x0064: pmt_pid 0x0000 Get -- BHT1 (running)
0x0068 0x0066: pmt_pid 0x0670 Get -- TV2 Filmkanalen (running)
Network Name 'Get.'
 >>> tune to: 306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0069 0x0194: pmt_pid 0x0000 Get -- Hallo Norge (running)
0x0069 0x01a9: pmt_pid 0x1b57 Get -- NRK P1 Oslo/Akershus (running)
0x0069 0x01aa: pmt_pid 0x1b56 Get -- NRK P1 Troms (running)
0x0069 0x01ab: pmt_pid 0x1b55 Get -- NRK P1 Nordland (running)
0x0069 0x01ac: pmt_pid 0x1b54 Get -- NRK P1 Trøndelag (running)
0x0069 0x01ad: pmt_pid 0x1b53 Get -- NRK P1 Møre og Romsdal (running)
0x0069 0x01ae: pmt_pid 0x1b52 Get -- NRK P1 Sogn og Fjordane (running)
0x0069 0x01af: pmt_pid 0x1b51 Get -- NRK P1 Hordaland (running)
0x0069 0x01b0: pmt_pid 0x1b50 Get -- NRK P1 Rogaland (running)
0x0069 0x01b1: pmt_pid 0x1b4f Get -- NRK P1 Sørlandet (running)
0x0069 0x01b2: pmt_pid 0x1b4e Get -- NRK P1 Hedmark/Oppland (running)
0x0069 0x01b3: pmt_pid 0x1b4d Get -- NRK P1 Telemark (running)
0x0069 0x01b4: pmt_pid 0x1b4c Get -- NRK P1 Østfold (running)
0x0069 0x01b5: pmt_pid 0x1b4b Get -- NRK P1 Buskerud (running)
0x0069 0x01b6: pmt_pid 0x1b4a Get -- NRK P1 Vestfold (running)
0x0069 0x01b7: pmt_pid 0x1b49 Get -- NRK P1 Finnmark (running)
0x0069 0x0015: pmt_pid 0x0160 Get -- BBC entertainment (running)
0x0069 0x002d: pmt_pid 0x02e0 Get -- TV Chile (running)
0x0069 0x0036: pmt_pid 0x0370 Get -- TV2 SPORT 5 (running)
0x0069 0x0037: pmt_pid 0x0380 Get -- TV2 SPORT 4 (running)
0x0069 0x0040: pmt_pid 0x0410 Get -- Canal+ Action (running)
0x0069 0x0042: pmt_pid 0x0430 Get -- TCM (running)
0x0069 0x0043: pmt_pid 0x0440 Get -- CNBC (running)
0x0069 0x0044: pmt_pid 0x0450 Get -- Canal+ Sport 2 (running)
0x0069 0x0045: pmt_pid 0x0460 Get -- God TV (running)
0x0069 0x005f: pmt_pid 0x0600 Get -- SF Kanalen (running)
0x0069 0x0062: pmt_pid 0x0630 Get -- TV8 Oslo (running)
0x0069 0x00a0: pmt_pid 0x0a10 Get -- Viasat Sport  (running)
0x0069 0x00a1: pmt_pid 0x0a20 Get -- Viasat Motor (running)
Network Name 'Get.'
 >>> tune to: 314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006a 0x0013: pmt_pid 0x0140 Get -- Cartoon Network (running)
0x006a 0x001d: pmt_pid 0x01e0 Get -- ARY Digital (running)
0x006a 0x0021: pmt_pid 0x0220 Get -- Blue Hustler (running)
0x006a 0x002e: pmt_pid 0x02f0 Get -- TV1000 Action (running)
0x006a 0x0030: pmt_pid 0x0310 Get -- Motors TV (running)
0x006a 0x0041: pmt_pid 0x0420 Get -- Canal+ Hockey (running)
0x006a 0x0046: pmt_pid 0x0470 Get -- Fine Living Network (running)
0x006a 0x0047: pmt_pid 0x0480 Get -- Extreme Sports (running)
0x006a 0x0048: pmt_pid 0x0490 Get -- Animal Planet (running)
0x006a 0x006e: pmt_pid 0x06f0 Get -- Canal+ Family (running)
0x006a 0x0097: pmt_pid 0x0980 Get -- Viasat History (running)
0x006a 0x0098: pmt_pid 0x0990 Get -- France 24 (running)
0x006a 0x0099: pmt_pid 0x09a0 Get -- France 24 English (running)
Network Name 'Get.'
 >>> tune to: 322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006b 0x01a4: pmt_pid 0x0000 Get -- Lokal radio 1 (running)
0x006b 0x01a5: pmt_pid 0x0000 Get -- Lokal radio 2 (running)
0x006b 0x01a6: pmt_pid 0x0000 Get -- Lokal radio 3 (running)
0x006b 0x01a7: pmt_pid 0x0000 Get -- Lokal radio 4 (running)
0x006b 0x01a8: pmt_pid 0x0000 Get -- Lokal radio 5 (running)
0x006b 0x0c21: pmt_pid 0x01a0 (null) -- Canal+ First HD (running)
0x006b 0x0c26: pmt_pid 0x06b0 (null) -- Canal+ Sport HD (running)
Network Name 'Get.'
 >>> tune to: 330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0076 0x00b5: pmt_pid 0x0b60 (null) -- MTV LIVE HD (running)
0x0076 0x00bb: pmt_pid 0x0bc0 (null) -- TVN HD (running)
0x0076 0x0c24: pmt_pid 0x0000 (null) -- Luxe TV HD (running)
0x0076 0x0c28: pmt_pid 0x0860 (null) -- TV1000 HD (running)
Network Name 'Get.'
 >>> tune to: 338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0077 0x00b7: pmt_pid 0x0b80 Get -- TV2 Barcl. PL HD1 (running)
0x0077 0x00b8: pmt_pid 0x0b90 Get -- TV2 Barcl. PL HD2 (running)
0x0077 0x00b9: pmt_pid 0x0ba0 Get -- TV2 Barcl. PL HD3 (running)
Network Name 'Get.'
 >>> tune to: 346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006c 0x0020: pmt_pid 0x0210 Get -- TV2 Danmark (running)
0x006c 0x0033: pmt_pid 0x0340 Get -- TV2 SPORT (running)
0x006c 0x004e: pmt_pid 0x04f0 Get -- TV1000 Drama (running)
0x006c 0x004f: pmt_pid 0x0500 Get -- TV1000 Family (running)
0x006c 0x0050: pmt_pid 0x0510 Get -- TV1000 Nordic (running)
0x006c 0x0051: pmt_pid 0x0520 Get -- TV1000 Classic (running)
0x006c 0x0052: pmt_pid 0x0530 Get -- VH1 (running)
0x006c 0x0053: pmt_pid 0x0540 Get -- TV Finland (running)
0x006c 0x0084: pmt_pid 0x0850 Get -- Canal+ Hits (running)
0x006c 0x0088: pmt_pid 0x0890 Get -- MTV Music (running)
0x006c 0x0090: pmt_pid 0x0910 Get -- VH1 Classic (running)
0x006c 0x0096: pmt_pid 0x0970 Get -- Viasat Golf (running)
Network Name 'Get.'
 >>> tune to: 354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006d 0x006a: pmt_pid 0x06b0 Get -- Disney Junior (running)
0x006d 0x008e: pmt_pid 0x08f0 Get -- MTV Dance (running)
0x006d 0x0029: pmt_pid 0x02a0 Get -- Canal+ First (running)
0x006d 0x0032: pmt_pid 0x0330 Get -- TV1000 (running)
0x006d 0x003f: pmt_pid 0x0400 Get -- 3sat (running)
0x006d 0x004c: pmt_pid 0x04d0 Get -- Sky News (running)
0x006d 0x0054: pmt_pid 0x0550 Get -- Discovery Science (running)
0x006d 0x0055: pmt_pid 0x0560 Get -- Discovery World (running)
0x006d 0x0056: pmt_pid 0x0570 Get -- TLC Norge (running)
0x006d 0x0057: pmt_pid 0x0580 Get -- Nat Geo Wild (running)
0x006d 0x0058: pmt_pid 0x0590 Get -- Canal+ Series (running)
0x006d 0x005a: pmt_pid 0x05b0 Get -- Sony Entertainm. TV Asia (running)
0x006d 0x0063: pmt_pid 0x0640 Get -- Mezopotanya TV (running)
Network Name 'Get.'
 >>> tune to: 362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006e 0x00a2: pmt_pid 0x0a30 Get -- Spice (running)
0x006e 0x0009: pmt_pid 0x00a0 Get -- Viasat Fotball (running)
0x006e 0x0016: pmt_pid 0x0170 Get -- Showtime (running)
0x006e 0x002c: pmt_pid 0x02d0 Get -- Adult Channel (running)
0x006e 0x0031: pmt_pid 0x0320 Get -- Viasat Explorer (running)
0x006e 0x005c: pmt_pid 0x05d0 Get -- BBC lifestyle (running)
0x006e 0x005d: pmt_pid 0x05e0 Get -- Eurosport 2 (running)
0x006e 0x005e: pmt_pid 0x05f0 Get -- Disney XD (running)
0x006e 0x0060: pmt_pid 0x0610 Get -- Canal+ Sport 3 (running)
0x006e 0x0068: pmt_pid 0x0690 Get -- Zone Reality (running)
0x006e 0x006d: pmt_pid 0x06e0 Get -- Viasat Hockey (running)
0x006e 0x0077: pmt_pid 0x0780 Get -- Silver (running)
0x006e 0x007b: pmt_pid 0x07c0 Get -- ESPN Classic Sports (running)
0x006e 0x009d: pmt_pid 0x09e0 Get -- Rikstoto Direkte (running)
Network Name 'Get.'
 >>> tune to: 370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006f 0x0010: pmt_pid 0x0110 Get -- Svensk TV4 (running)
0x006f 0x0017: pmt_pid 0x0180 Get -- Star! (running)
0x006f 0x0019: pmt_pid 0x01a0 Get -- Rai Uno (running)
0x006f 0x001a: pmt_pid 0x01b0 Get -- Fashion TV (running)
0x006f 0x001b: pmt_pid 0x01c0 Get -- Das Erste (running)
0x006f 0x002b: pmt_pid 0x02c0 Get -- Bloomberg (running)
0x006f 0x004d: pmt_pid 0x04e0 Get -- Mezzo (running)
0x006f 0x0059: pmt_pid 0x05a0 Get -- Canal+ Emotion (running)
0x006f 0x0065: pmt_pid 0x0660 Get -- RTR Planeta (running)
0x006f 0x0079: pmt_pid 0x07a0 Get -- Al Jazeera International (running)
0x006f 0x0083: pmt_pid 0x0840 Get -- Canal+ Sport Extra (running)
0x006f 0x008f: pmt_pid 0x0900 Get -- MTV Hits (running)
Network Name 'Get.'
 >>> tune to: 378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0070 0x001c: pmt_pid 0x0810 Get -- TV Polonia (running)
0x0070 0x0024: pmt_pid 0x0250 Get -- Prime TV (running)
0x0070 0x0025: pmt_pid 0x0260 Get -- TVE International (running)
0x0070 0x0028: pmt_pid 0x0290 Get -- RTL (running)
0x0070 0x002a: pmt_pid 0x02b0 Get -- Zee TV (running)
0x0070 0x003a: pmt_pid 0x03b0 Get -- Nickelodeon (running)
0x0070 0x003b: pmt_pid 0x03c0 Get -- Al Jazeera (running)
0x0070 0x003d: pmt_pid 0x03e0 Get -- TRT Turk (running)
0x0070 0x0061: pmt_pid 0x0620 Get -- HRT1 (running)
0x0070 0x007a: pmt_pid 0x07b0 Get -- ESPN America (running)
0x0070 0x008c: pmt_pid 0x08d0 Get -- Visjon Norge (running)
0x0070 0x008d: pmt_pid 0x08e0 Get -- MTV ROCKS (running)
Network Name 'Get.'
 >>> tune to: 386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0071 0x0c27: pmt_pid 0x1fe0 (null) -- Discovery HD (running)
0x0071 0x0c29: pmt_pid 0x0870 (null) -- Viasat Sport HD (running)
0x0071 0x0c2a: pmt_pid 0x00b0 (null) -- Eurosport HD (running)
Network Name 'Get.'
 >>> tune to: 394000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 394000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 410000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 410000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 442000000:INVERSION_AUTO:6952000:FEC_AUTO:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 482000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 482000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 498000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 498000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 140000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 140000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x007a 0x006c: pmt_pid 0x06d0 Get -- TV 2 HD (running)
0x007a 0x00b6: pmt_pid 0x0b70 (null) -- NRK1 HD (running)
0x007a 0x00bc: pmt_pid 0x0bd0 (null) -- NRK2 HD (running)
0x007a 0x00bd: pmt_pid 0x0be0 (null) -- NRK3 HD (running)
Network Name 'Get.'
 >>> tune to: 594000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_64
WARNING: >>> tuning failed!!!
 >>> tune to: 594000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_64 (tuning 
failed)
WARNING: >>> tuning failed!!!
dumping lists (259 services)
BBC HD:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2885:0:179
SVT1 HD:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:211:0:3116
Silver HD:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:439:433:3107
CANAL9:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:625:626:38
Get Infokanal:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:401:402:24
NRK2:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2354:2355:146
TV8 Follo:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2177:2178:135
TV8 Romerike:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2209:2210:137
TV2:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2369:2370:147
TV3:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2401:2402:149
[fffe]:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65534
TV8 
Asker&Bærum:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1793:1794:111
TVNORGE:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2385:2386:148
NRK1 
Østafjells:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:512:640:120
NRK1:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:512:640:145
NRK1 Nordnytt:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:164
NRK1 Møre og 
Romsdal:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:165
NRK1 Nordland:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:166
TVA:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:167
TKTV:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:168
NRK1:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:1
NRK2:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:2
TV2:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:3
TVNORGE:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:4
TV3:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:5
TV NORD:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:112
TV Østfold:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:113
TVNORGE/TV 
Haugaland:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:114
TV8 Buskerud:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:115
TVNORGE:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:116
TVN /TV 
Aftenbladet:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:117
NRK1 Midtnytt:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:124
TV Vest:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:125
NRK1 
Vestlandsrevyen:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:126
NRK1 Rogaland:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:127
NRK1 Sørlandet:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:128
TV Haugaland:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:129
NRK1 Østfold:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:130
3net Infokanal:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:138
TV8 Sunnmøre:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:139
Kanal opphørt:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:158
TVNORGE:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:159
NRK1 Østnytt:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:163
Svensk TV1:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:113:114:6
TV2 
Nyhetskanalen:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1729:1730:107
Euronews:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1185:1190:73
[fffd]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65533
[fffc]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65532
NRK P2:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:701:354
NRK Petre:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:702:355
NRK Alltid 
Nyheter:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:707:356
NRK MP3:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:706:357
NRK Alltid 
klassisk:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:703:358
NRK P1:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:700:361
Scandinavian Sat 
Radio:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:672:362
NRK Sami Radio:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:704:405
NRK Folkemusikk:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:708:406
NRK Jazz:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:714:407
NRK Super:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:710:408
NRK Gull:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:711:409
EPG DL HD Zapper:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65502
EPG DL HD PVR:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65501
NRK Super/NRK 
3:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2498:2499:155
FEM:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2513:2514:156
Svensk TV2:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:129:130:7
Viasat 4:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:145:146:8
MTV:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:257:258:15
TV2 Zebra:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:177:178:10
NRK1 Tegnspråk:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:562:563:34
PlayboyTV:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:913:917:56
Viasat Nature & 
Crime:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:929:933:57
MAX:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1665:1666:103
TV5:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1009:1010:62
Star!/Showtime:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2481:2482:154
Radio Norge:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:5761:359
P4:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:5777:360
Harder than...:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3333:364
Class. 
Orchestra:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3349:365
Classical Calm:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3350:366
Total Hits:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3329:367
Rock Anthems:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3330:368
Dinner Party:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3331:369
Bass, Breaks and 
Beats:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3337:370
Soul Classics:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3339:371
Strictly 60s:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3334:372
Jazz Classics:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3342:373
Under a Groove:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3360:374
Cocktail Lounge:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3355:375
Just Chillout:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3344:376
Indie Classics:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3346:377
Revival:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3361:378
Got The Blues:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3347:379
Classical 
Greats:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3348:380
Cool Jazz:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3343:381
Killer 80s:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3351:382
Nothing But 90s:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3352:383
Silk:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3353:384
Freedom:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3354:385
All Day Party:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3356:386
Ultimate Urban:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3338:387
Hits (Germany):290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3357:388
Schlager Greats:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3358:389
Hits (Spain):290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3366:390
Christmas:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3359:391
World Carnival:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3341:392
Hits (France):290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3362:393
Dance Floor:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3336:394
Hits (Nordic):290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3365:395
Hits (Italy):290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3363:396
Turk Musigi:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3364:397
Classic Rock:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3367:398
Rock n` Roll:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3368:399
The Alternative:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3332:400
Country Stars:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3345:401
Magnificent 70s:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3335:402
Reggae Beats:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3340:403
TV2 Bliss:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2993:2994:186
Eurosport:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:289:293:17
National 
Geographic:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1697:1698:105
Travel:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:209:210:12
NRK Extra:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:410
TV2 SPORT 2:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:849:850:52
TV2 SPORT 3:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:865:866:53
DR 1:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1201:1202:74
Voice TV:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1473:1474:91
Canal+ Fotball:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:513:514:31
TV2 
Filmkanalen:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1649:1650:102
CNN 
International:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:225:226:13
BBC World 
News:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1217:1218:75
Discovery:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:305:307:18
Cartoon/TCM:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:241:245:14
Disney Channel:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:337:341:20
BHT1:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:100
Viasat Sport 
:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2577:2578:160
Viasat Motor:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2593:2595:161
TV2 SPORT 4:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:897:898:55
TV8 Oslo:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1585:1586:98
TV2 SPORT 5:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:881:882:54
God TV:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1121:1122:69
NRK P1 
Oslo/Akershus:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8000:425
NRK P1 Troms:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8001:426
NRK P1 Nordland:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8002:427
NRK P1 
Trøndelag:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8003:428
NRK P1 Møre og 
Romsdal:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8004:429
NRK P1 Sogn og 
Fjordane:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8005:430
NRK P1 
Hordaland:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8006:431
NRK P1 Rogaland:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8007:432
NRK P1 
Sørlandet:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8008:433
NRK P1 
Hedmark/Oppland:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8009:434
NRK P1 Telemark:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8010:435
NRK P1 Østfold:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8011:436
NRK P1 Buskerud:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8012:437
NRK P1 Vestfold:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8013:438
NRK P1 Finnmark:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8014:439
TV Chile:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:737:738:45
SF Kanalen:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1537:1538:95
TCM:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1073:1074:66
Canal+ Sport 
2:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1105:1107:68
CNBC:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1089:1090:67
BBC 
entertainment:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:353:354:21
Canal+ Action:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1041:1044:64
Hallo Norge:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:404
Cartoon Network:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:321:325:19
ARY Digital:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:482:483:29
Blue Hustler:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:545:546:33
Motors TV:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:785:786:48
Canal+ Hockey:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1057:1058:65
Canal+ 
Family:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1777:1781:110
Viasat 
History:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2433:2436:151
France 24:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2449:2450:152
France 24 
English:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2465:2466:153
Animal Planet:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1169:1170:72
TV1000 Action:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:753:757:46
Extreme 
Sports:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1153:1154:71
Fine Living 
Network:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1137:1138:70
Canal+ First 
HD:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:422:417:3105
Canal+ Sport 
HD:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1717:1716:3110
Lokal radio 1:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:420
Lokal radio 2:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:421
Lokal radio 3:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:422
Lokal radio 4:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:423
Lokal radio 5:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:424
MTV LIVE HD:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2915:2913:181
TV1000 HD:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2151:2148:3112
TVN HD:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:3011:3009:187
Luxe TV HD:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:3108
TV2 Barcl. PL 
HD2:338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2963:2961:184
TV2 Barcl. PL 
HD1:338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2947:2945:183
TV2 Barcl. PL 
HD3:338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2979:2977:185
TV2 Danmark:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:529:530:32
TV2 SPORT:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:833:834:51
MTV Music:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2194:2195:136
Viasat Golf:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2417:2421:150
Canal+ Hits:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2129:2132:132
VH1 Classic:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2322:2323:144
TV Finland:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1345:1346:83
TV1000 Nordic:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1297:1301:80
TV1000 
Classic:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1313:1317:81
TV1000 Family:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1281:1285:79
TV1000 Drama:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1265:1267:78
VH1:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1329:1330:82
Canal+ First:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:673:677:41
TV1000:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:817:821:50
Mezopotanya 
TV:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1601:1602:99
Sky News:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1234:1235:76
Disney 
Junior:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1713:1718:106
MTV Dance:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2290:2291:142
Sony Entertainm. TV 
Asia:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1458:1459:90
TLC Norge:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1393:1394:86
3sat:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1025:1027:63
Canal+ Series:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1425:1429:88
Discovery 
World:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1377:1378:85
Discovery 
Science:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1361:1362:84
Nat Geo Wild:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1409:1410:87
Showtime:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:369:370:22
Viasat Explorer:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:801:804:49
Adult Channel:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:44
Viasat 
Hockey:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1761:1764:109
Spice:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2609:2612:162
Silver:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1921:1922:119
Disney XD:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1521:1525:94
Zone Reality:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1681:1682:104
BBC lifestyle:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1489:1490:92
Canal+ Sport 
3:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1553:1555:96
ESPN Classic 
Sports:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1985:1986:123
Rikstoto 
Direkte:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2529:2530:157
Eurosport 2:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1505:1510:93
Viasat Fotball:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:161:162:9
Svensk TV4:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:273:274:16
Star!:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:385:386:23
Rai Uno:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:417:418:25
Fashion TV:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:433:435:26
Das Erste:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:449:450:27
Bloomberg:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:705:706:43
MTV Hits:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2306:2307:143
Canal+ Sport Extra:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:131
Canal+ 
Emotion:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1441:1445:89
RTR Planeta:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1633:1634:101
Mezzo:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1249:1250:77
Al Jazeera 
International:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1953:1954:121
TVE 
International:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:609:610:37
Prime TV:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:593:594:36
TV Polonia:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2065:2066:28
RTL:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:657:658:40
Zee TV:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:689:690:42
Nickelodeon:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:945:948:58
TRT Turk:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:993:994:61
MTV ROCKS:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2274:2275:141
Al Jazeera:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:961:962:59
Visjon Norge:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2257:2258:140
ESPN America:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1969:1970:122
HRT1:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1569:1570:97
Eurosport HD:386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:181:0:3114
Viasat Sport 
HD:386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2162:0:3113
Discovery HD:386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:8165:0:3111
TV 2 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1748:1745:108
NRK2 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:3028:3025:188
NRK3 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:3044:3041:189
NRK1 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2932:2929:182
Done.





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

* Re: Hauppauge HVR-930C problems
  2011-12-10 16:02                 ` Mauro Carvalho Chehab
@ 2011-12-17 17:42                   ` Fredrik Lingvall
  0 siblings, 0 replies; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-17 17:42 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On 12/10/11 17:02, Mauro Carvalho Chehab wrote:
>
>>
>> I noticed the new patches you are working with on the list. Let me 
>> know I there's something I can test?
>
>
> The patches that are pertinent are already at the main repository.
> It would be interesting if you could test it again with those patches,
> with both w_scan and scan.
>
> Regards,
> Mauro

Success (I think :-). Tested the git://linuxtv.org/media_build.git 
method using the stock Gentoo 3.0.6 kernel.

I got more channels with dvbscan (using the no-Oslo-Get profile) than 
with w_scan. There are some timeouts and warnings but that may be normal?


lin-tv ~ # w_scan -fc -c NO
w_scan version 20111011 (compiled for DVB API 5.2)
using settings for NORWAY
DVB cable
DVB-C
frontend_type DVB-C, channellist 7
output format vdr-1.6
WARNING: could not guess your codepage. Falling back to 'UTF-8'
output charset 'UTF-8', use -C <charset> to override
Info: using DVB adapter auto detection.
         /dev/dvb/adapter0/frontend0 -> DVB-C "DRXK DVB-C": good :-)
         /dev/dvb/adapter0/frontend1 -> DVB-T "DRXK DVB-T": specified 
was DVB-C -> SEARCH NEXT ONE.
Using DVB-C frontend (adapter /dev/dvb/adapter0/frontend0)
-_-_-_-_ Getting frontend capabilities-_-_-_-_
Using DVB API 5.5
frontend 'DRXK DVB-C' supports
INVERSION_AUTO
QAM_AUTO not supported, trying QAM_64 QAM_256.
FEC_AUTO
FREQ (47.00MHz ... 862.00MHz)
SRATE (0.870MBd ... 11.700MBd)
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
searching QAM64...
73000: sr6900 (time: 00:07) sr6875 (time: 00:09)
81000: sr6900 (time: 00:12) sr6875 (time: 00:14)
113000: sr6900 (time: 00:17) sr6875 (time: 00:20)
121000: sr6900 (time: 00:22) sr6875 (time: 00:25)
129000: sr6900 (time: 00:27) sr6875 (time: 00:30)
137000: sr6900 (time: 00:32) sr6875 (time: 00:35)
145000: sr6900 (time: 00:37) sr6875 (time: 00:40)
153000: sr6900 (time: 00:42) sr6875 (time: 00:45)
161000: sr6900 (time: 00:48) sr6875 (time: 00:50)
169000: sr6900 (time: 00:53) sr6875 (time: 00:55)
314000: sr6900 (time: 00:58) sr6875 (time: 01:00)
322000: sr6900 (time: 01:03) sr6875 (time: 01:05)
330000: sr6900 (time: 01:08) sr6875 (time: 01:10)
338000: sr6900 (time: 01:13) sr6875 (time: 01:15)
346000: sr6900 (time: 01:18) sr6875 (time: 01:21)
354000: sr6900 (time: 01:23) sr6875 (time: 01:26)
362000: sr6900 (time: 01:28) sr6875 (time: 01:31)
370000: sr6900 (time: 01:33) sr6875 (time: 01:36)
378000: sr6900 (time: 01:38) sr6875 (time: 01:41)
386000: sr6900 (time: 01:43) sr6875 (time: 01:46)
394000: sr6900 (time: 01:48) sr6875 (time: 01:51)
402000: sr6900 (time: 01:54) sr6875 (time: 01:56)
410000: sr6900 (time: 01:59) sr6875 (time: 02:01)
418000: sr6900 (time: 02:04) sr6875 (time: 02:06)
426000: sr6900 (time: 02:09) sr6875 (time: 02:11)
434000: sr6900 (time: 02:14) sr6875 (time: 02:16)
442000: sr6900 (time: 02:19) sr6875 (time: 02:21)
450000: sr6900 (time: 02:24) sr6875 (time: 02:27)
458000: sr6900 (time: 02:29) sr6875 (time: 02:32)
466000: sr6900 (time: 02:34) sr6875 (time: 02:37)
474000: sr6900 (time: 02:39) sr6875 (time: 02:42)
482000: sr6900 (time: 02:44) sr6875 (time: 02:47)
490000: sr6900 (time: 02:49) sr6875 (time: 02:52)
498000: sr6900 (time: 02:55) sr6875 (time: 02:57)
506000: sr6900 (time: 03:00) sr6875 (time: 03:02)
514000: sr6900 (time: 03:05) sr6875 (time: 03:07)
522000: sr6900 (time: 03:10) sr6875 (time: 03:12)
530000: sr6900 (time: 03:15) sr6875 (time: 03:17)
538000: sr6900 (time: 03:20) sr6875 (time: 03:22)
546000: sr6900 (time: 03:25) sr6875 (time: 03:28)
554000: sr6900 (time: 03:30) sr6875 (time: 03:33)
562000: sr6900 (time: 03:35) sr6875 (time: 03:38)
570000: sr6900 (time: 03:40) sr6875 (time: 03:43)
578000: sr6900 (time: 03:45) sr6875 (time: 03:48)
586000: sr6900 (time: 03:50) sr6875 (time: 03:53)
594000: sr6900 (time: 03:55) sr6875 (time: 03:58)
602000: sr6900 (time: 04:01) sr6875 (time: 04:03)
610000: sr6900 (time: 04:06) sr6875 (time: 04:08)
618000: sr6900 (time: 04:11) sr6875 (time: 04:13)
626000: sr6900 (time: 04:16) sr6875 (time: 04:18)
634000: sr6900 (time: 04:21) sr6875 (time: 04:23)
642000: sr6900 (time: 04:26) sr6875 (time: 04:29)
650000: sr6900 (time: 04:31) sr6875 (time: 04:34)
658000: sr6900 (time: 04:36) sr6875 (time: 04:39)
666000: sr6900 (time: 04:41) sr6875 (time: 04:44)
674000: sr6900 (time: 04:46) sr6875 (time: 04:49)
682000: sr6900 (time: 04:51) sr6875 (time: 04:54)
690000: sr6900 (time: 04:56) sr6875 (time: 04:59)
698000: sr6900 (time: 05:02) sr6875 (time: 05:04)
706000: sr6900 (time: 05:07) sr6875 (time: 05:09)
714000: sr6900 (time: 05:12) sr6875 (time: 05:14)
722000: sr6900 (time: 05:17) sr6875 (time: 05:19)
730000: sr6900 (time: 05:22) sr6875 (time: 05:24)
738000: sr6900 (time: 05:27) sr6875 (time: 05:29)
746000: sr6900 (time: 05:32) sr6875 (time: 05:35)
754000: sr6900 (time: 05:37) sr6875 (time: 05:40)
762000: sr6900 (time: 05:42) sr6875 (time: 05:45)
770000: sr6900 (time: 05:47) sr6875 (time: 05:50)
778000: sr6900 (time: 05:52) sr6875 (time: 05:55)
786000: sr6900 (time: 05:57) sr6875 (time: 06:00)
794000: sr6900 (time: 06:02) sr6875 (time: 06:05)
802000: sr6900 (time: 06:08) sr6875 (time: 06:10)
810000: sr6900 (time: 06:13) sr6875 (time: 06:15)
818000: sr6900 (time: 06:18) sr6875 (time: 06:20)
826000: sr6900 (time: 06:23) sr6875 (time: 06:25)
834000: sr6900 (time: 06:28) sr6875 (time: 06:30)
842000: sr6900 (time: 06:33) sr6875 (time: 06:36)
850000: sr6900 (time: 06:38) sr6875 (time: 06:41)
858000: sr6900 (time: 06:43) sr6875 (time: 06:46)
searching QAM256...
73000: sr6900 (time: 06:48) sr6875 (time: 06:51)
81000: sr6900 (time: 06:53) sr6875 (time: 06:56)
113000: sr6900 (time: 06:58) sr6875 (time: 07:01)
121000: sr6900 (time: 07:03) sr6875 (time: 07:06)
129000: sr6900 (time: 07:09) sr6875 (time: 07:11)
137000: sr6900 (time: 07:14) sr6875 (time: 07:16)
145000: sr6900 (time: 07:19) sr6875 (time: 07:21)
153000: sr6900 (time: 07:24) sr6875 (time: 07:26)
161000: sr6900 (time: 07:29) sr6875 (time: 07:31)
169000: sr6900 (time: 07:34) sr6875 (time: 07:36)
314000: sr6900 (time: 07:39) (time: 07:40)
sr6875 (time: 07:41)
322000: sr6900 (time: 07:44) (time: 07:45)
sr6875 (time: 07:46)
330000: sr6900 (time: 07:48) (time: 07:50)
sr6875 (time: 07:51)
338000: sr6900 (time: 07:53) (time: 07:54)
sr6875 (time: 07:55)
346000: sr6900 (time: 07:58) (time: 07:59)
sr6875 (time: 08:00)
354000: sr6900 (time: 08:03) (time: 08:04)
sr6875 (time: 08:05)
362000: sr6900 (time: 08:07) (time: 08:08)
sr6875 (time: 08:10)
370000: sr6900 (time: 08:12) (time: 08:13)
sr6875 (time: 08:14)
378000: sr6900 (time: 08:17) (time: 08:18)
sr6875 (time: 08:19)
386000: sr6900 (time: 08:21) (time: 08:23)
sr6875 (time: 08:24)
394000: sr6900 (time: 08:26) sr6875 (time: 08:29)
402000: sr6900 (time: 08:31) sr6875 (time: 08:34)
410000: sr6900 (time: 08:36) sr6875 (time: 08:39)
418000: sr6900 (time: 08:41) sr6875 (time: 08:44)
426000: sr6900 (time: 08:47) sr6875 (time: 08:49)
434000: sr6900 (time: 08:52) sr6875 (time: 08:54)
442000: sr6900 (time: 08:57) sr6875 (time: 08:59)
450000: sr6900 (time: 09:02) sr6875 (time: 09:04)
458000: sr6900 (time: 09:07) sr6875 (time: 09:09)
466000: sr6900 (time: 09:12) sr6875 (time: 09:14)
474000: sr6900 (time: 09:17) sr6875 (time: 09:20)
482000: sr6900 (time: 09:22) sr6875 (time: 09:25)
490000: sr6900 (time: 09:27) sr6875 (time: 09:30)
498000: sr6900 (time: 09:32) sr6875 (time: 09:35)
506000: sr6900 (time: 09:37) sr6875 (time: 09:40)
514000: sr6900 (time: 09:42) sr6875 (time: 09:45)
522000: sr6900 (time: 09:47) sr6875 (time: 09:50)
530000: sr6900 (time: 09:53) sr6875 (time: 09:55)
538000: sr6900 (time: 09:58) sr6875 (time: 10:00)
546000: sr6900 (time: 10:03) sr6875 (time: 10:05)
554000: sr6900 (time: 10:08) sr6875 (time: 10:10)
562000: sr6900 (time: 10:13) sr6875 (time: 10:15)
570000: sr6900 (time: 10:18) sr6875 (time: 10:21)
578000: sr6900 (time: 10:23) sr6875 (time: 10:26)
586000: sr6900 (time: 10:28) sr6875 (time: 10:31)
594000: sr6900 (time: 10:33) sr6875 (time: 10:36)
602000: sr6900 (time: 10:38) (time: 10:39) signal ok:
         QAM_256  f = 602000 kHz S6900C999
Info: NIT(actual) filter timeout
610000: sr6900 (time: 10:52) sr6875 (time: 10:55)
618000: sr6900 (time: 10:57) sr6875 (time: 11:00)
626000: sr6900 (time: 11:02) sr6875 (time: 11:05)
634000: sr6900 (time: 11:07) sr6875 (time: 11:10)
642000: sr6900 (time: 11:13) sr6875 (time: 11:15)
650000: sr6900 (time: 11:18) sr6875 (time: 11:20)
658000: sr6900 (time: 11:23) sr6875 (time: 11:25)
666000: sr6900 (time: 11:28) sr6875 (time: 11:30)
674000: sr6900 (time: 11:33) sr6875 (time: 11:35)
682000: sr6900 (time: 11:38) sr6875 (time: 11:40)
690000: sr6900 (time: 11:43) sr6875 (time: 11:46)
698000: sr6900 (time: 11:48) sr6875 (time: 11:51)
706000: sr6900 (time: 11:53) sr6875 (time: 11:56)
714000: sr6900 (time: 11:58) sr6875 (time: 12:01)
722000: sr6900 (time: 12:03) sr6875 (time: 12:06)
730000: sr6900 (time: 12:08) sr6875 (time: 12:11)
738000: sr6900 (time: 12:13) sr6875 (time: 12:16)
746000: sr6900 (time: 12:19) sr6875 (time: 12:21)
754000: sr6900 (time: 12:24) sr6875 (time: 12:26)
762000: sr6900 (time: 12:29) sr6875 (time: 12:31)
770000: sr6900 (time: 12:34) sr6875 (time: 12:36)
778000: sr6900 (time: 12:39) sr6875 (time: 12:41)
786000: sr6900 (time: 12:44) sr6875 (time: 12:47)
794000: sr6900 (time: 12:49) sr6875 (time: 12:52)
802000: sr6900 (time: 12:54) sr6875 (time: 12:57)
810000: sr6900 (time: 12:59) sr6875 (time: 13:02)
818000: sr6900 (time: 13:04) sr6875 (time: 13:07)
826000: sr6900 (time: 13:09) sr6875 (time: 13:12)
834000: sr6900 (time: 13:14) sr6875 (time: 13:17)
842000: sr6900 (time: 13:20) sr6875 (time: 13:22)
850000: sr6900 (time: 13:25) sr6875 (time: 13:27)
858000: sr6900 (time: 13:30) sr6875 (time: 13:32)
tune to: QAM_256  f = 602000 kHz S6900C999
(time: 13:35) WARNING: section too short: network_id == 0x0056, 
section_length == 876, descriptors_loop_len == 874
         service = CORE SI ((null))
         service = XSI_Data ((null))
         service = TV11 ((null))
         service = TV 2 Filmkanalen (Viasat)
         service = Ticket ((null))
         service = MTV NO ((null))
         service = Viasat History ((null))
         service = Viasat Sport Baltic ((null))
         service = Sjuan ((null))
         service = TV4 Film ((null))
         service = Viasat Nature East ((null))
Info: NIT(actual) filter timeout
dumping lists (9 services)
TV11;(null):602000:M256:C:6900:6001:6002:6006:90f:6000:0:0:0
TV 2 Filmkanalen;Viasat:602000:M256:C:6900:6011:6012:6016:90f:6010:0:0:0
Ticket;(null):602000:M256:C:6900:6021:6022:0:90f:6020:0:0:0
Viasat Nature 
East;(null):602000:M256:C:6900:6031:6034,6032=cze,6035=rus,6033=eng,6036=pol:6131:90f,93e:6030:0:0:0
MTV NO;(null):602000:M256:C:6900:6041:6042:6046:90f:6040:0:0:0
Viasat 
History;(null):602000:M256:C:6900:6051:6052,6053=swe,6054=nor,6055=dan,6057=cze,6059=rus,6088=eng,6458=hun:6056:90f:6050:0:0:0
Viasat Sport 
Baltic;(null):602000:M256:C:6900:6061:6062,6063=est,6064=lav:0:90f:6060:0:0:0
Sjuan;(null):602000:M256:C:6900:6081:6082:6086:90f:6080:0:0:0
TV4 Film;(null):602000:M256:C:6900:6091:6092:6096:90f:6090:0:0:0
Done.

lin-tv ~ # dvbscan -fc /usr/share/dvb/dvb-c/no-Oslo-Get
scanning /usr/share/dvb/dvb-c/no-Oslo-Get
using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
initial transponder 241000000 6900000 0 5
initial transponder 272000000 6900000 0 5
initial transponder 280000000 6900000 0 5
initial transponder 290000000 6900000 0 5
initial transponder 298000000 6900000 0 5
initial transponder 306000000 6900000 0 5
initial transponder 314000000 6900000 0 5
initial transponder 322000000 6900000 0 5
initial transponder 330000000 6900000 0 5
initial transponder 338000000 6900000 0 5
initial transponder 346000000 6900000 0 5
initial transponder 354000000 6900000 0 5
initial transponder 362000000 6900000 0 5
initial transponder 370000000 6900000 0 5
initial transponder 378000000 6900000 0 5
initial transponder 386000000 6900000 0 5
initial transponder 394000000 6900000 0 5
initial transponder 410000000 6900000 0 5
initial transponder 442000000 6952000 0 5
initial transponder 482000000 6900000 0 5
initial transponder 498000000 6900000 0 5
 >>> tune to: 241000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
0x0000 0x0026: pmt_pid 0x0270 Get -- CANAL9 (running)
0x0000 0x00b3: pmt_pid 0x0b40 (null) -- BBC HD (running)
0x0000 0x0c23: pmt_pid 0x01b0 (null) -- Silver HD (running)
0x0000 0x0c2c: pmt_pid 0x00d0 Get -- SVT1 HD (running)
WARNING: filter timeout pid 0x0010
 >>> tune to: 272000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
0x0000 0x007d: pmt_pid 0x0000 Get -- TV Vest (running)
0x0000 0x007e: pmt_pid 0x0000 Get -- NRK1 Vestlandsrevyen (running)
0x0000 0x007f: pmt_pid 0x0000 Get -- NRK1 Rogaland (running)
0x0000 0x0080: pmt_pid 0x0000 Get -- NRK1 Sørlandet (running)
0x0000 0x0081: pmt_pid 0x0000 Get -- TV Haugaland (running)
0x0000 0x0082: pmt_pid 0x0000 Get -- NRK1 Østfold (running)
0x0000 0x0087: pmt_pid 0x0880 Get -- TV8 Follo (running)
0x0000 0x0089: pmt_pid 0x08a0 Get -- TV8 Romerike (running)
0x0000 0x008a: pmt_pid 0x0000 Get -- 3net Infokanal (running)
0x0000 0x008b: pmt_pid 0x0000 Get -- TV8 Sunnmøre (running)
0x0000 0x0091: pmt_pid 0x0100 Get -- NRK1 (running)
0x0000 0x0092: pmt_pid 0x0930 Get -- NRK2 (running)
0x0000 0x0093: pmt_pid 0x0940 Get -- TV2 (running)
0x0000 0x0094: pmt_pid 0x0950 Get -- TVNORGE (running)
0x0000 0x0095: pmt_pid 0x0960 Get -- TV3 (running)
0x0000 0x009e: pmt_pid 0x0000 Get -- Kanal opphørt (not running)
0x0000 0x009f: pmt_pid 0x0000 Get -- TVNORGE (running)
0x0000 0x00a3: pmt_pid 0x0000 Get -- NRK1 Østnytt (running)
0x0000 0x00a4: pmt_pid 0x0000 Get -- NRK1 Nordnytt (running)
0x0000 0x00a5: pmt_pid 0x0000 Get -- NRK1 Møre og Romsdal (running)
0x0000 0x00a6: pmt_pid 0x0000 Get -- NRK1 Nordland (running)
0x0000 0x00a7: pmt_pid 0x0000 Get -- TVA (running)
0x0000 0x00a8: pmt_pid 0x0000 Get -- TKTV (running)
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 280000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
0x0000 0x0166: pmt_pid 0x0111 Get -- NRK Alltid klassisk (running)
0x0000 0x0169: pmt_pid 0x010e Get -- NRK P1 (running)
0x0000 0x016a: pmt_pid 0x010b Get -- Scandinavian Sat Radio (running)
0x0000 0x0195: pmt_pid 0x0112 Get -- NRK Sami Radio (running)
0x0000 0x0196: pmt_pid 0x0116 Get -- NRK Folkemusikk (running)
0x0000 0x0197: pmt_pid 0x011c Get -- NRK Jazz (running)
0x0000 0x0198: pmt_pid 0x0119 Get -- NRK Super (running)
0x0000 0x0199: pmt_pid 0x011a Get -- NRK Gull (running)
0x0000 0xffdd: pmt_pid 0x1380 Get -- EPG DL HD PVR (running)
0x0000 0xffde: pmt_pid 0x1390 Get -- EPG DL HD Zapper (running)
0x0000 0xfffc: pmt_pid 0x1f50 (null) -- (null) (running)
0x0000 0xfffd: pmt_pid 0x1f60 (null) -- (null) (running)
WARNING: filter timeout pid 0x0011
Network Name 'Get.'
WARNING: filter timeout pid 0x0010
 >>> tune to: 290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
0x0067 0x018f: pmt_pid 0x0bb8 Get -- Rock n` Roll (running)
0x0067 0x0190: pmt_pid 0x0bdc Get -- The Alternative (running)
0x0067 0x0191: pmt_pid 0x0bcf Get -- Country Stars (running)
0x0067 0x0192: pmt_pid 0x0bd9 Get -- Magnificent 70s (running)
0x0067 0x0193: pmt_pid 0x0bd4 Get -- Reggae Beats (running)
0x0067 0x019a: pmt_pid 0x0000 Get -- NRK Extra (running)
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0068 0x000d: pmt_pid 0x00e0 Get -- CNN International (running)
0x0068 0x000e: pmt_pid 0x00f0 Get -- Cartoon/TCM (running)
0x0068 0x0012: pmt_pid 0x0130 Get -- Discovery (running)
0x0068 0x0014: pmt_pid 0x0150 Get -- Disney Channel (running)
0x0068 0x001f: pmt_pid 0x0200 Get -- Canal+ Fotball (running)
0x0068 0x0034: pmt_pid 0x0350 Get -- TV2 SPORT 2 (running)
0x0068 0x0035: pmt_pid 0x0360 Get -- TV2 SPORT 3 (running)
0x0068 0x004a: pmt_pid 0x04b0 Get -- DR 1 (running)
0x0068 0x004b: pmt_pid 0x04c0 Get -- BBC World News (running)
0x0068 0x005b: pmt_pid 0x05c0 Get -- Voice TV (running)
0x0068 0x0064: pmt_pid 0x0000 Get -- BHT1 (running)
0x0068 0x0066: pmt_pid 0x0670 Get -- TV2 Filmkanalen (running)
WARNING: filter timeout pid 0x0010
 >>> tune to: 306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0069 0x0194: pmt_pid 0x0000 Get -- Hallo Norge (running)
0x0069 0x01a9: pmt_pid 0x1b57 Get -- NRK P1 Oslo/Akershus (running)
0x0069 0x01aa: pmt_pid 0x1b56 Get -- NRK P1 Troms (running)
0x0069 0x01ab: pmt_pid 0x1b55 Get -- NRK P1 Nordland (running)
0x0069 0x01ac: pmt_pid 0x1b54 Get -- NRK P1 Trøndelag (running)
0x0069 0x01ad: pmt_pid 0x1b53 Get -- NRK P1 Møre og Romsdal (running)
0x0069 0x01ae: pmt_pid 0x1b52 Get -- NRK P1 Sogn og Fjordane (running)
0x0069 0x01af: pmt_pid 0x1b51 Get -- NRK P1 Hordaland (running)
0x0069 0x01b0: pmt_pid 0x1b50 Get -- NRK P1 Rogaland (running)
0x0069 0x01b1: pmt_pid 0x1b4f Get -- NRK P1 Sørlandet (running)
0x0069 0x0015: pmt_pid 0x0160 Get -- BBC entertainment (running)
0x0069 0x002d: pmt_pid 0x02e0 Get -- TV Chile (running)
0x0069 0x0036: pmt_pid 0x0370 Get -- TV2 SPORT 5 (running)
0x0069 0x0037: pmt_pid 0x0380 Get -- TV2 SPORT 4 (running)
0x0069 0x0040: pmt_pid 0x0410 Get -- Canal+ Action (running)
0x0069 0x0042: pmt_pid 0x0430 Get -- TCM (running)
0x0069 0x0043: pmt_pid 0x0440 Get -- CNBC (running)
0x0069 0x0044: pmt_pid 0x0450 Get -- Canal+ Sport 2 (running)
0x0069 0x0045: pmt_pid 0x0460 Get -- God TV (running)
0x0069 0x005f: pmt_pid 0x0600 Get -- SF Kanalen (running)
0x0069 0x0062: pmt_pid 0x0630 Get -- TV8 Oslo (running)
0x0069 0x00a0: pmt_pid 0x0a10 Get -- Viasat Sport  (running)
0x0069 0x00a1: pmt_pid 0x0a20 Get -- Viasat Motor (running)
WARNING: filter timeout pid 0x0011
Network Name 'Get.'
WARNING: filter timeout pid 0x0010
 >>> tune to: 314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006a 0x0098: pmt_pid 0x0990 Get -- France 24 (running)
0x006a 0x0099: pmt_pid 0x09a0 Get -- France 24 English (running)
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x0077 0x00b7: pmt_pid 0x0b80 Get -- TV2 Barcl. PL HD1 (running)
0x0077 0x00b8: pmt_pid 0x0b90 Get -- TV2 Barcl. PL HD2 (running)
0x0077 0x00b9: pmt_pid 0x0ba0 Get -- TV2 Barcl. PL HD3 (running)
Network Name 'Get.'
WARNING: filter timeout pid 0x0010
 >>> tune to: 346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006c 0x0020: pmt_pid 0x0210 Get -- TV2 Danmark (running)
0x006c 0x0033: pmt_pid 0x0340 Get -- TV2 SPORT (running)
0x006c 0x004e: pmt_pid 0x04f0 Get -- TV1000 Drama (running)
0x006c 0x004f: pmt_pid 0x0500 Get -- TV1000 Family (running)
0x006c 0x0050: pmt_pid 0x0510 Get -- TV1000 Nordic (running)
0x006c 0x0051: pmt_pid 0x0520 Get -- TV1000 Classic (running)
0x006c 0x0052: pmt_pid 0x0530 Get -- VH1 (running)
0x006c 0x0053: pmt_pid 0x0540 Get -- TV Finland (running)
0x006c 0x0084: pmt_pid 0x0850 Get -- Canal+ Hits (running)
0x006c 0x0088: pmt_pid 0x0890 Get -- MTV Music (running)
0x006c 0x0090: pmt_pid 0x0910 Get -- VH1 Classic (running)
0x006c 0x0096: pmt_pid 0x0970 Get -- Viasat Golf (running)
WARNING: filter timeout pid 0x0010
 >>> tune to: 354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006d 0x006a: pmt_pid 0x06b0 Get -- Disney Junior (running)
0x006d 0x008e: pmt_pid 0x08f0 Get -- MTV Dance (running)
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x006e 0x00a2: pmt_pid 0x0a30 Get -- Spice (running)
WARNING: filter timeout pid 0x0011
Network Name 'Get.'
WARNING: filter timeout pid 0x0010
 >>> tune to: 370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 394000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 394000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 410000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 410000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 442000000:INVERSION_AUTO:6952000:FEC_AUTO:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0010
 >>> tune to: 482000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 482000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 498000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 498000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 140000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 140000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256
0x007a 0x006c: pmt_pid 0x06d0 Get -- TV 2 HD (running)
0x007a 0x00b6: pmt_pid 0x0b70 (null) -- NRK1 HD (running)
0x007a 0x00bc: pmt_pid 0x0bd0 (null) -- NRK2 HD (running)
0x007a 0x00bd: pmt_pid 0x0be0 (null) -- NRK3 HD (running)
WARNING: filter timeout pid 0x0010
 >>> tune to: 594000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_64
WARNING: >>> tuning failed!!!
 >>> tune to: 594000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_64 (tuning 
failed)
WARNING: >>> tuning failed!!!
dumping lists (243 services)
CANAL9:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:625:626:38
BBC HD:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2885:0:179
SVT1 HD:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:211:0:3116
Silver HD:241000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:439:433:3107
[0018]:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:401:402:24
TV3:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2401:2402:149
TVNORGE:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2385:2386:148
TV8 Follo:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2177:2178:135
TV8 Romerike:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2209:2210:137
NRK2:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2354:2355:146
TV2:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2369:2370:147
[006f]:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1793:1794:111
[fffe]:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65534
[0078]:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:512:640:120
NRK1:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:512:640:145
TV Vest:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:125
NRK1 
Vestlandsrevyen:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:126
NRK1 Rogaland:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:127
NRK1 Sørlandet:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:128
TV Haugaland:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:129
NRK1 Østfold:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:130
3net Infokanal:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:138
TV8 Sunnmøre:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:139
Kanal opphørt:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:158
TVNORGE:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:159
NRK1 Østnytt:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:163
NRK1 Nordnytt:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:164
NRK1 Møre og 
Romsdal:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:165
NRK1 Nordland:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:166
TVA:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:167
TKTV:272000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:168
[0006]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:113:114:6
[0007]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:129:130:7
[0008]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:145:146:8
[000f]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:257:258:15
[0049]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1185:1190:73
[006b]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1729:1730:107
[009b]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2498:2499:155
[009c]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2513:2514:156
EPG DL HD PVR:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65501
EPG DL HD Zapper:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65502
[fffd]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65533
[fffc]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:65532
[0162]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:701:354
[0163]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:702:355
[0164]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:707:356
[0165]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:706:357
NRK Alltid 
klassisk:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:703:358
NRK P1:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:700:361
Scandinavian Sat 
Radio:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:672:362
NRK Sami Radio:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:704:405
NRK Folkemusikk:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:708:406
NRK Jazz:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:714:407
NRK Super:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:710:408
NRK Gull:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:711:409
[000a]:280000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:177:178:10
[000c]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:209:210:12
[0011]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:289:293:17
[0022]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:562:563:34
[0038]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:913:917:56
[0039]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:929:933:57
[0069]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1697:1698:105
[0067]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1665:1666:103
[003e]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1009:1010:62
[00ba]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2993:2994:186
[009a]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2481:2482:154
[0167]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:5761:359
[0168]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:5777:360
[016c]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3333:364
[016d]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3349:365
[016e]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3350:366
[016f]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3329:367
[0170]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3330:368
[0171]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3331:369
[0172]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3337:370
[0173]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3339:371
[0174]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3334:372
[0175]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3342:373
[0176]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3360:374
[0177]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3355:375
[0178]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3344:376
[0179]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3346:377
[017a]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3361:378
[017b]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3347:379
[017c]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3348:380
[017d]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3343:381
[017e]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3351:382
[017f]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3352:383
[0180]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3353:384
[0181]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3354:385
[0182]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3356:386
[0183]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3338:387
[0184]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3357:388
[0185]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3358:389
[0186]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3366:390
[0187]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3359:391
[0188]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3341:392
[0189]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3362:393
[018a]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3336:394
[018b]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3365:395
[018c]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3363:396
[018d]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3364:397
[018e]:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3367:398
Rock n` Roll:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3368:399
The Alternative:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3332:400
Country Stars:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3345:401
Magnificent 70s:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3335:402
Reggae Beats:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:3340:403
NRK Extra:290000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:410
Disney Channel:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:337:341:20
Discovery:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:305:307:18
Cartoon/TCM:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:241:245:14
Canal+ Fotball:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:513:514:31
CNN 
International:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:225:226:13
TV2 SPORT 2:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:849:850:52
TV2 SPORT 3:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:865:866:53
BBC World 
News:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1217:1218:75
DR 1:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1201:1202:74
Voice TV:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1473:1474:91
TV2 
Filmkanalen:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1649:1650:102
BHT1:298000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:100
BBC 
entertainment:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:353:354:21
TV Chile:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:737:738:45
CNBC:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1089:1090:67
TV2 SPORT 4:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:897:898:55
TV2 SPORT 5:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:881:882:54
TCM:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1073:1074:66
Canal+ Sport 
2:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1105:1107:68
God TV:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1121:1122:69
Viasat Motor:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2593:2595:161
Canal+ Action:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1041:1044:64
Viasat Sport 
:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2577:2578:160
SF Kanalen:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1537:1538:95
TV8 Oslo:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1585:1586:98
NRK P1 
Oslo/Akershus:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8000:425
NRK P1 Troms:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8001:426
NRK P1 Nordland:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8002:427
NRK P1 
Trøndelag:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8003:428
NRK P1 Møre og 
Romsdal:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8004:429
NRK P1 Sogn og 
Fjordane:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8005:430
NRK P1 
Hordaland:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8006:431
NRK P1 Rogaland:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8007:432
NRK P1 
Sørlandet:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8008:433
[01b2]:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8009:434
[01b3]:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8010:435
[01b4]:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8011:436
[01b5]:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8012:437
[01b6]:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8013:438
[01b7]:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:8014:439
Hallo Norge:306000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:404
[0013]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:321:325:19
[0021]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:545:546:33
[0030]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:785:786:48
[0041]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1057:1058:65
[0047]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1153:1154:71
[0048]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1169:1170:72
[0046]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1137:1138:70
[006e]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1777:1781:110
France 24 
English:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2465:2466:153
France 24:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2449:2450:152
[001d]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:482:483:29
[0097]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2433:2436:151
[002e]:314000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:753:757:46
[0c26]:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1717:1716:3110
[0c21]:322000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:422:417:3105
[00b5]:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2915:2913:181
[0c28]:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2151:2148:3112
[00bb]:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:3011:3009:187
[0c24]:330000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:482:481:3108
TV2 Barcl. PL 
HD2:338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2963:2961:184
TV2 Barcl. PL 
HD1:338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2947:2945:183
TV2 Barcl. PL 
HD3:338000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2979:2977:185
TV2 Danmark:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:529:530:32
TV2 SPORT:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:833:834:51
TV1000 Drama:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1265:1267:78
TV1000 Family:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1281:1285:79
VH1 Classic:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2322:2323:144
TV Finland:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1345:1346:83
TV1000 Nordic:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1297:1301:80
Canal+ Hits:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2129:2132:132
TV1000 
Classic:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1313:1317:81
Viasat Golf:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2417:2421:150
VH1:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1329:1330:82
MTV Music:346000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2194:2195:136
[0029]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:673:677:41
[0032]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:817:821:50
[003f]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1025:1027:63
[004c]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1234:1235:76
[005a]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1458:1459:90
[0056]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1393:1394:86
MTV Dance:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2290:2291:142
Disney 
Junior:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1713:1718:106
[0063]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1601:1602:99
[0057]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1409:1410:87
[0058]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1425:1429:88
[0054]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1361:1362:84
[0055]:354000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1377:1378:85
[0009]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:161:162:9
[0016]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:369:370:22
[0031]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:801:804:49
[002c]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:44
[006d]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1761:1764:109
Spice:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2609:2612:162
[0077]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1921:1922:119
[005e]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1521:1525:94
[0068]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1681:1682:104
[005c]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1489:1490:92
[0060]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1553:1555:96
[007b]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1985:1986:123
[009d]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2529:2530:157
[005d]:362000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1505:1510:93
[0010]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:273:274:16
[0017]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:385:386:23
[0019]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:417:418:25
[001a]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:433:435:26
[001b]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:449:450:27
[002b]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:705:706:43
[008f]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2306:2307:143
[0083]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:131
[0059]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1441:1445:89
[0065]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1633:1634:101
[004d]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1249:1250:77
[0079]:370000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1953:1954:121
[0025]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:609:610:37
[0024]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:593:594:36
[001c]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2065:2066:28
[0028]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:657:658:40
[002a]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:689:690:42
[003a]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:0:0:58
[003d]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:993:994:61
[008d]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2274:2275:141
[003b]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:961:962:59
[008c]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2257:2258:140
[007a]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1969:1970:122
[0061]:378000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1569:1570:97
[0c27]:386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:8165:0:3111
[0c2a]:386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:181:0:3114
[0c29]:386000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2162:0:3113
[0009]:442000000:INVERSION_AUTO:6952000:FEC_AUTO:QAM_256:226:229:9
TV 2 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:1748:1745:108
NRK2 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:3028:3025:188
NRK3 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:3044:3041:189
NRK1 HD:264000000:INVERSION_AUTO:6900000:FEC_AUTO:QAM_256:2932:2929:182
Done.
lin-tv ~ #

Regards,

/Fredrik


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

* Re: Hauppauge HVR-930C problems
  2011-12-10 13:43               ` Fredrik Lingvall
@ 2011-12-10 16:02                 ` Mauro Carvalho Chehab
  2011-12-17 17:42                   ` Fredrik Lingvall
  0 siblings, 1 reply; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-10 16:02 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On 10-12-2011 11:43, Fredrik Lingvall wrote:
> On 12/08/11 16:02, Mauro Carvalho Chehab wrote:
>>
>>> #!/bin/bash
>>> for i in `seq 1 20`;
>>> do
>>> w_scan -fc -c NO 1>> scan$i.log 2>> scan$i.log
>>> done
>>>
>>> And I get outputs like this (the timing numbers differs of course somewhat between different runs):
>>>
>>> <snip>
>>>
>>> 586000: sr6900 (time: 10:21) sr6875 (time: 10:23)
>>> 594000: sr6900 (time: 10:26) sr6875 (time: 10:28)
>>> 602000: sr6900 (time: 10:31) (time: 10:32) signal ok:
>>> QAM_256 f = 602000 kHz S6900C999
>>> Info: NIT(actual) filter timeout
>>> 610000: sr6900 (time: 10:44) sr6875 (time: 10:47)
>>> 618000: sr6900 (time: 10:49) sr6875 (time: 10:52)
>>> 626000: sr6900 (time: 10:54) sr6875 (time: 10:57)
>>>
>>> <snip>
>>>
>>> Then I did the test that you suggested:
>>>
>>> lin-tv ~ # strace -e ioctl dvbscan -fc test_channel_file
>>>
>>> scanning test_channel_file
>>> using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
>>> ioctl(3, FE_GET_INFO, 0x60b180) = 0
>>> initial transponder 602000000 6900000 0 5
>>> >>> tune to: 602000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
>>> ioctl(3, FE_SET_FRONTEND, 0x7fff0581fb20) = 0
>>> ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
>>> ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
>>> ioctl(4, DMX_SET_FILTER, 0x7fff0581e930) = 0
>>> ioctl(5, DMX_SET_FILTER, 0x7fff0581e930) = 0
>>> ioctl(6, DMX_SET_FILTER, 0x7fff0581e930) = 0
>>> WARNING: filter timeout pid 0x0011
>>> ioctl(5, DMX_STOP, 0x23) = 0
>>> WARNING: filter timeout pid 0x0000
>>> ioctl(4, DMX_STOP, 0x23) = 0
>>> WARNING: filter timeout pid 0x0010
>>> ioctl(6, DMX_STOP, 0x23) = 0
>>> dumping lists (0 services)
>>> Done.
>>>
>>>
>>> I did not get the:
>>>
>>> 602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
>>> QAM_256 f = 602000 kHz S6900C999
>>> start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left on device
>>
>>
>>> Info: NIT(actual) filter timeout
>>>
>>> that I got before. The changes I made from before was 1) I unmounted the USB disk and 2) I rebuild the xc5000 module where I removed the
>>>
>>> mutex_lock(&xc5000_list_mutex);
>>>
>>> and
>>>
>>> mutex_unlock(&xc5000_list_mutex);
>>>
>>> lines according to the discussion in the " ... em28xx: initial support for HAUPPAUGE HVR-930C again" thread.
>>
>> Ok, let's go by parts.
>>
>> 1) error 28 at DMX_SET_FILTER is really due to lack of space at the USB bus. I've
>> double-checked at the code. The only place there where it could occur is when
>> dvb_dmxdev_feed_start() calls feed->ts->start_filtering(feed->ts), with should be
>> pointing to em28xx_start_feed(), with tries to start the transfer URB's at
>> em28xx_init_isoc() by calling usb_submit_urb(). This is the only routine that returns
>> ENOSPC on this chain.
>>
>> It is very likely that what fixed it were the removal of the USB disk.
>>
>> 2) There is an error at the bandwidth calculus on xc5000. It is likely that it is
>> using a 6MHz bandwidth filter, instead of a 8MHz one.
>>
>> Please try the enclosed patch.
>>
>>
>> [media] xc5000,tda18271c2dd: Fix bandwidth calculus
>> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
>>
>> diff --git a/drivers/media/common/tuners/xc5000.c b/drivers/media/common/tuners/xc5000.c
>> index ecd1f95..8279c45 100644
>> --- a/drivers/media/common/tuners/xc5000.c
>> +++ b/drivers/media/common/tuners/xc5000.c
>> @@ -708,9 +708,9 @@ static int xc5000_set_params(struct dvb_frontend *fe,
>> * is equal to 0.15 for Annex A, and 0.13 for annex C
>> */
>> if (fe->dtv_property_cache.rolloff == ROLLOFF_13)
>> - bw = (params->u.qam.symbol_rate * 13) / 10;
>> + bw = (params->u.qam.symbol_rate * 113) / 100;
>> else
>> - bw = (params->u.qam.symbol_rate * 15) / 10;
>> + bw = (params->u.qam.symbol_rate * 115) / 100;
>> if (bw <= 6000000) {
>> priv->bandwidth = BANDWIDTH_6_MHZ;
>> priv->video_standard = DTV6;
>> diff --git a/drivers/media/dvb/frontends/tda18271c2dd.c b/drivers/media/dvb/frontends/tda18271c2dd.c
>> index de544f6..b66ca29 100644
>> --- a/drivers/media/dvb/frontends/tda18271c2dd.c
>> +++ b/drivers/media/dvb/frontends/tda18271c2dd.c
>> @@ -1158,9 +1158,9 @@ static int set_params(struct dvb_frontend *fe,
>> * is equal to 0.15 for Annex A, and 0.13 for annex C
>> */
>> if (fe->dtv_property_cache.rolloff == ROLLOFF_13)
>> - bw = (params->u.qam.symbol_rate * 13) / 10;
>> + bw = (params->u.qam.symbol_rate * 113) / 100;
>> else
>> - bw = (params->u.qam.symbol_rate * 15) / 10;
>> + bw = (params->u.qam.symbol_rate * 115) / 100;
>> if (bw <= 6000000)
>> Standard = HF_DVBC_6MHZ;
>> else if (bw <= 7000000)
>>
>>
>
> Changing 13 -> 113 and 15 -> 115 in the two files made no difference. However, I figured out that the
>
> 586000: sr6900 (time: 10:22) sr6875 (time: 10:24)
> 594000: sr6900 (time: 10:27) sr6875 (time: 10:30)
> 602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
> QAM_256 f = 602000 kHz S6900C999
> start_filter:1417: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left on device
> Info: NIT(actual) filter timeout
> 610000: sr6900 (time: 10:55) sr6875 (time: 10:57)
> 618000: sr6900 (time: 11:00) sr6875 (time: 11:02)
> 626000: sr6900 (time: 11:05) sr6875 (time: 11:07)
>
> output from w_scan only happends the first time after the driver has been loaded. That is, running this script
>
> #!/bin/bash
> for i in `seq 1 20`;
> do
> rmmod em28xx_dvb
> rmmod em28xx
> sleep 5
> modprobe em28xx
> sleep 5
> echo $i
> w_scan -fc -c NO 1>> scan_out$i.log 2>> scan_err$i.log
> done
>
> will give the error above for every scan but if I don't reload the driver then I will get the output:
>
> 594000: sr6900 (time: 10:26) sr6875 (time: 10:29)
> 602000: sr6900 (time: 10:31) (time: 10:32) signal ok:
> QAM_256 f = 602000 kHz S6900C999
> Info: NIT(actual) filter timeout
> 610000: sr6900 (time: 10:45) sr6875 (time: 10:47)
> 618000: sr6900 (time: 10:50) sr6875 (time: 10:52)
>
> for i >=2 instead.
>
> I noticed the new patches you are working with on the list. Let me know I there's something I can test?

The patches that are pertinent are already at the main repository.
It would be interesting if you could test it again with those patches,
with both w_scan and scan.

Regards,
Mauro

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

* Re: Hauppauge HVR-930C problems
  2011-12-08 15:02             ` Mauro Carvalho Chehab
@ 2011-12-10 13:43               ` Fredrik Lingvall
  2011-12-10 16:02                 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-10 13:43 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On 12/08/11 16:02, Mauro Carvalho Chehab wrote:
>
>> #!/bin/bash
>> for i in `seq 1 20`;
>> do
>> w_scan -fc -c NO 1>> scan$i.log 2>> scan$i.log
>> done
>>
>> And I get outputs like this (the timing numbers differs of course 
>> somewhat between different runs):
>>
>> <snip>
>>
>> 586000: sr6900 (time: 10:21) sr6875 (time: 10:23)
>> 594000: sr6900 (time: 10:26) sr6875 (time: 10:28)
>> 602000: sr6900 (time: 10:31) (time: 10:32) signal ok:
>> QAM_256 f = 602000 kHz S6900C999
>> Info: NIT(actual) filter timeout
>> 610000: sr6900 (time: 10:44) sr6875 (time: 10:47)
>> 618000: sr6900 (time: 10:49) sr6875 (time: 10:52)
>> 626000: sr6900 (time: 10:54) sr6875 (time: 10:57)
>>
>> <snip>
>>
>> Then I did the test that you suggested:
>>
>> lin-tv ~ # strace -e ioctl dvbscan -fc test_channel_file
>>
>> scanning test_channel_file
>> using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
>> ioctl(3, FE_GET_INFO, 0x60b180) = 0
>> initial transponder 602000000 6900000 0 5
>> >>> tune to: 602000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
>> ioctl(3, FE_SET_FRONTEND, 0x7fff0581fb20) = 0
>> ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
>> ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
>> ioctl(4, DMX_SET_FILTER, 0x7fff0581e930) = 0
>> ioctl(5, DMX_SET_FILTER, 0x7fff0581e930) = 0
>> ioctl(6, DMX_SET_FILTER, 0x7fff0581e930) = 0
>> WARNING: filter timeout pid 0x0011
>> ioctl(5, DMX_STOP, 0x23) = 0
>> WARNING: filter timeout pid 0x0000
>> ioctl(4, DMX_STOP, 0x23) = 0
>> WARNING: filter timeout pid 0x0010
>> ioctl(6, DMX_STOP, 0x23) = 0
>> dumping lists (0 services)
>> Done.
>>
>>
>> I did not get the:
>>
>> 602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
>> QAM_256 f = 602000 kHz S6900C999
>> start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space 
>> left on device
>
>
>> Info: NIT(actual) filter timeout
>>
>> that I got before. The changes I made from before was 1) I unmounted 
>> the USB disk and 2) I rebuild the xc5000 module where I removed the
>>
>> mutex_lock(&xc5000_list_mutex);
>>
>> and
>>
>> mutex_unlock(&xc5000_list_mutex);
>>
>> lines according to the discussion in the " ... em28xx: initial 
>> support for HAUPPAUGE HVR-930C again" thread.
>
> Ok, let's go by parts.
>
> 1) error 28 at DMX_SET_FILTER is really due to lack of space at the 
> USB bus. I've
> double-checked at the code. The only place there where it could occur 
> is when
> dvb_dmxdev_feed_start() calls feed->ts->start_filtering(feed->ts), 
> with should be
> pointing to em28xx_start_feed(), with tries to start the transfer 
> URB's at
> em28xx_init_isoc() by calling usb_submit_urb(). This is the only 
> routine that returns
> ENOSPC on this chain.
>
> It is very likely that what fixed it were the removal of the USB disk.
>
> 2)  There is an error at the bandwidth calculus on xc5000. It is 
> likely that it is
> using a 6MHz bandwidth filter, instead of a 8MHz one.
>
> Please try the enclosed patch.
>
>
> [media] xc5000,tda18271c2dd: Fix bandwidth calculus
>     Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
>
> diff --git a/drivers/media/common/tuners/xc5000.c 
> b/drivers/media/common/tuners/xc5000.c
> index ecd1f95..8279c45 100644
> --- a/drivers/media/common/tuners/xc5000.c
> +++ b/drivers/media/common/tuners/xc5000.c
> @@ -708,9 +708,9 @@ static int xc5000_set_params(struct dvb_frontend *fe,
>               * is equal to 0.15 for Annex A, and 0.13 for annex C
>               */
>              if (fe->dtv_property_cache.rolloff == ROLLOFF_13)
> -                bw = (params->u.qam.symbol_rate * 13) / 10;
> +                bw = (params->u.qam.symbol_rate * 113) / 100;
>              else
> -                bw = (params->u.qam.symbol_rate * 15) / 10;
> +                bw = (params->u.qam.symbol_rate * 115) / 100;
>              if (bw <= 6000000) {
>                  priv->bandwidth = BANDWIDTH_6_MHZ;
>                  priv->video_standard = DTV6;
> diff --git a/drivers/media/dvb/frontends/tda18271c2dd.c 
> b/drivers/media/dvb/frontends/tda18271c2dd.c
> index de544f6..b66ca29 100644
> --- a/drivers/media/dvb/frontends/tda18271c2dd.c
> +++ b/drivers/media/dvb/frontends/tda18271c2dd.c
> @@ -1158,9 +1158,9 @@ static int set_params(struct dvb_frontend *fe,
>           * is equal to 0.15 for Annex A, and 0.13 for annex C
>           */
>          if (fe->dtv_property_cache.rolloff == ROLLOFF_13)
> -            bw = (params->u.qam.symbol_rate * 13) / 10;
> +            bw = (params->u.qam.symbol_rate * 113) / 100;
>          else
> -            bw = (params->u.qam.symbol_rate * 15) / 10;
> +            bw = (params->u.qam.symbol_rate * 115) / 100;
>          if (bw <= 6000000)
>              Standard = HF_DVBC_6MHZ;
>          else if (bw <= 7000000)
>
>

Changing 13 -> 113 and 15 -> 115 in the two files made no difference. 
However, I figured out that the

586000: sr6900 (time: 10:22) sr6875 (time: 10:24)
594000: sr6900 (time: 10:27) sr6875 (time: 10:30)
602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
         QAM_256  f = 602000 kHz S6900C999
start_filter:1417: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left 
on device
Info: NIT(actual) filter timeout
610000: sr6900 (time: 10:55) sr6875 (time: 10:57)
618000: sr6900 (time: 11:00) sr6875 (time: 11:02)
626000: sr6900 (time: 11:05) sr6875 (time: 11:07)

output from w_scan only happends the first time after the driver has 
been loaded. That is, running this script

#!/bin/bash
for i in `seq 1 20`;
do
     rmmod em28xx_dvb
     rmmod em28xx
     sleep 5
     modprobe em28xx
     sleep 5
     echo $i
     w_scan -fc -c NO 1>> scan_out$i.log 2>> scan_err$i.log
done

will give the error above for every scan but if I don't reload the 
driver then I will get the output:

594000: sr6900 (time: 10:26) sr6875 (time: 10:29)
602000: sr6900 (time: 10:31) (time: 10:32) signal ok:
         QAM_256  f = 602000 kHz S6900C999
Info: NIT(actual) filter timeout
610000: sr6900 (time: 10:45) sr6875 (time: 10:47)
618000: sr6900 (time: 10:50) sr6875 (time: 10:52)

for i >=2 instead.

I noticed the new patches you are working with on the list. Let me know 
I there's something I can test?

Regards,

/Fredrik











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

* Re: Hauppauge HVR-930C problems
  2011-12-08  8:31           ` Fredrik Lingvall
@ 2011-12-08 15:02             ` Mauro Carvalho Chehab
  2011-12-10 13:43               ` Fredrik Lingvall
  0 siblings, 1 reply; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-08 15:02 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On 08-12-2011 06:31, Fredrik Lingvall wrote:
> On 12/07/11 15:54, Mauro Carvalho Chehab wrote:
>>>
>>> lin-tv ~ # lsusb | grep "Bus 002"
>>> Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>>> Bus 002 Device 008: ID 2040:1605 Hauppauge
>>
>>
>> There's nothing at the DVB core returning -ENOSPC.
>>
>> Try to add just one line to a channels file, like this one:
>> C 602000000 6900000 NONE QAM256
>>
>> (this is the transponder that failed with w_scan. You could also use one
>> of the transponders where you got a pid timeout with scan)
>>
>> Then call scan with this file, using strace:
>>
>> $ strace -e ioctl dvbscan channelfile
>>
>> This would allow to see what ioctl returned -ENOSPC (error -28).
>>
>> Regards,
>> Mauro
>>
>
> Mauro,
>
> I made a small script to check if the w_scan results are consistent:
>
> #!/bin/bash
> for i in `seq 1 20`;
> do
> w_scan -fc -c NO 1>> scan$i.log 2>> scan$i.log
> done
>
> And I get outputs like this (the timing numbers differs of course somewhat between different runs):
>
> <snip>
>
> 586000: sr6900 (time: 10:21) sr6875 (time: 10:23)
> 594000: sr6900 (time: 10:26) sr6875 (time: 10:28)
> 602000: sr6900 (time: 10:31) (time: 10:32) signal ok:
> QAM_256 f = 602000 kHz S6900C999
> Info: NIT(actual) filter timeout
> 610000: sr6900 (time: 10:44) sr6875 (time: 10:47)
> 618000: sr6900 (time: 10:49) sr6875 (time: 10:52)
> 626000: sr6900 (time: 10:54) sr6875 (time: 10:57)
>
> <snip>
>
> Then I did the test that you suggested:
>
> lin-tv ~ # strace -e ioctl dvbscan -fc test_channel_file
>
> scanning test_channel_file
> using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
> ioctl(3, FE_GET_INFO, 0x60b180) = 0
> initial transponder 602000000 6900000 0 5
>  >>> tune to: 602000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
> ioctl(3, FE_SET_FRONTEND, 0x7fff0581fb20) = 0
> ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
> ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
> ioctl(4, DMX_SET_FILTER, 0x7fff0581e930) = 0
> ioctl(5, DMX_SET_FILTER, 0x7fff0581e930) = 0
> ioctl(6, DMX_SET_FILTER, 0x7fff0581e930) = 0
> WARNING: filter timeout pid 0x0011
> ioctl(5, DMX_STOP, 0x23) = 0
> WARNING: filter timeout pid 0x0000
> ioctl(4, DMX_STOP, 0x23) = 0
> WARNING: filter timeout pid 0x0010
> ioctl(6, DMX_STOP, 0x23) = 0
> dumping lists (0 services)
> Done.
>
>
> I did not get the:
>
> 602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
> QAM_256 f = 602000 kHz S6900C999
> start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left on device

> Info: NIT(actual) filter timeout
>
> that I got before. The changes I made from before was 1) I unmounted the USB disk and 2) I rebuild the xc5000 module where I removed the
>
> mutex_lock(&xc5000_list_mutex);
>
> and
>
> mutex_unlock(&xc5000_list_mutex);
>
> lines according to the discussion in the " ... em28xx: initial support for HAUPPAUGE HVR-930C again" thread.

Ok, let's go by parts.

1) error 28 at DMX_SET_FILTER is really due to lack of space at the USB bus. I've
double-checked at the code. The only place there where it could occur is when
dvb_dmxdev_feed_start() calls feed->ts->start_filtering(feed->ts), with should be
pointing to em28xx_start_feed(), with tries to start the transfer URB's at
em28xx_init_isoc() by calling usb_submit_urb(). This is the only routine that returns
ENOSPC on this chain.

It is very likely that what fixed it were the removal of the USB disk.

2)  There is an error at the bandwidth calculus on xc5000. It is likely that it is
using a 6MHz bandwidth filter, instead of a 8MHz one.

Please try the enclosed patch.


[media] xc5000,tda18271c2dd: Fix bandwidth calculus
     
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

diff --git a/drivers/media/common/tuners/xc5000.c b/drivers/media/common/tuners/xc5000.c
index ecd1f95..8279c45 100644
--- a/drivers/media/common/tuners/xc5000.c
+++ b/drivers/media/common/tuners/xc5000.c
@@ -708,9 +708,9 @@ static int xc5000_set_params(struct dvb_frontend *fe,
  			 * is equal to 0.15 for Annex A, and 0.13 for annex C
  			 */
  			if (fe->dtv_property_cache.rolloff == ROLLOFF_13)
-				bw = (params->u.qam.symbol_rate * 13) / 10;
+				bw = (params->u.qam.symbol_rate * 113) / 100;
  			else
-				bw = (params->u.qam.symbol_rate * 15) / 10;
+				bw = (params->u.qam.symbol_rate * 115) / 100;
  			if (bw <= 6000000) {
  				priv->bandwidth = BANDWIDTH_6_MHZ;
  				priv->video_standard = DTV6;
diff --git a/drivers/media/dvb/frontends/tda18271c2dd.c b/drivers/media/dvb/frontends/tda18271c2dd.c
index de544f6..b66ca29 100644
--- a/drivers/media/dvb/frontends/tda18271c2dd.c
+++ b/drivers/media/dvb/frontends/tda18271c2dd.c
@@ -1158,9 +1158,9 @@ static int set_params(struct dvb_frontend *fe,
  		 * is equal to 0.15 for Annex A, and 0.13 for annex C
  		 */
  		if (fe->dtv_property_cache.rolloff == ROLLOFF_13)
-			bw = (params->u.qam.symbol_rate * 13) / 10;
+			bw = (params->u.qam.symbol_rate * 113) / 100;
  		else
-			bw = (params->u.qam.symbol_rate * 15) / 10;
+			bw = (params->u.qam.symbol_rate * 115) / 100;
  		if (bw <= 6000000)
  			Standard = HF_DVBC_6MHZ;
  		else if (bw <= 7000000)



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

* Re: Hauppauge HVR-930C problems
  2011-12-07 14:54         ` Mauro Carvalho Chehab
@ 2011-12-08  8:31           ` Fredrik Lingvall
  2011-12-08 15:02             ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-08  8:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On 12/07/11 15:54, Mauro Carvalho Chehab wrote:
>>
>> lin-tv ~ # lsusb | grep "Bus 002"
>> Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>> Bus 002 Device 008: ID 2040:1605 Hauppauge
>
>
> There's nothing at the DVB core returning -ENOSPC.
>
> Try to add just one line to a channels file, like this one:
>     C 602000000 6900000 NONE QAM256
>
> (this is the transponder that failed with w_scan. You could also use one
> of the transponders where you got a pid timeout with scan)
>
> Then call scan with this file, using strace:
>
> $ strace -e ioctl dvbscan channelfile
>
> This would allow to see what ioctl returned -ENOSPC (error -28).
>
> Regards,
> Mauro
>

Mauro,

I made a small script to check if the w_scan results are consistent:

#!/bin/bash
for i in `seq 1 20`;
do
     w_scan -fc -c NO 1>> scan$i.log 2>> scan$i.log
done

And I get outputs like this  (the timing numbers differs of course 
somewhat between different runs):

<snip>

586000: sr6900 (time: 10:21) sr6875 (time: 10:23)
594000: sr6900 (time: 10:26) sr6875 (time: 10:28)
602000: sr6900 (time: 10:31) (time: 10:32) signal ok:
     QAM_256  f = 602000 kHz S6900C999
Info: NIT(actual) filter timeout
610000: sr6900 (time: 10:44) sr6875 (time: 10:47)
618000: sr6900 (time: 10:49) sr6875 (time: 10:52)
626000: sr6900 (time: 10:54) sr6875 (time: 10:57)

<snip>

Then I did the test that you suggested:

lin-tv ~ # strace -e ioctl dvbscan -fc test_channel_file

scanning test_channel_file
using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
ioctl(3, FE_GET_INFO, 0x60b180)         = 0
initial transponder 602000000 6900000 0 5
 >>> tune to: 602000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
ioctl(3, FE_SET_FRONTEND, 0x7fff0581fb20) = 0
ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
ioctl(3, FE_READ_STATUS, 0x7fff0581fb4c) = 0
ioctl(4, DMX_SET_FILTER, 0x7fff0581e930) = 0
ioctl(5, DMX_SET_FILTER, 0x7fff0581e930) = 0
ioctl(6, DMX_SET_FILTER, 0x7fff0581e930) = 0
WARNING: filter timeout pid 0x0011
ioctl(5, DMX_STOP, 0x23)                = 0
WARNING: filter timeout pid 0x0000
ioctl(4, DMX_STOP, 0x23)                = 0
WARNING: filter timeout pid 0x0010
ioctl(6, DMX_STOP, 0x23)                = 0
dumping lists (0 services)
Done.


I did not get the:

602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
         QAM_256  f = 602000 kHz S6900C999
start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left 
on device
Info: NIT(actual) filter timeout

that I got before. The changes I made from before was 1) I unmounted the 
USB disk and 2) I rebuild the xc5000 module where I removed the

mutex_lock(&xc5000_list_mutex);

and

mutex_unlock(&xc5000_list_mutex);

lines according to the discussion in the " ...  em28xx: initial support 
for HAUPPAUGE HVR-930C again" thread.

/Fredrik



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

* Re: Hauppauge HVR-930C problems
  2011-12-07 14:25       ` Fredrik Lingvall
@ 2011-12-07 14:54         ` Mauro Carvalho Chehab
  2011-12-08  8:31           ` Fredrik Lingvall
  0 siblings, 1 reply; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-07 14:54 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On 07-12-2011 12:25, Fredrik Lingvall wrote:
> On 12/07/11 14:55, Mauro Carvalho Chehab wrote:
>>
>>> <snip>
>>>
>>> Bus 2 doesn't seem to do anything [Alloc= 0/800 us ( 0%)] while I'm scanning!?
>>
>>
>> Scanning envolves 2 different things:
>> 1) tuning and locking into a channel;
>> 2) streaming and filtering, in order to seek for program tables
>> inside the MPEG-TS.
>>
>> Step 1 uses USB control messages.
>>
>> Only at step 2, the device will use the USB ISOC packets. The USB core will
>> see if is there enough bandwidth to reserve for ISOC transfers on that time
>> (based on other traffic data), and submit the URB's (or return -ENOSPC otherwise).
>>
>>>
>>> BTW: I'm running Gentoo x86_64 (amd64) on a Dell M2400 laptop with an SSD disk.
>>>
>>> Other hardware connected is a 200 GB disk using the eSata slot, a 1TB WD disk connected using another USB slot, a RME Multiface II soundcard using the expresscard slot.
>>
>> The external USB disk may be interfering, if it is also at bus 2.
>> Also, some laptops use USB for some internal components like wireless.
>>
>> Please remove all other USB devices, disable wireless (if your device is USB)
>> and try again.
>>
>> Regards,
>> Mauro
>
> No there's nothing else at Bus 2 (I did a umount on the WD usb disk, cannot unplug devices since I'm logged in remotely right now), and Wireless is a pci device:
>
> lin-tv ~ # lspci
> 00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
> 00:01.0 PCI bridge: Intel Corporation Mobile 4 Series Chipset PCI Express Graphics Port (rev 07)
> 00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03)
> 00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
> 00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
> 00:1a.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
> 00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
> 00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
> 00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
> 00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
> 00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 (rev 03)
> 00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
> 00:1d.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
> 00:1d.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
> 00:1d.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
> 00:1d.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
> 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
> 00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
> 00:1f.2 RAID bus controller: Intel Corporation Mobile 82801 SATA RAID Controller (rev 03)
> 00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
> 01:00.0 VGA compatible controller: nVidia Corporation Device 06fb (rev a1)
> 03:01.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 04)
> 03:01.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 21)
> 03:01.2 SD Host controller: Ricoh Co Ltd R5C843 MMC Host Controller (rev 11)
> 0c:00.0 Network controller: Intel Corporation PRO/Wireless 5300 AGN [Shiloh] Network Connection
> 0e:00.0 Multimedia audio controller: Xilinx Corporation RME Hammerfall DSP (rev 3c)
>
> lin-tv ~ # lsusb
> Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
> Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
> Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 001 Device 003: ID 413c:2513 Dell Computer Corp. internal USB Hub of E-Port Replicator
> Bus 001 Device 005: ID 0c45:63f8 Microdia Sonix Integrated Webcam
> Bus 003 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
> Bus 005 Device 002: ID 0a5c:5800 Broadcom Corp. BCM5880 Secure Applications Processor
> Bus 006 Device 002: ID 0451:2036 Texas Instruments, Inc. TUSB2036 Hub
> Bus 003 Device 003: ID 413c:8157 Dell Computer Corp. Integrated Keyboard
> Bus 003 Device 004: ID 413c:8158 Dell Computer Corp. Integrated Touchpad / Trackstick
> Bus 006 Device 004: ID 046d:c704 Logitech, Inc. diNovo Wireless Desktop
> Bus 003 Device 005: ID 413c:8156 Dell Computer Corp. Wireless 370 Bluetooth Mini-card
> Bus 002 Device 008: ID 2040:1605 Hauppauge
>
> Devices at Bus 2:
>
> lin-tv ~ # lsusb | grep "Bus 002"
> Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
> Bus 002 Device 008: ID 2040:1605 Hauppauge

There's nothing at the DVB core returning -ENOSPC.

Try to add just one line to a channels file, like this one:
	C 602000000 6900000 NONE QAM256

(this is the transponder that failed with w_scan. You could also use one
of the transponders where you got a pid timeout with scan)

Then call scan with this file, using strace:

$ strace -e ioctl dvbscan channelfile

This would allow to see what ioctl returned -ENOSPC (error -28).

Regards,
Mauro


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

* Re: Hauppauge HVR-930C problems
  2011-12-07 13:55     ` Mauro Carvalho Chehab
@ 2011-12-07 14:25       ` Fredrik Lingvall
  2011-12-07 14:54         ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-07 14:25 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On 12/07/11 14:55, Mauro Carvalho Chehab wrote:
>
>> <snip>
>>
>> Bus 2 doesn't seem to do anything [Alloc= 0/800 us ( 0%)] while I'm 
>> scanning!?
>
>
> Scanning envolves 2 different things:
>     1) tuning and locking into a channel;
>     2) streaming and filtering, in order to seek for program tables
> inside the MPEG-TS.
>
> Step 1 uses USB control messages.
>
> Only at step 2, the device will use the USB ISOC packets. The USB core 
> will
> see if is there enough bandwidth to reserve for ISOC transfers on that 
> time
> (based on other traffic data), and submit the URB's (or return -ENOSPC 
> otherwise).
>
>>
>> BTW: I'm running Gentoo x86_64 (amd64) on a Dell M2400 laptop with an 
>> SSD disk.
>>
>> Other hardware connected is a 200 GB disk using the eSata slot, a 1TB 
>> WD disk connected using another USB slot, a RME Multiface II 
>> soundcard using the expresscard slot.
>
> The external USB disk may be interfering, if it is also at bus 2.
> Also, some laptops use USB for some internal components like wireless.
>
> Please remove all other USB devices, disable wireless (if your device 
> is USB)
> and try again.
>
> Regards,
> Mauro

No there's nothing else at Bus 2 (I did a umount on the WD usb disk, 
cannot unplug devices since I'm logged in remotely right now), and 
Wireless is a pci device:

lin-tv ~ # lspci
00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory 
Controller Hub (rev 07)
00:01.0 PCI bridge: Intel Corporation Mobile 4 Series Chipset PCI 
Express Graphics Port (rev 07)
00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network 
Connection (rev 03)
00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #4 (rev 03)
00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #5 (rev 03)
00:1a.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #6 (rev 03)
00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio 
Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 2 (rev 03)
00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 3 (rev 03)
00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 4 (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller 
(rev 03)
00:1f.2 RAID bus controller: Intel Corporation Mobile 82801 SATA RAID 
Controller (rev 03)
00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller 
(rev 03)
01:00.0 VGA compatible controller: nVidia Corporation Device 06fb (rev a1)
03:01.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller 
(rev 04)
03:01.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro 
Host Adapter (rev 21)
03:01.2 SD Host controller: Ricoh Co Ltd R5C843 MMC Host Controller (rev 11)
0c:00.0 Network controller: Intel Corporation PRO/Wireless 5300 AGN 
[Shiloh] Network Connection
0e:00.0 Multimedia audio controller: Xilinx Corporation RME Hammerfall 
DSP (rev 3c)

lin-tv ~ # lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 003: ID 413c:2513 Dell Computer Corp. internal USB Hub of 
E-Port Replicator
Bus 001 Device 005: ID 0c45:63f8 Microdia Sonix Integrated Webcam
Bus 003 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub 
(part of BCM2046 Bluetooth)
Bus 005 Device 002: ID 0a5c:5800 Broadcom Corp. BCM5880 Secure 
Applications Processor
Bus 006 Device 002: ID 0451:2036 Texas Instruments, Inc. TUSB2036 Hub
Bus 003 Device 003: ID 413c:8157 Dell Computer Corp. Integrated Keyboard
Bus 003 Device 004: ID 413c:8158 Dell Computer Corp. Integrated Touchpad 
/ Trackstick
Bus 006 Device 004: ID 046d:c704 Logitech, Inc. diNovo Wireless Desktop
Bus 003 Device 005: ID 413c:8156 Dell Computer Corp. Wireless 370 
Bluetooth Mini-card
Bus 002 Device 008: ID 2040:1605 Hauppauge

Devices at Bus 2:

lin-tv ~ # lsusb | grep "Bus 002"
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 008: ID 2040:1605 Hauppauge

/Fredrik



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

* Re: Hauppauge HVR-930C problems
  2011-12-07 13:31   ` Fredrik Lingvall
@ 2011-12-07 13:55     ` Mauro Carvalho Chehab
  2011-12-07 14:25       ` Fredrik Lingvall
  0 siblings, 1 reply; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-07 13:55 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On 07-12-2011 11:31, Fredrik Lingvall wrote:
> On 12/07/11 13:56, Mauro Carvalho Chehab wrote:
>> On 02-12-2011 17:41, Fredrik Lingvall wrote:
>>> Hi ,
>>>
>>> I noticed that HVR 930C support was added 21-11-2011.
>>>
>>> I have build the new driver and installed the firmware but I'm struggling to get it working.
>>
>>> 4) DVB scanning
>>>
>>> # w_scan -c NO -f c
>>
>> ...
>>
>>> 602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
>>> QAM_256 f = 602000 kHz S6900C999
>>
>> This means that it detected a QAM_256 carrier, at 602000 kHz, with 6.900 Kbauds symbol rate.
>>
>>> start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left on device
>>
>> -ENOSPC error is generally associated with the lack of USB bandwidth support.
>> This means that the USB bus doesn't have enough free slots for the traffic
>> required in order to support your stream.
>>
>> It generally means that your device is connected into a USB 1.1 hub or port.
>> There are some new USB interfaces that are known to have troubles with the
>> Linux USB 2.0 implementation, as they internally use some USB hubs.
>> It could be your case, as the driver detects it on an USB 2.0 port:
>>
>>> [90072.073832] em28xx: New device WinTV HVR-930C @ 480 Mbps (2040:1605, interface 0, class 0)
>>
>> Please do a:
>>
>> # mount usbfs /proc/bus/usb -t usbfs
>> $ cat /proc/bus/usb/devices
>>
>> It should see you something like:
>>
>> T: Bus=08 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
>> B: Alloc= 29/900 us ( 3%), #Int= 2, #Iso= 0
>> D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0001 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
>> S: Product=UHCI Host Controller
>> S: SerialNumber=0000:00:1d.2
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 2 Ivl=255ms
>>
>> T: Bus=08 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 2 Spd=1.5 MxCh= 0
>> D: Ver= 1.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
>> P: Vendor=2101 ProdID=020f Rev= 0.01
>> C:* #Ifs= 2 Cfg#= 1 Atr=a0 MxPwr=500mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=03(HID ) Sub=01 Prot=01 Driver=usbhid
>> E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=10ms
>> I:* If#= 1 Alt= 0 #EPs= 1 Cls=03(HID ) Sub=01 Prot=02 Driver=usbhid
>> E: Ad=82(I) Atr=03(Int.) MxPS= 8 Ivl=10ms
>>
>> T: Bus=07 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
>> B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
>> D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0001 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
>> S: Product=UHCI Host Controller
>> S: SerialNumber=0000:00:1d.1
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 2 Ivl=255ms
>>
>> T: Bus=06 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
>> B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
>> D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0001 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
>> S: Product=UHCI Host Controller
>> S: SerialNumber=0000:00:1d.0
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 2 Ivl=255ms
>>
>> T: Bus=05 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
>> B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
>> D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0001 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
>> S: Product=UHCI Host Controller
>> S: SerialNumber=0000:00:1a.2
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 2 Ivl=255ms
>>
>> T: Bus=04 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
>> B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
>> D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0001 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
>> S: Product=UHCI Host Controller
>> S: SerialNumber=0000:00:1a.1
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 2 Ivl=255ms
>>
>> T: Bus=03 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
>> B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
>> D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0001 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
>> S: Product=UHCI Host Controller
>> S: SerialNumber=0000:00:1a.0
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 2 Ivl=255ms
>>
>> T: Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh= 6
>> B: Alloc= 0/800 us ( 0%), #Int= 0, #Iso= 0
>> D: Ver= 2.00 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0002 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 ehci_hcd
>> S: Product=EHCI Host Controller
>> S: SerialNumber=0000:00:1d.7
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 4 Ivl=256ms
>>
>> T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh= 6
>> B: Alloc= 0/800 us ( 0%), #Int= 0, #Iso= 0
>> D: Ver= 2.00 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=1d6b ProdID=0002 Rev= 3.01
>> S: Manufacturer=Linux 3.1.1-2.fc16.x86_64 ehci_hcd
>> S: Product=EHCI Host Controller
>> S: SerialNumber=0000:00:1a.7
>> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
>> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
>> E: Ad=81(I) Atr=03(Int.) MxPS= 4 Ivl=256ms
>>
>> T: Bus=01 Lev=01 Prnt=01 Port=05 Cnt=01 Dev#= 6 Spd=480 MxCh= 0
>> D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
>> P: Vendor=2040 ProdID=1605 Rev= 1.00
>> S: Product=WinTV HVR-930C
>> S: SerialNumber=4034508088
>> C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mA
>> I:* If#= 0 Alt= 0 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS= 0 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 0 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 0 Ivl=125us
>> I: If#= 0 Alt= 1 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS= 0 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>> I: If#= 0 Alt= 2 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS=1440 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>> I: If#= 0 Alt= 3 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS=2048 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>> I: If#= 0 Alt= 4 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS=2304 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>> I: If#= 0 Alt= 5 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS=2688 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>> I: If#= 0 Alt= 6 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS=2880 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>> I: If#= 0 Alt= 7 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
>> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
>> E: Ad=82(I) Atr=01(Isoc) MxPS=3072 Ivl=125us
>> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
>> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>>
>> In the above example, my HVR-930C is connected to Bus=01. The available
>> bandwidth at the USB bus is given by:
>>
>> T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh= 6
>> B: Alloc= 0/800 us ( 0%), #Int= 0, #Iso= 0
>>
>> (in the above example, device is not used)
>>
>> Tuning into a channel spends 19% of the USB bandwidth (e. g. 152
>> ISOC slots), as shown at:
>>
>> T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh= 6
>> B: Alloc=152/800 us (19%), #Int= 0, #Iso= 5
>>
>> The same bandwidth is required by w_scan/scan.
>>
>> You can also try to put your device on another bus and see if this would
>> fix the issue.
>>
>> Regards,
>> Mauro
>
> Mauro,
>
> This was interesting information! Here's the output while I'm doing a w_scan:
>
> lin-tv ~ # cat /proc/bus/usb/devices | grep -50 "Bus=02"
>
> <snip>
>
> T: Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh= 6
> B: Alloc= 0/800 us ( 0%), #Int= 0, #Iso= 0
> D: Ver= 2.00 Cls=09(hub ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
> P: Vendor=1d6b ProdID=0002 Rev= 3.02
> S: Manufacturer=Linux 3.2.0-rc3+ ehci_hcd
> S: Product=EHCI Host Controller
> S: SerialNumber=0000:00:1d.7
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
> E: Ad=81(I) Atr=03(Int.) MxPS= 4 Ivl=256ms
>
> T: Bus=02 Lev=01 Prnt=01 Port=02 Cnt=01 Dev#= 8 Spd=480 MxCh= 0
> D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
> P: Vendor=2040 ProdID=1605 Rev= 1.00
> S: Product=WinTV HVR-930C
> S: SerialNumber=4034210708
> C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mA
> I:* If#= 0 Alt= 0 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS= 0 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 0 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 0 Ivl=125us
> I: If#= 0 Alt= 1 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS= 0 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I: If#= 0 Alt= 2 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS=1440 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I: If#= 0 Alt= 3 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS=2048 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I: If#= 0 Alt= 4 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS=2304 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I: If#= 0 Alt= 5 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS=2688 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I: If#= 0 Alt= 6 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS=2880 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I: If#= 0 Alt= 7 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=128ms
> E: Ad=82(I) Atr=01(Isoc) MxPS=3072 Ivl=125us
> E: Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E: Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>
> <snip>
>
> Bus 2 doesn't seem to do anything [Alloc= 0/800 us ( 0%)] while I'm scanning!?

Scanning envolves 2 different things:
	1) tuning and locking into a channel;
	2) streaming and filtering, in order to seek for program tables
inside the MPEG-TS.

Step 1 uses USB control messages.

Only at step 2, the device will use the USB ISOC packets. The USB core will
see if is there enough bandwidth to reserve for ISOC transfers on that time
(based on other traffic data), and submit the URB's (or return -ENOSPC otherwise).

>
> BTW: I'm running Gentoo x86_64 (amd64) on a Dell M2400 laptop with an SSD disk.
>
> Other hardware connected is a 200 GB disk using the eSata slot, a 1TB WD disk connected using another USB slot, a RME Multiface II soundcard using the expresscard slot.

The external USB disk may be interfering, if it is also at bus 2.
Also, some laptops use USB for some internal components like wireless.

Please remove all other USB devices, disable wireless (if your device is USB)
and try again.

Regards,
Mauro

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

* Re: Hauppauge HVR-930C problems
  2011-12-07 12:56 ` Mauro Carvalho Chehab
@ 2011-12-07 13:31   ` Fredrik Lingvall
  2011-12-07 13:55     ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-07 13:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On 12/07/11 13:56, Mauro Carvalho Chehab wrote:
> On 02-12-2011 17:41, Fredrik Lingvall wrote:
>> Hi ,
>>
>> I noticed that HVR 930C support was added 21-11-2011.
>>
>> I have build the new driver and installed the firmware but I'm 
>> struggling to get it working.
>
>> 4) DVB scanning
>>
>> # w_scan -c NO -f c
>
> ...
>
>> 602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
>> QAM_256 f = 602000 kHz S6900C999
>
> This means that it detected a QAM_256 carrier, at 602000 kHz, with 
> 6.900 Kbauds symbol rate.
>
>> start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space 
>> left on device
>
> -ENOSPC error is generally associated with the lack of USB bandwidth 
> support.
> This means that the USB bus doesn't have enough free slots for the 
> traffic
> required in order to support your stream.
>
> It generally means that your device is connected into a USB 1.1 hub or 
> port.
> There are some new USB interfaces that are known to have troubles with 
> the
> Linux USB 2.0 implementation, as they internally use some USB hubs.
> It could be your case, as the driver detects it on an USB 2.0 port:
>
>> [90072.073832] em28xx: New device WinTV HVR-930C @ 480 Mbps 
>> (2040:1605, interface 0, class 0)
>
> Please do a:
>
> # mount usbfs /proc/bus/usb -t usbfs
> $ cat /proc/bus/usb/devices
>
> It should see you something like:
>
> T:  Bus=08 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
> B:  Alloc= 29/900 us ( 3%), #Int=  2, #Iso=  0
> D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0001 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
> S:  Product=UHCI Host Controller
> S:  SerialNumber=0000:00:1d.2
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms
>
> T:  Bus=08 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#=  2 Spd=1.5  MxCh= 0
> D:  Ver= 1.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
> P:  Vendor=2101 ProdID=020f Rev= 0.01
> C:* #Ifs= 2 Cfg#= 1 Atr=a0 MxPwr=500mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=01 Prot=01 Driver=usbhid
> E:  Ad=81(I) Atr=03(Int.) MxPS=   8 Ivl=10ms
> I:* If#= 1 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=01 Prot=02 Driver=usbhid
> E:  Ad=82(I) Atr=03(Int.) MxPS=   8 Ivl=10ms
>
> T:  Bus=07 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
> B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0001 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
> S:  Product=UHCI Host Controller
> S:  SerialNumber=0000:00:1d.1
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms
>
> T:  Bus=06 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
> B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0001 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
> S:  Product=UHCI Host Controller
> S:  SerialNumber=0000:00:1d.0
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms
>
> T:  Bus=05 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
> B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0001 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
> S:  Product=UHCI Host Controller
> S:  SerialNumber=0000:00:1a.2
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms
>
> T:  Bus=04 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
> B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0001 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
> S:  Product=UHCI Host Controller
> S:  SerialNumber=0000:00:1a.1
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms
>
> T:  Bus=03 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
> B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0001 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
> S:  Product=UHCI Host Controller
> S:  SerialNumber=0000:00:1a.0
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms
>
> T:  Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
> B:  Alloc=  0/800 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 2.00 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0002 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 ehci_hcd
> S:  Product=EHCI Host Controller
> S:  SerialNumber=0000:00:1d.7
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   4 Ivl=256ms
>
> T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
> B:  Alloc=  0/800 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 2.00 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=1d6b ProdID=0002 Rev= 3.01
> S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 ehci_hcd
> S:  Product=EHCI Host Controller
> S:  SerialNumber=0000:00:1a.7
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
> I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   4 Ivl=256ms
>
> T:  Bus=01 Lev=01 Prnt=01 Port=05 Cnt=01 Dev#=  6 Spd=480  MxCh= 0
> D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
> P:  Vendor=2040 ProdID=1605 Rev= 1.00
> S:  Product=WinTV HVR-930C
> S:  SerialNumber=4034508088
> C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mA
> I:* If#= 0 Alt= 0 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
> I:  If#= 0 Alt= 1 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I:  If#= 0 Alt= 2 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=1440 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I:  If#= 0 Alt= 3 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=2048 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I:  If#= 0 Alt= 4 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=2304 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I:  If#= 0 Alt= 5 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=2688 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I:  If#= 0 Alt= 6 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=2880 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
> I:  If#= 0 Alt= 7 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
> E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
> E:  Ad=82(I) Atr=01(Isoc) MxPS=3072 Ivl=125us
> E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
> E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
>
> In the above example, my HVR-930C is connected to Bus=01. The available
> bandwidth at the USB bus is given by:
>
> T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
> B:  Alloc=  0/800 us ( 0%), #Int=  0, #Iso=  0
>
> (in the above example, device is not used)
>
> Tuning into a channel spends 19% of the USB bandwidth (e. g. 152
> ISOC slots), as shown at:
>
> T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
> B:  Alloc=152/800 us (19%), #Int=  0, #Iso=  5
>
> The same bandwidth is required by w_scan/scan.
>
> You can also try to put your device on another bus and see if this would
> fix the issue.
>
> Regards,
> Mauro

Mauro,

This was interesting information! Here's the output while I'm doing a 
w_scan:

lin-tv ~ # cat /proc/bus/usb/devices | grep -50 "Bus=02"

<snip>

T:  Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
B:  Alloc=  0/800 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 2.00 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0002 Rev= 3.02
S:  Manufacturer=Linux 3.2.0-rc3+ ehci_hcd
S:  Product=EHCI Host Controller
S:  SerialNumber=0000:00:1d.7
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   4 Ivl=256ms

T:  Bus=02 Lev=01 Prnt=01 Port=02 Cnt=01 Dev#=  8 Spd=480  MxCh= 0
D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=2040 ProdID=1605 Rev= 1.00
S:  Product=WinTV HVR-930C
S:  SerialNumber=4034210708
C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mA
I:* If#= 0 Alt= 0 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
I:  If#= 0 Alt= 1 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 2 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=1440 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 3 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2048 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 4 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2304 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 5 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2688 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 6 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2880 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 7 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=3072 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us

<snip>

Bus 2 doesn't seem to do anything [Alloc=  0/800 us ( 0%)] while I'm 
scanning!?

BTW: I'm running Gentoo x86_64 (amd64) on a Dell M2400 laptop with an 
SSD disk.

Other hardware connected is a 200 GB disk using the eSata slot, a 1TB WD 
disk connected using another USB slot, a RME Multiface II soundcard 
using the expresscard slot.

Regards,

/Fredrik



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

* Re: Hauppauge HVR-930C problems
  2011-12-02 19:41 Fredrik Lingvall
  2011-12-02 19:45 ` Devin Heitmueller
@ 2011-12-07 12:56 ` Mauro Carvalho Chehab
  2011-12-07 13:31   ` Fredrik Lingvall
  1 sibling, 1 reply; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-07 12:56 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On 02-12-2011 17:41, Fredrik Lingvall wrote:
> Hi ,
>
> I noticed that HVR 930C support was added 21-11-2011.
>
> I have build the new driver and installed the firmware but I'm struggling to get it working.

> 4) DVB scanning
>
> # w_scan -c NO -f c

...

> 602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
> QAM_256 f = 602000 kHz S6900C999

This means that it detected a QAM_256 carrier, at 602000 kHz, with 6.900 Kbauds symbol rate.

> start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left on device

-ENOSPC error is generally associated with the lack of USB bandwidth support.
This means that the USB bus doesn't have enough free slots for the traffic
required in order to support your stream.

It generally means that your device is connected into a USB 1.1 hub or port.
There are some new USB interfaces that are known to have troubles with the
Linux USB 2.0 implementation, as they internally use some USB hubs.
It could be your case, as the driver detects it on an USB 2.0 port:

> [90072.073832] em28xx: New device WinTV HVR-930C @ 480 Mbps (2040:1605, interface 0, class 0)

Please do a:

# mount usbfs /proc/bus/usb -t usbfs
$ cat /proc/bus/usb/devices

It should see you something like:

T:  Bus=08 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
B:  Alloc= 29/900 us ( 3%), #Int=  2, #Iso=  0
D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0001 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
S:  Product=UHCI Host Controller
S:  SerialNumber=0000:00:1d.2
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms

T:  Bus=08 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#=  2 Spd=1.5  MxCh= 0
D:  Ver= 1.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
P:  Vendor=2101 ProdID=020f Rev= 0.01
C:* #Ifs= 2 Cfg#= 1 Atr=a0 MxPwr=500mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=01 Prot=01 Driver=usbhid
E:  Ad=81(I) Atr=03(Int.) MxPS=   8 Ivl=10ms
I:* If#= 1 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=01 Prot=02 Driver=usbhid
E:  Ad=82(I) Atr=03(Int.) MxPS=   8 Ivl=10ms

T:  Bus=07 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0001 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
S:  Product=UHCI Host Controller
S:  SerialNumber=0000:00:1d.1
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms

T:  Bus=06 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0001 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
S:  Product=UHCI Host Controller
S:  SerialNumber=0000:00:1d.0
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms

T:  Bus=05 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0001 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
S:  Product=UHCI Host Controller
S:  SerialNumber=0000:00:1a.2
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms

T:  Bus=04 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0001 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
S:  Product=UHCI Host Controller
S:  SerialNumber=0000:00:1a.1
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms

T:  Bus=03 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12   MxCh= 2
B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0001 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 uhci_hcd
S:  Product=UHCI Host Controller
S:  SerialNumber=0000:00:1a.0
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms

T:  Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
B:  Alloc=  0/800 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 2.00 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0002 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 ehci_hcd
S:  Product=EHCI Host Controller
S:  SerialNumber=0000:00:1d.7
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   4 Ivl=256ms

T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
B:  Alloc=  0/800 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 2.00 Cls=09(hub  ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1d6b ProdID=0002 Rev= 3.01
S:  Manufacturer=Linux 3.1.1-2.fc16.x86_64 ehci_hcd
S:  Product=EHCI Host Controller
S:  SerialNumber=0000:00:1a.7
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   4 Ivl=256ms

T:  Bus=01 Lev=01 Prnt=01 Port=05 Cnt=01 Dev#=  6 Spd=480  MxCh= 0
D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=2040 ProdID=1605 Rev= 1.00
S:  Product=WinTV HVR-930C
S:  SerialNumber=4034508088
C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mA
I:* If#= 0 Alt= 0 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
I:  If#= 0 Alt= 1 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=   0 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 2 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=1440 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 3 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2048 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 4 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2304 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 5 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2688 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 6 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=2880 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
I:  If#= 0 Alt= 7 #EPs= 4 Cls=ff(vend.) Sub=00 Prot=ff Driver=em28xx
E:  Ad=81(I) Atr=03(Int.) MxPS=   1 Ivl=128ms
E:  Ad=82(I) Atr=01(Isoc) MxPS=3072 Ivl=125us
E:  Ad=83(I) Atr=01(Isoc) MxPS= 196 Ivl=1ms
E:  Ad=84(I) Atr=01(Isoc) MxPS= 940 Ivl=125us

In the above example, my HVR-930C is connected to Bus=01. The available
bandwidth at the USB bus is given by:

T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
B:  Alloc=  0/800 us ( 0%), #Int=  0, #Iso=  0

(in the above example, device is not used)

Tuning into a channel spends 19% of the USB bandwidth (e. g. 152
ISOC slots), as shown at:

T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=480  MxCh= 6
B:  Alloc=152/800 us (19%), #Int=  0, #Iso=  5

The same bandwidth is required by w_scan/scan.

You can also try to put your device on another bus and see if this would
fix the issue.

Regards,
Mauro

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

* Re: Hauppauge HVR-930C problems
  2011-12-05 23:37   ` Eddi De Pieri
  2011-12-06  8:38     ` Fredrik Lingvall
@ 2011-12-07 12:22     ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 31+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-07 12:22 UTC (permalink / raw)
  To: Eddi De Pieri; +Cc: Devin Heitmueller, Fredrik Lingvall, linux-media

On 05-12-2011 21:37, Eddi De Pieri wrote:
> try using scan from dvb-apps and not w_scan.
>
> Actually It seems to me w_scan isn't compatible with this driver due
> some missing lock.

It works for me. The only parameter that it is mandatory is "-f c",
in order to use the DVB-C frontend, instead of DVB-T.

I've passed a few other parameters to speedup it (otherwise, it would
take hours, as it tries first QAM_64, on all possible symbol rates,
and then QAM_256).

Anyway:

$ w_scan -f c -S 13 -Q 1
w_scan version 20111011 (compiled for DVB API 5.3)
guessing country 'BR', use -c <country> to override
using settings for BRAZIL
DVB cable
DVB-C BR
frontend_type DVB-C, channellist 10
output format vdr-1.6
output charset 'UTF-8', use -C <charset> to override
Info: using DVB adapter auto detection.
	/dev/dvb/adapter0/frontend0 -> DVB-C "DRXK DVB-C": good :-)
	/dev/dvb/adapter0/frontend1 -> DVB-T "DRXK DVB-T": specified was DVB-C -> SEARCH NEXT ONE.
Using DVB-C frontend (adapter /dev/dvb/adapter0/frontend0)
-_-_-_-_ Getting frontend capabilities-_-_-_-_
Using DVB API 5.4
frontend 'DRXK DVB-C' supports
INVERSION_AUTO
QAM_AUTO not supported, trying QAM_256.
FEC_AUTO
FREQ (47.00MHz ... 862.00MHz)
SRATE (0.870MBd ... 11.700MBd)
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
searching QAM256...
57000: sr5217 (time: 00:01)
63000: sr5217 (time: 00:03)
69000: sr5217 (time: 00:06)
79000: sr5217 (time: 00:08)
85000: sr5217 (time: 00:11)
177000: sr5217 (time: 00:13)
183000: sr5217 (time: 00:16)
189000: sr5217 (time: 00:18)
195000: sr5217 (time: 00:21)
201000: sr5217 (time: 00:23)
207000: sr5217 (time: 00:26)
213000: sr5217 (time: 00:28)
123000: sr5217 (time: 00:31)
129000: sr5217 (time: 00:34)
135000: sr5217 (time: 00:36)
141000: sr5217 (time: 00:39)
147000: sr5217 (time: 00:41)
153000: sr5217 (time: 00:44)
159000: sr5217 (time: 00:46)
165000: sr5217 (time: 00:49)
171000: sr5217 (time: 00:51)
219000: sr5217 (time: 00:54)
225000: sr5217 (time: 00:56)
231000: sr5217 (time: 00:59)
237000: sr5217 (time: 01:01)
243000: sr5217 (time: 01:04)
249000: sr5217 (time: 01:07)
255000: sr5217 (time: 01:09)
261000: sr5217 (time: 01:12)
267000: sr5217 (time: 01:14)
273000: sr5217 (time: 01:17)
279000: sr5217 (time: 01:19)
285000: sr5217 (time: 01:22)
291000: sr5217 (time: 01:24)
297000: sr5217 (time: 01:27)
303000: sr5217 (time: 01:29)
309000: sr5217 (time: 01:32)
315000: sr5217 (time: 01:34)
321000: sr5217 (time: 01:37)
327000: sr5217 (time: 01:40)
333000: sr5217 (time: 01:42)
339000: sr5217 (time: 01:45)
345000: sr5217 (time: 01:47)
351000: sr5217 (time: 01:50)
357000: sr5217 (time: 01:52)
363000: sr5217 (time: 01:55)
369000: sr5217 (time: 01:57)
375000: sr5217 (time: 02:00)
381000: sr5217 (time: 02:02)
387000: sr5217 (time: 02:05)
393000: sr5217 (time: 02:08)
399000: sr5217 (time: 02:10)
405000: sr5217 (time: 02:13)
411000: sr5217 (time: 02:15)
417000: sr5217 (time: 02:18)
423000: sr5217 (time: 02:20)
429000: sr5217 (time: 02:23)
435000: sr5217 (time: 02:25)
441000: sr5217 (time: 02:28)
447000: sr5217 (time: 02:30)
453000: sr5217 (time: 02:33)
459000: sr5217 (time: 02:35)
465000: sr5217 (time: 02:38)
471000: sr5217 (time: 02:41)
477000: sr5217 (time: 02:43)
483000: sr5217 (time: 02:46)
489000: sr5217 (time: 02:48)
495000: sr5217 (time: 02:51)
501000: sr5217 (time: 02:53)
507000: sr5217 (time: 02:56)
513000: sr5217 (time: 02:58)
519000: sr5217 (time: 03:01)
525000: sr5217 (time: 03:03)
531000: sr5217 (time: 03:06)
537000: sr5217 (time: 03:08)
543000: sr5217 (time: 03:11)
549000: sr5217 (time: 03:14)
555000: sr5217 (time: 03:16)
561000: sr5217 (time: 03:19)
567000: sr5217 (time: 03:21)
573000: sr5217 (time: 03:24) (time: 03:25) signal ok:
	QAM_256  f = 573000 kHz S5217C999
	new transponder:
	   (QAM_256  f = 591000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 597000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 603000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 609000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 615000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 621000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 627000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 633000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 639000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 681000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 651000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 693000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 699000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 687000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 657000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 663000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 669000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 705000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 711000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 717000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 723000 kHz S5217C34)
	updating transponder:
	   (QAM_256  f = 573000 kHz S5217C999)
	to (QAM_256  f = 573000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 579000 kHz S5217C34)
	new transponder:
	   (QAM_256  f = 585000 kHz S5217C34)
579000: skipped (already known transponder)
585000: skipped (already known transponder)
591000: skipped (already known transponder)
597000: skipped (already known transponder)
603000: skipped (already known transponder)
609000: skipped (already known transponder)
615000: skipped (already known transponder)
621000: skipped (already known transponder)
627000: skipped (already known transponder)
633000: skipped (already known transponder)
639000: skipped (already known transponder)
645000: sr5217 (time: 03:36)
93000: sr5217 (time: 03:38)
99000: sr5217 (time: 03:41)
105000: sr5217 (time: 03:43)
111000: sr5217 (time: 03:46)
117000: sr5217 (time: 03:48)
651000: skipped (already known transponder)
657000: skipped (already known transponder)
663000: skipped (already known transponder)
669000: skipped (already known transponder)
675000: sr5217 (time: 03:51)
681000: skipped (already known transponder)
687000: skipped (already known transponder)
693000: skipped (already known transponder)
699000: skipped (already known transponder)
705000: skipped (already known transponder)
711000: skipped (already known transponder)
717000: skipped (already known transponder)
723000: skipped (already known transponder)
729000: sr5217 (time: 03:53)
735000: sr5217 (time: 03:56)
741000: sr5217 (time: 03:58)
747000: sr5217 (time: 04:01)
753000: sr5217 (time: 04:04)
759000: sr5217 (time: 04:06)
765000: sr5217 (time: 04:09)
771000: sr5217 (time: 04:11)
777000: sr5217 (time: 04:14)
783000: sr5217 (time: 04:16)
789000: sr5217 (time: 04:19)
795000: sr5217 (time: 04:21)
801000: sr5217 (time: 04:24)
807000: sr5217 (time: 04:26)
813000: sr5217 (time: 04:29)
819000: sr5217 (time: 04:31)
825000: sr5217 (time: 04:34)
831000: sr5217 (time: 04:37)
837000: sr5217 (time: 04:39)
843000: sr5217 (time: 04:42)
849000: sr5217 (time: 04:44)
tune to: QAM_256  f = 573000 kHz S5217C34
(time: 04:47) 	service = SBT ((null))
	service = Globo ((null))
	service = Record ((null))
	service = Band ((null))
	service = Cartoon Network ((null))
	service = TNT ((null))
	service = Boomerang ((null))
	service = DW-TV ((null))
	service = BBC World News ((null))
	service = NET Games ((null))
	service = NET Mœsica ((null))
	service = Pagode ((null))
	service = AxØ ((null))
	service = Festa ((null))
	service = Trilhas Sonoras ((null))
	service = Radio Multishow ((null))
	service = 01070136 ((null))
	service = 01070236 ((null))
tune to: QAM_256  f = 591000 kHz S5217C34
(time: 04:58) 	service = GNT ((null))
	service = Multishow ((null))
	service = Warner Channel ((null))
	service = Canal Brasil ((null))
	service = ESPN Brasil ((null))
	service = HBO2 ((null))
	service = Premiere FC ((null))
	service = RAI ((null))
	service = CNN International ((null))
	service = Anos 80 ((null))
	service = Blues ((null))
	service = Rhythm & Blues ((null))
	service = Standards ((null))
tune to: QAM_256  f = 597000 kHz S5217C34
(time: 05:09) 	service = TV Senado ((null))
	service = Rede Vida ((null))
	service = Canal Rural ((null))
	service = Disney XD ((null))
	service = Telecine Premium ((null))
	service = Telecine Cult ((null))
	service = Disney Channel ((null))
	service = Record News ((null))
	service = TV5 ((null))
	service = Samba de Raiz ((null))
	service = New Age ((null))
	service = Jazz Contemporaneo ((null))
	service = Mœsica ClÆssica ((null))
tune to: QAM_256  f = 603000 kHz S5217C34
(time: 05:20) 	service = Globo News ((null))
	service = Universal Channel ((null))
	service = Nickelodeon ((null))
	service = Telecine Action ((null))
	service = Telecine Touch ((null))
	service = VH1 Mega Hits ((null))
	service = VH1 ((null))
	service = Aquecimento BBB12 ((null))
	service = Sexy Hot ((null))
	service = RÆdio Kids ((null))
	service = Forrð ((null))
	service = Lounge ((null))
	service = Mœsica Orquestrada ((null))
tune to: QAM_256  f = 609000 kHz S5217C34
(time: 05:31) 	service = NET Cidade ((null))
	service = Rede Mundial ((null))
	service = Rede 21 ((null))
	service = TV JustiĿa ((null))
	service = SporTV2 ((null))
	service = SporTV ((null))
	service = FX ((null))
	service = The History Channel ((null))
	service = Fox Life ((null))
	service = Sertanejo ((null))
	service = Rock ClÆssico ((null))
	service = Reggae ((null))
	service = Eletrħnica ((null))
	service = CBN ((null))
tune to: QAM_256  f = 615000 kHz S5217C34
(time: 05:42) 	service = Telecine Pipoca ((null))
	service = E! ((null))
	service = Discovery Science ((null))
	service = Discovery Civilization ((null))
	service = Discovery Turbo ((null))
	service = Combate ((null))
	service = Premiere FC+ (Premiere FC+)
	service = Premiere 24hs ((null))
	service = Fox News ((null))
	service = MPB ((null))
	service = Anos 70 ((null))
	service = Disco ((null))
	service = Gospel ((null))
	service = Globo FM ((null))
tune to: QAM_256  f = 621000 kHz S5217C34
(time: 05:53) 	service = MTV ((null))
	service = Gazeta ((null))
	service = Canal UniversitÆrio ((null))
	service = NET TV ((null))
	service = Max ((null))
	service = Max * ((null))
	service = Premiere FC ((null))
	service = ART Latino ((null))
	service = For Man ((null))
	service = NET ((null))
tune to: QAM_256  f = 627000 kHz S5217C34
(time: 06:04) 	service = TV RÆ Tim Bum ((null))
	service = MGM ((null))
	service = HBO Family ((null))
	service = Max Prime ((null))
	service = HBO Plus *e ((null))
	service = HBO Family *e ((null))
	service = Maxprime *e ((null))
	service = Bem Simples ((null))
	service = Mosaico Multijogos ((null))
tune to: QAM_256  f = 633000 kHz S5217C34
(time: 06:15) 	service = NET ((null))
	service = PPV em Cartaz ((null))
	service = PPV01 Filmes ((null))
	service = PPV03 Filmes ((null))
	service = PPV04 Filmes ((null))
	service = PPV05 Filmes ((null))
	service = PPV06 Filmes ((null))
	service = Rede Gospel ((null))
	service = Canal de Vendas NET ((null))
	service = Climatempo ((null))
	service = Canal NET ((null))
	service = Playboy TV ((null))
tune to: QAM_256  f = 639000 kHz S5217C34
(time: 06:27) 	service = A&E ((null))
	service = PPV02 Wide ((null))
	service = PFC Interativo ((null))
	service = Premiere FC ((null))
	service = Studio Universal ((null))
	service = Portal ITV ((null))
	service = Interatividade ((null))
	service = Cartoon Games ((null))
	service = Venus ((null))
	service = History Channel HD ((null))
tune to: QAM_256  f = 681000 kHz S5217C34
(time: 06:39) 	service = Canal Comunitario ((null))
	service = World Net ((null))
	service = Megapix ((null))
	service = Sony Spin ((null))
	service = TCM ((null))
	service = Syfy ((null))
	service = TLC ((null))
	service = NHK ((null))
	service = Private ((null))
tune to: QAM_256  f = 651000 kHz S5217C34
(time: 06:50) 	service = Canal ComunitÆrio ((null))
	service = Canal ComunitÆrio JCI ((null))
	service = TV CanĿªo Nova ((null))
	service = TV CÐmara ((null))
	service = Canal Legislativo ((null))
	service = TV Brasil ((null))
	service = TV AssemblØia JCI ((null))
	service = SESCTV ((null))
	service = Mosaico Variedades ((null))
	service = Mosaico InformaĿªo ((null))
tune to: QAM_256  f = 693000 kHz S5217C34
(time: 07:01) 	service = Band Sports ((null))
	service = Band News ((null))
	service = Premiere FC ((null))
	service = Sextreme ((null))
	service = RFI ((null))
	service = Globosat HD ((null))
tune to: QAM_256  f = 699000 kHz S5217C34
(time: 07:12) 	service = Glitz* ((null))
	service = Telecine Premium HD ((null))
	service = Premiere 3D ((null))
tune to: QAM_256  f = 687000 kHz S5217C34
(time: 07:23) 	service = NBR ((null))
	service = Multishow HD ((null))
	service = Fox+NatGeo HD ((null))
tune to: QAM_256  f = 657000 kHz S5217C34
(time: 07:35) 	service = NET ((null))
	service = Telecine Pipoca HD ((null))
	service = HBO ((null))
	service = HBO HD ((null))
tune to: QAM_256  f = 663000 kHz S5217C34
(time: 07:46) 	service = Viva ((null))
	service = RedeTV! HD ((null))
	service = Band HD ((null))
tune to: QAM_256  f = 669000 kHz S5217C34
(time: 07:58) 	service = Space ((null))
	service = Telecine Fun ((null))
	service = Globo HD ((null))
	service = Megapix HD ((null))
tune to: QAM_256  f = 705000 kHz S5217C34
(time: 08:09) 	service = NatGeo Wild HD ((null))
	service = Discovery Theater HD ((null))
	service = TLC HD ((null))
tune to: QAM_256  f = 711000 kHz S5217C34
(time: 08:20) 	service = TNT HD ((null))
	service = Space HD ((null))
	service = Telecine Action HD ((null))
tune to: QAM_256  f = 717000 kHz S5217C34
(time: 08:31) 	service = NET (NET)
	service = ESPN HD ((null))
	service = Max HD ((null))
tune to: QAM_256  f = 723000 kHz S5217C34
(time: 08:42) 	service = VH1 HD ((null))
	service = Warner HD ((null))
	service = Sony HD ((null))
tune to: QAM_256  f = 579000 kHz S5217C34
(time: 08:53) 	service = National Geographic ((null))
	service = AXN ((null))
	service = Sony ((null))
	service = Fox ((null))
	service = ESPN ((null))
	service = HBO ((null))
	service = HBO Plus ((null))
	service = Speed ((null))
	service = Bloomberg ((null))
	service = Baladas RomÐnticas ((null))
	service = Anos 60 ((null))
	service = New Rock ((null))
	service = Anos 90 ((null))
	service = RÆdio Globo SP ((null))
WARNING: section too short: service_id == 0x3a6, section_length == 6, descriptors_loop_len == 0
tune to: QAM_256  f = 585000 kHz S5217C34
(time: 09:05) 	service = Cultura ((null))
	service = RedeTV! ((null))
	service = Shop Time ((null))
	service = Futura ((null))
	service = Discovery Kids ((null))
	service = Discovery Channel ((null))
	service = Liv ((null))
	service = Disc. Home & Health ((null))
	service = Animal Planet ((null))
	service = Natal ((null))
	service = Bossa Nova ((null))
	service = Latino ((null))
	service = Jazz ClÆssico ((null))
dumping lists (195 services)
SBT;(null):573000:M256:C:5217:256:257:0:0:4:20:141:0
Globo;(null):573000:M256:C:5217:584:305:0:0:5:20:141:0
Record;(null):573000:M256:C:5217:288:289:0:0:7:20:141:0
Band;(null):573000:M256:C:5217:272:273:0:0:13:20:141:0
Cartoon Network;(null):573000:M256:C:5217:320:321,322=por:0:1801,1802:46:20:141:0
TNT;(null):573000:M256:C:5217:336:337,338=por:0:1801,1802:48:20:141:0
Boomerang;(null):573000:M256:C:5217:352:353,354=por:0:1801,1802:57:20:141:0
DW-TV;(null):573000:M256:C:5217:368:369,1526=deu:0:1801,1802:144:20:141:0
BBC World News;(null):573000:M256:C:5217:384:385:0:1801,1802:152:20:141:0
Pagode;(null):573000:M256:C:5217:0:102:0:0:307:20:141:0
AxØ;(null):573000:M256:C:5217:0:101:0:0:309:20:141:0
Festa;(null):573000:M256:C:5217:0:103:0:0:326:20:141:0
Trilhas Sonoras;(null):573000:M256:C:5217:0:104:0:0:342:20:141:0
Radio Multishow;(null):573000:M256:C:5217:0:117:0:0:347:20:141:0
GNT;(null):591000:M256:C:5217:1120:1121:0:1801,1802:41:20:144:0
Multishow;(null):591000:M256:C:5217:1104:1105,1106=por:0:1801,1802:42:20:144:0
Warner Channel;(null):591000:M256:C:5217:120:0=por;121,122:0:1801,1802:47:20:144:0
Canal Brasil;(null):591000:M256:C:5217:1136:1137:0:1801,1802:66:20:144:0
ESPN Brasil;(null):591000:M256:C:5217:1072:1074:0:1801,1802:70:20:144:0
HBO2;(null):591000:M256:C:5217:1056:0=por;1057:0:1801,1802:73:20:144:0
Premiere FC;(null):591000:M256:C:5217:1152:2337:0:1801,1802:124:20:144:0
RAI;(null):591000:M256:C:5217:1040+60:1042:0:1801,1802:140:20:144:0
CNN International;(null):591000:M256:C:5217:1024:1025:0:1801,1802:153:20:144:0
Anos 80;(null):591000:M256:C:5217:0:114:0:0:318:20:144:0
Blues;(null):591000:M256:C:5217:0:115:0:0:333:20:144:0
Rhythm & Blues;(null):591000:M256:C:5217:0:116:0:0:334:20:144:0
Standards;(null):591000:M256:C:5217:0:113:0:0:335:20:144:0
TV Senado;(null):597000:M256:C:5217:3584:3585:0:0:16:20:145:0
Rede Vida;(null):597000:M256:C:5217:1296:1297:0:0:19:20:145:0
Canal Rural;(null):597000:M256:C:5217:1280:1281:0:0:35:20:145:0
Disney XD;(null):597000:M256:C:5217:1392:0=eng;1393,1394:0:1801,1802:56:20:145:0
Telecine Premium;(null):597000:M256:C:5217:1360:1362=5.1,1363=eng;1361:0:1801,1802:61:20:145:0
Telecine Cult;(null):597000:M256:C:5217:1376:1377:0:1801,1802:65:20:145:0
Disney Channel;(null):597000:M256:C:5217:1408:0=por;1409,1410:0:1801,1802:67:20:145:0
Record News;(null):597000:M256:C:5217:1312:1313:0:1801,1802:93:20:145:0
TV5;(null):597000:M256:C:5217:1760:1720:0:1801,1802:141:20:145:0
Samba de Raiz;(null):597000:M256:C:5217:0:133:0:0:308:20:145:0
New Age;(null):597000:M256:C:5217:0:136:0:0:329:20:145:0
Jazz Contemporaneo;(null):597000:M256:C:5217:0:135:0:0:337:20:145:0
Mœsica ClÆssica;(null):597000:M256:C:5217:0:134:0:0:338:20:145:0
Globo News;(null):603000:M256:C:5217:1632:1633:0:1801,1802:40:20:146:0
Universal Channel;(null):603000:M256:C:5217:1616:1617,1618=por:0:1801,1802:43:20:146:0
Nickelodeon;(null):603000:M256:C:5217:1568:1569,1570=por:0:1801,1802:44:20:146:0
Telecine Action;(null):603000:M256:C:5217:1536:1537,1538=por:0:1801,1802:62:20:146:0
Telecine Touch;(null):603000:M256:C:5217:1552:1553,1554=por:0:1801,1802:63:20:146:0
VH1 Mega Hits;(null):603000:M256:C:5217:1664:1665:0:0:88:20:146:0
VH1;(null):603000:M256:C:5217:1600:1601:0:1801,1802:89:20:146:0
Aquecimento BBB12;(null):603000:M256:C:5217:4660:4620,4622:0:1801,1802:126:20:146:0
Sexy Hot;(null):603000:M256:C:5217:1648:0=eng;1649:0:1801,1802:285:20:146:0
RÆdio Kids;(null):603000:M256:C:5217:0:139:0:0:305:20:146:0
Forrð;(null):603000:M256:C:5217:0:137:0:0:311:20:146:0
Lounge;(null):603000:M256:C:5217:0:138:0:0:328:20:146:0
Mœsica Orquestrada;(null):603000:M256:C:5217:0:140:0:0:339:20:146:0
NET Cidade;(null):609000:M256:C:5217:1792:1793:0:0:10:20:147:0
Rede Mundial;(null):609000:M256:C:5217:1824:1825:0:0:18:20:147:0
Rede 21;(null):609000:M256:C:5217:1840:1841:0:0:20:20:147:0
TV JustiĿa;(null):609000:M256:C:5217:289:290,291=por:0:0:21:20:147:0
SporTV2;(null):609000:M256:C:5217:1872:1873:0:1801,1802:38:20:147:0
SporTV;(null):609000:M256:C:5217:1856:1857:0:1801,1802:39:20:147:0
FX;(null):609000:M256:C:5217:1888:1889,1890=por:0:1801,1802:54:20:147:0
The History Channel;(null):609000:M256:C:5217:1920:0=por;1921,1922:0:1801,1802:82:20:147:0
Fox Life;(null):609000:M256:C:5217:1904:1905,1906=por:0:1801,1802:96:20:147:0
Sertanejo;(null):609000:M256:C:5217:0:141:0:0:310:20:147:0
Rock ClÆssico;(null):609000:M256:C:5217:0:39:0:0:320:20:147:0
Reggae;(null):609000:M256:C:5217:0:142:0:0:323:20:147:0
Eletrħnica;(null):609000:M256:C:5217:0:143:0:0:327:20:147:0
CBN;(null):609000:M256:C:5217:0:151:0:0:349:20:147:0
Telecine Pipoca;(null):615000:M256:C:5217:2096:2097,2098=por:0:1801,1802:64:20:148:0
E!;(null):615000:M256:C:5217:2112:0=eng;2113,2114:0:1801,1802:84:20:148:0
Discovery Science;(null):615000:M256:C:5217:2128:2129,2130=por:0:1801,1802:85:20:148:0
Discovery Civilization;(null):615000:M256:C:5217:2144:2145,2146=por:0:1801,1802:86:20:148:0
Discovery Turbo;(null):615000:M256:C:5217:2160:2161,2162=por:0:1801,1802:87:20:148:0
Combate;(null):615000:M256:C:5217:2048:2049:0:1801,1802:121:20:148:0
Premiere FC+;Premiere FC+:615000:M256:C:5217:2064:2065:0:1801,1802:122:20:148:0
Premiere 24hs;(null):615000:M256:C:5217:2080:2081:0:1801,1802:123:20:148:0
Fox News;(null):615000:M256:C:5217:2176:2177:0:0:151:20:148:0
MPB;(null):615000:M256:C:5217:0:39:0:0:304:20:148:0
Anos 70;(null):615000:M256:C:5217:0:146:0:0:317:20:148:0
Disco;(null):615000:M256:C:5217:0:147:0:0:322:20:148:0
Gospel;(null):615000:M256:C:5217:0:148:0:0:343:20:148:0
Globo FM;(null):615000:M256:C:5217:0:152:0:0:348:20:148:0
MTV;(null):621000:M256:C:5217:2320:2321:0:0:6:20:149:0
Gazeta;(null):621000:M256:C:5217:2352:2353:0:0:11:20:149:0
Canal UniversitÆrio;(null):621000:M256:C:5217:2304:2305:0:0:14:20:149:0
NET TV;(null):621000:M256:C:5217:2864:2865:0:0:37:20:149:0
Max;(null):621000:M256:C:5217:2400:0=por;2401,2402:0:1801,1802:75:20:149:0
Max *;(null):621000:M256:C:5217:2416:0=dub;2417,2418:0:1801,1802:79:20:149:0
Premiere FC;(null):621000:M256:C:5217:2368:33:0:1801,1802:125:20:149:0
ART Latino;(null):621000:M256:C:5217:519+37:720:0:1801,1802:145:20:149:0
For Man;(null):621000:M256:C:5217:2432:0=por;2433,2434:0:1801,1802:291:20:149:0
NET;(null):621000:M256:C:5217:2864+8191:2337:0:0:299:20:149:0
TV RÆ Tim Bum;(null):627000:M256:C:5217:2672:2673:0:0:29:20:150:0
MGM;(null):627000:M256:C:5217:2640:2641,2642=por:0:1801,1802:68:20:150:0
HBO Family;(null):627000:M256:C:5217:2560:0=dub;2561,2563:0:1801,1802:74:20:150:0
Max Prime;(null):627000:M256:C:5217:2608:0=por;2609,2610:0:1801,1802:76:20:150:0
HBO Plus *e;(null):627000:M256:C:5217:2592:0=eng;659,687:0:1801,1802:77:20:150:0
HBO Family *e;(null):627000:M256:C:5217:2624:138;2625,2626,2627:0:1801,1802:78:20:150:0
Maxprime *e;(null):627000:M256:C:5217:2576:0=spa;815,2579:0:1801,1802:80:20:150:0
Mosaico Multijogos;(null):627000:M256:C:5217:2688:4920,4922:0:0:130:20:150:0
Bem Simples;(null):627000:M256:C:5217:2656:0=por;2657:0:0:81:20:150:0
NET;(null):633000:M256:C:5217:2864:2865:0:0:1:20:151:0
PPV em Cartaz;(null):633000:M256:C:5217:2848:2849:0:0:100:20:151:0
PPV01 Filmes;(null):633000:M256:C:5217:2880:0=por;2881:0:1801,1802:101:20:151:0
PPV03 Filmes;(null):633000:M256:C:5217:2896:0=spa;2897:0:1801,1802:103:20:151:0
PPV04 Filmes;(null):633000:M256:C:5217:2912:0=por;2913,2914:0:1801,1802:104:20:151:0
PPV05 Filmes;(null):633000:M256:C:5217:2928:0=por;2929,2930:0:1801,1802:105:20:151:0
PPV06 Filmes;(null):633000:M256:C:5217:2944:0=por;2945,2946:0:1801,1802:106:20:151:0
Rede Gospel;(null):633000:M256:C:5217:2832:2833:0:0:137:20:151:0
Playboy TV;(null):633000:M256:C:5217:2816:2817:0:1801,1802:281:20:151:0
A&E;(null):639000:M256:C:5217:3168:0=por;3169,3170:0:1801,1802:83:20:152:0
PPV02 Wide;(null):639000:M256:C:5217:3088:0=por;3089:0:1801,1802:102:20:152:0
Premiere FC;(null):639000:M256:C:5217:2336:2337:0:0:127:20:152:0
Studio Universal;(null):639000:M256:C:5217:3152:3153:0:0:138:20:152:0
Venus;(null):639000:M256:C:5217:3200:3201:0:1801,1802:284:20:152:0
History Channel HD;(null):639000:M256:C:5217:3104:0:0:1801,1802:582:20:152:0
Canal Comunitario;(null):681000:M256:C:5217:2864:2865:0:0:25:20:153:0
World Net;(null):681000:M256:C:5217:3408:3409:0:0:26:20:153:0
Megapix;(null):681000:M256:C:5217:3440:3441,3442=por:0:1801,1802:58:20:153:0
Sony Spin;(null):681000:M256:C:5217:3376:0=por;3377,3378:0:1801,1802:90:20:153:0
TCM;(null):681000:M256:C:5217:3360:3361:0:1801,1802:91:20:153:0
Syfy;(null):681000:M256:C:5217:3344:3345,3346=por:0:1801,1802:92:20:153:0
TLC;(null):681000:M256:C:5217:1660:1632,1633=por:0:1801,1802:94:20:153:0
NHK;(null):681000:M256:C:5217:3456:3457:0:1801,1802:147:20:153:0
Private;(null):681000:M256:C:5217:3472:0:0:1801,1802:283:20:153:0
Canal ComunitÆrio;(null):651000:M256:C:5217:1328:1329:0:0:3:20:154:0
Canal ComunitÆrio JCI;(null):651000:M256:C:5217:384:785,8003=eng:0:0:9:20:154:0
TV CanĿªo Nova;(null):651000:M256:C:5217:8000:8001:0:0:12:20:154:0
TV CÐmara;(null):651000:M256:C:5217:3616:3617:0:0:15:20:154:0
Canal Legislativo;(null):651000:M256:C:5217:1808:1809:0:0:17:20:154:0
TV Brasil;(null):651000:M256:C:5217:36+3712:3713:0:0:22:20:154:0
TV AssemblØia JCI;(null):651000:M256:C:5217:3632:3633:0:0:27:20:154:0
SESCTV;(null):651000:M256:C:5217:3680:3681:0:0:136:20:154:0
Mosaico Variedades;(null):651000:M256:C:5217:3648:3649,3650=au1,3651=au3,3652=au5,3653=au7,3654=au9:0:0:400:20:154:0
Mosaico InformaĿªo;(null):651000:M256:C:5217:3664:3665,3666=au1,3667=au3,3668=au5,3669=au7,3670=au9:0:0:401:20:154:0
Band Sports;(null):693000:M256:C:5217:3872+279:3873:0:1801,1802:98:20:155:0
Band News;(null):693000:M256:C:5217:3856+128:3857:0:1801,1802:99:20:155:0
Premiere FC;(null):693000:M256:C:5217:2336:2337:0:0:128:20:155:0
Sextreme;(null):693000:M256:C:5217:3888:0=eng;3889:0:1801,1802:282:20:155:0
RFI;(null):693000:M256:C:5217:0:1842:0:0:352:20:155:0
Globosat HD;(null):693000:M256:C:5217:3840:3842:0:1802,1801:502:20:155:0
Glitz*;(null):699000:M256:C:5217:34:4113:0:1801,1802:95:20:156:0
Telecine Premium HD;(null):699000:M256:C:5217:4096:0:0:1801,1802:561:20:156:0
Premiere 3D;(null):699000:M256:C:5217:4144:4145:0:1801,1802:701:20:156:0
NBR;(null):687000:M256:C:5217:308+8190:256:0:0:23:20:157:0
Multishow HD;(null):687000:M256:C:5217:4352:4353:0:1801,1802:542:20:157:0
Fox+NatGeo HD;(null):687000:M256:C:5217:4368:0:0:1802,1801:550:20:157:0
Telecine Pipoca HD;(null):657000:M256:C:5217:4624:0:0:1801,1802:564:20:158:0
HBO;(null):657000:M256:C:5217:5697:0:0:1802,1801:571:20:158:0
HBO HD;(null):657000:M256:C:5217:5633:0:0:1801,1802:572:20:158:0
Viva;(null):663000:M256:C:5217:4864:4865:0:0:36:20:159:0
RedeTV! HD;(null):663000:M256:C:5217:4880+35:0:0:0:508:20:159:0
Band HD;(null):663000:M256:C:5217:4896+34:0:0:0:513:20:159:0
Space;(null):669000:M256:C:5217:5168:5169,5170=por:0:1801,1802:53:20:160:0
Telecine Fun;(null):669000:M256:C:5217:5152:5153,5154=por:0:1801,1802:59:20:160:0
Globo HD;(null):669000:M256:C:5217:273+256:0:0:0:505:20:160:0
Megapix HD;(null):669000:M256:C:5217:5136:0:0:1801,1802:558:20:160:0
Discovery Theater HD;(null):705000:M256:C:5217:5376:0:0:1801,1802:551:20:161:0
TLC HD;(null):705000:M256:C:5217:5392:0:0:1801,1802:552:20:161:0
NatGeo Wild HD;(null):705000:M256:C:5217:5408:0:0:1801,1802:533:20:161:0
Telecine Action HD;(null):711000:M256:C:5217:5664:0:0:1801,1802:562:20:162:0
TNT HD;(null):711000:M256:C:5217:5632:0:0:1801,1802:548:20:162:0
Space HD;(null):711000:M256:C:5217:5648:0:0:1801,1802:553:20:162:0
NET;NET:717000:M256:C:5217:5920:5921:0:0:154:20:163:0
ESPN HD;(null):717000:M256:C:5217:5904:5905:0:1801,1802:560:20:163:0
Max HD;(null):717000:M256:C:5217:5761:0:0:1801,1802:575:20:163:0
VH1 HD;(null):723000:M256:C:5217:6176:6177:0:0:526:20:164:0
Warner HD;(null):723000:M256:C:5217:6160:0:0:0:547:20:164:0
Sony HD;(null):723000:M256:C:5217:6144:0:0:1802,1801:549:20:164:0
National Geographic;(null):579000:M256:C:5217:512:513,514=por:0:0:33:20:142:0
AXN;(null):579000:M256:C:5217:560:0=por;561,562:0:1801,1802:34:20:142:0
Sony;(null):579000:M256:C:5217:576:0=bra;577,578:0:1801,1802:49:20:142:0
Fox;(null):579000:M256:C:5217:528:529,530=dub:0:1801,1802:50:20:142:0
ESPN;(null):579000:M256:C:5217:592:593,594=por:0:1801,1802:60:20:142:0
HBO;(null):579000:M256:C:5217:624:0=por;625,626:0:1801,1802:71:20:142:0
HBO Plus;(null):579000:M256:C:5217:640:0=dub;641,642:0:1801,1802:72:20:142:0
Speed;(null):579000:M256:C:5217:544:545,546=por:0:1801,1802:97:20:142:0
Bloomberg;(null):579000:M256:C:5217:608:609:0:1802,1801:150:20:142:0
Baladas RomÐnticas;(null):579000:M256:C:5217:0:106:0:0:315:20:142:0
Anos 60;(null):579000:M256:C:5217:0:107:0:0:316:20:142:0
New Rock;(null):579000:M256:C:5217:0:108:0:0:319:20:142:0
Anos 90;(null):579000:M256:C:5217:0:105:0:0:321:20:142:0
RÆdio Globo SP;(null):579000:M256:C:5217:0:118:0:0:350:20:142:0
Cultura;(null):585000:M256:C:5217:33+768:769:0:0:2:20:143:0
RedeTV!;(null):585000:M256:C:5217:800:801:0:0:8:20:143:0
Shop Time;(null):585000:M256:C:5217:784:785:0:0:31:20:143:0
Futura;(null):585000:M256:C:5217:816:817:0:0:32:20:143:0
Discovery Kids;(null):585000:M256:C:5217:864:865,866=por:0:1801,1802:45:20:143:0
Discovery Channel;(null):585000:M256:C:5217:848:849,850=por:0:1801,1802:51:20:143:0
Liv;(null):585000:M256:C:5217:832:834:0:1801,1802:52:20:143:0
Disc. Home & Health;(null):585000:M256:C:5217:880:881,882=por:0:1801,1802:55:20:143:0
Animal Planet;(null):585000:M256:C:5217:896:897,898=por:0:1801,1802:69:20:143:0
Natal;(null):585000:M256:C:5217:0:112:0:0:302:20:143:0
Bossa Nova;(null):585000:M256:C:5217:0:109:0:0:306:20:143:0
Latino;(null):585000:M256:C:5217:0:111:0:0:332:20:143:0
Jazz ClÆssico;(null):585000:M256:C:5217:0:110:0:0:336:20:143:0
Done.

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

* Re: Hauppauge HVR-930C problems
  2011-12-05 23:37   ` Eddi De Pieri
@ 2011-12-06  8:38     ` Fredrik Lingvall
  2011-12-07 12:22     ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-06  8:38 UTC (permalink / raw)
  To: Eddi De Pieri; +Cc: Devin Heitmueller, linux-media, mchehab

On 12/06/11 00:37, Eddi De Pieri wrote:
> try using scan from dvb-apps and not w_scan.
>
> Actually It seems to me w_scan isn't compatible with this driver due
> some missing lock.

I've tired dvbscan (=scan on Gentoo?). Apperently I need some initial 
scan file and I found one here:

  http://www.mail-archive.com/linuxtv-commits@linuxtv.org/msg02599.html

for the provider I have (I'm not really sure if it's correct though).

The scan file:

  # no-Oslo-Get (cable)
C 241000000 6900000 NONE QAM256
C 272000000 6900000 NONE QAM256
C 280000000 6900000 NONE QAM256
C 290000000 6900000 NONE QAM256
C 298000000 6900000 NONE QAM256
C 306000000 6900000 NONE QAM256
C 314000000 6900000 NONE QAM256
C 322000000 6900000 NONE QAM256
C 330000000 6900000 NONE QAM256
C 338000000 6900000 NONE QAM256
C 346000000 6900000 NONE QAM256
C 354000000 6900000 NONE QAM256
C 362000000 6900000 NONE QAM256
C 370000000 6900000 NONE QAM256
C 378000000 6900000 NONE QAM256
C 386000000 6900000 NONE QAM256
C 394000000 6900000 NONE QAM256
C 410000000 6900000 NONE QAM256
C 442000000 6952000 NONE QAM256
C 482000000 6900000 NONE QAM256
C 498000000 6900000 NONE QAM256

Scan results:

# dvbscan -a0 /usr/share/dvb/dvb-c/no-Oslo-Get
scanning /usr/share/dvb/dvb-c/no-Oslo-Get
using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
initial transponder 241000000 6900000 0 5
initial transponder 272000000 6900000 0 5
initial transponder 280000000 6900000 0 5
initial transponder 290000000 6900000 0 5
initial transponder 298000000 6900000 0 5
initial transponder 306000000 6900000 0 5
initial transponder 314000000 6900000 0 5
initial transponder 322000000 6900000 0 5
initial transponder 330000000 6900000 0 5
initial transponder 338000000 6900000 0 5
initial transponder 346000000 6900000 0 5
initial transponder 354000000 6900000 0 5
initial transponder 362000000 6900000 0 5
initial transponder 370000000 6900000 0 5
initial transponder 378000000 6900000 0 5
initial transponder 386000000 6900000 0 5
initial transponder 394000000 6900000 0 5
initial transponder 410000000 6900000 0 5
initial transponder 442000000 6952000 0 5
initial transponder 482000000 6900000 0 5
initial transponder 498000000 6900000 0 5
 >>> tune to: 241000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 241000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 272000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 280000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 290000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 298000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 306000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 314000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 322000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 330000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 338000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 346000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 354000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 362000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 370000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 378000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 386000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 394000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 410000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 410000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 442000000:INVERSION_AUTO:6952000:FEC_NONE:QAM_256
WARNING: filter timeout pid 0x0011
WARNING: filter timeout pid 0x0000
WARNING: filter timeout pid 0x0010
 >>> tune to: 482000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 482000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
 >>> tune to: 498000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256
WARNING: >>> tuning failed!!!
 >>> tune to: 498000000:INVERSION_AUTO:6900000:FEC_NONE:QAM_256 (tuning 
failed)
WARNING: >>> tuning failed!!!
dumping lists (0 services)
Done.

I did a scan with my Sony Bravia TV and it found some +100 digital channels.

/Fredrik



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

* Re: Hauppauge HVR-930C problems
  2011-12-02 19:45 ` Devin Heitmueller
@ 2011-12-05 23:37   ` Eddi De Pieri
  2011-12-06  8:38     ` Fredrik Lingvall
  2011-12-07 12:22     ` Mauro Carvalho Chehab
  0 siblings, 2 replies; 31+ messages in thread
From: Eddi De Pieri @ 2011-12-05 23:37 UTC (permalink / raw)
  To: Devin Heitmueller; +Cc: Fredrik Lingvall, linux-media, mchehab

try using scan from dvb-apps and not w_scan.

Actually It seems to me w_scan isn't compatible with this driver due
some missing lock.

On Fri, Dec 2, 2011 at 8:45 PM, Devin Heitmueller
<dheitmueller@kernellabs.com> wrote:
> On Fri, Dec 2, 2011 at 2:41 PM, Fredrik Lingvall
> <fredrik.lingvall@gmail.com> wrote:
>> The HVR 930C device has three connectors/inputs:  an antenna input, an
>> S-video, and a composite video, respectively,
>>
>> The provider I have here in Norway (Get) has both analog tv and digital
>> (DVB-C) so can I get analog tv using the antenna input or is analog only on
>> the S-video/composite inputs? And, how do I select which analog input that
>>  is used?
>
> The analog support for that device isn't currently supported (due to a
> lack of a Linux driver for the analog demodulator).  The digital
> should work fine though (and if not, bring it to Mauro's attention
> since he has been actively working on it).
>
> Devin
>
> --
> Devin J. Heitmueller - Kernel Labs
> http://www.kernellabs.com
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Hauppauge HVR-930C problems
  2011-12-02 19:41 Fredrik Lingvall
@ 2011-12-02 19:45 ` Devin Heitmueller
  2011-12-05 23:37   ` Eddi De Pieri
  2011-12-07 12:56 ` Mauro Carvalho Chehab
  1 sibling, 1 reply; 31+ messages in thread
From: Devin Heitmueller @ 2011-12-02 19:45 UTC (permalink / raw)
  To: Fredrik Lingvall; +Cc: linux-media

On Fri, Dec 2, 2011 at 2:41 PM, Fredrik Lingvall
<fredrik.lingvall@gmail.com> wrote:
> The HVR 930C device has three connectors/inputs:  an antenna input, an
> S-video, and a composite video, respectively,
>
> The provider I have here in Norway (Get) has both analog tv and digital
> (DVB-C) so can I get analog tv using the antenna input or is analog only on
> the S-video/composite inputs? And, how do I select which analog input that
>  is used?

The analog support for that device isn't currently supported (due to a
lack of a Linux driver for the analog demodulator).  The digital
should work fine though (and if not, bring it to Mauro's attention
since he has been actively working on it).

Devin

-- 
Devin J. Heitmueller - Kernel Labs
http://www.kernellabs.com

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

* Hauppauge HVR-930C problems
@ 2011-12-02 19:41 Fredrik Lingvall
  2011-12-02 19:45 ` Devin Heitmueller
  2011-12-07 12:56 ` Mauro Carvalho Chehab
  0 siblings, 2 replies; 31+ messages in thread
From: Fredrik Lingvall @ 2011-12-02 19:41 UTC (permalink / raw)
  To: linux-media

Hi ,

I noticed that HVR 930C support was added 21-11-2011.

I have build the new driver and installed the firmware but I'm 
struggling to get it working.

I have the firmwares:

dvb-usb-hauppauge-hvr930c-drxk.fw

and

dvb-fe-xc5000-1.6.114.fw

in /lib/firmware (on  a Gentoo x86_64 system)

Since I'm new to tv devices, what tools should I use?

Some tests I've done:

1) Driver loading:

#  modprobe em28xx
# dmesg -c
[90072.073823] em28xx 2-3:1.0: usb_probe_interface
[90072.073827] em28xx 2-3:1.0: usb_probe_interface - got id
[90072.073832] em28xx: New device WinTV HVR-930C @ 480 Mbps (2040:1605, 
interface 0, class 0)
[90072.073834] em28xx: Audio Vendor Class interface 0 found
[90072.077038] em28xx #0: chip ID is em2884
[90072.129073] em28xx #0: Identified as Hauppauge WinTV HVR 930C (card=81)
[90072.129451] Registered IR keymap rc-hauppauge
[90072.129575] input: em28xx IR (em28xx #0) as 
/devices/pci0000:00/0000:00:1d.7/usb2/2-3/rc/rc4/input17
[90072.129625] rc4: em28xx IR (em28xx #0) as 
/devices/pci0000:00/0000:00:1d.7/usb2/2-3/rc/rc4
[90072.130444] em28xx #0: Config register raw data: 0xcb
[90072.130446] em28xx #0: v4l2 driver version 0.1.3
[90072.135290] em28xx #0: V4L2 video device registered as video1
[90072.140241] usbcore: registered new interface driver em28xx
[90072.140243] em28xx driver loaded
[90073.298578] drxk: detected a drx-3913k, spin A2, xtal 20.250 MHz
[90074.641068] DRXK driver version 0.9.4300
[90074.655586] xc5000 1-0061: creating new instance
[90074.656091] xc5000: Successfully identified at address 0x61
[90074.656094] xc5000: Firmware has not been loaded previously
[90074.656098] DVB: registering new adapter (em28xx #0)
[90074.656101] DVB: registering adapter 0 frontend 0 (DRXK DVB-C)...
[90074.656172] DVB: registering adapter 0 frontend 1 (DRXK DVB-T)...
[90074.656389] em28xx #0: Successfully loaded em28xx-dvb
[90074.656392] Em28xx: Initialized (Em28xx dvb Extension) extension

which looks ok to me.

2) Analog scanning:

# scantv -a -n PAL

vid-open-auto: failed to open an analog TV device at /dev/video1
vid-open: could not find a suitable videodev
no analog TV device available

# dmesg  -c
[90174.629465] ehci_hcd 0000:00:1a.7: reused qh ffff880118578f80 schedule
[90174.629469] usb 1-6: link qh4-0001/ffff880118578f80 start 2 [1/0 us]
[90174.629711] usb 1-6: unlink qh4-0001/ffff880118578f80 start 2 [1/0 us]

3) Mplayer

# mplayer tv:// -tv 
driver=v4l2:norm=PAL:input=0:amode=1:width=384:height=288:outfmt=yv12:device=/dev/video1:chanlist=europe-west:channel=S14

MPlayer SVN-r33094-4.5.3 (C) 2000-2011 MPlayer Team
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote 
control.

Playing tv://.
TV file format detected.
Selected driver: v4l2
  name: Video 4 Linux 2 input
  author: Martin Olschewski <olschewski@zpr.uni-koeln.de>
  comment: first try, more to come ;-)
Selected device: Hauppauge WinTV HVR 930C
  Capabilities:  video capture  read/write  streaming
  supported norms: 0 = NTSC; 1 = NTSC-M; 2 = NTSC-M-JP; 3 = NTSC-M-KR; 4 
= NTSC-443; 5 = PAL; 6 = PAL-BG; 7 = PAL-H; 8 = PAL-I; 9 = PAL-DK; 10 = 
PAL-M; 11 = PAL-N; 12 = PAL-Nc; 13 = PAL-60; 14 = SECAM; 15 = SECAM-B; 
16 = SECAM-G; 17 = SECAM-H; 18 = SECAM-DK; 19 = SECAM-L; 20 = SECAM-Lc;
  inputs:
  Current input: 0
  Current format: YUYV
v4l2: ioctl set format failed: Invalid argument
v4l2: ioctl enum input failed: Invalid argument
Selected input hasn't got a tuner!
v4l2: ioctl queue buffer failed: No space left on device
v4l2: 0 frames successfully processed, 0 frames dropped.


Exiting... (End of file)

# dmesg  -c

[90262.194863] ehci_hcd 0000:00:1d.7: iso resched full ffff8800d7df9000 
(now 5829 max 14021)
[90262.194870] submit of urb 0 failed (error=-28)

4) DVB scanning

# w_scan -c NO -f c

w_scan version 20110702 (compiled for DVB API 5.2)
using settings for NORWAY
DVB cable
DVB-C
frontend_type DVB-C, channellist 7
output format vdr-1.6
WARNING: could not guess your codepage. Falling back to 'UTF-8'
output charset 'UTF-8', use -C <charset> to override
Info: using DVB adapter auto detection.
         /dev/dvb/adapter0/frontend0 -> DVB-C "DRXK DVB-C": good :-)
         /dev/dvb/adapter0/frontend1 -> DVB-T "DRXK DVB-T": specified 
was DVB-C -> SEARCH NEXT ONE.
Using DVB-C frontend (adapter /dev/dvb/adapter0/frontend0)
-_-_-_-_ Getting frontend capabilities-_-_-_-_
Using DVB API 5.4
frontend 'DRXK DVB-C' supports
INVERSION_AUTO
QAM_AUTO not supported, trying QAM_64 QAM_256.
FEC_AUTO
FREQ (47.00MHz ... 862.00MHz)
SRATE (0.870MBd ... 11.700MBd)
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
searching QAM64...
73000: sr6900 (time: 00:00) sr6875 (time: 00:03)
81000: sr6900 (time: 00:06) sr6875 (time: 00:08)
113000: sr6900 (time: 00:11) sr6875 (time: 00:13)
121000: sr6900 (time: 00:16) sr6875 (time: 00:18)
129000: sr6900 (time: 00:21) sr6875 (time: 00:23)
137000: sr6900 (time: 00:26) sr6875 (time: 00:28)
145000: sr6900 (time: 00:31) sr6875 (time: 00:34)
153000: sr6900 (time: 00:36) sr6875 (time: 00:39)
161000: sr6900 (time: 00:41) sr6875 (time: 00:44)
169000: sr6900 (time: 00:46) sr6875 (time: 00:49)
314000: sr6900 (time: 00:51) sr6875 (time: 00:54)
322000: sr6900 (time: 00:56) sr6875 (time: 00:59)
330000: sr6900 (time: 01:01) sr6875 (time: 01:04)
338000: sr6900 (time: 01:07) sr6875 (time: 01:09)
346000: sr6900 (time: 01:12) sr6875 (time: 01:14)
354000: sr6900 (time: 01:17) sr6875 (time: 01:19)
362000: sr6900 (time: 01:22) sr6875 (time: 01:24)
370000: sr6900 (time: 01:27) sr6875 (time: 01:29)
378000: sr6900 (time: 01:32) sr6875 (time: 01:34)
386000: sr6900 (time: 01:37) sr6875 (time: 01:40)
394000: sr6900 (time: 01:42) sr6875 (time: 01:45)
402000: sr6900 (time: 01:47) sr6875 (time: 01:50)
410000: sr6900 (time: 01:52) sr6875 (time: 01:55)
418000: sr6900 (time: 01:57) sr6875 (time: 02:00)
426000: sr6900 (time: 02:02) sr6875 (time: 02:05)
434000: sr6900 (time: 02:08) sr6875 (time: 02:10)
442000: sr6900 (time: 02:13) sr6875 (time: 02:15)
450000: sr6900 (time: 02:18) sr6875 (time: 02:20)
458000: sr6900 (time: 02:23) sr6875 (time: 02:25)
466000: sr6900 (time: 02:28) sr6875 (time: 02:30)
474000: sr6900 (time: 02:33) sr6875 (time: 02:35)
482000: sr6900 (time: 02:38) sr6875 (time: 02:41)
490000: sr6900 (time: 02:43) sr6875 (time: 02:46)
498000: sr6900 (time: 02:48) sr6875 (time: 02:51)
506000: sr6900 (time: 02:53) sr6875 (time: 02:56)
514000: sr6900 (time: 02:58) sr6875 (time: 03:01)
522000: sr6900 (time: 03:03) sr6875 (time: 03:06)
530000: sr6900 (time: 03:08) sr6875 (time: 03:11)
538000: sr6900 (time: 03:14) sr6875 (time: 03:16)
546000: sr6900 (time: 03:19) sr6875 (time: 03:21)
554000: sr6900 (time: 03:24) sr6875 (time: 03:26)
562000: sr6900 (time: 03:29) sr6875 (time: 03:31)
570000: sr6900 (time: 03:34) sr6875 (time: 03:36)
578000: sr6900 (time: 03:39) sr6875 (time: 03:42)
586000: sr6900 (time: 03:44) sr6875 (time: 03:47)
594000: sr6900 (time: 03:49) sr6875 (time: 03:52)
602000: sr6900 (time: 03:54) sr6875 (time: 03:57)
610000: sr6900 (time: 03:59) sr6875 (time: 04:02)
618000: sr6900 (time: 04:04) sr6875 (time: 04:07)
626000: sr6900 (time: 04:09) sr6875 (time: 04:12)
634000: sr6900 (time: 04:15) sr6875 (time: 04:17)
642000: sr6900 (time: 04:20) sr6875 (time: 04:22)
650000: sr6900 (time: 04:25) sr6875 (time: 04:27)
658000: sr6900 (time: 04:30) sr6875 (time: 04:32)
666000: sr6900 (time: 04:35) sr6875 (time: 04:37)
674000: sr6900 (time: 04:40) sr6875 (time: 04:42)
682000: sr6900 (time: 04:45) sr6875 (time: 04:48)
690000: sr6900 (time: 04:50) sr6875 (time: 04:53)
698000: sr6900 (time: 04:55) sr6875 (time: 04:58)
706000: sr6900 (time: 05:00) sr6875 (time: 05:03)
714000: sr6900 (time: 05:05) sr6875 (time: 05:08)
722000: sr6900 (time: 05:10) sr6875 (time: 05:13)
730000: sr6900 (time: 05:16) sr6875 (time: 05:18)
738000: sr6900 (time: 05:21) sr6875 (time: 05:23)
746000: sr6900 (time: 05:26) sr6875 (time: 05:28)
754000: sr6900 (time: 05:31) sr6875 (time: 05:33)
762000: sr6900 (time: 05:36) sr6875 (time: 05:38)
770000: sr6900 (time: 05:41) sr6875 (time: 05:43)
778000: sr6900 (time: 05:46) sr6875 (time: 05:49)
786000: sr6900 (time: 05:51) sr6875 (time: 05:54)
794000: sr6900 (time: 05:56) sr6875 (time: 05:59)
802000: sr6900 (time: 06:01) sr6875 (time: 06:04)
810000: sr6900 (time: 06:06) sr6875 (time: 06:09)
818000: sr6900 (time: 06:11) sr6875 (time: 06:14)
826000: sr6900 (time: 06:16) sr6875 (time: 06:19)
834000: sr6900 (time: 06:22) sr6875 (time: 06:24)
842000: sr6900 (time: 06:27) sr6875 (time: 06:29)
850000: sr6900 (time: 06:32) sr6875 (time: 06:34)
858000: sr6900 (time: 06:37) sr6875 (time: 06:39)
searching QAM256...
73000: sr6900 (time: 06:42) sr6875 (time: 06:44)
81000: sr6900 (time: 06:47) sr6875 (time: 06:50)
113000: sr6900 (time: 06:52) sr6875 (time: 06:55)
121000: sr6900 (time: 06:57) sr6875 (time: 07:00)
129000: sr6900 (time: 07:02) sr6875 (time: 07:05)
137000: sr6900 (time: 07:07) sr6875 (time: 07:10)
145000: sr6900 (time: 07:12) sr6875 (time: 07:15)
153000: sr6900 (time: 07:17) sr6875 (time: 07:20)
161000: sr6900 (time: 07:23) sr6875 (time: 07:25)
169000: sr6900 (time: 07:28) sr6875 (time: 07:30)
314000: sr6900 (time: 07:33) (time: 07:34)
sr6875 (time: 07:35)
322000: sr6900 (time: 07:37) (time: 07:39)
sr6875 (time: 07:40)
330000: sr6900 (time: 07:42) (time: 07:43)
sr6875 (time: 07:44)
338000: sr6900 (time: 07:47) (time: 07:48)
sr6875 (time: 07:49)
346000: sr6900 (time: 07:52) (time: 07:53)
sr6875 (time: 07:54)
354000: sr6900 (time: 07:56) (time: 07:57)
sr6875 (time: 07:58)
362000: sr6900 (time: 08:01) (time: 08:02)
sr6875 (time: 08:03)
370000: sr6900 (time: 08:06) (time: 08:07)
sr6875 (time: 08:08)
378000: sr6900 (time: 08:10) (time: 08:12)
sr6875 (time: 08:13)
386000: sr6900 (time: 08:15) (time: 08:16)
sr6875 (time: 08:17)
394000: sr6900 (time: 08:20) (time: 08:21)
sr6875 (time: 08:22)
402000: sr6900 (time: 08:25) sr6875 (time: 08:27)
410000: sr6900 (time: 08:30) sr6875 (time: 08:32)
418000: sr6900 (time: 08:35) sr6875 (time: 08:37)
426000: sr6900 (time: 08:40) sr6875 (time: 08:42)
434000: sr6900 (time: 08:45) sr6875 (time: 08:47)
442000: sr6900 (time: 08:50) sr6875 (time: 08:53)
450000: sr6900 (time: 08:55) sr6875 (time: 08:58)
458000: sr6900 (time: 09:00) sr6875 (time: 09:03)
466000: sr6900 (time: 09:05) sr6875 (time: 09:08)
474000: sr6900 (time: 09:10) sr6875 (time: 09:13)
482000: sr6900 (time: 09:15) sr6875 (time: 09:18)
490000: sr6900 (time: 09:20) sr6875 (time: 09:23)
498000: sr6900 (time: 09:26) sr6875 (time: 09:28)
506000: sr6900 (time: 09:31) sr6875 (time: 09:33)
514000: sr6900 (time: 09:36) sr6875 (time: 09:38)
522000: sr6900 (time: 09:41) sr6875 (time: 09:43)
530000: sr6900 (time: 09:46) sr6875 (time: 09:48)
538000: sr6900 (time: 09:51) sr6875 (time: 09:54)
546000: sr6900 (time: 09:56) sr6875 (time: 09:59)
554000: sr6900 (time: 10:01) sr6875 (time: 10:04)
562000: sr6900 (time: 10:06) sr6875 (time: 10:09)
570000: sr6900 (time: 10:11) sr6875 (time: 10:14)
578000: sr6900 (time: 10:16) sr6875 (time: 10:19)
586000: sr6900 (time: 10:21) sr6875 (time: 10:24)
594000: sr6900 (time: 10:27) sr6875 (time: 10:29)
602000: sr6900 (time: 10:32) (time: 10:33) signal ok:
         QAM_256  f = 602000 kHz S6900C999
start_filter:1415: ERROR: ioctl DMX_SET_FILTER failed: 28 No space left 
on device
Info: NIT(actual) filter timeout
610000: sr6900 (time: 10:55) sr6875 (time: 10:58)
618000: sr6900 (time: 11:00) sr6875 (time: 11:03)
626000: sr6900 (time: 11:05) sr6875 (time: 11:08)
634000: sr6900 (time: 11:10) sr6875 (time: 11:13)
642000: sr6900 (time: 11:15) sr6875 (time: 11:18)
650000: sr6900 (time: 11:20) sr6875 (time: 11:23)
658000: sr6900 (time: 11:26) sr6875 (time: 11:28)
666000: sr6900 (time: 11:31) sr6875 (time: 11:33)
674000: sr6900 (time: 11:36) sr6875 (time: 11:38)
682000: sr6900 (time: 11:41) sr6875 (time: 11:43)
690000: sr6900 (time: 11:46) sr6875 (time: 11:48)
698000: sr6900 (time: 11:51) sr6875 (time: 11:53)
706000: sr6900 (time: 11:56) sr6875 (time: 11:59)
714000: sr6900 (time: 12:01) sr6875 (time: 12:04)
722000: sr6900 (time: 12:06) sr6875 (time: 12:09)
730000: sr6900 (time: 12:11) sr6875 (time: 12:14)
738000: sr6900 (time: 12:16) sr6875 (time: 12:19)
746000: sr6900 (time: 12:21) sr6875 (time: 12:24)
754000: sr6900 (time: 12:27) sr6875 (time: 12:29)
762000: sr6900 (time: 12:32) sr6875 (time: 12:34)
770000: sr6900 (time: 12:37) sr6875 (time: 12:39)
778000: sr6900 (time: 12:42) sr6875 (time: 12:44)
786000: sr6900 (time: 12:47) sr6875 (time: 12:49)
794000: sr6900 (time: 12:52) sr6875 (time: 12:54)
802000: sr6900 (time: 12:57) sr6875 (time: 13:00)
810000: sr6900 (time: 13:02) sr6875 (time: 13:05)
818000: sr6900 (time: 13:07) sr6875 (time: 13:10)
826000: sr6900 (time: 13:12) sr6875 (time: 13:15)
834000: sr6900 (time: 13:17) sr6875 (time: 13:20)
842000: sr6900 (time: 13:22) sr6875 (time: 13:25)
850000: sr6900 (time: 13:27) sr6875 (time: 13:30)
858000: sr6900 (time: 13:33) sr6875 (time: 13:35)
tune to: QAM_256  f = 602000 kHz S6900C999
(time: 13:38) Info: PAT filter timeout
Info: SDT(actual) filter timeout
Info: NIT(actual) filter timeout
dumping lists (0 services)
Done.

# dmesg  -c

[90430.491896] xc5000: waiting for firmware upload 
(dvb-fe-xc5000-1.6.114.fw)...
[90430.493120] xc5000: firmware read 12401 bytes.
[90430.493122] xc5000: firmware uploading...
[90430.864026] xc5000: firmware upload complete...
[90431.558408] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[90431.558414] drxk: 02 00 00 00 10 00 05 00 03 02                    
..........
[90433.838274] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:
[90433.838279] drxk: 02 00 00 00 10 00 05 00 03 02                    
..........
[90436.409398] drxk: SCU_RESULT_INVPAR while sending cmd 0x0203 with params:

<snip>

The HVR 930C device has three connectors/inputs:  an antenna input, an 
S-video, and a composite video, respectively,

The provider I have here in Norway (Get) has both analog tv and digital 
(DVB-C) so can I get analog tv using the antenna input or is analog only 
on the S-video/composite inputs? And, how do I select which analog input 
that  is used?

Regards,

/Fredrik

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

end of thread, other threads:[~2012-01-11 12:24 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CALJK-QhGrjC9K8CasrUJ-aisZh8U_4-O3uh_-dq6cNBWUx_4WA@mail.gmail.com>
2011-12-15  8:04 ` Hauppauge HVR-930C problems Fredrik Lingvall
2011-12-15  9:54   ` Mauro Carvalho Chehab
     [not found]   ` <CALJK-QjxDpC8Y_gPXeAJaT2si_pRREiuTW=T8CWSTxGprRhfkg@mail.gmail.com>
2011-12-16  8:20     ` Fredrik Lingvall
     [not found]       ` <CALJK-Qhpk7NtSezrft_6+4FZ7Y35k=41xrc6ebxf2DzEH6KCWw@mail.gmail.com>
     [not found]         ` <4EECB2C2.8050701@gmail.com>
2011-12-17 19:09           ` Mihai Dobrescu
     [not found]           ` <4EECE392.5080000@gmail.com>
     [not found]             ` <CALJK-QjChFbX7NH0qNhvaz=Hp8JfKENJMsLOsETiYO9ZyV_BOg@mail.gmail.com>
2011-12-17 19:59               ` Mihai Dobrescu
2011-12-18  9:20               ` Fredrik Lingvall
2011-12-25 15:56                 ` Fredrik Lingvall
2012-01-10 14:42                   ` Fredrik Lingvall
2012-01-10 19:30                     ` Mihai Dobrescu
2012-01-10 19:41                       ` Mauro Carvalho Chehab
2012-01-10 20:23                         ` Mihai Dobrescu
2012-01-10 20:35                           ` Mauro Carvalho Chehab
2012-01-11  5:28                             ` Mihai Dobrescu
2012-01-11 10:53                               ` Mauro Carvalho Chehab
2012-01-11 12:24                       ` Fredrik Lingvall
2012-01-11  9:21                     ` Fredrik Lingvall
2011-12-02 19:41 Fredrik Lingvall
2011-12-02 19:45 ` Devin Heitmueller
2011-12-05 23:37   ` Eddi De Pieri
2011-12-06  8:38     ` Fredrik Lingvall
2011-12-07 12:22     ` Mauro Carvalho Chehab
2011-12-07 12:56 ` Mauro Carvalho Chehab
2011-12-07 13:31   ` Fredrik Lingvall
2011-12-07 13:55     ` Mauro Carvalho Chehab
2011-12-07 14:25       ` Fredrik Lingvall
2011-12-07 14:54         ` Mauro Carvalho Chehab
2011-12-08  8:31           ` Fredrik Lingvall
2011-12-08 15:02             ` Mauro Carvalho Chehab
2011-12-10 13:43               ` Fredrik Lingvall
2011-12-10 16:02                 ` Mauro Carvalho Chehab
2011-12-17 17:42                   ` Fredrik Lingvall

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.