blob: 4e7594f3d072efe28c75f42888672292d5b7d845 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3menu "Bluetooth device drivers"
4 depends on BT
5
Marcel Holtmann48f0ed12015-04-06 00:52:11 -07006config BT_INTEL
7 tristate
Loic Poulaind06f1072015-10-01 18:16:21 +02008 select REGMAP
Marcel Holtmann48f0ed12015-04-06 00:52:11 -07009
Marcel Holtmann4fba30f2015-04-05 22:52:10 -070010config BT_BCM
11 tristate
Marcel Holtmann1c8ba6d2015-04-05 22:52:13 -070012 select FW_LOADER
Marcel Holtmann4fba30f2015-04-05 22:52:10 -070013
Carlo Caionedb33c772015-05-14 10:49:09 +020014config BT_RTL
15 tristate
16 select FW_LOADER
17
Ben Young Tae Kim83e81962015-08-10 14:24:12 -070018config BT_QCA
19 tristate
20 select FW_LOADER
21
Marcel Holtmann5e23b922007-10-20 14:12:34 +020022config BT_HCIBTUSB
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +020023 tristate "HCI USB driver"
24 depends on USB
Marcel Holtmann4185a0f2015-04-06 00:52:12 -070025 select BT_INTEL
Marcel Holtmann5e23b922007-10-20 14:12:34 +020026 help
27 Bluetooth HCI USB driver.
28 This driver is required if you want to use Bluetooth devices with
29 USB interface.
30
Marcel Holtmann5e23b922007-10-20 14:12:34 +020031 Say Y here to compile support for Bluetooth USB devices into the
32 kernel or say M to compile it as module (btusb).
33
Hans de Goedeeff2d682017-11-13 14:44:16 +010034config BT_HCIBTUSB_AUTOSUSPEND
Hans de Goedee7232d12017-11-14 10:15:23 +010035 bool "Enable USB autosuspend for Bluetooth USB devices by default"
Hans de Goedeeff2d682017-11-13 14:44:16 +010036 depends on BT_HCIBTUSB
37 help
38 Say Y here to enable USB autosuspend for Bluetooth USB devices by
39 default.
40
41 This can be overridden by passing btusb.enable_autosuspend=[y|n]
42 on the kernel commandline.
43
Marcel Holtmannc2bfb102015-04-05 22:52:14 -070044config BT_HCIBTUSB_BCM
45 bool "Broadcom protocol support"
46 depends on BT_HCIBTUSB
47 select BT_BCM
48 default y
49 help
50 The Broadcom protocol support enables firmware and patchram
51 download support for Broadcom Bluetooth controllers.
52
53 Say Y here to compile support for Broadcom protocol.
54
Carlo Caionedb33c772015-05-14 10:49:09 +020055config BT_HCIBTUSB_RTL
56 bool "Realtek protocol support"
57 depends on BT_HCIBTUSB
58 select BT_RTL
59 default y
60 help
61 The Realtek protocol support enables firmware and configuration
62 download support for Realtek Bluetooth controllers.
63
64 Say Y here to compile support for Realtek protocol.
65
Marcel Holtmannddbaf132007-10-20 14:02:04 +020066config BT_HCIBTSDIO
67 tristate "HCI SDIO driver"
68 depends on MMC
69 help
70 Bluetooth HCI SDIO driver.
71 This driver is required if you want to use Bluetooth device with
72 SDIO interface.
73
74 Say Y here to compile support for Bluetooth SDIO devices into the
75 kernel or say M to compile it as module (btsdio).
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077config BT_HCIUART
78 tristate "HCI UART driver"
Arnd Bergmann05e89fb2017-10-11 15:47:54 +020079 depends on SERIAL_DEV_BUS || !SERIAL_DEV_BUS
Arnd Bergmannb71b25f2018-01-02 11:50:30 +010080 depends on NVMEM || !NVMEM
Joe Millenbach4f73bc42013-01-17 22:44:22 -080081 depends on TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 help
83 Bluetooth HCI UART driver.
84 This driver is required if you want to use Bluetooth devices with
Stephan Gabert8ba8b4c2014-06-16 18:52:25 +020085 serial port interface. You will also need this driver if you have
86 UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 adapter and BrainBoxes Bluetooth PC Card.
88
89 Say Y here to compile support for Bluetooth UART devices into the
90 kernel or say M to compile it as module (hci_uart).
91
Arnd Bergmann1fb78fb2017-04-19 19:50:18 +020092config BT_HCIUART_SERDEV
93 bool
94 depends on SERIAL_DEV_BUS && BT_HCIUART
Arnd Bergmann1fb78fb2017-04-19 19:50:18 +020095 default y
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097config BT_HCIUART_H4
98 bool "UART (H4) protocol support"
99 depends on BT_HCIUART
100 help
Stephan Gabert8ba8b4c2014-06-16 18:52:25 +0200101 UART (H4) is serial protocol for communication between Bluetooth
102 device and host. This protocol is required for most Bluetooth devices
103 with UART interface, including PCMCIA and CF cards.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 Say Y here to compile support for HCI UART (H4) protocol.
106
Sebastian Reichel7bb31862017-04-13 02:26:59 +0200107config BT_HCIUART_NOKIA
108 tristate "UART Nokia H4+ protocol support"
109 depends on BT_HCIUART
Arnd Bergmann1fb78fb2017-04-19 19:50:18 +0200110 depends on BT_HCIUART_SERDEV
Lukas Wunnera3a446c2018-01-02 20:08:40 +0100111 depends on GPIOLIB
Sebastian Reichel7bb31862017-04-13 02:26:59 +0200112 depends on PM
Tobias Regneryc42c88e2017-05-08 11:39:11 +0200113 select BT_HCIUART_H4
Marcel Holtmann6a485422017-07-22 11:57:47 +0200114 select BT_BCM
Sebastian Reichel7bb31862017-04-13 02:26:59 +0200115 help
116 Nokia H4+ is serial protocol for communication between Bluetooth
117 device and host. This protocol is required for Bluetooth devices
118 with UART interface in Nokia devices.
119
120 Say Y here to compile support for Nokia's H4+ protocol.
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122config BT_HCIUART_BCSP
123 bool "BCSP protocol support"
124 depends on BT_HCIUART
Randy Dunlapd3a8eab02008-07-15 00:51:45 -0700125 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 help
Stephan Gabert8ba8b4c2014-06-16 18:52:25 +0200127 BCSP (BlueCore Serial Protocol) is serial protocol for communication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 between Bluetooth device and host. This protocol is required for non
129 USB Bluetooth devices based on CSR BlueCore chip, including PCMCIA and
130 CF cards.
131
132 Say Y here to compile support for HCI BCSP protocol.
133
Suraj Sumangalab3190df2010-07-19 12:34:07 +0530134config BT_HCIUART_ATH3K
135 bool "Atheros AR300x serial support"
136 depends on BT_HCIUART
Marcel Holtmannd90aa682015-04-04 21:59:26 -0700137 select BT_HCIUART_H4
Suraj Sumangalab3190df2010-07-19 12:34:07 +0530138 help
139 HCIATH3K (HCI Atheros AR300x) is a serial protocol for
140 communication between host and Atheros AR300x Bluetooth devices.
141 This protocol enables AR300x chips to be enabled with
142 power management support.
143 Enable this if you have Atheros AR300x serial Bluetooth device.
144
145 Say Y here to compile support for HCI UART ATH3K protocol.
146
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200147config BT_HCIUART_LL
148 bool "HCILL protocol support"
Tobias Regnery76c49692017-05-02 15:15:01 +0200149 depends on BT_HCIUART_SERDEV
Marcel Holtmannf9d7c8f2018-03-24 10:19:52 +0100150 select BT_HCIUART_H4
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200151 help
152 HCILL (HCI Low Level) is a serial protocol for communication
153 between Bluetooth device and host. This protocol is required for
154 serial Bluetooth devices that are based on Texas Instruments'
155 BRF chips.
156
157 Say Y here to compile support for HCILL protocol.
158
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300159config BT_HCIUART_3WIRE
160 bool "Three-wire UART (H5) protocol support"
161 depends on BT_HCIUART
162 help
163 The HCI Three-wire UART Transport Layer makes it possible to
164 user the Bluetooth HCI over a serial port interface. The HCI
165 Three-wire UART Transport Layer assumes that the UART
166 communication may have bit errors, overrun errors or burst
167 errors and thereby making CTS/RTS lines unnecessary.
168
169 Say Y here to compile support for Three-wire UART protocol.
170
Marcel Holtmann16e38872015-04-04 16:13:02 -0700171config BT_HCIUART_INTEL
172 bool "Intel protocol support"
173 depends on BT_HCIUART
Lukas Wunnera3a446c2018-01-02 20:08:40 +0100174 depends on GPIOLIB
Loic Poulainca93cee2015-07-01 12:20:26 +0200175 select BT_HCIUART_H4
Marcel Holtmannbca03c92015-04-06 00:52:14 -0700176 select BT_INTEL
Marcel Holtmann16e38872015-04-04 16:13:02 -0700177 help
178 The Intel protocol support enables Bluetooth HCI over serial
179 port interface for Intel Bluetooth controllers.
180
181 Say Y here to compile support for Intel protocol.
182
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -0700183config BT_HCIUART_BCM
184 bool "Broadcom protocol support"
185 depends on BT_HCIUART
Loic Poulain33cd1492017-08-17 19:59:51 +0200186 depends on BT_HCIUART_SERDEV
Johan Hovold42946252017-10-10 10:01:52 +0200187 depends on (!ACPI || SERIAL_DEV_CTRL_TTYPORT)
Lukas Wunnera3a446c2018-01-02 20:08:40 +0100188 depends on GPIOLIB
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700189 select BT_HCIUART_H4
Marcel Holtmann3e0ac122015-04-05 22:52:12 -0700190 select BT_BCM
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -0700191 help
192 The Broadcom protocol support enables Bluetooth HCI over serial
193 port interface for Broadcom Bluetooth controllers.
194
195 Say Y here to compile support for Broadcom protocol.
196
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700197config BT_HCIUART_QCA
198 bool "Qualcomm Atheros protocol support"
199 depends on BT_HCIUART
200 select BT_HCIUART_H4
201 select BT_QCA
202 help
203 The Qualcomm Atheros protocol supports HCI In-Band Sleep feature
204 over serial port interface(H4) between controller and host.
205 This protocol is required for UART clock control for QCA Bluetooth
206 devices.
207
208 Say Y here to compile support for QCA protocol.
209
Loic Poulain395174b2016-02-22 10:48:03 +0100210config BT_HCIUART_AG6XX
211 bool "Intel AG6XX protocol support"
212 depends on BT_HCIUART
213 select BT_HCIUART_H4
214 select BT_INTEL
215 help
216 The Intel/AG6XX protocol support enables Bluetooth HCI over serial
217 port interface for Intel ibt 2.1 Bluetooth controllers.
218
219 Say Y here to compile support for Intel AG6XX protocol.
220
Loic Poulain162f8122016-09-19 16:29:27 +0200221config BT_HCIUART_MRVL
222 bool "Marvell protocol support"
223 depends on BT_HCIUART
224 select BT_HCIUART_H4
225 help
226 Marvell is serial protocol for communication between Bluetooth
227 device and host. This protocol is required for most Marvell Bluetooth
228 devices with UART interface.
229
230 Say Y here to compile support for HCI MRVL protocol.
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232config BT_HCIBCM203X
233 tristate "HCI BCM203x USB driver"
234 depends on USB
235 select FW_LOADER
236 help
237 Bluetooth HCI BCM203x USB driver.
238 This driver provides the firmware loading mechanism for the Broadcom
239 Blutonium based devices.
240
241 Say Y here to compile support for HCI BCM203x devices into the
242 kernel or say M to compile it as module (bcm203x).
243
244config BT_HCIBPA10X
245 tristate "HCI BPA10x USB driver"
Marcel Holtmann07eb96a2018-03-24 10:19:53 +0100246 depends on USB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 help
248 Bluetooth HCI BPA10x USB driver.
249 This driver provides support for the Digianswer BPA 100/105 Bluetooth
250 sniffer devices.
251
252 Say Y here to compile support for HCI BPA10x devices into the
253 kernel or say M to compile it as module (bpa10x).
254
255config BT_HCIBFUSB
256 tristate "HCI BlueFRITZ! USB driver"
257 depends on USB
258 select FW_LOADER
259 help
260 Bluetooth HCI BlueFRITZ! USB driver.
261 This driver provides support for Bluetooth USB devices with AVM
262 interface:
263 AVM BlueFRITZ! USB
264
265 Say Y here to compile support for HCI BFUSB devices into the
266 kernel or say M to compile it as module (bfusb).
267
268config BT_HCIDTL1
269 tristate "HCI DTL1 (PC Card) driver"
270 depends on PCMCIA
271 help
272 Bluetooth HCI DTL1 (PC Card) driver.
273 This driver provides support for Bluetooth PCMCIA devices with
274 Nokia DTL1 interface:
275 Nokia Bluetooth Card
276 Socket Bluetooth CF Card
277
278 Say Y here to compile support for HCI DTL1 devices into the
279 kernel or say M to compile it as module (dtl1_cs).
280
281config BT_HCIBT3C
282 tristate "HCI BT3C (PC Card) driver"
283 depends on PCMCIA
284 select FW_LOADER
285 help
286 Bluetooth HCI BT3C (PC Card) driver.
287 This driver provides support for Bluetooth PCMCIA devices with
288 3Com BT3C interface:
289 3Com Bluetooth Card (3CRWB6096)
290 HP Bluetooth Card
291
292 Say Y here to compile support for HCI BT3C devices into the
293 kernel or say M to compile it as module (bt3c_cs).
294
295config BT_HCIBLUECARD
296 tristate "HCI BlueCard (PC Card) driver"
297 depends on PCMCIA
298 help
299 Bluetooth HCI BlueCard (PC Card) driver.
300 This driver provides support for Bluetooth PCMCIA devices with
301 Anycom BlueCard interface:
302 Anycom Bluetooth PC Card
303 Anycom Bluetooth CF Card
304
305 Say Y here to compile support for HCI BlueCard devices into the
306 kernel or say M to compile it as module (bluecard_cs).
307
308config BT_HCIBTUART
309 tristate "HCI UART (PC Card) device driver"
310 depends on PCMCIA
311 help
312 Bluetooth HCI UART (PC Card) driver.
313 This driver provides support for Bluetooth PCMCIA devices with
314 an UART interface:
315 Xircom CreditCard Bluetooth Adapter
316 Xircom RealPort2 Bluetooth Adapter
317 Sphinx PICO Card
318 H-Soft blue+Card
319 Cyber-blue Compact Flash Card
320
321 Say Y here to compile support for HCI UART devices into the
322 kernel or say M to compile it as module (btuart_cs).
323
324config BT_HCIVHCI
325 tristate "HCI VHCI (Virtual HCI device) driver"
326 help
327 Bluetooth Virtual HCI device driver.
328 This driver is required if you want to use HCI Emulation software.
329
330 Say Y here to compile support for virtual HCI devices into the
331 kernel or say M to compile it as module (hci_vhci).
332
Bing Zhao132ff4e2009-06-02 14:29:35 -0700333config BT_MRVL
334 tristate "Marvell Bluetooth driver support"
Bing Zhao132ff4e2009-06-02 14:29:35 -0700335 help
336 The core driver to support Marvell Bluetooth devices.
337
338 This driver is required if you want to support
Amitkumar Karwarf0ef6742015-09-21 03:06:42 -0700339 Marvell Bluetooth devices, such as 8688/8787/8797/8887/8897/8997.
Bing Zhao132ff4e2009-06-02 14:29:35 -0700340
341 Say Y here to compile Marvell Bluetooth driver
342 into the kernel or say M to compile it as module.
343
Bing Zhao789221e2009-06-02 14:29:36 -0700344config BT_MRVL_SDIO
345 tristate "Marvell BT-over-SDIO driver"
346 depends on BT_MRVL && MMC
Marcel Holtmanne7a25f92009-06-09 13:42:54 +0200347 select FW_LOADER
Xinming Hudc759612014-11-24 02:40:53 -0800348 select WANT_DEV_COREDUMP
Bing Zhao789221e2009-06-02 14:29:36 -0700349 help
350 The driver for Marvell Bluetooth chipsets with SDIO interface.
351
352 This driver is required if you want to use Marvell Bluetooth
Amitkumar Karwarf0ef6742015-09-21 03:06:42 -0700353 devices with SDIO interface. Currently SD8688/SD8787/SD8797/SD8887/SD8897/SD8997
Bing Zhao2ac654f2011-11-16 20:40:42 -0800354 chipsets are supported.
Bing Zhao789221e2009-06-02 14:29:36 -0700355
356 Say Y here to compile support for Marvell BT-over-SDIO driver
357 into the kernel or say M to compile it as module.
358
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530359config BT_ATH3K
360 tristate "Atheros firmware download driver"
361 depends on BT_HCIBTUSB
362 select FW_LOADER
363 help
364 Bluetooth firmware download driver.
365 This driver loads the firmware into the Atheros Bluetooth
366 chipset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530368 Say Y here to compile support for "Atheros firmware download driver"
369 into the kernel or say M to compile it as module (ath3k).
370
Pavan Savoy363907a2011-02-20 22:41:16 -0600371config BT_WILINK
372 tristate "Texas Instruments WiLink7 driver"
373 depends on TI_ST
374 help
375 This enables the Bluetooth driver for Texas Instrument's BT/FM/GPS
376 combo devices. This makes use of shared transport line discipline
377 core driver to communicate with the BT core of the combo chip.
378
379 Say Y here to compile support for Texas Instrument's WiLink7 driver
Pavel Machek22e8ee12014-01-17 14:34:30 +0100380 into the kernel or say M to compile it as module (btwilink).
381
Bjorn Andersson1511cc72016-08-12 17:01:28 -0700382config BT_QCOMSMD
383 tristate "Qualcomm SMD based HCI support"
Bjorn Andersson5052de82017-03-27 22:26:33 -0700384 depends on RPMSG || (COMPILE_TEST && RPMSG=n)
Arnd Bergmann6e9e6cc2017-03-20 15:31:10 -0700385 depends on QCOM_WCNSS_CTRL || (COMPILE_TEST && QCOM_WCNSS_CTRL=n)
Bjorn Andersson1511cc72016-08-12 17:01:28 -0700386 select BT_QCA
387 help
388 Qualcomm SMD based HCI driver.
389 This driver is used to bridge HCI data onto the shared memory
390 channels to the WCNSS core.
391
392 Say Y here to compile support for HCI over Qualcomm SMD into the
393 kernel or say M to compile as a module.
394
Prameela Rani Garnepudi38aa4da2018-02-27 19:56:15 +0530395config BT_HCIRSI
Arnd Bergmann255dd5b2018-03-15 22:18:24 +0100396 tristate
Prameela Rani Garnepudi38aa4da2018-02-27 19:56:15 +0530397 help
398 Redpine BT driver.
399 This driver handles BT traffic from upper layers and pass
400 to the RSI_91x coex module for further scheduling to device
401
402 Say Y here to compile support for HCI over Redpine into the
403 kernel or say M to compile as a module.
404
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530405endmenu