Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | |
| 3 | menu "Bluetooth device drivers" |
| 4 | depends on BT |
| 5 | |
Marcel Holtmann | 48f0ed1 | 2015-04-06 00:52:11 -0700 | [diff] [blame] | 6 | config BT_INTEL |
| 7 | tristate |
Loic Poulain | d06f107 | 2015-10-01 18:16:21 +0200 | [diff] [blame] | 8 | select REGMAP |
Marcel Holtmann | 48f0ed1 | 2015-04-06 00:52:11 -0700 | [diff] [blame] | 9 | |
Marcel Holtmann | 4fba30f | 2015-04-05 22:52:10 -0700 | [diff] [blame] | 10 | config BT_BCM |
| 11 | tristate |
Marcel Holtmann | 1c8ba6d | 2015-04-05 22:52:13 -0700 | [diff] [blame] | 12 | select FW_LOADER |
Marcel Holtmann | 4fba30f | 2015-04-05 22:52:10 -0700 | [diff] [blame] | 13 | |
Carlo Caione | db33c77 | 2015-05-14 10:49:09 +0200 | [diff] [blame] | 14 | config BT_RTL |
| 15 | tristate |
| 16 | select FW_LOADER |
| 17 | |
Ben Young Tae Kim | 83e8196 | 2015-08-10 14:24:12 -0700 | [diff] [blame] | 18 | config BT_QCA |
| 19 | tristate |
| 20 | select FW_LOADER |
| 21 | |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 22 | config BT_HCIBTUSB |
Marcel Holtmann | 9bfa35f | 2008-08-18 13:23:52 +0200 | [diff] [blame] | 23 | tristate "HCI USB driver" |
| 24 | depends on USB |
Marcel Holtmann | 4185a0f | 2015-04-06 00:52:12 -0700 | [diff] [blame] | 25 | select BT_INTEL |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 26 | help |
| 27 | Bluetooth HCI USB driver. |
| 28 | This driver is required if you want to use Bluetooth devices with |
| 29 | USB interface. |
| 30 | |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 31 | 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 Goede | eff2d68 | 2017-11-13 14:44:16 +0100 | [diff] [blame] | 34 | config BT_HCIBTUSB_AUTOSUSPEND |
Hans de Goede | e7232d1 | 2017-11-14 10:15:23 +0100 | [diff] [blame] | 35 | bool "Enable USB autosuspend for Bluetooth USB devices by default" |
Hans de Goede | eff2d68 | 2017-11-13 14:44:16 +0100 | [diff] [blame] | 36 | 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 Holtmann | c2bfb10 | 2015-04-05 22:52:14 -0700 | [diff] [blame] | 44 | config 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 Caione | db33c77 | 2015-05-14 10:49:09 +0200 | [diff] [blame] | 55 | config 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 Holtmann | ddbaf13 | 2007-10-20 14:02:04 +0200 | [diff] [blame] | 66 | config 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | config BT_HCIUART |
| 78 | tristate "HCI UART driver" |
Arnd Bergmann | 05e89fb | 2017-10-11 15:47:54 +0200 | [diff] [blame] | 79 | depends on SERIAL_DEV_BUS || !SERIAL_DEV_BUS |
Arnd Bergmann | b71b25f | 2018-01-02 11:50:30 +0100 | [diff] [blame] | 80 | depends on NVMEM || !NVMEM |
Joe Millenbach | 4f73bc4 | 2013-01-17 22:44:22 -0800 | [diff] [blame] | 81 | depends on TTY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | help |
| 83 | Bluetooth HCI UART driver. |
| 84 | This driver is required if you want to use Bluetooth devices with |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 85 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | 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 Bergmann | 1fb78fb | 2017-04-19 19:50:18 +0200 | [diff] [blame] | 92 | config BT_HCIUART_SERDEV |
| 93 | bool |
| 94 | depends on SERIAL_DEV_BUS && BT_HCIUART |
Arnd Bergmann | 1fb78fb | 2017-04-19 19:50:18 +0200 | [diff] [blame] | 95 | default y |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | config BT_HCIUART_H4 |
| 98 | bool "UART (H4) protocol support" |
| 99 | depends on BT_HCIUART |
| 100 | help |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 101 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
| 105 | Say Y here to compile support for HCI UART (H4) protocol. |
| 106 | |
Sebastian Reichel | 7bb3186 | 2017-04-13 02:26:59 +0200 | [diff] [blame] | 107 | config BT_HCIUART_NOKIA |
| 108 | tristate "UART Nokia H4+ protocol support" |
| 109 | depends on BT_HCIUART |
Arnd Bergmann | 1fb78fb | 2017-04-19 19:50:18 +0200 | [diff] [blame] | 110 | depends on BT_HCIUART_SERDEV |
Lukas Wunner | a3a446c | 2018-01-02 20:08:40 +0100 | [diff] [blame] | 111 | depends on GPIOLIB |
Sebastian Reichel | 7bb3186 | 2017-04-13 02:26:59 +0200 | [diff] [blame] | 112 | depends on PM |
Tobias Regnery | c42c88e | 2017-05-08 11:39:11 +0200 | [diff] [blame] | 113 | select BT_HCIUART_H4 |
Marcel Holtmann | 6a48542 | 2017-07-22 11:57:47 +0200 | [diff] [blame] | 114 | select BT_BCM |
Sebastian Reichel | 7bb3186 | 2017-04-13 02:26:59 +0200 | [diff] [blame] | 115 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | config BT_HCIUART_BCSP |
| 123 | bool "BCSP protocol support" |
| 124 | depends on BT_HCIUART |
Randy Dunlap | d3a8eab0 | 2008-07-15 00:51:45 -0700 | [diff] [blame] | 125 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | help |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 127 | BCSP (BlueCore Serial Protocol) is serial protocol for communication |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | 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 Sumangala | b3190df | 2010-07-19 12:34:07 +0530 | [diff] [blame] | 134 | config BT_HCIUART_ATH3K |
| 135 | bool "Atheros AR300x serial support" |
| 136 | depends on BT_HCIUART |
Marcel Holtmann | d90aa68 | 2015-04-04 21:59:26 -0700 | [diff] [blame] | 137 | select BT_HCIUART_H4 |
Suraj Sumangala | b3190df | 2010-07-19 12:34:07 +0530 | [diff] [blame] | 138 | 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-Cohen | 166d2f6 | 2007-10-20 13:42:36 +0200 | [diff] [blame] | 147 | config BT_HCIUART_LL |
| 148 | bool "HCILL protocol support" |
Tobias Regnery | 76c4969 | 2017-05-02 15:15:01 +0200 | [diff] [blame] | 149 | depends on BT_HCIUART_SERDEV |
Marcel Holtmann | f9d7c8f | 2018-03-24 10:19:52 +0100 | [diff] [blame] | 150 | select BT_HCIUART_H4 |
Ohad Ben-Cohen | 166d2f6 | 2007-10-20 13:42:36 +0200 | [diff] [blame] | 151 | 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 Hedberg | 7dec65c | 2012-07-16 16:12:02 +0300 | [diff] [blame] | 159 | config BT_HCIUART_3WIRE |
| 160 | bool "Three-wire UART (H5) protocol support" |
| 161 | depends on BT_HCIUART |
Johan Hedberg | 6c3711e | 2018-08-04 23:40:26 +0300 | [diff] [blame] | 162 | depends on BT_HCIUART_SERDEV |
Johan Hedberg | 7dec65c | 2012-07-16 16:12:02 +0300 | [diff] [blame] | 163 | help |
| 164 | The HCI Three-wire UART Transport Layer makes it possible to |
| 165 | user the Bluetooth HCI over a serial port interface. The HCI |
| 166 | Three-wire UART Transport Layer assumes that the UART |
| 167 | communication may have bit errors, overrun errors or burst |
| 168 | errors and thereby making CTS/RTS lines unnecessary. |
| 169 | |
| 170 | Say Y here to compile support for Three-wire UART protocol. |
| 171 | |
Marcel Holtmann | 16e3887 | 2015-04-04 16:13:02 -0700 | [diff] [blame] | 172 | config BT_HCIUART_INTEL |
| 173 | bool "Intel protocol support" |
| 174 | depends on BT_HCIUART |
Lukas Wunner | a3a446c | 2018-01-02 20:08:40 +0100 | [diff] [blame] | 175 | depends on GPIOLIB |
Loic Poulain | ca93cee | 2015-07-01 12:20:26 +0200 | [diff] [blame] | 176 | select BT_HCIUART_H4 |
Marcel Holtmann | bca03c9 | 2015-04-06 00:52:14 -0700 | [diff] [blame] | 177 | select BT_INTEL |
Marcel Holtmann | 16e3887 | 2015-04-04 16:13:02 -0700 | [diff] [blame] | 178 | help |
| 179 | The Intel protocol support enables Bluetooth HCI over serial |
| 180 | port interface for Intel Bluetooth controllers. |
| 181 | |
| 182 | Say Y here to compile support for Intel protocol. |
| 183 | |
Marcel Holtmann | e9a2dd2 | 2015-04-04 16:13:03 -0700 | [diff] [blame] | 184 | config BT_HCIUART_BCM |
| 185 | bool "Broadcom protocol support" |
| 186 | depends on BT_HCIUART |
Loic Poulain | 33cd149 | 2017-08-17 19:59:51 +0200 | [diff] [blame] | 187 | depends on BT_HCIUART_SERDEV |
Johan Hovold | 4294625 | 2017-10-10 10:01:52 +0200 | [diff] [blame] | 188 | depends on (!ACPI || SERIAL_DEV_CTRL_TTYPORT) |
Lukas Wunner | a3a446c | 2018-01-02 20:08:40 +0100 | [diff] [blame] | 189 | depends on GPIOLIB |
Marcel Holtmann | bdd8818 | 2015-04-05 22:52:18 -0700 | [diff] [blame] | 190 | select BT_HCIUART_H4 |
Marcel Holtmann | 3e0ac12 | 2015-04-05 22:52:12 -0700 | [diff] [blame] | 191 | select BT_BCM |
Marcel Holtmann | e9a2dd2 | 2015-04-04 16:13:03 -0700 | [diff] [blame] | 192 | help |
| 193 | The Broadcom protocol support enables Bluetooth HCI over serial |
| 194 | port interface for Broadcom Bluetooth controllers. |
| 195 | |
| 196 | Say Y here to compile support for Broadcom protocol. |
| 197 | |
Marcel Holtmann | b9763cd | 2018-08-09 10:33:07 +0200 | [diff] [blame] | 198 | config BT_HCIUART_RTL |
| 199 | bool "Realtek protocol support" |
| 200 | depends on BT_HCIUART |
| 201 | depends on BT_HCIUART_SERDEV |
| 202 | depends on GPIOLIB |
Hans de Goede | 51474ef | 2018-08-14 11:57:07 +0200 | [diff] [blame] | 203 | depends on ACPI |
Marcel Holtmann | b9763cd | 2018-08-09 10:33:07 +0200 | [diff] [blame] | 204 | select BT_HCIUART_3WIRE |
| 205 | select BT_RTL |
| 206 | help |
| 207 | The Realtek protocol support enables Bluetooth HCI over 3-Wire |
| 208 | serial port internface for Realtek Bluetooth controllers. |
| 209 | |
| 210 | Say Y here to compile support for Realtek protocol. |
| 211 | |
Ben Young Tae Kim | 0ff252c | 2015-08-10 14:24:17 -0700 | [diff] [blame] | 212 | config BT_HCIUART_QCA |
| 213 | bool "Qualcomm Atheros protocol support" |
| 214 | depends on BT_HCIUART |
Thierry Escande | 05ba533 | 2018-03-29 21:15:24 +0200 | [diff] [blame] | 215 | depends on BT_HCIUART_SERDEV |
Ben Young Tae Kim | 0ff252c | 2015-08-10 14:24:17 -0700 | [diff] [blame] | 216 | select BT_HCIUART_H4 |
| 217 | select BT_QCA |
| 218 | help |
| 219 | The Qualcomm Atheros protocol supports HCI In-Band Sleep feature |
| 220 | over serial port interface(H4) between controller and host. |
| 221 | This protocol is required for UART clock control for QCA Bluetooth |
| 222 | devices. |
| 223 | |
| 224 | Say Y here to compile support for QCA protocol. |
| 225 | |
Loic Poulain | 395174b | 2016-02-22 10:48:03 +0100 | [diff] [blame] | 226 | config BT_HCIUART_AG6XX |
| 227 | bool "Intel AG6XX protocol support" |
| 228 | depends on BT_HCIUART |
| 229 | select BT_HCIUART_H4 |
| 230 | select BT_INTEL |
| 231 | help |
| 232 | The Intel/AG6XX protocol support enables Bluetooth HCI over serial |
| 233 | port interface for Intel ibt 2.1 Bluetooth controllers. |
| 234 | |
| 235 | Say Y here to compile support for Intel AG6XX protocol. |
| 236 | |
Loic Poulain | 162f812 | 2016-09-19 16:29:27 +0200 | [diff] [blame] | 237 | config BT_HCIUART_MRVL |
| 238 | bool "Marvell protocol support" |
| 239 | depends on BT_HCIUART |
| 240 | select BT_HCIUART_H4 |
| 241 | help |
| 242 | Marvell is serial protocol for communication between Bluetooth |
| 243 | device and host. This protocol is required for most Marvell Bluetooth |
| 244 | devices with UART interface. |
| 245 | |
| 246 | Say Y here to compile support for HCI MRVL protocol. |
| 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | config BT_HCIBCM203X |
| 249 | tristate "HCI BCM203x USB driver" |
| 250 | depends on USB |
| 251 | select FW_LOADER |
| 252 | help |
| 253 | Bluetooth HCI BCM203x USB driver. |
| 254 | This driver provides the firmware loading mechanism for the Broadcom |
| 255 | Blutonium based devices. |
| 256 | |
| 257 | Say Y here to compile support for HCI BCM203x devices into the |
| 258 | kernel or say M to compile it as module (bcm203x). |
| 259 | |
| 260 | config BT_HCIBPA10X |
| 261 | tristate "HCI BPA10x USB driver" |
Marcel Holtmann | 07eb96a | 2018-03-24 10:19:53 +0100 | [diff] [blame] | 262 | depends on USB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | help |
| 264 | Bluetooth HCI BPA10x USB driver. |
| 265 | This driver provides support for the Digianswer BPA 100/105 Bluetooth |
| 266 | sniffer devices. |
| 267 | |
| 268 | Say Y here to compile support for HCI BPA10x devices into the |
| 269 | kernel or say M to compile it as module (bpa10x). |
| 270 | |
| 271 | config BT_HCIBFUSB |
| 272 | tristate "HCI BlueFRITZ! USB driver" |
| 273 | depends on USB |
| 274 | select FW_LOADER |
| 275 | help |
| 276 | Bluetooth HCI BlueFRITZ! USB driver. |
| 277 | This driver provides support for Bluetooth USB devices with AVM |
| 278 | interface: |
| 279 | AVM BlueFRITZ! USB |
| 280 | |
| 281 | Say Y here to compile support for HCI BFUSB devices into the |
| 282 | kernel or say M to compile it as module (bfusb). |
| 283 | |
| 284 | config BT_HCIDTL1 |
| 285 | tristate "HCI DTL1 (PC Card) driver" |
| 286 | depends on PCMCIA |
| 287 | help |
| 288 | Bluetooth HCI DTL1 (PC Card) driver. |
| 289 | This driver provides support for Bluetooth PCMCIA devices with |
| 290 | Nokia DTL1 interface: |
| 291 | Nokia Bluetooth Card |
| 292 | Socket Bluetooth CF Card |
| 293 | |
| 294 | Say Y here to compile support for HCI DTL1 devices into the |
| 295 | kernel or say M to compile it as module (dtl1_cs). |
| 296 | |
| 297 | config BT_HCIBT3C |
| 298 | tristate "HCI BT3C (PC Card) driver" |
| 299 | depends on PCMCIA |
| 300 | select FW_LOADER |
| 301 | help |
| 302 | Bluetooth HCI BT3C (PC Card) driver. |
| 303 | This driver provides support for Bluetooth PCMCIA devices with |
| 304 | 3Com BT3C interface: |
| 305 | 3Com Bluetooth Card (3CRWB6096) |
| 306 | HP Bluetooth Card |
| 307 | |
| 308 | Say Y here to compile support for HCI BT3C devices into the |
| 309 | kernel or say M to compile it as module (bt3c_cs). |
| 310 | |
| 311 | config BT_HCIBLUECARD |
| 312 | tristate "HCI BlueCard (PC Card) driver" |
| 313 | depends on PCMCIA |
| 314 | help |
| 315 | Bluetooth HCI BlueCard (PC Card) driver. |
| 316 | This driver provides support for Bluetooth PCMCIA devices with |
| 317 | Anycom BlueCard interface: |
| 318 | Anycom Bluetooth PC Card |
| 319 | Anycom Bluetooth CF Card |
| 320 | |
| 321 | Say Y here to compile support for HCI BlueCard devices into the |
| 322 | kernel or say M to compile it as module (bluecard_cs). |
| 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | config 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 Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 333 | config BT_MRVL |
| 334 | tristate "Marvell Bluetooth driver support" |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 335 | help |
| 336 | The core driver to support Marvell Bluetooth devices. |
| 337 | |
| 338 | This driver is required if you want to support |
Tamás Szűcs | 73623340 | 2019-04-14 20:38:14 +0200 | [diff] [blame^] | 339 | Marvell Bluetooth devices, such as 8688/8787/8797/8887/8897/8977/8987/8997. |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 340 | |
| 341 | Say Y here to compile Marvell Bluetooth driver |
| 342 | into the kernel or say M to compile it as module. |
| 343 | |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 344 | config BT_MRVL_SDIO |
| 345 | tristate "Marvell BT-over-SDIO driver" |
| 346 | depends on BT_MRVL && MMC |
Marcel Holtmann | e7a25f9 | 2009-06-09 13:42:54 +0200 | [diff] [blame] | 347 | select FW_LOADER |
Xinming Hu | dc75961 | 2014-11-24 02:40:53 -0800 | [diff] [blame] | 348 | select WANT_DEV_COREDUMP |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 349 | help |
| 350 | The driver for Marvell Bluetooth chipsets with SDIO interface. |
| 351 | |
| 352 | This driver is required if you want to use Marvell Bluetooth |
Tamás Szűcs | 73623340 | 2019-04-14 20:38:14 +0200 | [diff] [blame^] | 353 | devices with SDIO interface. Currently SD8688/SD8787/SD8797/SD8887/SD8897/SD8977/SD8987/SD8997 |
Bing Zhao | 2ac654f | 2011-11-16 20:40:42 -0800 | [diff] [blame] | 354 | chipsets are supported. |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 355 | |
| 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 Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 359 | config 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 368 | 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 Savoy | 363907a | 2011-02-20 22:41:16 -0600 | [diff] [blame] | 371 | config 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 Machek | 22e8ee1 | 2014-01-17 14:34:30 +0100 | [diff] [blame] | 380 | into the kernel or say M to compile it as module (btwilink). |
| 381 | |
Sean Wang | 9aebfd4 | 2019-03-08 09:15:44 +0800 | [diff] [blame] | 382 | config BT_MTKSDIO |
| 383 | tristate "MediaTek HCI SDIO driver" |
| 384 | depends on MMC |
| 385 | help |
| 386 | MediaTek Bluetooth HCI SDIO driver. |
| 387 | This driver is required if you want to use MediaTek Bluetooth |
| 388 | with SDIO interface. |
| 389 | |
| 390 | Say Y here to compile support for MediaTek Bluetooth SDIO devices |
| 391 | into the kernel or say M to compile it as module (btmtksdio). |
| 392 | |
Sean Wang | 7237c4c | 2018-08-08 01:52:48 +0800 | [diff] [blame] | 393 | config BT_MTKUART |
| 394 | tristate "MediaTek HCI UART driver" |
| 395 | depends on SERIAL_DEV_BUS |
| 396 | help |
| 397 | MediaTek Bluetooth HCI UART driver. |
| 398 | This driver is required if you want to use MediaTek Bluetooth |
| 399 | with serial interface. |
| 400 | |
| 401 | Say Y here to compile support for MediaTek Bluetooth UART devices |
| 402 | into the kernel or say M to compile it as module (btmtkuart). |
| 403 | |
Bjorn Andersson | 1511cc7 | 2016-08-12 17:01:28 -0700 | [diff] [blame] | 404 | config BT_QCOMSMD |
| 405 | tristate "Qualcomm SMD based HCI support" |
Bjorn Andersson | 5052de8 | 2017-03-27 22:26:33 -0700 | [diff] [blame] | 406 | depends on RPMSG || (COMPILE_TEST && RPMSG=n) |
Arnd Bergmann | 6e9e6cc | 2017-03-20 15:31:10 -0700 | [diff] [blame] | 407 | depends on QCOM_WCNSS_CTRL || (COMPILE_TEST && QCOM_WCNSS_CTRL=n) |
Bjorn Andersson | 1511cc7 | 2016-08-12 17:01:28 -0700 | [diff] [blame] | 408 | select BT_QCA |
| 409 | help |
| 410 | Qualcomm SMD based HCI driver. |
| 411 | This driver is used to bridge HCI data onto the shared memory |
| 412 | channels to the WCNSS core. |
| 413 | |
| 414 | Say Y here to compile support for HCI over Qualcomm SMD into the |
| 415 | kernel or say M to compile as a module. |
| 416 | |
Prameela Rani Garnepudi | 38aa4da | 2018-02-27 19:56:15 +0530 | [diff] [blame] | 417 | config BT_HCIRSI |
Arnd Bergmann | 255dd5b | 2018-03-15 22:18:24 +0100 | [diff] [blame] | 418 | tristate |
Prameela Rani Garnepudi | 38aa4da | 2018-02-27 19:56:15 +0530 | [diff] [blame] | 419 | help |
| 420 | Redpine BT driver. |
| 421 | This driver handles BT traffic from upper layers and pass |
| 422 | to the RSI_91x coex module for further scheduling to device |
| 423 | |
| 424 | Say Y here to compile support for HCI over Redpine into the |
| 425 | kernel or say M to compile as a module. |
| 426 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 427 | endmenu |