Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 1 | How to get the bt8xx cards working |
| 2 | ================================== |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 4 | 1) General information |
| 5 | ====================== |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 7 | This class of cards has a bt878a as the PCI interface, and require the bttv driver |
| 8 | for accessing the i2c bus and the gpio pins of the bt8xx chipset. |
| 9 | Please see Documentation/dvb/cards.txt => o Cards based on the Conexant Bt8xx PCI bridge: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 11 | Compiling kernel please enable: |
| 12 | a.)"Device drivers" => "Multimedia devices" => "Video For Linux" => "BT848 Video For Linux" |
| 13 | b.)"Device drivers" => "Multimedia devices" => "Digital Video Broadcasting Devices" |
| 14 | => "DVB for Linux" "DVB Core Support" "Bt8xx based PCI Cards" |
Manu Abraham | 2d6e732 | 2005-09-09 13:03:04 -0700 | [diff] [blame] | 15 | |
| 16 | 2) Loading Modules |
| 17 | ================== |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 19 | In default cases bttv is loaded automatically. |
| 20 | To load the backend either place dvb-bt8xx in etc/modules, or apply manually: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 22 | $ modprobe dvb-bt8xx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 24 | All frontends will be loaded automatically. |
| 25 | People running udev please see Documentation/dvb/udev.txt. |
Manu Abraham | 28fdd75 | 2005-11-08 21:35:33 -0800 | [diff] [blame] | 26 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 27 | In the following cases overriding the PCI type detection for dvb-bt8xx might be necessary: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 29 | 2a) Running TwinHan and Clones |
| 30 | ------------------------------ |
Johannes Stezenbach | df481ae | 2005-05-16 21:54:45 -0700 | [diff] [blame] | 31 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 32 | $ modprobe bttv card=113 |
| 33 | $ modprobe dvb-bt8xx |
| 34 | $ modprobe dst |
| 35 | |
| 36 | Useful parameters for verbosity level and debugging the dst module: |
| 37 | |
| 38 | verbose=0: messages are disabled |
| 39 | 1: only error messages are displayed |
| 40 | 2: notifications are displayed |
| 41 | 3: other useful messages are displayed |
| 42 | 4: debug setting |
| 43 | dst_addons=0: card is a free to air (FTA) card only |
| 44 | 0x20: card has a conditional access slot for scrambled channels |
| 45 | |
| 46 | The autodetected values are determined by the cards' "response string". |
| 47 | In your logs see f. ex.: dst_get_device_id: Recognize [DSTMCI]. |
| 48 | For bug reports please send in a complete log with verbose=4 activated. |
| 49 | Please also see Documentation/dvb/ci.txt. |
| 50 | |
| 51 | 2b) Running multiple cards |
Manu Abraham | 2d6e732 | 2005-09-09 13:03:04 -0700 | [diff] [blame] | 52 | -------------------------- |
| 53 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 54 | Examples of card ID's: |
Manu Abraham | 2d6e732 | 2005-09-09 13:03:04 -0700 | [diff] [blame] | 55 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 56 | Pinnacle PCTV Sat: 94 |
| 57 | Nebula Electronics Digi TV: 104 |
| 58 | pcHDTV HD-2000 TV: 112 |
| 59 | Twinhan DST and clones: 113 |
| 60 | Avermedia AverTV DVB-T 771: 123 |
| 61 | Avermedia AverTV DVB-T 761: 124 |
| 62 | DViCO FusionHDTV DVB-T Lite: 128 |
| 63 | DViCO FusionHDTV 5 Lite: 135 |
Manu Abraham | 2d6e732 | 2005-09-09 13:03:04 -0700 | [diff] [blame] | 64 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 65 | Notice: The order of the card ID should be uprising: |
| 66 | Example: |
Michael Krufky | 2cbeddc | 2005-11-08 21:35:35 -0800 | [diff] [blame] | 67 | $ modprobe bttv card=113 card=135 |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 68 | $ modprobe dvb-bt8xx |
Manu Abraham | 28fdd75 | 2005-11-08 21:35:33 -0800 | [diff] [blame] | 69 | |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 70 | For a full list of card ID's please see Documentation/video4linux/CARDLIST.bttv. |
| 71 | In case of further problems send questions to the mailing list: www.linuxdvb.org. |
Manu Abraham | 28fdd75 | 2005-11-08 21:35:33 -0800 | [diff] [blame] | 72 | |
Michael Krufky | dccd7c7 | 2006-02-27 00:07:46 -0300 | [diff] [blame] | 73 | Authors: Richard Walker, |
| 74 | Jamie Honan, |
| 75 | Michael Hunold, |
| 76 | Manu Abraham, |
Uwe Bugla | 8abe58a | 2006-03-16 20:37:05 -0300 | [diff] [blame] | 77 | Uwe Bugla, |
Michael Krufky | dccd7c7 | 2006-02-27 00:07:46 -0300 | [diff] [blame] | 78 | Michael Krufky |