* [linux-dvb] HVR-1800 Support
@ 2009-01-21 6:08 Killero SS
2009-01-22 18:22 ` Mark Jenks
2009-01-24 20:37 ` Jeff DeFouw
0 siblings, 2 replies; 5+ messages in thread
From: Killero SS @ 2009-01-21 6:08 UTC (permalink / raw)
To: linux-dvb
i'm using ubuntu 8.10 2.6.27-9-generic
and tried compiling latest modules with hg-clone but my analog capture got broken, firmware error...
so i got back to original kernel modules
however, some people claim they get audio with analog on /dev/video1
this has never be my case, im using svideo signal so wondering if that may be it.
i get analog video on video0 and video1, but some colors look pretty weird, red for example.
another thing this card has fm radio, anyone knows how to set it up? i've been unable to find any info regarding this
_______________________________________________
linux-dvb users mailing list
For V4L/DVB development, please use instead linux-media@vger.kernel.org
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] HVR-1800 Support
2009-01-21 6:08 [linux-dvb] HVR-1800 Support Killero SS
@ 2009-01-22 18:22 ` Mark Jenks
2009-01-24 20:37 ` Jeff DeFouw
1 sibling, 0 replies; 5+ messages in thread
From: Mark Jenks @ 2009-01-22 18:22 UTC (permalink / raw)
To: linux-media, killero_24; +Cc: linux-dvb
On Wed, Jan 21, 2009 at 12:08 AM, Killero SS <killero_24@yahoo.com> wrote:
> i'm using ubuntu 8.10 2.6.27-9-generic
> and tried compiling latest modules with hg-clone but my analog capture got broken, firmware error...
> so i got back to original kernel modules
> however, some people claim they get audio with analog on /dev/video1
> this has never be my case, im using svideo signal so wondering if that may be it.
> i get analog video on video0 and video1, but some colors look pretty weird, red for example.
>
> another thing this card has fm radio, anyone knows how to set it up? i've been unable to find any info regarding this
>
>
I never got Svideo in working on my 1800. I ended up selling it and
getting a 1600.
-Mark
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] HVR-1800 Support
2009-01-21 6:08 [linux-dvb] HVR-1800 Support Killero SS
2009-01-22 18:22 ` Mark Jenks
@ 2009-01-24 20:37 ` Jeff DeFouw
2009-01-25 15:26 ` Michael Krufky
1 sibling, 1 reply; 5+ messages in thread
From: Jeff DeFouw @ 2009-01-24 20:37 UTC (permalink / raw)
To: linux-media, killero_24
On Tue, Jan 20, 2009 at 10:08:51PM -0800, Killero SS wrote:
> i'm using ubuntu 8.10 2.6.27-9-generic
> and tried compiling latest modules with hg-clone but my analog capture got broken, firmware error...
> so i got back to original kernel modules
> however, some people claim they get audio with analog on /dev/video1
> this has never be my case, im using svideo signal so wondering if that may be it.
> i get analog video on video0 and video1, but some colors look pretty weird, red for example.
The driver in the kernel and hg does not set up the registers properly
for the video or audio in S-Video mode. I made some changes to get mine
working. I can probably make a patch for you if you can get your source
build working.
You might be able to get everything working using the cx25840ctl utility
from the ivtv-utils package. With cx25840ctl you'll need to make sure
the i2c-dev module is loaded, and figure out which i2c device is the
cx25840 interface. "cx25840ctl -l 3" will show the registers from i2c
device 3. "-s 3" sets the registers on i2c device 3. You'll probably
need to set the registers after you have the device open to get the
audio working, otherwise the driver will reset some of them. I haven't
tested this since I put the settings in my driver. (I still need to use
part of this script to fix the brightness, contrast, saturation, and hue
though.)
#!/bin/sh
modprobe i2c-dev
cx25840ctl -s 3 <<EOT
VGA_SEL_CH2=0
VGA_SEL_CH3=0
DROOP_COMP_CH3=1
DROOP_COMP_CH2=1
BRIGHT=0
CNTRST=128
USAT=128
VSAT=128
HUE=0
SOFT_RESET=1
START_MICROCNTL=0
PATH1_SEL_CTL=3
PATH1_AVC_STEREO=0
SOFT1_MUTE_EN=0
SRC1_MUTE_EN=0
SA_MUTE_EN=0
PAR_MUTE_EN=0
AC97_MUTE_EN=0
SOFT_RESET=0
EOT
# end
> another thing this card has fm radio, anyone knows how to set it up? i've been unable to find any info regarding this
I didn't notice any code for radio support while I was debugging the
driver.
--
Jeff DeFouw <jeffd@i2k.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] HVR-1800 Support
2009-01-24 20:37 ` Jeff DeFouw
@ 2009-01-25 15:26 ` Michael Krufky
2009-01-25 16:52 ` Jeff DeFouw
0 siblings, 1 reply; 5+ messages in thread
From: Michael Krufky @ 2009-01-25 15:26 UTC (permalink / raw)
To: linux-media, killero_24
On Sat, Jan 24, 2009 at 3:37 PM, Jeff DeFouw <jeffd@i2k.com> wrote:
> On Tue, Jan 20, 2009 at 10:08:51PM -0800, Killero SS wrote:
>> i'm using ubuntu 8.10 2.6.27-9-generic
>> and tried compiling latest modules with hg-clone but my analog capture got broken, firmware error...
>> so i got back to original kernel modules
>> however, some people claim they get audio with analog on /dev/video1
>> this has never be my case, im using svideo signal so wondering if that may be it.
>> i get analog video on video0 and video1, but some colors look pretty weird, red for example.
>
> The driver in the kernel and hg does not set up the registers properly
> for the video or audio in S-Video mode. I made some changes to get mine
> working. I can probably make a patch for you if you can get your source
> build working.
Why not sign it off and send it in to the list, to be merged into the
official sources?
Surely if there is a bug or missing feature that you've fixed, it
should be merged into the repository so that everybody else can
benefit from it.
-Mike
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] HVR-1800 Support
2009-01-25 15:26 ` Michael Krufky
@ 2009-01-25 16:52 ` Jeff DeFouw
0 siblings, 0 replies; 5+ messages in thread
From: Jeff DeFouw @ 2009-01-25 16:52 UTC (permalink / raw)
To: linux-media, killero_24
On Sun, Jan 25, 2009 at 10:26:51AM -0500, Michael Krufky wrote:
> On Sat, Jan 24, 2009 at 3:37 PM, Jeff DeFouw <jeffd@i2k.com> wrote:
> > On Tue, Jan 20, 2009 at 10:08:51PM -0800, Killero SS wrote:
> >> i'm using ubuntu 8.10 2.6.27-9-generic
> >> and tried compiling latest modules with hg-clone but my analog capture got broken, firmware error...
> >> so i got back to original kernel modules
> >> however, some people claim they get audio with analog on /dev/video1
> >> this has never be my case, im using svideo signal so wondering if that may be it.
> >> i get analog video on video0 and video1, but some colors look pretty weird, red for example.
> >
> > The driver in the kernel and hg does not set up the registers properly
> > for the video or audio in S-Video mode. I made some changes to get mine
> > working. I can probably make a patch for you if you can get your source
> > build working.
>
> Why not sign it off and send it in to the list, to be merged into the
> official sources?
>
> Surely if there is a bug or missing feature that you've fixed, it
> should be merged into the repository so that everybody else can
> benefit from it.
Right now it's kind of a dirty hack just for my card. I'm stepping on
code shared with other cx23885/cx25840 cards and potentially breaking
them without any way to check. It needs a few more changes anyway, but
the breaking would still be a problem. I can either hope for the best,
or add extra variables and conditions just for this card and make a
little mess.
--
Jeff DeFouw <jeffd@i2k.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-01-25 16:52 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-21 6:08 [linux-dvb] HVR-1800 Support Killero SS
2009-01-22 18:22 ` Mark Jenks
2009-01-24 20:37 ` Jeff DeFouw
2009-01-25 15:26 ` Michael Krufky
2009-01-25 16:52 ` Jeff DeFouw
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox