1 2menu "Bluetooth device drivers" 3 depends on BT 4 5config BT_INTEL 6 tristate 7 select REGMAP 8 9config BT_BCM 10 tristate 11 select FW_LOADER 12 13config BT_RTL 14 tristate 15 select FW_LOADER 16 17config BT_QCA 18 tristate 19 select FW_LOADER 20 21config BT_HCIBTUSB 22 tristate "HCI USB driver" 23 depends on USB 24 select BT_INTEL 25 help 26 Bluetooth HCI USB driver. 27 This driver is required if you want to use Bluetooth devices with 28 USB interface. 29 30 Say Y here to compile support for Bluetooth USB devices into the 31 kernel or say M to compile it as module (btusb). 32 33config BT_HCIBTUSB_BCM 34 bool "Broadcom protocol support" 35 depends on BT_HCIBTUSB 36 select BT_BCM 37 default y 38 help 39 The Broadcom protocol support enables firmware and patchram 40 download support for Broadcom Bluetooth controllers. 41 42 Say Y here to compile support for Broadcom protocol. 43 44config BT_HCIBTUSB_RTL 45 bool "Realtek protocol support" 46 depends on BT_HCIBTUSB 47 select BT_RTL 48 default y 49 help 50 The Realtek protocol support enables firmware and configuration 51 download support for Realtek Bluetooth controllers. 52 53 Say Y here to compile support for Realtek protocol. 54 55config BT_HCIBTSDIO 56 tristate "HCI SDIO driver" 57 depends on MMC 58 help 59 Bluetooth HCI SDIO driver. 60 This driver is required if you want to use Bluetooth device with 61 SDIO interface. 62 63 Say Y here to compile support for Bluetooth SDIO devices into the 64 kernel or say M to compile it as module (btsdio). 65 66config BT_HCIUART 67 tristate "HCI UART driver" 68 depends on TTY 69 help 70 Bluetooth HCI UART driver. 71 This driver is required if you want to use Bluetooth devices with 72 serial port interface. You will also need this driver if you have 73 UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card 74 adapter and BrainBoxes Bluetooth PC Card. 75 76 Say Y here to compile support for Bluetooth UART devices into the 77 kernel or say M to compile it as module (hci_uart). 78 79config BT_HCIUART_H4 80 bool "UART (H4) protocol support" 81 depends on BT_HCIUART 82 help 83 UART (H4) is serial protocol for communication between Bluetooth 84 device and host. This protocol is required for most Bluetooth devices 85 with UART interface, including PCMCIA and CF cards. 86 87 Say Y here to compile support for HCI UART (H4) protocol. 88 89config BT_HCIUART_BCSP 90 bool "BCSP protocol support" 91 depends on BT_HCIUART 92 select BITREVERSE 93 help 94 BCSP (BlueCore Serial Protocol) is serial protocol for communication 95 between Bluetooth device and host. This protocol is required for non 96 USB Bluetooth devices based on CSR BlueCore chip, including PCMCIA and 97 CF cards. 98 99 Say Y here to compile support for HCI BCSP protocol. 100 101config BT_HCIUART_ATH3K 102 bool "Atheros AR300x serial support" 103 depends on BT_HCIUART 104 select BT_HCIUART_H4 105 help 106 HCIATH3K (HCI Atheros AR300x) is a serial protocol for 107 communication between host and Atheros AR300x Bluetooth devices. 108 This protocol enables AR300x chips to be enabled with 109 power management support. 110 Enable this if you have Atheros AR300x serial Bluetooth device. 111 112 Say Y here to compile support for HCI UART ATH3K protocol. 113 114config BT_HCIUART_LL 115 bool "HCILL protocol support" 116 depends on BT_HCIUART 117 help 118 HCILL (HCI Low Level) is a serial protocol for communication 119 between Bluetooth device and host. This protocol is required for 120 serial Bluetooth devices that are based on Texas Instruments' 121 BRF chips. 122 123 Say Y here to compile support for HCILL protocol. 124 125config BT_HCIUART_3WIRE 126 bool "Three-wire UART (H5) protocol support" 127 depends on BT_HCIUART 128 help 129 The HCI Three-wire UART Transport Layer makes it possible to 130 user the Bluetooth HCI over a serial port interface. The HCI 131 Three-wire UART Transport Layer assumes that the UART 132 communication may have bit errors, overrun errors or burst 133 errors and thereby making CTS/RTS lines unnecessary. 134 135 Say Y here to compile support for Three-wire UART protocol. 136 137config BT_HCIUART_INTEL 138 bool "Intel protocol support" 139 depends on BT_HCIUART 140 select BT_HCIUART_H4 141 select BT_INTEL 142 help 143 The Intel protocol support enables Bluetooth HCI over serial 144 port interface for Intel Bluetooth controllers. 145 146 Say Y here to compile support for Intel protocol. 147 148config BT_HCIUART_BCM 149 bool "Broadcom protocol support" 150 depends on BT_HCIUART 151 select BT_HCIUART_H4 152 select BT_BCM 153 help 154 The Broadcom protocol support enables Bluetooth HCI over serial 155 port interface for Broadcom Bluetooth controllers. 156 157 Say Y here to compile support for Broadcom protocol. 158 159config BT_HCIUART_QCA 160 bool "Qualcomm Atheros protocol support" 161 depends on BT_HCIUART 162 select BT_HCIUART_H4 163 select BT_QCA 164 help 165 The Qualcomm Atheros protocol supports HCI In-Band Sleep feature 166 over serial port interface(H4) between controller and host. 167 This protocol is required for UART clock control for QCA Bluetooth 168 devices. 169 170 Say Y here to compile support for QCA protocol. 171 172config BT_HCIUART_AG6XX 173 bool "Intel AG6XX protocol support" 174 depends on BT_HCIUART 175 select BT_HCIUART_H4 176 select BT_INTEL 177 help 178 The Intel/AG6XX protocol support enables Bluetooth HCI over serial 179 port interface for Intel ibt 2.1 Bluetooth controllers. 180 181 Say Y here to compile support for Intel AG6XX protocol. 182 183config BT_HCIUART_MRVL 184 bool "Marvell protocol support" 185 depends on BT_HCIUART 186 select BT_HCIUART_H4 187 help 188 Marvell is serial protocol for communication between Bluetooth 189 device and host. This protocol is required for most Marvell Bluetooth 190 devices with UART interface. 191 192 Say Y here to compile support for HCI MRVL protocol. 193 194config BT_HCIBCM203X 195 tristate "HCI BCM203x USB driver" 196 depends on USB 197 select FW_LOADER 198 help 199 Bluetooth HCI BCM203x USB driver. 200 This driver provides the firmware loading mechanism for the Broadcom 201 Blutonium based devices. 202 203 Say Y here to compile support for HCI BCM203x devices into the 204 kernel or say M to compile it as module (bcm203x). 205 206config BT_HCIBPA10X 207 tristate "HCI BPA10x USB driver" 208 depends on USB && BT_HCIUART 209 select BT_HCIUART_H4 210 help 211 Bluetooth HCI BPA10x USB driver. 212 This driver provides support for the Digianswer BPA 100/105 Bluetooth 213 sniffer devices. 214 215 Say Y here to compile support for HCI BPA10x devices into the 216 kernel or say M to compile it as module (bpa10x). 217 218config BT_HCIBFUSB 219 tristate "HCI BlueFRITZ! USB driver" 220 depends on USB 221 select FW_LOADER 222 help 223 Bluetooth HCI BlueFRITZ! USB driver. 224 This driver provides support for Bluetooth USB devices with AVM 225 interface: 226 AVM BlueFRITZ! USB 227 228 Say Y here to compile support for HCI BFUSB devices into the 229 kernel or say M to compile it as module (bfusb). 230 231config BT_HCIDTL1 232 tristate "HCI DTL1 (PC Card) driver" 233 depends on PCMCIA 234 help 235 Bluetooth HCI DTL1 (PC Card) driver. 236 This driver provides support for Bluetooth PCMCIA devices with 237 Nokia DTL1 interface: 238 Nokia Bluetooth Card 239 Socket Bluetooth CF Card 240 241 Say Y here to compile support for HCI DTL1 devices into the 242 kernel or say M to compile it as module (dtl1_cs). 243 244config BT_HCIBT3C 245 tristate "HCI BT3C (PC Card) driver" 246 depends on PCMCIA 247 select FW_LOADER 248 help 249 Bluetooth HCI BT3C (PC Card) driver. 250 This driver provides support for Bluetooth PCMCIA devices with 251 3Com BT3C interface: 252 3Com Bluetooth Card (3CRWB6096) 253 HP Bluetooth Card 254 255 Say Y here to compile support for HCI BT3C devices into the 256 kernel or say M to compile it as module (bt3c_cs). 257 258config BT_HCIBLUECARD 259 tristate "HCI BlueCard (PC Card) driver" 260 depends on PCMCIA 261 help 262 Bluetooth HCI BlueCard (PC Card) driver. 263 This driver provides support for Bluetooth PCMCIA devices with 264 Anycom BlueCard interface: 265 Anycom Bluetooth PC Card 266 Anycom Bluetooth CF Card 267 268 Say Y here to compile support for HCI BlueCard devices into the 269 kernel or say M to compile it as module (bluecard_cs). 270 271config BT_HCIBTUART 272 tristate "HCI UART (PC Card) device driver" 273 depends on PCMCIA 274 help 275 Bluetooth HCI UART (PC Card) driver. 276 This driver provides support for Bluetooth PCMCIA devices with 277 an UART interface: 278 Xircom CreditCard Bluetooth Adapter 279 Xircom RealPort2 Bluetooth Adapter 280 Sphinx PICO Card 281 H-Soft blue+Card 282 Cyber-blue Compact Flash Card 283 284 Say Y here to compile support for HCI UART devices into the 285 kernel or say M to compile it as module (btuart_cs). 286 287config BT_HCIVHCI 288 tristate "HCI VHCI (Virtual HCI device) driver" 289 help 290 Bluetooth Virtual HCI device driver. 291 This driver is required if you want to use HCI Emulation software. 292 293 Say Y here to compile support for virtual HCI devices into the 294 kernel or say M to compile it as module (hci_vhci). 295 296config BT_MRVL 297 tristate "Marvell Bluetooth driver support" 298 help 299 The core driver to support Marvell Bluetooth devices. 300 301 This driver is required if you want to support 302 Marvell Bluetooth devices, such as 8688/8787/8797/8887/8897/8997. 303 304 Say Y here to compile Marvell Bluetooth driver 305 into the kernel or say M to compile it as module. 306 307config BT_MRVL_SDIO 308 tristate "Marvell BT-over-SDIO driver" 309 depends on BT_MRVL && MMC 310 select FW_LOADER 311 select WANT_DEV_COREDUMP 312 help 313 The driver for Marvell Bluetooth chipsets with SDIO interface. 314 315 This driver is required if you want to use Marvell Bluetooth 316 devices with SDIO interface. Currently SD8688/SD8787/SD8797/SD8887/SD8897/SD8997 317 chipsets are supported. 318 319 Say Y here to compile support for Marvell BT-over-SDIO driver 320 into the kernel or say M to compile it as module. 321 322config BT_ATH3K 323 tristate "Atheros firmware download driver" 324 depends on BT_HCIBTUSB 325 select FW_LOADER 326 help 327 Bluetooth firmware download driver. 328 This driver loads the firmware into the Atheros Bluetooth 329 chipset. 330 331 Say Y here to compile support for "Atheros firmware download driver" 332 into the kernel or say M to compile it as module (ath3k). 333 334config BT_WILINK 335 tristate "Texas Instruments WiLink7 driver" 336 depends on TI_ST 337 help 338 This enables the Bluetooth driver for Texas Instrument's BT/FM/GPS 339 combo devices. This makes use of shared transport line discipline 340 core driver to communicate with the BT core of the combo chip. 341 342 Say Y here to compile support for Texas Instrument's WiLink7 driver 343 into the kernel or say M to compile it as module (btwilink). 344 345config BT_QCOMSMD 346 tristate "Qualcomm SMD based HCI support" 347 depends on QCOM_SMD || (COMPILE_TEST && QCOM_SMD=n) 348 depends on QCOM_WCNSS_CTRL || (COMPILE_TEST && QCOM_WCNSS_CTRL=n) 349 select BT_QCA 350 help 351 Qualcomm SMD based HCI driver. 352 This driver is used to bridge HCI data onto the shared memory 353 channels to the WCNSS core. 354 355 Say Y here to compile support for HCI over Qualcomm SMD into the 356 kernel or say M to compile as a module. 357 358endmenu 359