blob: 9f68e11c167149454dec683fd6d3bf49a12db976 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2menu "Bluetooth device drivers"
3 depends on BT
4
Marcel Holtmann4fba30f2015-04-05 22:52:10 -07005config BT_BCM
6 tristate
7
Marcel Holtmann5e23b922007-10-20 14:12:34 +02008config BT_HCIBTUSB
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02009 tristate "HCI USB driver"
10 depends on USB
Marcel Holtmann1df1f592015-04-05 22:52:11 -070011 select BT_BCM
Marcel Holtmann5e23b922007-10-20 14:12:34 +020012 help
13 Bluetooth HCI USB driver.
14 This driver is required if you want to use Bluetooth devices with
15 USB interface.
16
Marcel Holtmann5e23b922007-10-20 14:12:34 +020017 Say Y here to compile support for Bluetooth USB devices into the
18 kernel or say M to compile it as module (btusb).
19
Marcel Holtmannddbaf132007-10-20 14:02:04 +020020config BT_HCIBTSDIO
21 tristate "HCI SDIO driver"
22 depends on MMC
23 help
24 Bluetooth HCI SDIO driver.
25 This driver is required if you want to use Bluetooth device with
26 SDIO interface.
27
28 Say Y here to compile support for Bluetooth SDIO devices into the
29 kernel or say M to compile it as module (btsdio).
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031config BT_HCIUART
32 tristate "HCI UART driver"
Joe Millenbach4f73bc42013-01-17 22:44:22 -080033 depends on TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 help
35 Bluetooth HCI UART driver.
36 This driver is required if you want to use Bluetooth devices with
Stephan Gabert8ba8b4c2014-06-16 18:52:25 +020037 serial port interface. You will also need this driver if you have
38 UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 adapter and BrainBoxes Bluetooth PC Card.
40
41 Say Y here to compile support for Bluetooth UART devices into the
42 kernel or say M to compile it as module (hci_uart).
43
44config BT_HCIUART_H4
45 bool "UART (H4) protocol support"
46 depends on BT_HCIUART
47 help
Stephan Gabert8ba8b4c2014-06-16 18:52:25 +020048 UART (H4) is serial protocol for communication between Bluetooth
49 device and host. This protocol is required for most Bluetooth devices
50 with UART interface, including PCMCIA and CF cards.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 Say Y here to compile support for HCI UART (H4) protocol.
53
54config BT_HCIUART_BCSP
55 bool "BCSP protocol support"
56 depends on BT_HCIUART
Randy Dunlapd3a8eab02008-07-15 00:51:45 -070057 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 help
Stephan Gabert8ba8b4c2014-06-16 18:52:25 +020059 BCSP (BlueCore Serial Protocol) is serial protocol for communication
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 between Bluetooth device and host. This protocol is required for non
61 USB Bluetooth devices based on CSR BlueCore chip, including PCMCIA and
62 CF cards.
63
64 Say Y here to compile support for HCI BCSP protocol.
65
Suraj Sumangalab3190df2010-07-19 12:34:07 +053066config BT_HCIUART_ATH3K
67 bool "Atheros AR300x serial support"
68 depends on BT_HCIUART
Marcel Holtmannd90aa682015-04-04 21:59:26 -070069 select BT_HCIUART_H4
Suraj Sumangalab3190df2010-07-19 12:34:07 +053070 help
71 HCIATH3K (HCI Atheros AR300x) is a serial protocol for
72 communication between host and Atheros AR300x Bluetooth devices.
73 This protocol enables AR300x chips to be enabled with
74 power management support.
75 Enable this if you have Atheros AR300x serial Bluetooth device.
76
77 Say Y here to compile support for HCI UART ATH3K protocol.
78
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +020079config BT_HCIUART_LL
80 bool "HCILL protocol support"
81 depends on BT_HCIUART
82 help
83 HCILL (HCI Low Level) is a serial protocol for communication
84 between Bluetooth device and host. This protocol is required for
85 serial Bluetooth devices that are based on Texas Instruments'
86 BRF chips.
87
88 Say Y here to compile support for HCILL protocol.
89
Johan Hedberg7dec65c2012-07-16 16:12:02 +030090config BT_HCIUART_3WIRE
91 bool "Three-wire UART (H5) protocol support"
92 depends on BT_HCIUART
93 help
94 The HCI Three-wire UART Transport Layer makes it possible to
95 user the Bluetooth HCI over a serial port interface. The HCI
96 Three-wire UART Transport Layer assumes that the UART
97 communication may have bit errors, overrun errors or burst
98 errors and thereby making CTS/RTS lines unnecessary.
99
100 Say Y here to compile support for Three-wire UART protocol.
101
Marcel Holtmann16e38872015-04-04 16:13:02 -0700102config BT_HCIUART_INTEL
103 bool "Intel protocol support"
104 depends on BT_HCIUART
105 help
106 The Intel protocol support enables Bluetooth HCI over serial
107 port interface for Intel Bluetooth controllers.
108
109 Say Y here to compile support for Intel protocol.
110
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -0700111config BT_HCIUART_BCM
112 bool "Broadcom protocol support"
113 depends on BT_HCIUART
Marcel Holtmann3e0ac122015-04-05 22:52:12 -0700114 select BT_BCM
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -0700115 help
116 The Broadcom protocol support enables Bluetooth HCI over serial
117 port interface for Broadcom Bluetooth controllers.
118
119 Say Y here to compile support for Broadcom protocol.
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121config BT_HCIBCM203X
122 tristate "HCI BCM203x USB driver"
123 depends on USB
124 select FW_LOADER
125 help
126 Bluetooth HCI BCM203x USB driver.
127 This driver provides the firmware loading mechanism for the Broadcom
128 Blutonium based devices.
129
130 Say Y here to compile support for HCI BCM203x devices into the
131 kernel or say M to compile it as module (bcm203x).
132
133config BT_HCIBPA10X
134 tristate "HCI BPA10x USB driver"
135 depends on USB
136 help
137 Bluetooth HCI BPA10x USB driver.
138 This driver provides support for the Digianswer BPA 100/105 Bluetooth
139 sniffer devices.
140
141 Say Y here to compile support for HCI BPA10x devices into the
142 kernel or say M to compile it as module (bpa10x).
143
144config BT_HCIBFUSB
145 tristate "HCI BlueFRITZ! USB driver"
146 depends on USB
147 select FW_LOADER
148 help
149 Bluetooth HCI BlueFRITZ! USB driver.
150 This driver provides support for Bluetooth USB devices with AVM
151 interface:
152 AVM BlueFRITZ! USB
153
154 Say Y here to compile support for HCI BFUSB devices into the
155 kernel or say M to compile it as module (bfusb).
156
157config BT_HCIDTL1
158 tristate "HCI DTL1 (PC Card) driver"
159 depends on PCMCIA
160 help
161 Bluetooth HCI DTL1 (PC Card) driver.
162 This driver provides support for Bluetooth PCMCIA devices with
163 Nokia DTL1 interface:
164 Nokia Bluetooth Card
165 Socket Bluetooth CF Card
166
167 Say Y here to compile support for HCI DTL1 devices into the
168 kernel or say M to compile it as module (dtl1_cs).
169
170config BT_HCIBT3C
171 tristate "HCI BT3C (PC Card) driver"
172 depends on PCMCIA
173 select FW_LOADER
174 help
175 Bluetooth HCI BT3C (PC Card) driver.
176 This driver provides support for Bluetooth PCMCIA devices with
177 3Com BT3C interface:
178 3Com Bluetooth Card (3CRWB6096)
179 HP Bluetooth Card
180
181 Say Y here to compile support for HCI BT3C devices into the
182 kernel or say M to compile it as module (bt3c_cs).
183
184config BT_HCIBLUECARD
185 tristate "HCI BlueCard (PC Card) driver"
186 depends on PCMCIA
187 help
188 Bluetooth HCI BlueCard (PC Card) driver.
189 This driver provides support for Bluetooth PCMCIA devices with
190 Anycom BlueCard interface:
191 Anycom Bluetooth PC Card
192 Anycom Bluetooth CF Card
193
194 Say Y here to compile support for HCI BlueCard devices into the
195 kernel or say M to compile it as module (bluecard_cs).
196
197config BT_HCIBTUART
198 tristate "HCI UART (PC Card) device driver"
199 depends on PCMCIA
200 help
201 Bluetooth HCI UART (PC Card) driver.
202 This driver provides support for Bluetooth PCMCIA devices with
203 an UART interface:
204 Xircom CreditCard Bluetooth Adapter
205 Xircom RealPort2 Bluetooth Adapter
206 Sphinx PICO Card
207 H-Soft blue+Card
208 Cyber-blue Compact Flash Card
209
210 Say Y here to compile support for HCI UART devices into the
211 kernel or say M to compile it as module (btuart_cs).
212
213config BT_HCIVHCI
214 tristate "HCI VHCI (Virtual HCI device) driver"
215 help
216 Bluetooth Virtual HCI device driver.
217 This driver is required if you want to use HCI Emulation software.
218
219 Say Y here to compile support for virtual HCI devices into the
220 kernel or say M to compile it as module (hci_vhci).
221
Bing Zhao132ff4e2009-06-02 14:29:35 -0700222config BT_MRVL
223 tristate "Marvell Bluetooth driver support"
Bing Zhao132ff4e2009-06-02 14:29:35 -0700224 help
225 The core driver to support Marvell Bluetooth devices.
226
227 This driver is required if you want to support
Xinming Hu3907d552014-09-30 06:45:33 -0400228 Marvell Bluetooth devices, such as 8688/8787/8797/8887/8897.
Bing Zhao132ff4e2009-06-02 14:29:35 -0700229
230 Say Y here to compile Marvell Bluetooth driver
231 into the kernel or say M to compile it as module.
232
Bing Zhao789221e2009-06-02 14:29:36 -0700233config BT_MRVL_SDIO
234 tristate "Marvell BT-over-SDIO driver"
235 depends on BT_MRVL && MMC
Marcel Holtmanne7a25f92009-06-09 13:42:54 +0200236 select FW_LOADER
Xinming Hudc759612014-11-24 02:40:53 -0800237 select WANT_DEV_COREDUMP
Bing Zhao789221e2009-06-02 14:29:36 -0700238 help
239 The driver for Marvell Bluetooth chipsets with SDIO interface.
240
241 This driver is required if you want to use Marvell Bluetooth
Xinming Hu3907d552014-09-30 06:45:33 -0400242 devices with SDIO interface. Currently SD8688/SD8787/SD8797/SD8887/SD8897
Bing Zhao2ac654f2011-11-16 20:40:42 -0800243 chipsets are supported.
Bing Zhao789221e2009-06-02 14:29:36 -0700244
245 Say Y here to compile support for Marvell BT-over-SDIO driver
246 into the kernel or say M to compile it as module.
247
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530248config BT_ATH3K
249 tristate "Atheros firmware download driver"
250 depends on BT_HCIBTUSB
251 select FW_LOADER
252 help
253 Bluetooth firmware download driver.
254 This driver loads the firmware into the Atheros Bluetooth
255 chipset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530257 Say Y here to compile support for "Atheros firmware download driver"
258 into the kernel or say M to compile it as module (ath3k).
259
Pavan Savoy363907a2011-02-20 22:41:16 -0600260config BT_WILINK
261 tristate "Texas Instruments WiLink7 driver"
262 depends on TI_ST
263 help
264 This enables the Bluetooth driver for Texas Instrument's BT/FM/GPS
265 combo devices. This makes use of shared transport line discipline
266 core driver to communicate with the BT core of the combo chip.
267
268 Say Y here to compile support for Texas Instrument's WiLink7 driver
Pavel Machek22e8ee12014-01-17 14:34:30 +0100269 into the kernel or say M to compile it as module (btwilink).
270
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530271endmenu