Re: em28xx based USB Hybrid (Analog DVB-T) TV Tuner not supported

2009-11-07 Thread Magnus Alm
Hi

I read some where that trying different card types for a DVB tuner can
potentially cause damage to them.

You are probably right about the firmare.
Do you have a link to the manufacture of your stick?
I tried to google the name of it but couldn't found an exact match.

The EM2881_BOARD_PINNACLE_HYBRID_PRO uses it's XC3028 to getter with a
ZARLINK456
as you can see from the following line in em28xx-cards.c

case EM2881_BOARD_PINNACLE_HYBRID_PRO:
ctl-demod = XC3028_FE_ZARLINK456;
break;

It is probably not compliant with your  Zarlink MT352.

There is a mt352 module tho, but I guess it doesn't get loaded when
you plug your stick in.

I'll pooke around a bit.

PS
Use the reply all, so others can see your mails, since I'm probably
one of the least competent guys/gals on this mailing list.
DS



2009/11/7 Johan Mutsaerts joh...@gmail.com:
 Hi Magnus,

 Thanks for a quick reply. Here is some more detailed information:

 My USB device ID is 0xeb1a:0x2881 it is eMPIA based.

 These are the components inside
 - Empia EM2880
 - Texas Instruments 5150AM1
 - XCeive XC3028
 - Empia EMP202
 - Zarlink MT352

 Difficult for me to get to the windows stuff

 No /dev/dvb/ is generated ? Could it have something to do with no 
 Firmware ?

 I found my device to be quite similar to the Pinnacle Hybrid Pro so I tried
 sudo rmmod em28xx-dvb
 sudo rmmod em28xx-alsa
 sudo rmmod em28xx
 sudo modprobe em28xx card=53 and card=56
 sudo modprobe em28xx-alsa
 sudo modprobe em28xx-dvb
 However with not much success.
 Card=53 cased MeTV to see a tuner but no channels could be found

 TIA for any assistance you can provide.

 Best Regards,
 Johan

 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi!

 The dmesg didn't reveal what tuner your stick/card has, it's probably
 a XC2028/XC3028 or something like that.
 Easiest way to find out would be if you could open the cover and have
 a look inside.

 If you have access to windows and the pvr program that came with the
 tuner you could do a usb-sniff.

 http://www.pcausa.com/Utilities/UsbSnoop/
 or
 http://benoit.papillault.free.fr/usbsnoop/

 Switch between different inputs while doing the log, like dvb,
 analog and if it has svideo/composite input.

 copy the windows log to unix and parse the output with parser.pl (I've
 added is as an attachment.)
 I think there is a new parser somewhere, but I forgot the name of it.

 I'm also not sure how I used it, but I think it was like this: perl
 parser.pl  your_windows_log  parsed_log
 That log is needed to  find out what gpio your tuner needs for
 different settings.

 Don't be scared of the size of the windows log, it gets large, often a
 few hundred MB.
 The parsed log is much smaller,  a few hundred KB.

 That is all I can think about atm.

 /Magnus Alm


 2009/11/6 Johan Mutsaerts joh...@gmail.com:
 Hi,

 I have an iDream UTVHYL2 USB TV Tuner (with IR remote control) that I
 cannot get to work with Ubuntu (9.04, 2.6.28-16). I have successfully
 compiled and installed the em28xx-new driver from linuxtv.org. No
 /dev/dvb/adapter... is created and that is where it ends for me know.
 MyTV claims no adapter is detected.

 I have attached the output of lsusb and dmesg as requested...

 Please let me know what more I can do and what exactly it is you can do ?

 Thanks in advance and
 Best Regards,
 Johan (Belgium)



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


Re: em28xx based USB Hybrid (Analog DVB-T) TV Tuner not supported

2009-11-07 Thread Magnus Alm
Well, maybe you where more right than me...

From em28xx-dvb.c

