diff options
author | Manu Abraham <manu@linuxtv.org> | 2005-11-09 00:35:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 10:56:03 -0500 |
commit | 28fdd7599cb9c6c620caf13bcaea41e2532cb5fd (patch) | |
tree | 9323b4e051f5d2ac40b599b89d04737513cd25c8 /Documentation | |
parent | c0b11b914de27e0e82b5311cf9b498a1b008b591 (diff) |
[PATCH] dvb: Updated Documentation
Updated Documentation
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Cc: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/dvb/bt8xx.txt | 43 |
1 files changed, 39 insertions, 4 deletions
diff --git a/Documentation/dvb/bt8xx.txt b/Documentation/dvb/bt8xx.txt index cb63b7a93c82..ac3af17f2b6f 100644 --- a/Documentation/dvb/bt8xx.txt +++ b/Documentation/dvb/bt8xx.txt | |||
@@ -33,20 +33,23 @@ TwinHan (dst) are loaded automatically by the dvb-bt8xx device driver. | |||
33 | -------------------------- | 33 | -------------------------- |
34 | 34 | ||
35 | $ modprobe bttv (normally bttv is being loaded automatically by kmod) | 35 | $ modprobe bttv (normally bttv is being loaded automatically by kmod) |
36 | $ modprobe dvb-bt8xx (or just place dvb-bt8xx in /etc/modules for automatic loading) | 36 | $ modprobe dvb-bt8xx |
37 | |||
38 | (or just place dvb-bt8xx in /etc/modules for automatic loading) | ||
37 | 39 | ||
38 | 40 | ||
39 | 3b) TwinHan and Clones | 41 | 3b) TwinHan and Clones |
40 | -------------------------- | 42 | -------------------------- |
41 | 43 | ||
42 | $ modprobe bttv i2c_hw=1 card=0x71 | 44 | $ modprobe bttv card=0x71 |
43 | $ modprobe dvb-bt8xx | 45 | $ modprobe dvb-bt8xx |
44 | $ modprobe dst | 46 | $ modprobe dst |
45 | 47 | ||
46 | The value 0x71 will override the PCI type detection for dvb-bt8xx, | 48 | The value 0x71 will override the PCI type detection for dvb-bt8xx, |
47 | which is necessary for TwinHan cards. | 49 | which is necessary for TwinHan cards. Omission of this parameter might result |
50 | in a system lockup. | ||
48 | 51 | ||
49 | If you're having an older card (blue color circuit) and card=0x71 locks | 52 | If you're having an older card (blue color PCB) and card=0x71 locks up |
50 | your machine, try using 0x68, too. If that does not work, ask on the | 53 | your machine, try using 0x68, too. If that does not work, ask on the |
51 | mailing list. | 54 | mailing list. |
52 | 55 | ||
@@ -69,6 +72,38 @@ string' which you can see in your logs e.g. | |||
69 | 72 | ||
70 | dst_get_device_id: Recognise [DSTMCI] | 73 | dst_get_device_id: Recognise [DSTMCI] |
71 | 74 | ||
75 | If you need to sent in bug reports on the dst, please do send in a complete | ||
76 | log with the verbose=4 module parameter. For general usage, the default setting | ||
77 | of verbose=1 is ideal. | ||
78 | |||
79 | |||
80 | 4) Multiple cards | ||
81 | -------------------------- | ||
82 | |||
83 | If you happen to be running multiple cards, it would be advisable to load | ||
84 | the bttv module with the card id. This would help to solve any module loading | ||
85 | problems that you might face. | ||
86 | |||
87 | for example, if you happen to have a Twinhan and clones alongwith a FusionHDTV5 | ||
88 | card | ||
89 | |||
90 | $ modprobe bttv card=0x71 card=0x87 | ||
91 | |||
92 | Here the order of the card id is important and should be the same as that of the | ||
93 | physical order of the cards. Here card=0x71 represents the Twinhan and clones | ||
94 | and card=0x87 represents Fusion HDTV5. | ||
95 | |||
96 | Some examples of card-id's | ||
97 | |||
98 | Pinnacle Sat 0x5e | ||
99 | Nebula Digi TV 0x68 | ||
100 | PC HDTV 0x70 | ||
101 | Twinhan 0x71 | ||
102 | Fusion HDTV5 0x87 | ||
103 | |||
104 | For a full list of card-id's, you can see the exported card-id's from | ||
105 | bttv-cards.c in linux-2.6.x/drivers/media/video/bttv.h | ||
106 | If you have problems with this please do ask on the mailing list. | ||
72 | 107 | ||
73 | -- | 108 | -- |
74 | Authors: Richard Walker, Jamie Honan, Michael Hunold, Manu Abraham | 109 | Authors: Richard Walker, Jamie Honan, Michael Hunold, Manu Abraham |