diff options
Diffstat (limited to 'Documentation/dvb')
-rw-r--r-- | Documentation/dvb/bt8xx.txt | 89 | ||||
-rw-r--r-- | Documentation/dvb/ci.txt | 9 |
2 files changed, 55 insertions, 43 deletions
diff --git a/Documentation/dvb/bt8xx.txt b/Documentation/dvb/bt8xx.txt index e6b8d05bc08d..cb63b7a93c82 100644 --- a/Documentation/dvb/bt8xx.txt +++ b/Documentation/dvb/bt8xx.txt | |||
@@ -1,55 +1,74 @@ | |||
1 | How to get the Nebula Electronics DigiTV, Pinnacle PCTV Sat, Twinhan DST + clones working | 1 | How to get the Nebula, PCTV and Twinhan DST cards working |
2 | ========================================================================================= | 2 | ========================================================= |
3 | 3 | ||
4 | 1) General information | 4 | This class of cards has a bt878a as the PCI interface, and |
5 | ====================== | 5 | require the bttv driver. |
6 | 6 | ||
7 | This class of cards has a bt878a chip as the PCI interface. | 7 | Please pay close attention to the warning about the bttv module |
8 | The different card drivers require the bttv driver to provide the means | 8 | options below for the DST card. |
9 | to access the i2c bus and the gpio pins of the bt8xx chipset. | ||
10 | 9 | ||
11 | 2) Compilation rules for Kernel >= 2.6.12 | 10 | 1) General informations |
12 | ========================================= | 11 | ======================= |
13 | 12 | ||
14 | Enable the following options: | 13 | These drivers require the bttv driver to provide the means to access |
14 | the i2c bus and the gpio pins of the bt8xx chipset. | ||
15 | 15 | ||
16 | Because of this, you need to enable | ||
16 | "Device drivers" => "Multimedia devices" | 17 | "Device drivers" => "Multimedia devices" |
17 | => "Video For Linux" => "BT848 Video For Linux" | 18 | => "Video For Linux" => "BT848 Video For Linux" |
19 | |||
20 | Furthermore you need to enable | ||
18 | "Device drivers" => "Multimedia devices" => "Digital Video Broadcasting Devices" | 21 | "Device drivers" => "Multimedia devices" => "Digital Video Broadcasting Devices" |
19 | => "DVB for Linux" "DVB Core Support" "Nebula/Pinnacle PCTV/TwinHan PCI Cards" | 22 | => "DVB for Linux" "DVB Core Support" "BT8xx based PCI cards" |
20 | 23 | ||
21 | 3) Loading Modules, described by two approaches | 24 | 2) Loading Modules |
22 | =============================================== | 25 | ================== |
23 | 26 | ||
24 | In general you need to load the bttv driver, which will handle the gpio and | 27 | In general you need to load the bttv driver, which will handle the gpio and |
25 | i2c communication for us, plus the common dvb-bt8xx device driver, | 28 | i2c communication for us, plus the common dvb-bt8xx device driver. |
26 | which is called the backend. | 29 | The frontends for Nebula (nxt6000), Pinnacle PCTV (cx24110) and |
27 | The frontends for Nebula DigiTV (nxt6000), Pinnacle PCTV Sat (cx24110), | 30 | TwinHan (dst) are loaded automatically by the dvb-bt8xx device driver. |
28 | TwinHan DST + clones (dst and dst-ca) are loaded automatically by the backend. | ||
29 | For further details about TwinHan DST + clones see /Documentation/dvb/ci.txt. | ||
30 | 31 | ||
31 | 3a) The manual approach | 32 | 3a) Nebula / Pinnacle PCTV |
32 | ----------------------- | 33 | -------------------------- |
33 | 34 | ||
34 | Loading modules: | 35 | $ modprobe bttv (normally bttv is being loaded automatically by kmod) |
35 | modprobe bttv | 36 | $ modprobe dvb-bt8xx (or just place dvb-bt8xx in /etc/modules for automatic loading) |
36 | modprobe dvb-bt8xx | ||
37 | 37 | ||
38 | Unloading modules: | ||
39 | modprobe -r dvb-bt8xx | ||
40 | modprobe -r bttv | ||
41 | 38 | ||
42 | 3b) The automatic approach | 39 | 3b) TwinHan and Clones |
43 | -------------------------- | 40 | -------------------------- |
44 | 41 | ||
45 | If not already done by installation, place a line either in | 42 | $ modprobe bttv i2c_hw=1 card=0x71 |
46 | /etc/modules.conf or in /etc/modprobe.conf containing this text: | 43 | $ modprobe dvb-bt8xx |
47 | alias char-major-81 bttv | 44 | $ modprobe dst |
45 | |||
46 | The value 0x71 will override the PCI type detection for dvb-bt8xx, | ||
47 | which is necessary for TwinHan cards. | ||
48 | |||
49 | If you're having an older card (blue color circuit) and card=0x71 locks | ||
50 | your machine, try using 0x68, too. If that does not work, ask on the | ||
51 | mailing list. | ||
52 | |||
53 | The DST module takes a couple of useful parameters. | ||
54 | |||
55 | verbose takes values 0 to 4. These values control the verbosity level, | ||
56 | and can be used to debug also. | ||
57 | |||
58 | verbose=0 means complete disabling of messages | ||
59 | 1 only error messages are displayed | ||
60 | 2 notifications are also displayed | ||
61 | 3 informational messages are also displayed | ||
62 | 4 debug setting | ||
63 | |||
64 | dst_addons takes values 0 and 0x20. A value of 0 means it is a FTA card. | ||
65 | 0x20 means it has a Conditional Access slot. | ||
66 | |||
67 | The autodected values are determined bythe cards 'response | ||
68 | string' which you can see in your logs e.g. | ||
48 | 69 | ||
49 | Then place a line in /etc/modules containing this text: | 70 | dst_get_device_id: Recognise [DSTMCI] |
50 | dvb-bt8xx | ||
51 | 71 | ||
52 | Reboot your system and have fun! | ||
53 | 72 | ||
54 | -- | 73 | -- |
55 | Authors: Richard Walker, Jamie Honan, Michael Hunold, Manu Abraham, Uwe Bugla | 74 | Authors: Richard Walker, Jamie Honan, Michael Hunold, Manu Abraham |
diff --git a/Documentation/dvb/ci.txt b/Documentation/dvb/ci.txt index 62e0701b542a..95f0e73b2135 100644 --- a/Documentation/dvb/ci.txt +++ b/Documentation/dvb/ci.txt | |||
@@ -23,7 +23,6 @@ This application requires the following to function properly as of now. | |||
23 | eg: $ szap -c channels.conf -r "TMC" -x | 23 | eg: $ szap -c channels.conf -r "TMC" -x |
24 | 24 | ||
25 | (b) a channels.conf containing a valid PMT PID | 25 | (b) a channels.conf containing a valid PMT PID |
26 | |||
27 | eg: TMC:11996:h:0:27500:278:512:650:321 | 26 | eg: TMC:11996:h:0:27500:278:512:650:321 |
28 | 27 | ||
29 | here 278 is a valid PMT PID. the rest of the values are the | 28 | here 278 is a valid PMT PID. the rest of the values are the |
@@ -31,13 +30,7 @@ This application requires the following to function properly as of now. | |||
31 | 30 | ||
32 | (c) after running a szap, you have to run ca_zap, for the | 31 | (c) after running a szap, you have to run ca_zap, for the |
33 | descrambler to function, | 32 | descrambler to function, |
34 | 33 | eg: $ ca_zap channels.conf "TMC" | |
35 | eg: $ ca_zap patched_channels.conf "TMC" | ||
36 | |||
37 | The patched means a patch to apply to scan, such that scan can | ||
38 | generate a channels.conf_with pmt, which has this PMT PID info | ||
39 | (NOTE: szap cannot use this channels.conf with the PMT_PID) | ||
40 | |||
41 | 34 | ||
42 | (d) Hopeflly Enjoy your favourite subscribed channel as you do with | 35 | (d) Hopeflly Enjoy your favourite subscribed channel as you do with |
43 | a FTA card. | 36 | a FTA card. |