aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/dvb/bt8xx.txt
diff options
context:
space:
mode:
authorManu Abraham <manu@linuxtv.org>2005-11-09 00:35:33 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-09 10:56:03 -0500
commit28fdd7599cb9c6c620caf13bcaea41e2532cb5fd (patch)
tree9323b4e051f5d2ac40b599b89d04737513cd25c8 /Documentation/dvb/bt8xx.txt
parentc0b11b914de27e0e82b5311cf9b498a1b008b591 (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/dvb/bt8xx.txt')
-rw-r--r--Documentation/dvb/bt8xx.txt43
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
393b) TwinHan and Clones 413b) 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
46The value 0x71 will override the PCI type detection for dvb-bt8xx, 48The value 0x71 will override the PCI type detection for dvb-bt8xx,
47which is necessary for TwinHan cards. 49which is necessary for TwinHan cards. Omission of this parameter might result
50in a system lockup.
48 51
49If you're having an older card (blue color circuit) and card=0x71 locks 52If you're having an older card (blue color PCB) and card=0x71 locks up
50your machine, try using 0x68, too. If that does not work, ask on the 53your machine, try using 0x68, too. If that does not work, ask on the
51mailing list. 54mailing list.
52 55
@@ -69,6 +72,38 @@ string' which you can see in your logs e.g.
69 72
70dst_get_device_id: Recognise [DSTMCI] 73dst_get_device_id: Recognise [DSTMCI]
71 74
75If you need to sent in bug reports on the dst, please do send in a complete
76log with the verbose=4 module parameter. For general usage, the default setting
77of verbose=1 is ideal.
78
79
804) Multiple cards
81--------------------------
82
83If you happen to be running multiple cards, it would be advisable to load
84the bttv module with the card id. This would help to solve any module loading
85problems that you might face.
86
87for example, if you happen to have a Twinhan and clones alongwith a FusionHDTV5
88card
89
90 $ modprobe bttv card=0x71 card=0x87
91
92Here the order of the card id is important and should be the same as that of the
93physical order of the cards. Here card=0x71 represents the Twinhan and clones
94and card=0x87 represents Fusion HDTV5.
95
96Some examples of card-id's
97
98Pinnacle Sat 0x5e
99Nebula Digi TV 0x68
100PC HDTV 0x70
101Twinhan 0x71
102Fusion HDTV5 0x87
103
104For a full list of card-id's, you can see the exported card-id's from
105bttv-cards.c in linux-2.6.x/drivers/media/video/bttv.h
106If you have problems with this please do ask on the mailing list.
72 107
73-- 108--
74Authors: Richard Walker, Jamie Honan, Michael Hunold, Manu Abraham 109Authors: Richard Walker, Jamie Honan, Michael Hunold, Manu Abraham