Hercules Smart TV Satellite: Difference between revisions
(Compared CAM compatibilty with windows) |
m (Added category: DVB-S PCI Cards) |
||
(8 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
⚫ | |||
== Card information == |
|||
⚫ | |||
⚫ | |||
A [[DVB-S]] [[DVB-S PCI Cards|PCI card]] by [[Hercules]]. |
|||
So far the difference are: |
|||
* different sticker on tuner |
|||
It is supported under Linux. |
|||
* Firmware returns a "DST-CI" identifier instead of the "DSTMCI" identifier returned by VP-1030A firmware |
|||
==Overview/Feature== |
|||
⚫ | |||
Connectors: |
Connectors: |
||
Line 12: | Line 15: | ||
* Internal sat output |
* Internal sat output |
||
==Making it Work== |
|||
⚫ | |||
⚫ | |||
==Required software== |
===Required software=== |
||
=== Stable kernel=== |
=== Stable kernel=== |
||
Line 21: | Line 24: | ||
The card works perfectly in FTA mode with 2.6.7 or later kernel. De-scrambling |
The card works perfectly in FTA mode with 2.6.7 or later kernel. De-scrambling |
||
is not supported. |
is not supported. |
||
With a 2.6.19 and higher kernel, De-scrambling also works. |
|||
=== In development === |
=== In development === |
||
De-scrambling support is provided by the experimental dst_ca module. |
De-scrambling support is provided by the experimental dst_ca module. (on 2.6.19 it seems not to be experimental anymore) |
||
This driver is working but some |
This driver is working but some |
||
polishing is still required. To de-scramble programs, you must have: |
polishing is still required. To de-scramble programs, you must have: |
||
Line 30: | Line 34: | ||
* Linux kernel 2.6.9 or greater |
* Linux kernel 2.6.9 or greater |
||
* DVB CVS |
* DVB CVS |
||
* The ca_zap program (available in dvb CVS) |
|||
==Required modules== |
===Required modules=== |
||
Add dvb-bt8xx in your /etc/modules files and add these lines in you modprobe.conf: |
Add dvb-bt8xx in your /etc/modules files and add these lines in you modprobe.conf: |
||
On older kernels (like 2.6.7 to 2.6.9): |
|||
options bttv i2c_hw=1 card=0x71 |
options bttv i2c_hw=1 card=0x71 |
||
options dst_ca new_ca=1 |
options dst_ca new_ca=1 |
||
Line 40: | Line 46: | ||
The dst_ca line and module is required only for de-scrambling (still in developement) |
The dst_ca line and module is required only for de-scrambling (still in developement) |
||
---- |
|||
On 2.6.19 and higher: (Tested on Fedora Core 6 with vanilla kernel) |
|||
options bttv i2c_hw=1 card=0x71 |
|||
options dst dst_addons=32 |
|||
install bt878 /sbin/modprobe bttv; /sbin/modprobe --ignore-install bt878; /sbin/modprobe dst; /sbin/modprobe dst_ca; /sbin/modprobe dvb-bt8xx |
|||
* The bttv line is required for proper recognition of this card by the bttv driver and to prevent a complete kernel lock up during boot. (On Fedora Core the last line that can be seen is 'Starting udev' if this line is '''not''' available in /etc/modprobe.conf.). |
|||
* The dst_addons option set to 32(=DST_TYPE_HAS_CA) is required to make sure the card is reset on load time of the dst-driver. if omitted, the dst driver will not be able to communicate to the card during dst_probe() on a cold boot and loading the dst (and dst_ca) driver fails. (A soft reboot will load the driver after reboot without problems.) |
|||
* The install line is to prevent an annoying race where drivers are loaded in parallel, especially on SMP systems. On FC6, without this line, the loading of the bt878 driver may fail as it is loaded in parallel with the bttv driver. This install line guarantees the proper loading order of all the drivers required for this card. |
|||
==CAM tests== |
==CAM tests== |
||
Line 50: | Line 66: | ||
! style="background:#ffdead;" | Type |
! style="background:#ffdead;" | Type |
||
! style="background:#ffdead;" | HW version |
! style="background:#ffdead;" | HW version |
||
! style="background:#ffdead;" | |
! style="background:#ffdead;" | Viaccess version |
||
! style="background:#ffdead;" | Application version |
|||
! style="background:#ffdead;" | Results |
! style="background:#ffdead;" | Results |
||
|- |
|- |
||
| SCM Red Viaccess |
| SCM Red Viaccess |
||
| 1.0 |
| 1.0 |
||
| V484 |
|||
| 1.06 |
| 1.06 |
||
| Working, but random failures are observed every few hours with TPS |
| Working, but random failures are observed every few hours with TPS |
||
|- |
|- |
||
| Aston Viaccess |
| Aston Viaccess |
||
| ? |
|||
| ? |
| ? |
||
| ? |
| ? |
||
| Not working |
| Not working |
||
|- |
|||
| Canal-Digitaal CAM<BR> [[Image:CanalDigitaal2.jpg]] |
|||
| ? |
|||
| ? |
|||
| MythTV 0.20 |
|||
| Full operational on FC6, 2.6.19 and higher, less stable on 2.6.18 kernel |
|||
|} |
|} |
||
Line 70: | Line 95: | ||
As the dst_ca driver is still under development, the results of this page may change. |
As the dst_ca driver is still under development, the results of this page may change. |
||
[[Category:DVB-S]] |
[[Category:DVB-S PCI Cards]] |
||
[[Category:Hardware]] |
Latest revision as of 02:37, 4 May 2009
It is supported under Linux.
Overview/Feature
This card is a clone of Twinhan VP-1030A card.
Connectors:
- Sat input
- CI connector for CAM module
- Internal 8 pins connector (unknown purpose. Anyone knows ?)
- Internal sat output
Making it Work
Required software
Stable kernel
The card works perfectly in FTA mode with 2.6.7 or later kernel. De-scrambling is not supported. With a 2.6.19 and higher kernel, De-scrambling also works.
In development
De-scrambling support is provided by the experimental dst_ca module. (on 2.6.19 it seems not to be experimental anymore) This driver is working but some polishing is still required. To de-scramble programs, you must have:
- Linux kernel 2.6.9 or greater
- DVB CVS
- The ca_zap program (available in dvb CVS)
Required modules
Add dvb-bt8xx in your /etc/modules files and add these lines in you modprobe.conf:
On older kernels (like 2.6.7 to 2.6.9):
options bttv i2c_hw=1 card=0x71 options dst_ca new_ca=1 install dvb-bt8xx /sbin/modprobe --ignore-install dvb-bt8xx; /sbin/modprobe dst
The dst_ca line and module is required only for de-scrambling (still in developement)
On 2.6.19 and higher: (Tested on Fedora Core 6 with vanilla kernel)
options bttv i2c_hw=1 card=0x71 options dst dst_addons=32 install bt878 /sbin/modprobe bttv; /sbin/modprobe --ignore-install bt878; /sbin/modprobe dst; /sbin/modprobe dst_ca; /sbin/modprobe dvb-bt8xx
- The bttv line is required for proper recognition of this card by the bttv driver and to prevent a complete kernel lock up during boot. (On Fedora Core the last line that can be seen is 'Starting udev' if this line is not available in /etc/modprobe.conf.).
- The dst_addons option set to 32(=DST_TYPE_HAS_CA) is required to make sure the card is reset on load time of the dst-driver. if omitted, the dst driver will not be able to communicate to the card during dst_probe() on a cold boot and loading the dst (and dst_ca) driver fails. (A soft reboot will load the driver after reboot without problems.)
- The install line is to prevent an annoying race where drivers are loaded in parallel, especially on SMP systems. On FC6, without this line, the loading of the bt878 driver may fail as it is loaded in parallel with the bttv driver. This install line guarantees the proper loading order of all the drivers required for this card.
CAM tests
Feel free to update this table with other types of CAMs.
For the record, I've similar results with Windows XP: Aston CAM does not work, and SCM CAM sometimes decode.
But SCM CAM is working much better with experimental Linux driver than with Windows.
As the dst_ca driver is still under development, the results of this page may change.