TeVii S470: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
(→‎Older kernels: Add other way to install the driver.)
 
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:
A DVB-S2 PCIe card from [http://www.tevii.com TeVii Technology Ltd]
A DVB-S2 PCIe card from [http://www.tevii.com TeVii Technology Ltd]


==Hardware/Features==
== Kernel 2.6.33 and newer ==
* PCIe x1 low profile

===Components Used===
* RF Tuner: [[Montage]] [[Montage M88TS2020|M88TS2020]]
* Demodulator: [[Montage]] [[Montage M88DS3000|M88DS3000]]
* PCIe bridge: [[Conexant]] cx23885

===Identification===
PCI id: [d470:9022]

== Linux support ==

=== Drivers ===

Here are all drivers from the manufacturer:

http://tevii.com/tevii_ds3000.tar.gz

http://www.tevii.com/100315_Beta_linux_tevii_ds3000.rar

=== Kernel 2.6.33 and newer ===
Those kernels have in-build drivers.
Those kernels have in-build drivers.


Line 21: Line 42:
<M> Conexant cx23885 (2388x successor) support
<M> Conexant cx23885 (2388x successor) support


=== Remote support in 2.6.36 ===
==== Remote support in 2.6.36 ====
Kernel 2.6.36 added support for the infrared remote, but was disabled after it caused nasty effects for some people.
Kernel 2.6.36 added support for the infrared remote, but was disabled after it caused nasty effects for some people.
If you are feeling lucky, you may try to enable it by passing the argument "enable_885_ir=1" to the module, e.g.
If you are feeling lucky, you may try to enable it by passing the argument "enable_885_ir=1" to the module, e.g.
Line 27: Line 48:
or whatever config file your distribution uses for that. However, you have been warned, it worked instantly and without further configuration, but after pressing like 20 buttons on the remote my system completely froze.
or whatever config file your distribution uses for that. However, you have been warned, it worked instantly and without further configuration, but after pressing like 20 buttons on the remote my system completely froze.


== Older kernels ==
=== Older kernels ===
Use the [[s2-liplianin]] v4l branch.
Use the [[s2-liplianin]] v4l branch.


Line 59: Line 80:
(thanks to [http://www.eurocardsharing.com/f273/tevii-support-in-linux-130128 ticapix])
(thanks to [http://www.eurocardsharing.com/f273/tevii-support-in-linux-130128 ticapix])


TODO:
* remote (here is some info about the remote: http://linuxtv.org/hg/~awalls/cx23885-ir )


This work for me on Debian Squeeze (2.6.32):
==Hardware/Features==
* PCIe x1


mkdir /usr/local/src/dvb
===Components Used===
cd /usr/local/src/dvb
* RF tuner: [[Montage]]: [[Montage M88TS2020|M88TS2020]]
wget http://tevii.com/100315_Beta_linux_tevii_ds3000.rar
* demod: [[Montage]]: [[Montage M88DS3000|M88DS3000]]
unrar x 100315_Beta_linux_tevii_ds3000.rar
* pci-e bridge: Conexant cx23885
cp dvb-fe-ds3000.fw /lib/firmware/
tar xjvf linux-tevii-ds3000.tar.bz2
cd linux-tevii-ds3000
make && make install


TODO:
===Identification===
* remote (here is some info about the remote: http://linuxtv.org/hg/~awalls/cx23885-ir )
PCI id: [d470:9022]


==External Links==
[http://www.tevii.com/Products_S470_1.asp Official Website]


==External Links==
[[Category:DVB-S2 PCIe Cards]]
[[Category:DVB-S2 PCIe Cards]]

Latest revision as of 10:22, 8 May 2011

TeVii S470 Card

A DVB-S2 PCIe card from TeVii Technology Ltd

Hardware/Features

  • PCIe x1 low profile

Components Used

Identification

PCI id: [d470:9022]

Linux support

Drivers

Here are all drivers from the manufacturer:

http://tevii.com/tevii_ds3000.tar.gz

http://www.tevii.com/100315_Beta_linux_tevii_ds3000.rar

Kernel 2.6.33 and newer

Those kernels have in-build drivers.

Download and install firmware

wget -c http://tevii.com/tevii_ds3000.tar.gz
tar xfv tevii_ds3000.tar.gz
sudo cp tevii_ds3000/dvb-fe-ds3000.fw /lib/firmware/

Thats it, your card should be working now. If you configure your own kernel, be sure to enable

Device Drivers  --->
 Multimedia support  --->
  <*>   Video For Linux 
  <*>   DVB for Linux
  [*]   Load and attach frontend and tuner driver modules as needed
  [*]   Video capture adapters  --->
    [*]   Autoselect pertinent encoders/decoders and other helper chips
    <M>   Conexant cx23885 (2388x successor) support

Remote support in 2.6.36

Kernel 2.6.36 added support for the infrared remote, but was disabled after it caused nasty effects for some people. If you are feeling lucky, you may try to enable it by passing the argument "enable_885_ir=1" to the module, e.g.

modprobe cx23885 enable_885_ir=1

or whatever config file your distribution uses for that. However, you have been warned, it worked instantly and without further configuration, but after pressing like 20 buttons on the remote my system completely froze.

Older kernels

Use the s2-liplianin v4l branch.

You can use this script to download and compile firmware/driver

  echo "TeVii S470"                                                                  
       # checking firmware
       if [ ! -f /lib/firmware/dvb-fe-ds3000.fw ]; then
           wget -c http://tevii.com/tevii_ds3000.tar.gz
           tar zxfv tevii_ds3000.tar.gz
           sudo cp tevii_ds3000/dvb-fe-ds3000.fw /lib/firmware/
           rm -rf tevii_ds3000
       fi
       # checking driver
       if [ -d "s2-liplianin" ]; then
           cd "s2-liplianin"
           make distclean
           make update
       else
           hg clone http://mercurial.intuxication.org/hg/s2-liplianin
           cd "s2-liplianin"
       fi
       make
       sudo make install
       sudo depmod
       sudo make rmmod
       sudo modprobe cx23885
       sleep 1
       ls -R /dev/dvb/

(thanks to ticapix)


This work for me on Debian Squeeze (2.6.32):

  mkdir /usr/local/src/dvb
  cd /usr/local/src/dvb
  wget http://tevii.com/100315_Beta_linux_tevii_ds3000.rar
  unrar x 100315_Beta_linux_tevii_ds3000.rar
  cp dvb-fe-ds3000.fw /lib/firmware/
  tar xjvf linux-tevii-ds3000.tar.bz2
  cd linux-tevii-ds3000
  make && make install

TODO:

External Links

Official Website