Hercules Smart TV Satellite: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
(added required modules and options)
m (Added category: DVB-S PCI Cards)
 
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Image:Hercules_smart_sat_front.jpg|thumb|right|250px|Front view]]
== Card information ==
[[Image:Hercules_smart_sat_rear.jpg|thumb|right|250px|Rear view]]
This card is a clone of [[Twinhan VP-1030A|Twinhan VP-1030A PCTV Sat CI]] card.


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==
This card is a clone of [[Twinhan VP-1030A]] card.


Connectors:
Connectors:
Line 12: Line 15:
* Internal sat output
* Internal sat output


==Making it Work==
[[Image:Hercules_smart_sat_front.jpg]]
[[Image:Hercules_smart_sat_rear.jpg]]


==Required software==


===Required software===
For FTA, any kernel after 2.6.7 should do.


=== Stable kernel===
Do de-scramble programs, you must have:


The card works perfectly in FTA mode with 2.6.7 or later kernel. De-scrambling
* Linux kernel 2.6.9 or greater
is not supported.
* DVB CVS
With a 2.6.19 and higher kernel, De-scrambling also works.
* patch for dst_ca.c (See mailing list archive)
* Load dst_ca module


=== In development ===
So far:

* driver is still in development.
De-scrambling support is provided by the experimental dst_ca module. (on 2.6.19 it seems not to be experimental anymore)
* dst_ca API is not yet frozen.
This driver is working but some
* no real dvb application (like vdr or xine) support this new API.
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==
===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
install dvb-bt8xx /sbin/modprobe --ignore-install dvb-bt8xx; /sbin/modprobe dst
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==
==CAM tests==


Feel free to update this table with other types of CAMs.


{| border="1" cellpadding="5" cellspacing="0" align="center"
{| border="1" cellpadding="5" cellspacing="0" align="center"
Line 48: Line 66:
! style="background:#ffdead;" | Type
! style="background:#ffdead;" | Type
! style="background:#ffdead;" | HW version
! style="background:#ffdead;" | HW version
! style="background:#ffdead;" | Firmware version
! style="background:#ffdead;" | Viaccess version
! style="background:#ffdead;" | Application version
! style="background:#ffdead;" | Results
! style="background:#ffdead;" | Results
|-
|-
| SCM Red Viacess
| SCM Red Viaccess
| 1.0
| 1.0
| V484
| 1.06
| 1.06
| Working, but random failures are observed
| Working, but random failures are observed every few hours with TPS
|-
|-
| Aston Dual
| 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
|}
|}


For the record, I've similar results with Windows XP: Aston CAM does not work, and SCM CAM sometimes decode.
[[Category:DVB-S]]

[[Category:Hardware]]
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.

[[Category:DVB-S PCI Cards]]

Latest revision as of 02:37, 4 May 2009

Front view
Rear view

A DVB-S PCI card by Hercules.

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.

CAM tests on Hercules Smart TV Satellite
Type HW version Viaccess version Application version Results
SCM Red Viaccess 1.0 V484 1.06 Working, but random failures are observed every few hours with TPS
Aston Viaccess ? ? ? Not working
Canal-Digitaal CAM
CanalDigitaal2.jpg
? ? MythTV 0.20 Full operational on FC6, 2.6.19 and higher, less stable on 2.6.18 kernel

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.