Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
| 2 | menu "Bluetooth device drivers" |
| 3 | depends on BT |
| 4 | |
Marcel Holtmann | 48f0ed1 | 2015-04-06 00:52:11 -0700 | [diff] [blame] | 5 | config BT_INTEL |
| 6 | tristate |
| 7 | |
Marcel Holtmann | 4fba30f | 2015-04-05 22:52:10 -0700 | [diff] [blame] | 8 | config BT_BCM |
| 9 | tristate |
Marcel Holtmann | 1c8ba6d | 2015-04-05 22:52:13 -0700 | [diff] [blame] | 10 | select FW_LOADER |
Marcel Holtmann | 4fba30f | 2015-04-05 22:52:10 -0700 | [diff] [blame] | 11 | |
Carlo Caione | db33c77 | 2015-05-14 10:49:09 +0200 | [diff] [blame] | 12 | config BT_RTL |
| 13 | tristate |
| 14 | select FW_LOADER |
| 15 | |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 16 | config BT_HCIBTUSB |
Marcel Holtmann | 9bfa35f | 2008-08-18 13:23:52 +0200 | [diff] [blame] | 17 | tristate "HCI USB driver" |
| 18 | depends on USB |
Marcel Holtmann | 4185a0f | 2015-04-06 00:52:12 -0700 | [diff] [blame] | 19 | select BT_INTEL |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 20 | help |
| 21 | Bluetooth HCI USB driver. |
| 22 | This driver is required if you want to use Bluetooth devices with |
| 23 | USB interface. |
| 24 | |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 25 | Say Y here to compile support for Bluetooth USB devices into the |
| 26 | kernel or say M to compile it as module (btusb). |
| 27 | |
Marcel Holtmann | c2bfb10 | 2015-04-05 22:52:14 -0700 | [diff] [blame] | 28 | config BT_HCIBTUSB_BCM |
| 29 | bool "Broadcom protocol support" |
| 30 | depends on BT_HCIBTUSB |
| 31 | select BT_BCM |
| 32 | default y |
| 33 | help |
| 34 | The Broadcom protocol support enables firmware and patchram |
| 35 | download support for Broadcom Bluetooth controllers. |
| 36 | |
| 37 | Say Y here to compile support for Broadcom protocol. |
| 38 | |
Carlo Caione | db33c77 | 2015-05-14 10:49:09 +0200 | [diff] [blame] | 39 | config BT_HCIBTUSB_RTL |
| 40 | bool "Realtek protocol support" |
| 41 | depends on BT_HCIBTUSB |
| 42 | select BT_RTL |
| 43 | default y |
| 44 | help |
| 45 | The Realtek protocol support enables firmware and configuration |
| 46 | download support for Realtek Bluetooth controllers. |
| 47 | |
| 48 | Say Y here to compile support for Realtek protocol. |
| 49 | |
Marcel Holtmann | ddbaf13 | 2007-10-20 14:02:04 +0200 | [diff] [blame] | 50 | config BT_HCIBTSDIO |
| 51 | tristate "HCI SDIO driver" |
| 52 | depends on MMC |
| 53 | help |
| 54 | Bluetooth HCI SDIO driver. |
| 55 | This driver is required if you want to use Bluetooth device with |
| 56 | SDIO interface. |
| 57 | |
| 58 | Say Y here to compile support for Bluetooth SDIO devices into the |
| 59 | kernel or say M to compile it as module (btsdio). |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | config BT_HCIUART |
| 62 | tristate "HCI UART driver" |
Joe Millenbach | 4f73bc4 | 2013-01-17 22:44:22 -0800 | [diff] [blame] | 63 | depends on TTY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | help |
| 65 | Bluetooth HCI UART driver. |
| 66 | This driver is required if you want to use Bluetooth devices with |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 67 | serial port interface. You will also need this driver if you have |
| 68 | UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | adapter and BrainBoxes Bluetooth PC Card. |
| 70 | |
| 71 | Say Y here to compile support for Bluetooth UART devices into the |
| 72 | kernel or say M to compile it as module (hci_uart). |
| 73 | |
| 74 | config BT_HCIUART_H4 |
| 75 | bool "UART (H4) protocol support" |
| 76 | depends on BT_HCIUART |
| 77 | help |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 78 | UART (H4) is serial protocol for communication between Bluetooth |
| 79 | device and host. This protocol is required for most Bluetooth devices |
| 80 | with UART interface, including PCMCIA and CF cards. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | Say Y here to compile support for HCI UART (H4) protocol. |
| 83 | |
| 84 | config BT_HCIUART_BCSP |
| 85 | bool "BCSP protocol support" |
| 86 | depends on BT_HCIUART |
Randy Dunlap | d3a8eab0 | 2008-07-15 00:51:45 -0700 | [diff] [blame] | 87 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | help |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 89 | BCSP (BlueCore Serial Protocol) is serial protocol for communication |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | between Bluetooth device and host. This protocol is required for non |
| 91 | USB Bluetooth devices based on CSR BlueCore chip, including PCMCIA and |
| 92 | CF cards. |
| 93 | |
| 94 | Say Y here to compile support for HCI BCSP protocol. |
| 95 | |
Suraj Sumangala | b3190df | 2010-07-19 12:34:07 +0530 | [diff] [blame] | 96 | config BT_HCIUART_ATH3K |
| 97 | bool "Atheros AR300x serial support" |
| 98 | depends on BT_HCIUART |
Marcel Holtmann | d90aa68 | 2015-04-04 21:59:26 -0700 | [diff] [blame] | 99 | select BT_HCIUART_H4 |
Suraj Sumangala | b3190df | 2010-07-19 12:34:07 +0530 | [diff] [blame] | 100 | help |
| 101 | HCIATH3K (HCI Atheros AR300x) is a serial protocol for |
| 102 | communication between host and Atheros AR300x Bluetooth devices. |
| 103 | This protocol enables AR300x chips to be enabled with |
| 104 | power management support. |
| 105 | Enable this if you have Atheros AR300x serial Bluetooth device. |
| 106 | |
| 107 | Say Y here to compile support for HCI UART ATH3K protocol. |
| 108 | |
Ohad Ben-Cohen | 166d2f6 | 2007-10-20 13:42:36 +0200 | [diff] [blame] | 109 | config BT_HCIUART_LL |
| 110 | bool "HCILL protocol support" |
| 111 | depends on BT_HCIUART |
| 112 | help |
| 113 | HCILL (HCI Low Level) is a serial protocol for communication |
| 114 | between Bluetooth device and host. This protocol is required for |
| 115 | serial Bluetooth devices that are based on Texas Instruments' |
| 116 | BRF chips. |
| 117 | |
| 118 | Say Y here to compile support for HCILL protocol. |
| 119 | |
Johan Hedberg | 7dec65c | 2012-07-16 16:12:02 +0300 | [diff] [blame] | 120 | config BT_HCIUART_3WIRE |
| 121 | bool "Three-wire UART (H5) protocol support" |
| 122 | depends on BT_HCIUART |
| 123 | help |
| 124 | The HCI Three-wire UART Transport Layer makes it possible to |
| 125 | user the Bluetooth HCI over a serial port interface. The HCI |
| 126 | Three-wire UART Transport Layer assumes that the UART |
| 127 | communication may have bit errors, overrun errors or burst |
| 128 | errors and thereby making CTS/RTS lines unnecessary. |
| 129 | |
| 130 | Say Y here to compile support for Three-wire UART protocol. |
| 131 | |
Marcel Holtmann | 16e3887 | 2015-04-04 16:13:02 -0700 | [diff] [blame] | 132 | config BT_HCIUART_INTEL |
| 133 | bool "Intel protocol support" |
| 134 | depends on BT_HCIUART |
Marcel Holtmann | bca03c9 | 2015-04-06 00:52:14 -0700 | [diff] [blame] | 135 | select BT_INTEL |
Marcel Holtmann | 16e3887 | 2015-04-04 16:13:02 -0700 | [diff] [blame] | 136 | help |
| 137 | The Intel protocol support enables Bluetooth HCI over serial |
| 138 | port interface for Intel Bluetooth controllers. |
| 139 | |
| 140 | Say Y here to compile support for Intel protocol. |
| 141 | |
Marcel Holtmann | e9a2dd2 | 2015-04-04 16:13:03 -0700 | [diff] [blame] | 142 | config BT_HCIUART_BCM |
| 143 | bool "Broadcom protocol support" |
| 144 | depends on BT_HCIUART |
Marcel Holtmann | bdd8818 | 2015-04-05 22:52:18 -0700 | [diff] [blame] | 145 | select BT_HCIUART_H4 |
Marcel Holtmann | 3e0ac12 | 2015-04-05 22:52:12 -0700 | [diff] [blame] | 146 | select BT_BCM |
Marcel Holtmann | e9a2dd2 | 2015-04-04 16:13:03 -0700 | [diff] [blame] | 147 | help |
| 148 | The Broadcom protocol support enables Bluetooth HCI over serial |
| 149 | port interface for Broadcom Bluetooth controllers. |
| 150 | |
| 151 | Say Y here to compile support for Broadcom protocol. |
| 152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | config BT_HCIBCM203X |
| 154 | tristate "HCI BCM203x USB driver" |
| 155 | depends on USB |
| 156 | select FW_LOADER |
| 157 | help |
| 158 | Bluetooth HCI BCM203x USB driver. |
| 159 | This driver provides the firmware loading mechanism for the Broadcom |
| 160 | Blutonium based devices. |
| 161 | |
| 162 | Say Y here to compile support for HCI BCM203x devices into the |
| 163 | kernel or say M to compile it as module (bcm203x). |
| 164 | |
| 165 | config BT_HCIBPA10X |
| 166 | tristate "HCI BPA10x USB driver" |
| 167 | depends on USB |
| 168 | help |
| 169 | Bluetooth HCI BPA10x USB driver. |
| 170 | This driver provides support for the Digianswer BPA 100/105 Bluetooth |
| 171 | sniffer devices. |
| 172 | |
| 173 | Say Y here to compile support for HCI BPA10x devices into the |
| 174 | kernel or say M to compile it as module (bpa10x). |
| 175 | |
| 176 | config BT_HCIBFUSB |
| 177 | tristate "HCI BlueFRITZ! USB driver" |
| 178 | depends on USB |
| 179 | select FW_LOADER |
| 180 | help |
| 181 | Bluetooth HCI BlueFRITZ! USB driver. |
| 182 | This driver provides support for Bluetooth USB devices with AVM |
| 183 | interface: |
| 184 | AVM BlueFRITZ! USB |
| 185 | |
| 186 | Say Y here to compile support for HCI BFUSB devices into the |
| 187 | kernel or say M to compile it as module (bfusb). |
| 188 | |
| 189 | config BT_HCIDTL1 |
| 190 | tristate "HCI DTL1 (PC Card) driver" |
| 191 | depends on PCMCIA |
| 192 | help |
| 193 | Bluetooth HCI DTL1 (PC Card) driver. |
| 194 | This driver provides support for Bluetooth PCMCIA devices with |
| 195 | Nokia DTL1 interface: |
| 196 | Nokia Bluetooth Card |
| 197 | Socket Bluetooth CF Card |
| 198 | |
| 199 | Say Y here to compile support for HCI DTL1 devices into the |
| 200 | kernel or say M to compile it as module (dtl1_cs). |
| 201 | |
| 202 | config BT_HCIBT3C |
| 203 | tristate "HCI BT3C (PC Card) driver" |
| 204 | depends on PCMCIA |
| 205 | select FW_LOADER |
| 206 | help |
| 207 | Bluetooth HCI BT3C (PC Card) driver. |
| 208 | This driver provides support for Bluetooth PCMCIA devices with |
| 209 | 3Com BT3C interface: |
| 210 | 3Com Bluetooth Card (3CRWB6096) |
| 211 | HP Bluetooth Card |
| 212 | |
| 213 | Say Y here to compile support for HCI BT3C devices into the |
| 214 | kernel or say M to compile it as module (bt3c_cs). |
| 215 | |
| 216 | config BT_HCIBLUECARD |
| 217 | tristate "HCI BlueCard (PC Card) driver" |
| 218 | depends on PCMCIA |
| 219 | help |
| 220 | Bluetooth HCI BlueCard (PC Card) driver. |
| 221 | This driver provides support for Bluetooth PCMCIA devices with |
| 222 | Anycom BlueCard interface: |
| 223 | Anycom Bluetooth PC Card |
| 224 | Anycom Bluetooth CF Card |
| 225 | |
| 226 | Say Y here to compile support for HCI BlueCard devices into the |
| 227 | kernel or say M to compile it as module (bluecard_cs). |
| 228 | |
| 229 | config BT_HCIBTUART |
| 230 | tristate "HCI UART (PC Card) device driver" |
| 231 | depends on PCMCIA |
| 232 | help |
| 233 | Bluetooth HCI UART (PC Card) driver. |
| 234 | This driver provides support for Bluetooth PCMCIA devices with |
| 235 | an UART interface: |
| 236 | Xircom CreditCard Bluetooth Adapter |
| 237 | Xircom RealPort2 Bluetooth Adapter |
| 238 | Sphinx PICO Card |
| 239 | H-Soft blue+Card |
| 240 | Cyber-blue Compact Flash Card |
| 241 | |
| 242 | Say Y here to compile support for HCI UART devices into the |
| 243 | kernel or say M to compile it as module (btuart_cs). |
| 244 | |
| 245 | config BT_HCIVHCI |
| 246 | tristate "HCI VHCI (Virtual HCI device) driver" |
| 247 | help |
| 248 | Bluetooth Virtual HCI device driver. |
| 249 | This driver is required if you want to use HCI Emulation software. |
| 250 | |
| 251 | Say Y here to compile support for virtual HCI devices into the |
| 252 | kernel or say M to compile it as module (hci_vhci). |
| 253 | |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 254 | config BT_MRVL |
| 255 | tristate "Marvell Bluetooth driver support" |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 256 | help |
| 257 | The core driver to support Marvell Bluetooth devices. |
| 258 | |
| 259 | This driver is required if you want to support |
Xinming Hu | 3907d55 | 2014-09-30 06:45:33 -0400 | [diff] [blame] | 260 | Marvell Bluetooth devices, such as 8688/8787/8797/8887/8897. |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 261 | |
| 262 | Say Y here to compile Marvell Bluetooth driver |
| 263 | into the kernel or say M to compile it as module. |
| 264 | |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 265 | config BT_MRVL_SDIO |
| 266 | tristate "Marvell BT-over-SDIO driver" |
| 267 | depends on BT_MRVL && MMC |
Marcel Holtmann | e7a25f9 | 2009-06-09 13:42:54 +0200 | [diff] [blame] | 268 | select FW_LOADER |
Xinming Hu | dc75961 | 2014-11-24 02:40:53 -0800 | [diff] [blame] | 269 | select WANT_DEV_COREDUMP |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 270 | help |
| 271 | The driver for Marvell Bluetooth chipsets with SDIO interface. |
| 272 | |
| 273 | This driver is required if you want to use Marvell Bluetooth |
Xinming Hu | 3907d55 | 2014-09-30 06:45:33 -0400 | [diff] [blame] | 274 | devices with SDIO interface. Currently SD8688/SD8787/SD8797/SD8887/SD8897 |
Bing Zhao | 2ac654f | 2011-11-16 20:40:42 -0800 | [diff] [blame] | 275 | chipsets are supported. |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 276 | |
| 277 | Say Y here to compile support for Marvell BT-over-SDIO driver |
| 278 | into the kernel or say M to compile it as module. |
| 279 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 280 | config BT_ATH3K |
| 281 | tristate "Atheros firmware download driver" |
| 282 | depends on BT_HCIBTUSB |
| 283 | select FW_LOADER |
| 284 | help |
| 285 | Bluetooth firmware download driver. |
| 286 | This driver loads the firmware into the Atheros Bluetooth |
| 287 | chipset. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 289 | Say Y here to compile support for "Atheros firmware download driver" |
| 290 | into the kernel or say M to compile it as module (ath3k). |
| 291 | |
Pavan Savoy | 363907a | 2011-02-20 22:41:16 -0600 | [diff] [blame] | 292 | config BT_WILINK |
| 293 | tristate "Texas Instruments WiLink7 driver" |
| 294 | depends on TI_ST |
| 295 | help |
| 296 | This enables the Bluetooth driver for Texas Instrument's BT/FM/GPS |
| 297 | combo devices. This makes use of shared transport line discipline |
| 298 | core driver to communicate with the BT core of the combo chip. |
| 299 | |
| 300 | Say Y here to compile support for Texas Instrument's WiLink7 driver |
Pavel Machek | 22e8ee1 | 2014-01-17 14:34:30 +0100 | [diff] [blame] | 301 | into the kernel or say M to compile it as module (btwilink). |
| 302 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 303 | endmenu |