[Bluetooth] Eliminate checks for impossible conditions in IRQ handler
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / bluetooth / Kconfig
CommitLineData
1da177e4
LT
1
2menu "Bluetooth device drivers"
3 depends on BT
4
5config BT_HCIUSB
6 tristate "HCI USB driver"
7 depends on USB
8 help
9 Bluetooth HCI USB driver.
10 This driver is required if you want to use Bluetooth devices with
11 USB interface.
12
13 Say Y here to compile support for Bluetooth USB devices into the
14 kernel or say M to compile it as module (hci_usb).
15
16config BT_HCIUSB_SCO
17 bool "SCO (voice) support"
18 depends on BT_HCIUSB
19 help
20 This option enables the SCO support in the HCI USB driver. You need this
21 to transmit voice data with your Bluetooth USB device.
22
23 Say Y here to compile support for SCO over HCI USB.
24
25config BT_HCIUART
26 tristate "HCI UART driver"
27 help
28 Bluetooth HCI UART driver.
29 This driver is required if you want to use Bluetooth devices with
30 serial port interface. You will also need this driver if you have
31 UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card
32 adapter and BrainBoxes Bluetooth PC Card.
33
34 Say Y here to compile support for Bluetooth UART devices into the
35 kernel or say M to compile it as module (hci_uart).
36
37config BT_HCIUART_H4
38 bool "UART (H4) protocol support"
39 depends on BT_HCIUART
40 help
41 UART (H4) is serial protocol for communication between Bluetooth
42 device and host. This protocol is required for most Bluetooth devices
43 with UART interface, including PCMCIA and CF cards.
44
45 Say Y here to compile support for HCI UART (H4) protocol.
46
47config BT_HCIUART_BCSP
48 bool "BCSP protocol support"
49 depends on BT_HCIUART
50 help
51 BCSP (BlueCore Serial Protocol) is serial protocol for communication
52 between Bluetooth device and host. This protocol is required for non
53 USB Bluetooth devices based on CSR BlueCore chip, including PCMCIA and
54 CF cards.
55
56 Say Y here to compile support for HCI BCSP protocol.
57
166d2f6a
OBC
58config BT_HCIUART_LL
59 bool "HCILL protocol support"
60 depends on BT_HCIUART
61 help
62 HCILL (HCI Low Level) is a serial protocol for communication
63 between Bluetooth device and host. This protocol is required for
64 serial Bluetooth devices that are based on Texas Instruments'
65 BRF chips.
66
67 Say Y here to compile support for HCILL protocol.
68
1da177e4
LT
69config BT_HCIBCM203X
70 tristate "HCI BCM203x USB driver"
71 depends on USB
72 select FW_LOADER
73 help
74 Bluetooth HCI BCM203x USB driver.
75 This driver provides the firmware loading mechanism for the Broadcom
76 Blutonium based devices.
77
78 Say Y here to compile support for HCI BCM203x devices into the
79 kernel or say M to compile it as module (bcm203x).
80
81config BT_HCIBPA10X
82 tristate "HCI BPA10x USB driver"
83 depends on USB
84 help
85 Bluetooth HCI BPA10x USB driver.
86 This driver provides support for the Digianswer BPA 100/105 Bluetooth
87 sniffer devices.
88
89 Say Y here to compile support for HCI BPA10x devices into the
90 kernel or say M to compile it as module (bpa10x).
91
92config BT_HCIBFUSB
93 tristate "HCI BlueFRITZ! USB driver"
94 depends on USB
95 select FW_LOADER
96 help
97 Bluetooth HCI BlueFRITZ! USB driver.
98 This driver provides support for Bluetooth USB devices with AVM
99 interface:
100 AVM BlueFRITZ! USB
101
102 Say Y here to compile support for HCI BFUSB devices into the
103 kernel or say M to compile it as module (bfusb).
104
105config BT_HCIDTL1
106 tristate "HCI DTL1 (PC Card) driver"
107 depends on PCMCIA
108 help
109 Bluetooth HCI DTL1 (PC Card) driver.
110 This driver provides support for Bluetooth PCMCIA devices with
111 Nokia DTL1 interface:
112 Nokia Bluetooth Card
113 Socket Bluetooth CF Card
114
115 Say Y here to compile support for HCI DTL1 devices into the
116 kernel or say M to compile it as module (dtl1_cs).
117
118config BT_HCIBT3C
119 tristate "HCI BT3C (PC Card) driver"
120 depends on PCMCIA
121 select FW_LOADER
122 help
123 Bluetooth HCI BT3C (PC Card) driver.
124 This driver provides support for Bluetooth PCMCIA devices with
125 3Com BT3C interface:
126 3Com Bluetooth Card (3CRWB6096)
127 HP Bluetooth Card
128
129 Say Y here to compile support for HCI BT3C devices into the
130 kernel or say M to compile it as module (bt3c_cs).
131
132config BT_HCIBLUECARD
133 tristate "HCI BlueCard (PC Card) driver"
134 depends on PCMCIA
135 help
136 Bluetooth HCI BlueCard (PC Card) driver.
137 This driver provides support for Bluetooth PCMCIA devices with
138 Anycom BlueCard interface:
139 Anycom Bluetooth PC Card
140 Anycom Bluetooth CF Card
141
142 Say Y here to compile support for HCI BlueCard devices into the
143 kernel or say M to compile it as module (bluecard_cs).
144
145config BT_HCIBTUART
146 tristate "HCI UART (PC Card) device driver"
147 depends on PCMCIA
148 help
149 Bluetooth HCI UART (PC Card) driver.
150 This driver provides support for Bluetooth PCMCIA devices with
151 an UART interface:
152 Xircom CreditCard Bluetooth Adapter
153 Xircom RealPort2 Bluetooth Adapter
154 Sphinx PICO Card
155 H-Soft blue+Card
156 Cyber-blue Compact Flash Card
157
158 Say Y here to compile support for HCI UART devices into the
159 kernel or say M to compile it as module (btuart_cs).
160
161config BT_HCIVHCI
162 tristate "HCI VHCI (Virtual HCI device) driver"
163 help
164 Bluetooth Virtual HCI device driver.
165 This driver is required if you want to use HCI Emulation software.
166
167 Say Y here to compile support for virtual HCI devices into the
168 kernel or say M to compile it as module (hci_vhci).
169
170endmenu
171