Hi,
the driver is working fine but, I've a little problem with the radio, 
I get the same (poor) signal even if all antenna are unplugged ....

tuner Microtune 4049 FM5
SECAM World

kernel 2.6.9
(driver w83627hf don't work on my motherboard with earlier kernel)

dmesg

bttv: driver version 0.9.15 loaded
bttv: using 8 buffers with 2080k (520 pages) each for capture
ivtv: ==================== START INIT IVTV ====================
ivtv: version 0.3.8 (tagged release) loading
ivtv: Linux version: 2.6.9 SMP PENTIUM4 gcc-3.4
ivtv: In case of problems please include the debug info
ivtv: between the START INIT IVTV and END INIT IVTV lines when
ivtv: mailing the ivtv-devel mailinglist.
ivtv: Autodetected WinTV PVR 350 card (iTVC15 based)
ACPI: PCI interrupt 0000:01:04.0[A] -> GSI 16 (level, low) -> IRQ 16
tveeprom: Hauppauge: model = 48139, rev = J352, serial# = 7250557
tveeprom: tuner = Microtune 4049 FM5 (idx = 52, type = 45)
tveeprom: tuner fmt = PAL(B/G) PAL(I) SECAM(L/L) PAL(D/K) (eeprom = 
0x74, v4l2 = 0x00400e17)
tveeprom: audio processor = MSP4418 (type = 19)
tveeprom: decoder processor = SAA7115 (type = 13)
ivtv: i2c attach to card #0 ok [client=tveeprom[50], addr=50]
tuner: chip found at addr 0xc2 i2c-bus ivtv i2c driver #0
ivtv: i2c attach to card #0 ok [client=(tuner unset), addr=61]
ivtv: i2c attach to card #0 ok [client=saa7115[50], addr=21]
saa7127 1-0044: saa7127 found @ 0x88 (ivtv i2c driver #0)
ivtv: i2c attach to card #0 ok [client=saa7127, addr=44]
msp34xx: ivtv version
msp34xx: init: chip=MSP3418W-A2, has NICAM support, simple (D) mode, 
simpler (G) no-thread mode
msp34xx: $Id$ compiled on: Sep 13 2005 21:42:05
ivtv: i2c attach to card #0 ok [client=MSP3418W-A2, addr=40]
tda9885/6/7: chip found @ 0x86
ivtv: i2c attach to card #0 ok [client=tda9887, addr=43]
ivtv: loading /lib/modules/ivtv-fw-enc.bin
ivtv: loading /lib/modules/ivtv-fw-dec.bin
ivtv: Encoder revision: 0x02040011
ivtv: Decoder revision: 0x02020023
ivtv: Allocate DMA encoder MPEG stream: 128 x 32768 buffers (4096KB 
total)
ivtv: Allocate DMA encoder YUV stream: 161 x 12960 buffers (2048KB 
total)
ivtv: Allocate DMA encoder VBI stream: 80 x 26208 buffers (2048KB 
total)
ivtv: Allocate DMA encoder PCM audio stream: 455 x 4608 buffers 
(2048KB total)
ivtv: Create encoder radio stream
ivtv: Allocate DMA decoder MPEG stream: 16 x 65536 buffers (1024KB 
total)
ivtv: Allocate DMA decoder VBI stream: 512 x 2048 buffers (1024KB 
total)
ivtv: Create decoder VOUT stream
ivtv: Allocate DMA decoder YUV stream: 20 x 51840 buffers (1024KB 
total)
tuner: type set to 45 (Microtune 4049 FM5) by ivtv i2c driver #0
ivtv: Initialized WinTV PVR 350, card #0
ivtv: ====================  END INIT IVTV  ====================
cx2388x v4l2 driver version 0.0.4 loaded
lirc_i2c: chip found @ 0x18 (Hauppauge IR)
ivtv: i2c attach to card #0 ok [client=Hauppauge IR, addr=18]
lirc_dev: lirc_register_plugin: sample_rate: 10
ivtv-osd: Framebuffer module loaded (attached to ivtv card id 0)
ivtv-osd warning: Framebuffer is at decoder-relative address 
0x00510000 and has 1704960 bytes.
ivtv-osd: screen coords: [0 0] -> [720 576]
ivtv-osd: original global alpha = 208
ivtv-osd: current OSD state = 39
ivtv-osd: new global alpha = 208 (1 255 0)
ivtv-osd: framebuffer at 0xe9510000, mapped to 0xf9790000, size 1620k
ivtv-osd: mode is 720x576x32, linelength=2880
Console: switching to colour frame buffer device 90x36
ivtv-osd: fb0: iTVC15 TV out frame buffer device
ivtv: Allocate DMA decoder OSD stream: 16 x 65536 buffers (1024KB 
total)


/etc/modprobe.conf

alias char-major-89 i2c-dev
alias char-major-81 videodev
alias char-major-81-0 ivtv
alias char-major-61 lirc_i2c

options tda9887 secam=L
options ivtv ivtv_debug=1 ivtv_std=3 tuner=45 tda9887=0
options msp3400 once=1 simple=1 debug=0 standard=0x09


and in my rc.local

#if anybody has a better idea for testing the presence of udev
if [ `/bin/ps ax | /bin/grep udevd | /bin/grep -v grep | /usr/bin/wc 
-l` -eq 1 ]; then
        UDEV=true
fi

# sortie SVHS -- SVHS output
/usr/local/bin/ivtvctl -l 2  >/dev/null 2>&1

# not sure of the utility of these 2 lines ....
/bin/dd if=/dev/video0 of=/dev/video16 bs=65k count=25
/usr/local/bin/ivtvctl -x 1 -w wss -b wss,teletex

/usr/local/bin/ivtvctl -c framerate=1,dnr_mode=0,dnr_temporal=0

# the card use fb0 , just in case ....

if [ ! -z "$UDEV" ]; then
        if [ -c /dev/fb1 ]; then
                FB=/dev/fb1
        else
                FB=/dev/fb0
        fi
else
        if [ -d /dev/fb ]; then
                /bin/chmod 777 /dev/fb
                if [ -f /dev/fb/1 ]; then
                        FB=/dev/fb/1
                else
                        FB=/dev/fb/0
                fi
        else
                if [ -c /dev/fb1 ]; then
                        FB=/dev/fb1
                else
                        FB=/dev/fb0
                fi
        fi
fi
/bin/chmod 666 $FB


/usr/local/bin/ivtvfbctl $FB -noglobalalpha -localalpha  >/dev/null 
2>&1

# not sure for these 2 lines ...
/usr/local/bin/ivtvfbctl $FB -globalalpha -nolocalalpha  >/dev/null 
2>&1
/usr/local/bin/ivtvfbctl $FB -globalalpha -nolocalalpha -alpha 104  
>/dev/null 2>&1

I've tried different parameters for tuner:
modprobe tuner tv_antenna=x radio_antenna=y
with 0 <= x <=1 and  0<= y <=4
All I got is some noise when I unplug antenna radio with y > 1
but no better signal with these values ....

An idea anybody ?

thanks.

-- 
Jacques Facquet.


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42" plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
ivtv-devel mailing list
ivtv-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ivtv-devel

Reply via email to