case EM2880_BOARD_TERRATEC_HYBRID_XS:
case EM2881_BOARD_PINNACLE_HYBRID_PRO:
dvb-frontend = dvb_attach(zl10353_attach,
   em28xx_zl10353_xc3028_no_i2c_gate,
   dev-i2c_adap);
if (dvb-frontend == NULL) {
/* This board could have either a zl10353 or a mt352.
   If the chip id isn't for zl10353, try mt352 */
dvb-frontend = dvb_attach(mt352_attach,
   terratec_xs_mt352_cfg,
   dev-i2c_adap);
}


2009/11/7 Magnus Alm magnus@gmail.com:
 Hi

 I read some where that trying different card types for a DVB tuner can
 potentially cause damage to them.

 You are probably right about the firmare.
 Do you have a link to the manufacture of your stick?
 I tried to google the name of it but couldn't found an exact match.

 The EM2881_BOARD_PINNACLE_HYBRID_PRO uses it's XC3028 to getter with a
 ZARLINK456
 as you can see from the following line in em28xx-cards.c

 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
                ctl-demod = XC3028_FE_ZARLINK456;
                break;

 It is probably not compliant with your  Zarlink MT352.

 There is a mt352 module tho, but I guess it doesn't get loaded when
 you plug your stick in.

 I'll pooke around a bit.

 PS
 Use the reply all, so others can see your mails, since I'm probably
 one of the least competent guys/gals on this mailing list.
 DS



 2009/11/7 Johan Mutsaerts joh...@gmail.com:
 Hi Magnus,

 Thanks for a quick reply. Here is some more detailed information:

 My USB device ID is 0xeb1a:0x2881 it is eMPIA based.

 These are the components inside
 - Empia EM2880
 - Texas Instruments 5150AM1
 - XCeive XC3028
 - Empia EMP202
 - Zarlink MT352

 Difficult for me to get to the windows stuff

 No /dev/dvb/ is generated ? Could it have something to do with no 
 Firmware ?

 I found my device to be quite similar to the Pinnacle Hybrid Pro so I tried
 sudo rmmod em28xx-dvb
 sudo rmmod em28xx-alsa
 sudo rmmod em28xx
 sudo modprobe em28xx card=53 and card=56
 sudo modprobe em28xx-alsa
 sudo modprobe em28xx-dvb
 However with not much success.
 Card=53 cased MeTV to see a tuner but no channels could be found

 TIA for any assistance you can provide.

 Best Regards,
 Johan

 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi!

 The dmesg didn't reveal what tuner your stick/card has, it's probably
 a XC2028/XC3028 or something like that.
 Easiest way to find out would be if you could open the cover and have
 a look inside.

 If you have access to windows and the pvr program that came with the
 tuner you could do a usb-sniff.

 http://www.pcausa.com/Utilities/UsbSnoop/
 or
 http://benoit.papillault.free.fr/usbsnoop/

 Switch between different inputs while doing the log, like dvb,
 analog and if it has svideo/composite input.

 copy the windows log to unix and parse the output with parser.pl (I've
 added is as an attachment.)
 I think there is a new parser somewhere, but I forgot the name of it.

 I'm also not sure how I used it, but I think it was like this: perl
 parser.pl  your_windows_log  parsed_log
 That log is needed to  find out what gpio your tuner needs for
 different settings.

 Don't be scared of the size of the windows log, it gets large, often a
 few hundred MB.
 The parsed log is much smaller,  a few hundred KB.

 That is all I can think about atm.

 /Magnus Alm


 2009/11/6 Johan Mutsaerts joh...@gmail.com:
 Hi,

 I have an iDream UTVHYL2 USB TV Tuner (with IR remote control) that I
 cannot get to work with Ubuntu (9.04, 2.6.28-16). I have successfully
 compiled and installed the em28xx-new driver from linuxtv.org. No
 /dev/dvb/adapter... is created and that is where it ends for me know.
 MyTV claims no adapter is detected.

 I have attached the output of lsusb and dmesg as requested...

 Please let me know what more I can do and what exactly it is you can do ?

 Thanks in advance and
 Best Regards,
 Johan (Belgium)




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


Re: em28xx based USB Hybrid (Analog DVB-T) TV Tuner not supported

2009-11-07 Thread Magnus Alm
I think your stick has more in common with
EM2881_BOARD_DNT_DA2_HYBRID, dvb support hasn't been enabled for that
tuner yet tho, only analog..

If you look at pdf for the  utvhyl3 (seems like they removed the
utvhyl2) http://idream.com.hk/consulter.php?pid=120tab=6
And compares it with the DNT DA2 ,
http://www.dnt.de/neu/data/download/files/110/Prospekt%20-%20DA2%20Hybrid.pdf
 (only avalible in german tho)
They even seem to have the same remote (doesn't mean they are identical tho.)

/Magnus Alm

2009/11/7 Magnus Alm magnus@gmail.com:
 Well, maybe you where more right than me...

 From em28xx-dvb.c

        case EM2880_BOARD_TERRATEC_HYBRID_XS:
        case EM2881_BOARD_PINNACLE_HYBRID_PRO:
                dvb-frontend = dvb_attach(zl10353_attach,
                                           em28xx_zl10353_xc3028_no_i2c_gate,
                                           dev-i2c_adap);
                if (dvb-frontend == NULL) {
                        /* This board could have either a zl10353 or a mt352.
                           If the chip id isn't for zl10353, try mt352 */
                        dvb-frontend = dvb_attach(mt352_attach,
                                                   terratec_xs_mt352_cfg,
                                                   dev-i2c_adap);
                }


 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi

 I read some where that trying different card types for a DVB tuner can
 potentially cause damage to them.

 You are probably right about the firmare.
 Do you have a link to the manufacture of your stick?
 I tried to google the name of it but couldn't found an exact match.

 The EM2881_BOARD_PINNACLE_HYBRID_PRO uses it's XC3028 to getter with a
 ZARLINK456
 as you can see from the following line in em28xx-cards.c

 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
                ctl-demod = XC3028_FE_ZARLINK456;
                break;

 It is probably not compliant with your  Zarlink MT352.

 There is a mt352 module tho, but I guess it doesn't get loaded when
 you plug your stick in.

 I'll pooke around a bit.

 PS
 Use the reply all, so others can see your mails, since I'm probably
 one of the least competent guys/gals on this mailing list.
 DS



 2009/11/7 Johan Mutsaerts joh...@gmail.com:
 Hi Magnus,

 Thanks for a quick reply. Here is some more detailed information:

 My USB device ID is 0xeb1a:0x2881 it is eMPIA based.

 These are the components inside
 - Empia EM2880
 - Texas Instruments 5150AM1
 - XCeive XC3028
 - Empia EMP202
 - Zarlink MT352

 Difficult for me to get to the windows stuff

 No /dev/dvb/ is generated ? Could it have something to do with no 
 Firmware ?

 I found my device to be quite similar to the Pinnacle Hybrid Pro so I tried
 sudo rmmod em28xx-dvb
 sudo rmmod em28xx-alsa
 sudo rmmod em28xx
 sudo modprobe em28xx card=53 and card=56
 sudo modprobe em28xx-alsa
 sudo modprobe em28xx-dvb
 However with not much success.
 Card=53 cased MeTV to see a tuner but no channels could be found

 TIA for any assistance you can provide.

 Best Regards,
 Johan

 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi!

 The dmesg didn't reveal what tuner your stick/card has, it's probably
 a XC2028/XC3028 or something like that.
 Easiest way to find out would be if you could open the cover and have
 a look inside.

 If you have access to windows and the pvr program that came with the
 tuner you could do a usb-sniff.

 http://www.pcausa.com/Utilities/UsbSnoop/
 or
 http://benoit.papillault.free.fr/usbsnoop/

 Switch between different inputs while doing the log, like dvb,
 analog and if it has svideo/composite input.

 copy the windows log to unix and parse the output with parser.pl (I've
 added is as an attachment.)
 I think there is a new parser somewhere, but I forgot the name of it.

 I'm also not sure how I used it, but I think it was like this: perl
 parser.pl  your_windows_log  parsed_log
 That log is needed to  find out what gpio your tuner needs for
 different settings.

 Don't be scared of the size of the windows log, it gets large, often a
 few hundred MB.
 The parsed log is much smaller,  a few hundred KB.

 That is all I can think about atm.

 /Magnus Alm


 2009/11/6 Johan Mutsaerts joh...@gmail.com:
 Hi,

 I have an iDream UTVHYL2 USB TV Tuner (with IR remote control) that I
 cannot get to work with Ubuntu (9.04, 2.6.28-16). I have successfully
 compiled and installed the em28xx-new driver from linuxtv.org. No
 /dev/dvb/adapter... is created and that is where it ends for me know.
 MyTV claims no adapter is detected.

 I have attached the output of lsusb and dmesg as requested...

 Please let me know what more I can do and what exactly it is you can do ?

 Thanks in advance and
 Best Regards,
 Johan (Belgium)





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


Re: em28xx based USB Hybrid (Analog DVB-T) TV Tuner not supported

2009-11-07 Thread Johan Mutsaerts
Hi,

Seems like you are on a hot trail here ... Great !
What can I do to test your hypothesis on the EM2881_BOARD_DNT_DA2_HYBRID ?
May be I can verify if analog works ?
How are my chances in getting DVB supported ?

TIA for your time and effort in helping out.

Best Regards,
Johan

2009/11/7 Magnus Alm magnus@gmail.com:
 I think your stick has more in common with
 EM2881_BOARD_DNT_DA2_HYBRID, dvb support hasn't been enabled for that
 tuner yet tho, only analog..

 If you look at pdf for the  utvhyl3 (seems like they removed the
 utvhyl2) http://idream.com.hk/consulter.php?pid=120tab=6
 And compares it with the DNT DA2 ,
 http://www.dnt.de/neu/data/download/files/110/Prospekt%20-%20DA2%20Hybrid.pdf
  (only avalible in german tho)
 They even seem to have the same remote (doesn't mean they are identical tho.)

 /Magnus Alm

 2009/11/7 Magnus Alm magnus@gmail.com:
 Well, maybe you where more right than me...

 From em28xx-dvb.c

        case EM2880_BOARD_TERRATEC_HYBRID_XS:
        case EM2881_BOARD_PINNACLE_HYBRID_PRO:
                dvb-frontend = dvb_attach(zl10353_attach,
                                           em28xx_zl10353_xc3028_no_i2c_gate,
                                           dev-i2c_adap);
                if (dvb-frontend == NULL) {
                        /* This board could have either a zl10353 or a mt352.
                           If the chip id isn't for zl10353, try mt352 */
                        dvb-frontend = dvb_attach(mt352_attach,
                                                   terratec_xs_mt352_cfg,
                                                   dev-i2c_adap);
                }


 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi

 I read some where that trying different card types for a DVB tuner can
 potentially cause damage to them.

 You are probably right about the firmare.
 Do you have a link to the manufacture of your stick?
 I tried to google the name of it but couldn't found an exact match.

 The EM2881_BOARD_PINNACLE_HYBRID_PRO uses it's XC3028 to getter with a
 ZARLINK456
 as you can see from the following line in em28xx-cards.c

 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
                ctl-demod = XC3028_FE_ZARLINK456;
                break;

 It is probably not compliant with your  Zarlink MT352.

 There is a mt352 module tho, but I guess it doesn't get loaded when
 you plug your stick in.

 I'll pooke around a bit.

 PS
 Use the reply all, so others can see your mails, since I'm probably
 one of the least competent guys/gals on this mailing list.
 DS



 2009/11/7 Johan Mutsaerts joh...@gmail.com:
 Hi Magnus,

 Thanks for a quick reply. Here is some more detailed information:

 My USB device ID is 0xeb1a:0x2881 it is eMPIA based.

 These are the components inside
 - Empia EM2880
 - Texas Instruments 5150AM1
 - XCeive XC3028
 - Empia EMP202
 - Zarlink MT352

 Difficult for me to get to the windows stuff

 No /dev/dvb/ is generated ? Could it have something to do with no 
 Firmware ?

 I found my device to be quite similar to the Pinnacle Hybrid Pro so I tried
 sudo rmmod em28xx-dvb
 sudo rmmod em28xx-alsa
 sudo rmmod em28xx
 sudo modprobe em28xx card=53 and card=56
 sudo modprobe em28xx-alsa
 sudo modprobe em28xx-dvb
 However with not much success.
 Card=53 cased MeTV to see a tuner but no channels could be found

 TIA for any assistance you can provide.

 Best Regards,
 Johan

 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi!

 The dmesg didn't reveal what tuner your stick/card has, it's probably
 a XC2028/XC3028 or something like that.
 Easiest way to find out would be if you could open the cover and have
 a look inside.

 If you have access to windows and the pvr program that came with the
 tuner you could do a usb-sniff.

 http://www.pcausa.com/Utilities/UsbSnoop/
 or
 http://benoit.papillault.free.fr/usbsnoop/

 Switch between different inputs while doing the log, like dvb,
 analog and if it has svideo/composite input.

 copy the windows log to unix and parse the output with parser.pl (I've
 added is as an attachment.)
 I think there is a new parser somewhere, but I forgot the name of it.

 I'm also not sure how I used it, but I think it was like this: perl
 parser.pl  your_windows_log  parsed_log
 That log is needed to  find out what gpio your tuner needs for
 different settings.

 Don't be scared of the size of the windows log, it gets large, often a
 few hundred MB.
 The parsed log is much smaller,  a few hundred KB.

 That is all I can think about atm.

 /Magnus Alm


 2009/11/6 Johan Mutsaerts joh...@gmail.com:
 Hi,

 I have an iDream UTVHYL2 USB TV Tuner (with IR remote control) that I
 cannot get to work with Ubuntu (9.04, 2.6.28-16). I have successfully
 compiled and installed the em28xx-new driver from linuxtv.org. No
 /dev/dvb/adapter... is created and that is where it ends for me know.
 MyTV claims no adapter is detected.

 I have attached the output of lsusb and dmesg as requested...

 Please let me know what more I can 

Re: em28xx based USB Hybrid (Analog DVB-T) TV Tuner not supported

2009-11-07 Thread Devin Heitmueller
On Sat, Nov 7, 2009 at 7:35 AM, Magnus Alm magnus@gmail.com wrote:
 Hi

 I read some where that trying different card types for a DVB tuner can
 potentially cause damage to them.

 You are probably right about the firmare.
 Do you have a link to the manufacture of your stick?
 I tried to google the name of it but couldn't found an exact match.

 The EM2881_BOARD_PINNACLE_HYBRID_PRO uses it's XC3028 to getter with a
 ZARLINK456
 as you can see from the following line in em28xx-cards.c

 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
                ctl-demod = XC3028_FE_ZARLINK456;
                break;

 It is probably not compliant with your  Zarlink MT352.

 There is a mt352 module tho, but I guess it doesn't get loaded when
 you plug your stick in.

 I'll pooke around a bit.

 PS
 Use the reply all, so others can see your mails, since I'm probably
 one of the least competent guys/gals on this mailing list.
 DS



 2009/11/7 Johan Mutsaerts joh...@gmail.com:
 Hi Magnus,

 Thanks for a quick reply. Here is some more detailed information:

 My USB device ID is 0xeb1a:0x2881 it is eMPIA based.

 These are the components inside
 - Empia EM2880
 - Texas Instruments 5150AM1
 - XCeive XC3028
 - Empia EMP202
 - Zarlink MT352

 Difficult for me to get to the windows stuff

 No /dev/dvb/ is generated ? Could it have something to do with no 
 Firmware ?

 I found my device to be quite similar to the Pinnacle Hybrid Pro so I tried
 sudo rmmod em28xx-dvb
 sudo rmmod em28xx-alsa
 sudo rmmod em28xx
 sudo modprobe em28xx card=53 and card=56
 sudo modprobe em28xx-alsa
 sudo modprobe em28xx-dvb
 However with not much success.
 Card=53 cased MeTV to see a tuner but no channels could be found

 TIA for any assistance you can provide.

 Best Regards,
 Johan

 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi!

 The dmesg didn't reveal what tuner your stick/card has, it's probably
 a XC2028/XC3028 or something like that.
 Easiest way to find out would be if you could open the cover and have
 a look inside.

 If you have access to windows and the pvr program that came with the
 tuner you could do a usb-sniff.

 http://www.pcausa.com/Utilities/UsbSnoop/
 or
 http://benoit.papillault.free.fr/usbsnoop/

 Switch between different inputs while doing the log, like dvb,
 analog and if it has svideo/composite input.

 copy the windows log to unix and parse the output with parser.pl (I've
 added is as an attachment.)
 I think there is a new parser somewhere, but I forgot the name of it.

 I'm also not sure how I used it, but I think it was like this: perl
 parser.pl  your_windows_log  parsed_log
 That log is needed to  find out what gpio your tuner needs for
 different settings.

 Don't be scared of the size of the windows log, it gets large, often a
 few hundred MB.
 The parsed log is much smaller,  a few hundred KB.

 That is all I can think about atm.

 /Magnus Alm


 2009/11/6 Johan Mutsaerts joh...@gmail.com:
 Hi,

 I have an iDream UTVHYL2 USB TV Tuner (with IR remote control) that I
 cannot get to work with Ubuntu (9.04, 2.6.28-16). I have successfully
 compiled and installed the em28xx-new driver from linuxtv.org. No
 /dev/dvb/adapter... is created and that is where it ends for me know.
 MyTV claims no adapter is detected.

 I have attached the output of lsusb and dmesg as requested...

 Please let me know what more I can do and what exactly it is you can do ?

 Thanks in advance and
 Best Regards,
 Johan (Belgium)

I'm away from Internet access so I can't write an extended answer, but
I can tell you that XC3028_FE_ZARLINK456 is appropriate for both the
zarlink zl10353 and m352.

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 majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Fwd: em28xx based USB Hybrid (Analog DVB-T) TV Tuner not supported

2009-11-07 Thread Johan Mutsaerts
Sorry, forgot to reply all


-- Forwarded message --
From: Johan Mutsaerts joh...@gmail.com
Date: 2009/11/7
Subject: Re: em28xx based USB Hybrid (Analog  DVB-T) TV Tuner not supported
To: Devin Heitmueller dheitmuel...@kernellabs.com


Hi,

Something caught my eye while examining em28xx-dvb.c

#include mt352.h
#include mt352_priv.h /* FIXME */

What's the FIXME about ? Could it be a clue ?

What do you suggest I try/text ?

Best Regards,
Johan

2009/11/7 Devin Heitmueller dheitmuel...@kernellabs.com:
 On Sat, Nov 7, 2009 at 7:35 AM, Magnus Alm magnus@gmail.com wrote:
 Hi

 I read some where that trying different card types for a DVB tuner can
 potentially cause damage to them.

 You are probably right about the firmare.
 Do you have a link to the manufacture of your stick?
 I tried to google the name of it but couldn't found an exact match.

 The EM2881_BOARD_PINNACLE_HYBRID_PRO uses it's XC3028 to getter with a
 ZARLINK456
 as you can see from the following line in em28xx-cards.c

 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
                ctl-demod = XC3028_FE_ZARLINK456;
                break;

 It is probably not compliant with your  Zarlink MT352.

 There is a mt352 module tho, but I guess it doesn't get loaded when
 you plug your stick in.

 I'll pooke around a bit.

 PS
 Use the reply all, so others can see your mails, since I'm probably
 one of the least competent guys/gals on this mailing list.
 DS



 2009/11/7 Johan Mutsaerts joh...@gmail.com:
 Hi Magnus,

 Thanks for a quick reply. Here is some more detailed information:

 My USB device ID is 0xeb1a:0x2881 it is eMPIA based.

 These are the components inside
 - Empia EM2880
 - Texas Instruments 5150AM1
 - XCeive XC3028
 - Empia EMP202
 - Zarlink MT352

 Difficult for me to get to the windows stuff

 No /dev/dvb/ is generated ? Could it have something to do with no 
 Firmware ?

 I found my device to be quite similar to the Pinnacle Hybrid Pro so I tried
 sudo rmmod em28xx-dvb
 sudo rmmod em28xx-alsa
 sudo rmmod em28xx
 sudo modprobe em28xx card=53 and card=56
 sudo modprobe em28xx-alsa
 sudo modprobe em28xx-dvb
 However with not much success.
 Card=53 cased MeTV to see a tuner but no channels could be found

 TIA for any assistance you can provide.

 Best Regards,
 Johan

 2009/11/7 Magnus Alm magnus@gmail.com:
 Hi!

 The dmesg didn't reveal what tuner your stick/card has, it's probably
 a XC2028/XC3028 or something like that.
 Easiest way to find out would be if you could open the cover and have
 a look inside.

 If you have access to windows and the pvr program that came with the
 tuner you could do a usb-sniff.

 http://www.pcausa.com/Utilities/UsbSnoop/
 or
 http://benoit.papillault.free.fr/usbsnoop/

 Switch between different inputs while doing the log, like dvb,
 analog and if it has svideo/composite input.

 copy the windows log to unix and parse the output with parser.pl (I've
 added is as an attachment.)
 I think there is a new parser somewhere, but I forgot the name of it.

 I'm also not sure how I used it, but I think it was like this: perl
 parser.pl  your_windows_log  parsed_log
 That log is needed to  find out what gpio your tuner needs for
 different settings.

 Don't be scared of the size of the windows log, it gets large, often a
 few hundred MB.
 The parsed log is much smaller,  a few hundred KB.

 That is all I can think about atm.

 /Magnus Alm


 2009/11/6 Johan Mutsaerts joh...@gmail.com:
 Hi,

 I have an iDream UTVHYL2 USB TV Tuner (with IR remote control) that I
 cannot get to work with Ubuntu (9.04, 2.6.28-16). I have successfully
 compiled and installed the em28xx-new driver from linuxtv.org. No
 /dev/dvb/adapter... is created and that is where it ends for me know.
 MyTV claims no adapter is detected.

 I have attached the output of lsusb and dmesg as requested...

 Please let me know what more I can do and what exactly it is you can do ?

 Thanks in advance and
 Best Regards,
 Johan (Belgium)

 I'm away from Internet access so I can't write an extended answer, but
 I can tell you that XC3028_FE_ZARLINK456 is appropriate for both the
 zarlink zl10353 and m352.

 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 majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: em28xx based USB Hybrid (Analog DVB-T) TV Tuner not supported

2009-11-07 Thread Devin Heitmueller
On Sat, Nov 7, 2009 at 10:31 AM, Johan Mutsaerts joh...@gmail.com wrote:
 Hi,

 Something caught my eye while examining em28xx-dvb.c

 #include mt352.h
 #include mt352_priv.h /* FIXME */

 What's the FIXME about ? Could it be a clue ?

 What do you suggest I try/text ?

Please don't top post.

No, I just put that FIXME there because the driver really shouldn't be
using the private headers.

I'm actually not in front of the code right now, so I cannot provide
any recommendations.  I will be back home on Sunday though and at that
point I can take a look at the code and offer some suggestions.

Cheers,

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 majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html